Service - Expense: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
(Created page with "= Overview = Configuration for each Expense type. = Repository = ... = Object Schemas = ; Additional Information: Per Service Schemas == expense == <syntaxhighlight lang="JavaScript"> { objectType: "expense", canDelete: false, belongTo: { serviceTag: "Business", objectType: "business" }, addOnDataStructure: [], storageResources: { myGraph: { storageType: "graph", graphServerTag: "GraphHandler" } }, fieldNames: { expenseId: { typ...")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
= Overview =
= Overview =
** NO LONGER USED - moved to Expense Manager in Purchases stack


Configuration for each Expense type.
Configuration for each Expense type.
Line 48: Line 50:


= Working documents =
= Working documents =
[[:Category:Working_documents - Expense|Inventory Expense]]
[[Category:Backend services| Inventory Expense]]

Latest revision as of 11:25, 21 March 2026

Overview

    • NO LONGER USED - moved to Expense Manager in Purchases stack

Configuration for each Expense type.

Repository

...

Object Schemas

Additional Information
Per Service Schemas

expense

{
	objectType: "expense",
	canDelete: false,
	belongTo: {
		serviceTag: "Business",
		objectType: "business"
	},
	addOnDataStructure: [],
	storageResources: {
		myGraph: {
			storageType: "graph",
			graphServerTag: "GraphHandler"
		}
    },
    fieldNames: {
		expenseId: {
			type: "string",
			randomOnCreate: true,
			storageResourceTags: ['myGraph']
		},
    },
    identifiers: [
		{
			type: "identifier",
			fieldName: "expenseId"
		}
    ]
}

RelationshipSchemas

...

Working documents