Service - CommerceAccounting Other Purchase Item: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 16: Line 16:
objectType: "comAccOtherPurchaseItemLink",
objectType: "comAccOtherPurchaseItemLink",
canDelete: false,
canDelete: false,
belongTo: {
serviceTag: "ComAccLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
addOnDataStructure: [],
storageResources: {
storageResources: {
Line 30: Line 26:
// businessId
// businessId
// otherPurchaseItemId
// otherPurchaseItemId
// accountLinkTag // type of link: expenseEntry|..
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
// accountId
     },
     },
Line 52: Line 48:
objectType: "comAccOtherPurchaseItemTypeLink",
objectType: "comAccOtherPurchaseItemTypeLink",
canDelete: false,
canDelete: false,
belongTo: {
serviceTag: "ComAccLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
addOnDataStructure: [],
storageResources: {
storageResources: {
Line 66: Line 58:
// businessId
// businessId
// otherPurchaseItemType // standard
// otherPurchaseItemType // standard
// accountLinkTag // type of link: expenseEntry|..
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
// accountId
     },
     },

Latest revision as of 08:01, 6 May 2026

Overview

Links Other Purchase Item objects to Accounting structures.

Repository

...

Object Schemas

Additional Information
Per Service Schemas

comAccOtherPurchaseItemLink

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

comAccOtherPurchaseItemTypeLink

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

Relationships

...

flowSchemas

...

Working documents

CommerceAccounting Other Purchase Item