Service - CommerceAccounting Inventory: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 46: | Line 46: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== | == comAccInventoryLocationLink == | ||
<syntaxhighlight lang="JavaScript"> | <syntaxhighlight lang="JavaScript"> | ||
{ | { | ||
objectType: " | objectType: "comAccInventoryLocationLink", | ||
canDelete: false, | canDelete: false, | ||
belongTo: { | belongTo: { | ||
| Line 60: | Line 60: | ||
"dynamo": { | "dynamo": { | ||
"storageType": "dynamoDB", | "storageType": "dynamoDB", | ||
"tableName": " | "tableName": "comAccInventoryLocationLink", | ||
} | |||
"graph": {} | |||
}, | |||
fieldNames: { | |||
// businessId | |||
// inventoryLocationId | |||
// accountlinkTag // type of link: inventoryAsset|.. | |||
// accountId | |||
}, | |||
identifiers: [ | |||
{ | |||
type: "partitionKey", | |||
fieldNames: ["businessId", "inventoryLocationId"], | |||
}, | |||
{ | |||
type: "sortKey", | |||
fieldName: "accountlinkTag" | |||
}, | |||
] | |||
} | |||
</syntaxhighlight> | |||
== comAccInventoryTemplateLink == | |||
<syntaxhighlight lang="JavaScript"> | |||
{ | |||
objectType: "comAccInventoryTemplateLink", | |||
canDelete: false, | |||
belongTo: { | |||
serviceTag: "ComAccLink", | |||
objectType: "comAccLinkByBusiness" | |||
}, | |||
addOnDataStructure: [], | |||
storageResources: { | |||
"dynamo": { | |||
"storageType": "dynamoDB", | |||
"tableName": "comAccInventoryTemplateLink", | |||
} | |||
"graph": {} | |||
}, | |||
fieldNames: { | |||
// businessId | |||
// inventoryTemplateId | |||
// accountlinkTag // type of link: inventoryAsset|.. | |||
// accountId | |||
}, | |||
identifiers: [ | |||
{ | |||
type: "partitionKey", | |||
fieldNames: ["businessId", "inventoryTemplateId"], | |||
}, | |||
{ | |||
type: "sortKey", | |||
fieldName: "accountlinkTag" | |||
}, | |||
] | |||
} | |||
</syntaxhighlight> | |||
== comAccInventoryTypeLink == | |||
<syntaxhighlight lang="JavaScript"> | |||
{ | |||
objectType: "comAccInventoryTypeLink", | |||
canDelete: false, | |||
belongTo: { | |||
serviceTag: "ComAccLink", | |||
objectType: "comAccLinkByBusiness" | |||
}, | |||
addOnDataStructure: [], | |||
storageResources: { | |||
"dynamo": { | |||
"storageType": "dynamoDB", | |||
"tableName": "comAccInventoryTypeLink", | |||
} | } | ||
"graph": {} | "graph": {} | ||
| Line 67: | Line 141: | ||
// businessId | // businessId | ||
// inventoryType // goods|intangibleGoods|rawMaterial|asset|intangibleAsset | // inventoryType // goods|intangibleGoods|rawMaterial|asset|intangibleAsset | ||
// accountlinkTag // type of link: | // accountlinkTag // type of link: inventoryAsset|.. | ||
// accountId | // accountId | ||
}, | }, | ||
Revision as of 22:33, 15 April 2026
Overview
Links Inventory objects to Accounting structures.
Repository
...
Object Schemas
- Additional Information
- Per Service Schemas
comAccInventoryLink
{
objectType: "comAccInventoryLink",
canDelete: false,
belongTo: {
serviceTag: "ComAccLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccInventoryLink",
}
},
fieldNames: {
// businessId
// inventoryId
// accountlinkTag // type of link: inventoryAsset|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId","inventoryId"],
},
{
type: "sortKey",
fieldName: "accountlinkTag"
},
]
}
comAccInventoryLocationLink
{
objectType: "comAccInventoryLocationLink",
canDelete: false,
belongTo: {
serviceTag: "ComAccLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccInventoryLocationLink",
}
"graph": {}
},
fieldNames: {
// businessId
// inventoryLocationId
// accountlinkTag // type of link: inventoryAsset|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "inventoryLocationId"],
},
{
type: "sortKey",
fieldName: "accountlinkTag"
},
]
}
comAccInventoryTemplateLink
{
objectType: "comAccInventoryTemplateLink",
canDelete: false,
belongTo: {
serviceTag: "ComAccLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccInventoryTemplateLink",
}
"graph": {}
},
fieldNames: {
// businessId
// inventoryTemplateId
// accountlinkTag // type of link: inventoryAsset|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "inventoryTemplateId"],
},
{
type: "sortKey",
fieldName: "accountlinkTag"
},
]
}
comAccInventoryTypeLink
{
objectType: "comAccInventoryTypeLink",
canDelete: false,
belongTo: {
serviceTag: "ComAccLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccInventoryTypeLink",
}
"graph": {}
},
fieldNames: {
// businessId
// inventoryType // goods|intangibleGoods|rawMaterial|asset|intangibleAsset
// accountlinkTag // type of link: inventoryAsset|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "inventoryType"],
},
{
type: "sortKey",
fieldName: "accountlinkTag"
},
]
}
Relationships
...
flowSchemas
...