Service - Inventory Raw Material: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
(Created page with "= Overview = Handler service for standard raw material inventory type. = Repository = ... = Schemas = ==ObjectSchemas== === inventoryRawMaterial === <syntaxhighlight lang="JavaScript"> { "objectType": "inventoryRawMaterial", "extendObjType": { "serviceTag": "InventoryManager", "objectType": "inventory" }, "storageResources": { "graph": { "storageType": "graph", "graphServerTag": "GraphHandler" } "dynamo": { "storageTyp...")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 38: Line 38:
</syntaxhighlight>
</syntaxhighlight>


=== inventoryUnitRawMaterial ===
<syntaxhighlight lang="JavaScript">
{
  "objectType": "inventoryUnitRawMaterial",
  "extendObjType": {
    "serviceTag": "InventoryManager",
    "objectType": "inventoryUnit"
  },
  "storageResources": {
    "graph": {
      "storageType": "graph",
      "graphServerTag": "GraphHandler"
    }
    "dynamo": { // ? if has flows attached on a unit level
      "storageType": "dynamoDB",
      "tableName": "inventoryUnitRawMaterial",
    }   
  },
  "addOnDataStructure": [],
  "fieldNames": {
    // from inventory objType
  },
  "generatedBy": "userGenerated"
}
</syntaxhighlight>


== RelationshipSchemas ==
== RelationshipSchemas ==
Line 45: Line 71:
= Working documents =
= Working documents =


[[:Category:Working_documents - Inventory Raw Material|Raw Material]]
[[:Category:Working_documents - Inventory Raw Material| Inventory Raw Material]]


[[Category:Backend services| Raw Material]]
[[Category:Backend services| Inventory Raw Material]]

Latest revision as of 10:33, 2 January 2026

Overview

Handler service for standard raw material inventory type.

Repository

...

Schemas

ObjectSchemas

inventoryRawMaterial

{
  "objectType": "inventoryRawMaterial",
  "extendObjType": {
    "serviceTag": "InventoryManager",
    "objectType": "inventory"
  },
  "storageResources": {
    "graph": {
      "storageType": "graph",
      "graphServerTag": "GraphHandler"
    }
    "dynamo": {
      "storageType": "dynamoDB",
      "tableName": "inventoryRawMaterial",
    }    
  },
  "addOnDataStructure": [],
  "fieldNames": {
    // from inventory objType
  },
  "generatedBy": "userGenerated"
}

inventoryUnitRawMaterial

{
  "objectType": "inventoryUnitRawMaterial",
  "extendObjType": {
    "serviceTag": "InventoryManager",
    "objectType": "inventoryUnit"
  },
  "storageResources": {
    "graph": {
      "storageType": "graph",
      "graphServerTag": "GraphHandler"
    }
    "dynamo": { // ? if has flows attached on a unit level
      "storageType": "dynamoDB",
      "tableName": "inventoryUnitRawMaterial",
    }    
  },
  "addOnDataStructure": [],
  "fieldNames": {
    // from inventory objType
  },
  "generatedBy": "userGenerated"
}

RelationshipSchemas

...

Working documents

Inventory Raw Material