Service - CommerceAccounting Manufacture

From Izara Wiki
Revision as of 09:51, 8 August 2026 by Sven the Barbarian (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Overview

Connects each manufacture operation to their Accounting accounts, such as moving stock out of work in progress account to inventory asset account.

Repository

...

Object Schemas

Additional Information
Per Service Schemas
{
	objectType: "comAccManufacture",
    generatedBy: "systemGenerated",
	canDelete: false,
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccWorkInProgressAccountLink",
		}
    },
    fieldNames: {
		// businessId,
		// organizationId,
		// workInProgressId,
    },
    identifiers: [
		{
			type: "partitionKey",
			fieldNames: ["businessId", "organizationId"],
			name: "comAccLinkId",
		},
		{
			type: "sortKey",
			fieldName: "workInProgressId"
		},
    ]
}

Relationships

...

flowSchemas

workInProgressAdded

  • creates journal entry for inventory/raw material out, workInProgress in

workInProgressRemoved

  • creates journal entry for workInProgress out, inventory/raw material in

workInProgressComplete

  • creates journal entry for workInProgress out, inventory/raw material in

Working documents

CommerceAccounting Manufacture