From e3135a8e9990ee65747a53387c1055a08530ce30 Mon Sep 17 00:00:00 2001 From: karneaud Date: Tue, 16 Jul 2024 13:02:59 -0400 Subject: [PATCH] added get client info --- .../Quickbooks/InvoiceTransformer.php | 67 ++++++++++++++++++- 1 file changed, 65 insertions(+), 2 deletions(-) diff --git a/app/Import/Transformer/Quickbooks/InvoiceTransformer.php b/app/Import/Transformer/Quickbooks/InvoiceTransformer.php index a49efaedf576..37edb38e151e 100644 --- a/app/Import/Transformer/Quickbooks/InvoiceTransformer.php +++ b/app/Import/Transformer/Quickbooks/InvoiceTransformer.php @@ -17,6 +17,7 @@ use App\Import\ImportException; use App\DataMapper\InvoiceItem; use App\Models\Invoice as Model; use App\Import\Transformer\BaseTransformer; +use App\Import\Transformer\Quickbooks\ClientTransformer; /** * Class InvoiceTransformer. @@ -45,7 +46,7 @@ class InvoiceTransformer extends BaseTransformer $transformed[$key] = is_null((($v = $this->getString($data, $field))))? null : (method_exists($this, ($method = "get{$field}")) ? call_user_func([$this, $method], $data, $field ) : $this->getString($data,$field)); } - return (new Model)->fillable(array_keys($this->fillable))->fill($transformed)->toArray(); + return (new Model)->fillable(array_keys($this->fillable))->fill($transformed)->toArray() + $this->getInvoiceClient($data); } public function getTotalAmt($data) @@ -63,10 +64,72 @@ class InvoiceTransformer extends BaseTransformer 'amount' => $this->getString($item,'Amount') ]; }, array_filter($this->getString($data,'Line'), function ($item) { - return $this->getString($item,'DetailType') === 'SalesItemLineDetail'; + return $this->getString($item,'DetailType') !== 'SubTotalLineDetail'; })); } + public function getInvoiceClient($data, $field = null) { + /** + * "CustomerRef": { + "value": "23", + "name": ""Barnett Design + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!" + }, + "BillAddr": { + "Id": "58", + "Line1": "Shara Barnett", + "Line2": "Barnett Design", + "Line3": "19 Main St.", + "Line4": "Middlefield, CA 94303", + "Lat": "37.4530553", + "Long": "-122.1178261" + }, + "ShipAddr": { + "Id": "24", + "Line1": "19 Main St.", + "City": "Middlefield", + "CountrySubDivisionCode": "CA", + "PostalCode": "94303", + "Lat": "37.445013", + "Long": "-122.1391443" + },"BillEmail": { + "Address": "Design@intuit.com" + }, + [ + 'name' => 'CompanyName', + 'phone' => 'PrimaryPhone.FreeFormNumber', + 'country_id' => 'BillAddr.Country', + 'state' => 'BillAddr.CountrySubDivisionCode', + 'address1' => 'BillAddr.Line1', + 'city' => 'BillAddr.City', + 'postal_code' => 'BillAddr.PostalCode', + 'shipping_country_id' => 'ShipAddr.Country', + 'shipping_state' => 'ShipAddr.CountrySubDivisionCode', + 'shipping_address1' => 'ShipAddr.Line1', + 'shipping_city' => 'ShipAddr.City', + 'shipping_postal_code' => 'ShipAddr.PostalCode', + 'public_notes' => 'Notes' + ]; + + */ + $bill_address = (object) $this->getString($data, 'BillAddr'); + $ship_address = $this->getString($data, 'ShipAddr'); + $customer = explode(" ", $this->getString($data, 'CustomerRef.name')); + $customer = ['GivenName' => $customer[0], 'FamilyName' => $customer[1]]; + $has_company = property_exists($bill_address, 'Line4'); + $client = + [ + "CompanyName" => $has_company? $bill_address->Line2 : $bill_address->Line1, + "BillAddr" => array_combine(['City','CountrySubDivisionCode','PostalCode'], array_filter(explode(" ", $has_company? $bill_address->Line4 : $bill_address->Line3 ))) + ['Line1' => $has_company? $bill_address->Line3 : $bill_address->Line2 ], + "ShipAddr" => $ship_address + ] + $customer + ['PrimaryEmailAddr' => ['Address' => $this->getString($data, 'BillEmail.Address') ]]; + $client_id = $this->getClient($client['CompanyName'],$this->getString($client, 'PrimaryEmailAddr.Address')); + + return ['client'=> (new ClientTransformer($this->company))->transform($client), 'client_id'=> $client_id ]; + } + public function getString($data,$field) { return Arr::get($data,$field); }