accounting-engine 0.1.10 → 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "accounting-engine",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "Bu paket, verilen faturanın, belirtilen kurallar çerçevesinde muhasebeleştirilmesini kolaylaştırmak adına oluşturulmuştur.",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -236,6 +236,7 @@ const normalizeInvoiceForAccounting = async (invoice, direction) => {
236
236
  receiver_object: invoice.receiver_object,
237
237
  accounting_lines: accountingLines,
238
238
  additional_document_reference: invoice.additional_document_reference,
239
+ payable_amount : invoice.payable_amount,
239
240
  };
240
241
  return data;
241
242
  };