Service - CommerceAccounting Services: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 16: Line 16:
objectType: "comAccServicesLink",
objectType: "comAccServicesLink",
canDelete: false,
canDelete: false,
belongTo: {
serviceTag: "ComAccLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
addOnDataStructure: [],
storageResources: {
storageResources: {
Line 30: Line 26:
// businessId
// businessId
// servicesId
// servicesId
// accountLinkTag // type of link: servicesExpense|..
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
// accountId
     },
     },
Line 52: Line 48:
objectType: "comAccServicesTemplateLink",
objectType: "comAccServicesTemplateLink",
canDelete: false,
canDelete: false,
belongTo: {
serviceTag: "ComAccLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
addOnDataStructure: [],
storageResources: {
storageResources: {
Line 66: Line 58:
// businessId
// businessId
// servicesTemplateId
// servicesTemplateId
// accountLinkTag // type of link: servicesExpense|..
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
// accountId
     },
     },
Line 88: Line 80:
objectType: "comAccServicesTypeLink",
objectType: "comAccServicesTypeLink",
canDelete: false,
canDelete: false,
belongTo: {
serviceTag: "ComAccLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
addOnDataStructure: [],
storageResources: {
storageResources: {
Line 102: Line 90:
// businessId
// businessId
// servicesType // pointInTime|overTime
// servicesType // pointInTime|overTime
// accountLinkTag // type of link: servicesExpense|..
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
// accountId
     },
     },

Latest revision as of 08:09, 6 May 2026

Overview

Links Services objects to Accounting structures.

Repository

...

Object Schemas

Additional Information
Per Service Schemas

comAccServicesLink

{
	objectType: "comAccServicesLink",
	canDelete: false,
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccServicesLink",
		}
    },
    fieldNames: {
		// businessId
		// servicesId
		// accountLinkTag // type of link: purchaseLineItem|..
		// accountId
    },
    identifiers: [
		{
			type: "partitionKey",
			fieldNames: ["businessId","servicesId"],
		},
		{
			type: "sortKey",
			fieldName: "accountLinkTag"
		},
    ]
}

comAccServicesTemplateLink

{
	objectType: "comAccServicesTemplateLink",
	canDelete: false,
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccServicesTemplateLink",
		}
    },
    fieldNames: {
		// businessId
		// servicesTemplateId
		// accountLinkTag // type of link: purchaseLineItem|..
		// accountId
    },
    identifiers: [
		{
			type: "partitionKey",
			fieldNames: ["businessId", "servicesTemplateId"],
		},
		{
			type: "sortKey",
			fieldName: "accountLinkTag"
		},
    ]
}

comAccServicesTypeLink

{
	objectType: "comAccServicesTypeLink",
	canDelete: false,
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccServicesTypeLink",
		}
    },
    fieldNames: {
		// businessId
		// servicesType // pointInTime|overTime
		// accountLinkTag // type of link: purchaseLineItem|..
		// accountId
    },
    identifiers: [
		{
			type: "partitionKey",
			fieldNames: ["businessId", "servicesType"],
		},
		{
			type: "sortKey",
			fieldName: "accountLinkTag"
		},
    ]
}

Relationships

...

flowSchemas

...

Working documents

CommerceAccounting Services