Service - CommerceAccounting Inventory: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| (11 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
= Overview = | = Overview = | ||
Links Inventory objects to Accounting structures. | |||
= Repository = | = Repository = | ||
| Line 10: | Line 10: | ||
; Additional Information: [[Per Service Schemas]] | ; Additional Information: [[Per Service Schemas]] | ||
... | == comAccInventoryLink == | ||
<syntaxhighlight lang="JavaScript"> | |||
{ | |||
objectType: "comAccInventoryLink", | |||
generatedBy: "userGenerated", | |||
canDelete: false, | |||
belongTo: { | |||
serviceTag: "CommerceAccountingLink", | |||
objectType: "comAccLinkByBusiness" | |||
}, | |||
addOnDataStructure: [], | |||
storageResources: { | |||
"dynamo": { | |||
"storageType": "dynamoDB", | |||
"tableName": "comAccInventoryLink", | |||
}, | |||
"myGraph": { | |||
"storageType": "graph", | |||
"graphServerTag": "GraphHandler" | |||
} | |||
}, | |||
fieldNames: { | |||
// businessId | |||
// organizationId | |||
// inventoryId | |||
// accountLinkTag // type of link: purchaseLineItem|.. | |||
// accountId | |||
}, | |||
identifiers: [ | |||
{ | |||
type: "partitionKey", | |||
fieldNames: ["businessId", "organizationId", "inventoryId"], | |||
name: "comAccLinkInvId", | |||
}, | |||
{ | |||
type: "sortKey", | |||
fieldName: "accountLinkTag" | |||
}, | |||
] | |||
} | |||
</syntaxhighlight> | |||
== comAccInventoryLocationLink == | |||
<syntaxhighlight lang="JavaScript"> | |||
{ | |||
objectType: "comAccInventoryLocationLink", | |||
generatedBy: "userGenerated", | |||
canDelete: false, | |||
belongTo: { | |||
serviceTag: "CommerceAccountingLink", | |||
objectType: "comAccLinkByBusiness" | |||
}, | |||
addOnDataStructure: [], | |||
storageResources: { | |||
"dynamo": { | |||
"storageType": "dynamoDB", | |||
"tableName": "comAccInventoryLocationLink", | |||
}, | |||
"myGraph": { | |||
"storageType": "graph", | |||
"graphServerTag": "GraphHandler" | |||
} | |||
}, | |||
fieldNames: { | |||
// businessId | |||
// organizationId | |||
// inventoryLocationId | |||
// accountLinkTag // type of link: purchaseLineItem|.. | |||
// accountId | |||
}, | |||
identifiers: [ | |||
{ | |||
type: "partitionKey", | |||
fieldNames: ["businessId", "organizationId", "inventoryLocationId"], | |||
name: "comAccLinkInvLocId", | |||
}, | |||
{ | |||
type: "sortKey", | |||
fieldName: "accountLinkTag" | |||
}, | |||
] | |||
} | |||
</syntaxhighlight> | |||
== comAccInventoryTemplateLink == | |||
<syntaxhighlight lang="JavaScript"> | |||
{ | |||
objectType: "comAccInventoryTemplateLink", | |||
generatedBy: "userGenerated", | |||
canDelete: false, | |||
belongTo: { | |||
serviceTag: "CommerceAccountingLink", | |||
objectType: "comAccLinkByBusiness" | |||
}, | |||
addOnDataStructure: [], | |||
storageResources: { | |||
"dynamo": { | |||
"storageType": "dynamoDB", | |||
"tableName": "comAccInventoryTemplateLink", | |||
}, | |||
"myGraph": { | |||
"storageType": "graph", | |||
"graphServerTag": "GraphHandler" | |||
} | |||
}, | |||
fieldNames: { | |||
// businessId | |||
// organizationId | |||
// inventoryTemplateId | |||
// accountLinkTag // type of link: purchaseLineItem|.. | |||
// accountId | |||
}, | |||
identifiers: [ | |||
{ | |||
type: "partitionKey", | |||
fieldNames: ["businessId", "organizationId", "inventoryTemplateId"], | |||
name: "comAccLinkInvTemId", | |||
}, | |||
{ | |||
type: "sortKey", | |||
fieldName: "accountLinkTag" | |||
}, | |||
] | |||
} | |||
</syntaxhighlight> | |||
== comAccInventoryTypeLink == | |||
<syntaxhighlight lang="JavaScript"> | |||
{ | |||
objectType: "comAccInventoryTypeLink", | |||
generatedBy: "userGenerated", | |||
canDelete: false, | |||
belongTo: { | |||
serviceTag: "CommerceAccountingLink", | |||
objectType: "comAccLinkByBusiness" | |||
}, | |||
addOnDataStructure: [], | |||
storageResources: { | |||
"dynamo": { | |||
"storageType": "dynamoDB", | |||
"tableName": "comAccInventoryTypeLink", | |||
}, | |||
"myGraph": { | |||
"storageType": "graph", | |||
"graphServerTag": "GraphHandler" | |||
} | |||
}, | |||
fieldNames: { | |||
// businessId | |||
// organizationId | |||
// inventoryType // goods|intangibleGoods|rawMaterial|asset|intangibleAsset | |||
// accountLinkTag // type of link: purchaseLineItem|.. | |||
// accountId | |||
}, | |||
identifiers: [ | |||
{ | |||
type: "partitionKey", | |||
fieldNames: ["businessId", "organizationId", "inventoryType"], | |||
name: "comAccLinkInvTypId", | |||
}, | |||
{ | |||
type: "sortKey", | |||
fieldName: "accountLinkTag" | |||
}, | |||
] | |||
} | |||
</syntaxhighlight> | |||
== Relationships == | == Relationships == | ||
Latest revision as of 12:18, 10 August 2026
Overview
Links Inventory objects to Accounting structures.
Repository
...
Object Schemas
- Additional Information
- Per Service Schemas
comAccInventoryLink
{
objectType: "comAccInventoryLink",
generatedBy: "userGenerated",
canDelete: false,
belongTo: {
serviceTag: "CommerceAccountingLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccInventoryLink",
},
"myGraph": {
"storageType": "graph",
"graphServerTag": "GraphHandler"
}
},
fieldNames: {
// businessId
// organizationId
// inventoryId
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "organizationId", "inventoryId"],
name: "comAccLinkInvId",
},
{
type: "sortKey",
fieldName: "accountLinkTag"
},
]
}
comAccInventoryLocationLink
{
objectType: "comAccInventoryLocationLink",
generatedBy: "userGenerated",
canDelete: false,
belongTo: {
serviceTag: "CommerceAccountingLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccInventoryLocationLink",
},
"myGraph": {
"storageType": "graph",
"graphServerTag": "GraphHandler"
}
},
fieldNames: {
// businessId
// organizationId
// inventoryLocationId
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "organizationId", "inventoryLocationId"],
name: "comAccLinkInvLocId",
},
{
type: "sortKey",
fieldName: "accountLinkTag"
},
]
}
comAccInventoryTemplateLink
{
objectType: "comAccInventoryTemplateLink",
generatedBy: "userGenerated",
canDelete: false,
belongTo: {
serviceTag: "CommerceAccountingLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccInventoryTemplateLink",
},
"myGraph": {
"storageType": "graph",
"graphServerTag": "GraphHandler"
}
},
fieldNames: {
// businessId
// organizationId
// inventoryTemplateId
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "organizationId", "inventoryTemplateId"],
name: "comAccLinkInvTemId",
},
{
type: "sortKey",
fieldName: "accountLinkTag"
},
]
}
comAccInventoryTypeLink
{
objectType: "comAccInventoryTypeLink",
generatedBy: "userGenerated",
canDelete: false,
belongTo: {
serviceTag: "CommerceAccountingLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccInventoryTypeLink",
},
"myGraph": {
"storageType": "graph",
"graphServerTag": "GraphHandler"
}
},
fieldNames: {
// businessId
// organizationId
// inventoryType // goods|intangibleGoods|rawMaterial|asset|intangibleAsset
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "organizationId", "inventoryType"],
name: "comAccLinkInvTypId",
},
{
type: "sortKey",
fieldName: "accountLinkTag"
},
]
}
Relationships
...
flowSchemas
...