Service - CommerceAccounting Services: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
Mint (talk | contribs)
No edit summary
No edit summary
Line 15: Line 15:
{
{
objectType: "comAccServicesLink",
objectType: "comAccServicesLink",
    generatedBy: "userGenerated",
canDelete: false,
canDelete: false,
belongTo: {
serviceTag: "CommerceAccountingLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
addOnDataStructure: [],
storageResources: {
storageResources: {
Line 25: Line 30:
     fieldNames: {
     fieldNames: {
// businessId
// businessId
// organizationId
// servicesId
// servicesId
// accountLinkTag // type of link: purchaseLineItem|..
// accountLinkTag // type of link: purchaseLineItem|..
Line 32: Line 38:
{
{
type: "partitionKey",
type: "partitionKey",
fieldNames: ["businessId","servicesId"],
fieldNames: ["businessId", "organizationId", "servicesId"],
name: "comAccLinkSerId",
},
},
{
{
Line 47: Line 54:
{
{
objectType: "comAccServicesTemplateLink",
objectType: "comAccServicesTemplateLink",
    generatedBy: "userGenerated",
canDelete: false,
canDelete: false,
belongTo: {
serviceTag: "CommerceAccountingLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
addOnDataStructure: [],
storageResources: {
storageResources: {
Line 57: Line 69:
     fieldNames: {
     fieldNames: {
// businessId
// businessId
// organizationId
// servicesTemplateId
// servicesTemplateId
// accountLinkTag // type of link: purchaseLineItem|..
// accountLinkTag // type of link: purchaseLineItem|..
Line 64: Line 77:
{
{
type: "partitionKey",
type: "partitionKey",
fieldNames: ["businessId", "servicesTemplateId"],
fieldNames: ["businessId", "organizationId", "servicesTemplateId"],
name: "comAccLinkSerTemId",
},
},
{
{
Line 79: Line 93:
{
{
objectType: "comAccServicesTypeLink",
objectType: "comAccServicesTypeLink",
    generatedBy: "userGenerated",
canDelete: false,
canDelete: false,
belongTo: {
serviceTag: "CommerceAccountingLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
addOnDataStructure: [],
storageResources: {
storageResources: {
Line 89: Line 108:
     fieldNames: {
     fieldNames: {
// businessId
// businessId
// organizationId
// servicesType // pointInTime|overTime
// servicesType // pointInTime|overTime
// accountLinkTag // type of link: purchaseLineItem|..
// accountLinkTag // type of link: purchaseLineItem|..
Line 96: Line 116:
{
{
type: "partitionKey",
type: "partitionKey",
fieldNames: ["businessId", "servicesType"],
fieldNames: ["businessId", "organizationId", "servicesType"],
name: "comAccLinkSerTypId",
},
},
{
{

Revision as of 09:38, 8 August 2026

Overview

Links Services objects to Accounting structures.

Repository

...

Object Schemas

Additional Information
Per Service Schemas

comAccServicesLink

{
	objectType: "comAccServicesLink",
    generatedBy: "userGenerated",
	canDelete: false,
	belongTo: {
		serviceTag: "CommerceAccountingLink",
		objectType: "comAccLinkByBusiness"
	},
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccServicesLink",
		}
    },
    fieldNames: {
		// businessId
		// organizationId
		// servicesId
		// accountLinkTag // type of link: purchaseLineItem|..
		// accountId
    },
    identifiers: [
		{
			type: "partitionKey",
			fieldNames: ["businessId", "organizationId", "servicesId"],
			name: "comAccLinkSerId",
		},
		{
			type: "sortKey",
			fieldName: "accountLinkTag"
		},
    ]
}

comAccServicesTemplateLink

{
	objectType: "comAccServicesTemplateLink",
    generatedBy: "userGenerated",
	canDelete: false,
	belongTo: {
		serviceTag: "CommerceAccountingLink",
		objectType: "comAccLinkByBusiness"
	},
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccServicesTemplateLink",
		}
    },
    fieldNames: {
		// businessId
		// organizationId
		// servicesTemplateId
		// accountLinkTag // type of link: purchaseLineItem|..
		// accountId
    },
    identifiers: [
		{
			type: "partitionKey",
			fieldNames: ["businessId", "organizationId", "servicesTemplateId"],
			name: "comAccLinkSerTemId",
		},
		{
			type: "sortKey",
			fieldName: "accountLinkTag"
		},
    ]
}

comAccServicesTypeLink

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

Relationships

...

flowSchemas

...

Working documents

CommerceAccounting Services