Service - CommerceAccounting Services

From Izara Wiki
Jump to navigation Jump to search

Overview

Links Services objects to Accounting structures.

Repository

...

Object Schemas

Additional Information
Per Service Schemas

comAccServicesLink

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

comAccServicesTemplateLink

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

comAccServicesTypeLink

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

Relationships

...

flowSchemas

...

Working documents

CommerceAccounting Services