Service - CommerceAccounting Vendor Payment

From Izara Wiki
Jump to navigation Jump to search

Overview

Handle payments to vendors.

Repository

...

Object Schemas

Additional Information
Per Service Schemas
{
	objectType: "comAccVendorPaymentLink",
	canDelete: false,
	belongTo: {
		serviceTag: "ComAccLink",
		objectType: "comAccLink"
	},
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccVendorPaymentLink",
		}
    },
    fieldNames: {
		// probably have two dynamo tables, one identified by purchaseId, one by journalId
		
    },
    identifiers: [
		{
			// see above note
		}
    ]
}
  • maintains a link between vendorPaymentId and journalIds, so can adjust if changes made to payment

Relationships

...

flowSchemas

vendorPaymentCreated

  • when creating a vendor payment add journal entries

vendorPaymentChange

  • make adjustment to journal entries
  • need to check for locked records

Working documents

CommerceAccounting Vendor Payment