Service - CommerceAccounting Customer

From Izara Wiki
Revision as of 13:22, 11 January 2026 by Sven the Barbarian (talk | contribs) (Created page with "= Overview = Connects each customer to their Accounting accounts, such as accountsReceivable = Repository = ... = Object Schemas = ; Additional Information: Per Service Schemas <syntaxhighlight lang="JavaScript"> { objectType: "comAccCustomerAccountsRecievableLink", canDelete: false, belongTo: { serviceTag: "User", objectType: "user" }, addOnDataStructure: [], storageResources: { "dynamo": { "storageType": "dynamoDB", "tableName": "comAccCustom...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Overview

Connects each customer to their Accounting accounts, such as accountsReceivable

Repository

...

Object Schemas

Additional Information
Per Service Schemas
{
	objectType: "comAccCustomerAccountsRecievableLink",
	canDelete: false,
	belongTo: {
		serviceTag: "User",
		objectType: "user"
	},
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccCustomerAccountsRecievableLink",
		}
    },
    fieldNames: {
		// probably have two dynamo tables, one identified by customerId, one by accountId
		
    },
    identifiers: [
		{
			// see above note
		}
    ]
}

Relationships

...

flowSchemas

customerCreated

  • creates a Accounting AccountsRecievable account and a link in comAccCustomerAccountsRecievableLink

Working documents

CommerceAccounting Customer