Service - Purchase Line Item Other: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
(Created page with "= Overview = Handler service for other purchase line items. = Repository = ... = Schemas = ==ObjectSchemas== === purchaseLineItemOtherCharge === <syntaxhighlight lang="JavaScript"> { "objectType": "purchaseLineItemOtherCharge", "extendObjType": { "serviceTag": "PurchaseLineItemManager", "objectType": "purchaseLineItem" }, "storageResources": { "graph": { "storageType": "graph", "graphServerTag": "GraphHandler" } "dynamo": {...")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:


Handler service for other purchase line items.
Handler service for other purchase line items.
* probably need a service that defines each type of other line item, this can be used to link to Accounting accountId


= Repository =
= Repository =
Line 11: Line 13:
==ObjectSchemas==
==ObjectSchemas==


=== purchaseLineItemOtherCharge ===
=== purchaseLineItemOther ===


<syntaxhighlight lang="JavaScript">
<syntaxhighlight lang="JavaScript">
{
{
   "objectType": "purchaseLineItemOtherCharge",
   "objectType": "purchaseLineItemOther",
   "extendObjType": {
   "extendObjType": {
     "serviceTag": "PurchaseLineItemManager",
     "serviceTag": "PurchaseLineItemManager",
Line 27: Line 29:
     "dynamo": {
     "dynamo": {
       "storageType": "dynamoDB",
       "storageType": "dynamoDB",
       "tableName": "purchaseLineItemOtherCharge",
       "tableName": "purchaseLineItemOther",
     }     
     }     
   },
   },
Line 44: Line 46:
= Working documents =
= Working documents =


[[:Category:Working_documents - Purchase Line Item Other Charge| Purchase Line Item Other Charge]]
[[:Category:Working_documents - Purchase Line Item Other| Purchase Line Item Other]]


[[Category:Backend services| Purchase Line Item Other Charge]]
[[Category:Backend services| Purchase Line Item Other]]

Latest revision as of 13:24, 15 April 2026

Overview

Handler service for other purchase line items.

  • probably need a service that defines each type of other line item, this can be used to link to Accounting accountId

Repository

...

Schemas

ObjectSchemas

purchaseLineItemOther

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

RelationshipSchemas

...

Working documents

Purchase Line Item Other