Service - CommerceAccounting Other Purchase Item: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
No edit summary
Mint (talk | contribs)
 
(3 intermediate revisions by 2 users not shown)
Line 15: Line 15:
{
{
objectType: "comAccOtherPurchaseItemLink",
objectType: "comAccOtherPurchaseItemLink",
    generatedBy: "userGenerated",
canDelete: false,
canDelete: false,
belongTo: {
belongTo: {
serviceTag: "ComAccLink",
serviceTag: "CommerceAccountingLink",
objectType: "comAccLinkByBusiness"
objectType: "comAccLinkByBusiness"
},
},
Line 25: Line 26:
"storageType": "dynamoDB",
"storageType": "dynamoDB",
"tableName": "comAccOtherPurchaseItemLink",
"tableName": "comAccOtherPurchaseItemLink",
}
},
      "myGraph": {
            "storageType": "graph",
            "graphServerTag": "GraphHandler"
      }
     },
     },
     fieldNames: {
     fieldNames: {
// businessId
// businessId
// organizationId
// otherPurchaseItemId
// otherPurchaseItemId
// accountLinkTag // type of link: expenseEntry|..
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
// accountId
     },
     },
Line 36: Line 42:
{
{
type: "partitionKey",
type: "partitionKey",
fieldNames: ["businessId","otherPurchaseItemId"],
fieldNames: ["businessId", "organizationId", "otherPurchaseItemId"],
name: "comAccLinkOthPurId",
},
},
{
{
Line 51: Line 58:
{
{
objectType: "comAccOtherPurchaseItemTypeLink",
objectType: "comAccOtherPurchaseItemTypeLink",
    generatedBy: "userGenerated",
canDelete: false,
canDelete: false,
belongTo: {
belongTo: {
serviceTag: "ComAccLink",
serviceTag: "CommerceAccountingLink",
objectType: "comAccLinkByBusiness"
objectType: "comAccLinkByBusiness"
},
},
Line 61: Line 69:
"storageType": "dynamoDB",
"storageType": "dynamoDB",
"tableName": "comAccOtherPurchaseItemTypeLink",
"tableName": "comAccOtherPurchaseItemTypeLink",
}
},
      "myGraph": {
            "storageType": "graph",
            "graphServerTag": "GraphHandler"
      }
     },
     },
     fieldNames: {
     fieldNames: {
// businessId
// businessId
// organizationId
// otherPurchaseItemType // standard
// otherPurchaseItemType // standard
// accountLinkTag // type of link: expenseEntry|..
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
// accountId
     },
     },
Line 72: Line 85:
{
{
type: "partitionKey",
type: "partitionKey",
fieldNames: ["businessId", "otherPurchaseItemType"],
fieldNames: ["businessId", "organizationId", "otherPurchaseItemType"],
name: "comAccLinkOthPurTypId",
},
},
{
{

Latest revision as of 03:50, 10 August 2026

Overview

Links Other Purchase Item objects to Accounting structures.

Repository

...

Object Schemas

Additional Information
Per Service Schemas

comAccOtherPurchaseItemLink

{
	objectType: "comAccOtherPurchaseItemLink",
    generatedBy: "userGenerated",
	canDelete: false,
	belongTo: {
		serviceTag: "CommerceAccountingLink",
		objectType: "comAccLinkByBusiness"
	},
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccOtherPurchaseItemLink",
		},
       "myGraph": {
            "storageType": "graph",
            "graphServerTag": "GraphHandler"
       }
    },
    fieldNames: {
		// businessId
		// organizationId
		// otherPurchaseItemId
		// accountLinkTag // type of link: purchaseLineItem|..
		// accountId
    },
    identifiers: [
		{
			type: "partitionKey",
			fieldNames: ["businessId", "organizationId", "otherPurchaseItemId"],
			name: "comAccLinkOthPurId",
		},
		{
			type: "sortKey",
			fieldName: "accountLinkTag"
		},
    ]
}

comAccOtherPurchaseItemTypeLink

{
	objectType: "comAccOtherPurchaseItemTypeLink",
    generatedBy: "userGenerated",
	canDelete: false,
	belongTo: {
		serviceTag: "CommerceAccountingLink",
		objectType: "comAccLinkByBusiness"
	},
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccOtherPurchaseItemTypeLink",
		},
       "myGraph": {
            "storageType": "graph",
            "graphServerTag": "GraphHandler"
       }
    },
    fieldNames: {
		// businessId
		// organizationId
		// otherPurchaseItemType // standard
		// accountLinkTag // type of link: purchaseLineItem|..
		// accountId
    },
    identifiers: [
		{
			type: "partitionKey",
			fieldNames: ["businessId", "organizationId", "otherPurchaseItemType"],
			name: "comAccLinkOthPurTypId",
		},
		{
			type: "sortKey",
			fieldName: "accountLinkTag"
		},
    ]
}

Relationships

...

flowSchemas

...

Working documents

CommerceAccounting Other Purchase Item