From e0a3126e88e648b1fff09993e379fb0122ad9f68 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sun, 30 Jun 2024 19:02:29 +1000 Subject: [PATCH] Fixes for zoho --- app/Import/Transformer/Zoho/InvoiceTransformer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Import/Transformer/Zoho/InvoiceTransformer.php b/app/Import/Transformer/Zoho/InvoiceTransformer.php index bf70fb235a0e..0f5bfcc4d824 100644 --- a/app/Import/Transformer/Zoho/InvoiceTransformer.php +++ b/app/Import/Transformer/Zoho/InvoiceTransformer.php @@ -47,7 +47,7 @@ class InvoiceTransformer extends BaseTransformer 'due_date' => isset($invoice_data['Due Date']) ? $this->parseDate($invoice_data['Due Date']) : null, 'po_number' => $this->getString($invoice_data, 'PurchaseOrder'), 'public_notes' => $this->getString($invoice_data, 'Notes'), - 'currency_id' => $this->getCurrencyByCode($invoice_data, 'Currency'), + // 'currency_id' => $this->getCurrencyByCode($invoice_data, 'Currency'), 'amount' => $this->getFloat($invoice_data, 'Total'), 'balance' => $this->getFloat($invoice_data, 'Balance'), 'status_id' => $invoiceStatusMap[$status =