Service - CommerceAccounting Vendor: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
(Created page with "= Overview = Connects each vendor to their Accounting accounts, such as accountsPayable = Repository = ... = Object Schemas = ; Additional Information: Per Service Schemas <syntaxhighlight lang="JavaScript"> { objectType: "comAccVendorAccountsPayableLink", canDelete: false, belongTo: { serviceTag: "User", objectType: "user" }, addOnDataStructure: [], storageResources: { "dynamo": { "storageType": "dynamoDB", "tableName": "comAccVendorAccountsPa...")
 
 
Line 15: Line 15:
canDelete: false,
canDelete: false,
belongTo: {
belongTo: {
serviceTag: "User",
serviceTag: "ComAccLink",
objectType: "user"
objectType: "comAccLink"
},
},
addOnDataStructure: [],
addOnDataStructure: [],

Latest revision as of 15:22, 21 January 2026

Overview

Connects each vendor to their Accounting accounts, such as accountsPayable

Repository

...

Object Schemas

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

Relationships

...

flowSchemas

vendorCreated

  • creates a Accounting AccountsPayable account and a link in comAccVendorAccountsPayableLink

Working documents

CommerceAccounting Vendor