Service - CommerceAccounting Freight In: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 16: Line 16:
objectType: "comAccFreightInLink",
objectType: "comAccFreightInLink",
canDelete: false,
canDelete: false,
belongTo: {
serviceTag: "ComAccLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
addOnDataStructure: [],
storageResources: {
storageResources: {
Line 29: Line 25:
     fieldNames: {
     fieldNames: {
// businessId
// businessId
// purchaseLineItemType // inventory|expense|services|other
// purchaseLineItemSubType // inventory: goods|intangibleGoods|rawMaterial|asset|intangibleAsset, expense: pointInTime|overTime, services: pointInTime|overTime, other: standard
// freightInId
// freightInId
// accountLinkTag // type of link: freightIn
// accountLinkTag // type of link: freightIn
Line 38: Line 32:
{
{
type: "partitionKey",
type: "partitionKey",
fieldNames: ["businessId","purchaseLineItemType","purchaseLineItemSubType","freightInId"],
fieldNames: ["businessId","freightInId"],
},
},
{
{
Line 54: Line 48:
objectType: "comAccFreightInTypeLink",
objectType: "comAccFreightInTypeLink",
canDelete: false,
canDelete: false,
belongTo: {
serviceTag: "ComAccLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
addOnDataStructure: [],
storageResources: {
storageResources: {
Line 67: Line 57:
     fieldNames: {
     fieldNames: {
// businessId
// businessId
// purchaseLineItemType // inventory|expense|services|other
// freightInType // standard|..
// purchaseLineItemSubType // inventory: goods|intangibleGoods|rawMaterial|asset|intangibleAsset, expense: pointInTime|overTime, services: pointInTime|overTime, other: standard
// accountLinkTag // type of link: purchaseLineItem|..
// accountLinkTag // type of link: inventoryAsset|..
// accountId
// accountId
     },
     },
Line 75: Line 64:
{
{
type: "partitionKey",
type: "partitionKey",
fieldNames: ["businessId","purchaseLineItemType","purchaseLineItemSubType"],
fieldNames: ["businessId","freightInType"],
},
},
{
{

Revision as of 08:00, 6 May 2026

Overview

Links Freight In objects to Accounting structures.

Repository

...

Object Schemas

Additional Information
Per Service Schemas

comAccFreightInLink

{
	objectType: "comAccFreightInLink",
	canDelete: false,
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccFreightInLink",
		}
    },
    fieldNames: {
		// businessId
		// freightInId
		// accountLinkTag // type of link: freightIn
		// accountId
    },
    identifiers: [
		{
			type: "partitionKey",
			fieldNames: ["businessId","freightInId"],
		},
		{
			type: "sortKey",
			fieldName: "accountLinkTag"
		},
    ]
}

comAccFreightInTypeLink

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

Relationships

...

flowSchemas

...

Working documents

CommerceAccounting Freight In