Service - CommerceAccounting Manufacture

From Izara Wiki
Revision as of 14:44, 21 January 2026 by Sven the Barbarian (talk | contribs) (Created page with "= 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 <syntaxhighlight lang="JavaScript"> { objectType: "comAccManufacture", canDelete: false, belongTo: { serviceTag: "ComAccLink", objectType: "comAccLink" }, addOnDataStructure: [], storageResources: { "dynamo": {...")
(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",
	canDelete: false,
	belongTo: {
		serviceTag: "ComAccLink",
		objectType: "comAccLink"
	},
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccWorkInProgressAccountLink",
		}
    },
    fieldNames: {
		// probably have two dynamo tables, one identified by workInProgressId, one by accountId
		
    },
    identifiers: [
		{
			// see above note
		}
    ]
}

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