From 7f226fe5d2ac631d0de5e60d18e25a3e20152216 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 26 Aug 2024 15:48:48 +1000 Subject: [PATCH] minor adjustments --- .../Requests/Invoice/StoreInvoiceRequest.php | 6 + app/Repositories/PaymentRepository.php | 1 - .../Import/Quickbooks/QuickbooksService.php | 140 +- app/Services/Import/Quickbooks/SdkWrapper.php | 3 +- .../Transformers/BaseTransformer.php | 74 + .../Transformers/ClientTransformer.php | 35 +- .../Transformers/InvoiceTransformer.php | 380 +- .../Transformers/PaymentTransformer.php | 91 +- .../Transformers/ProductTransformer.php | 49 +- app/Services/Invoice/InvoiceService.php | 2 + app/Services/Invoice/MarkPaid.php | 1 - .../Import/Quickbooks/QuickbooksTest.php | 105 +- tests/Feature/Import/Quickbooks/customer.json | 11675 ++++++++++++++++ 13 files changed, 12158 insertions(+), 404 deletions(-) create mode 100644 app/Services/Import/Quickbooks/Transformers/BaseTransformer.php create mode 100644 tests/Feature/Import/Quickbooks/customer.json diff --git a/app/Http/Requests/Invoice/StoreInvoiceRequest.php b/app/Http/Requests/Invoice/StoreInvoiceRequest.php index 14b658ba53fd..f76174d0ca9b 100644 --- a/app/Http/Requests/Invoice/StoreInvoiceRequest.php +++ b/app/Http/Requests/Invoice/StoreInvoiceRequest.php @@ -93,6 +93,12 @@ class StoreInvoiceRequest extends Request /** @var \App\Models\User $user */ $user = auth()->user(); + if(\Illuminate\Support\Facades\Cache::has($this->ip()."|INVOICE|".$this->input('client_id', '')."|".$user->company()->company_key)) { + usleep(200000); + } + + \Illuminate\Support\Facades\Cache::put($this->ip()."|INVOICE|".$this->input('client_id', '')."|".$user->company()->company_key,1); + $input = $this->all(); $input = $this->decodePrimaryKeys($input); diff --git a/app/Repositories/PaymentRepository.php b/app/Repositories/PaymentRepository.php index e7879ec8dd11..57cf7df5d0f7 100644 --- a/app/Repositories/PaymentRepository.php +++ b/app/Repositories/PaymentRepository.php @@ -154,7 +154,6 @@ class PaymentRepository extends BaseRepository if ($invoice) { //25-06-2023 - $paymentable = new Paymentable(); $paymentable->payment_id = $payment->id; $paymentable->paymentable_id = $invoice->id; diff --git a/app/Services/Import/Quickbooks/QuickbooksService.php b/app/Services/Import/Quickbooks/QuickbooksService.php index 480c9696e097..713e84d7062b 100644 --- a/app/Services/Import/Quickbooks/QuickbooksService.php +++ b/app/Services/Import/Quickbooks/QuickbooksService.php @@ -13,11 +13,18 @@ namespace App\Services\Import\Quickbooks; use App\Factory\ClientContactFactory; use App\Factory\ClientFactory; +use App\Factory\InvoiceFactory; +use App\Factory\ProductFactory; use App\Models\Client; use App\Models\Company; +use App\Models\Invoice; +use App\Models\Product; use QuickBooksOnline\API\Core\CoreConstants; use QuickBooksOnline\API\DataService\DataService; use App\Services\Import\Quickbooks\Transformers\ClientTransformer; +use App\Services\Import\Quickbooks\Transformers\InvoiceTransformer; +use App\Services\Import\Quickbooks\Transformers\PaymentTransformer; +use App\Services\Import\Quickbooks\Transformers\ProductTransformer; // quickbooks_realm_id // quickbooks_refresh_token @@ -27,12 +34,12 @@ class QuickbooksService public DataService $sdk; private $entities = [ + 'product' => 'Item', 'client' => 'Customer', 'invoice' => 'Invoice', 'quote' => 'Estimate', 'purchase_order' => 'PurchaseOrder', 'payment' => 'Payment', - 'product' => 'Item', ]; private bool $testMode = true; @@ -101,7 +108,7 @@ class QuickbooksService $records = $this->sdk()->fetchRecords($entity); - nlog($records); + nlog(json_encode($records)); $this->processEntitySync($key, $records); @@ -126,25 +133,96 @@ class QuickbooksService private function processEntitySync(string $entity, $records) { - nlog($entity); - nlog($records); match($entity){ - 'client' => $this->syncQbToNinjaClients($records), + // 'client' => $this->syncQbToNinjaClients($records), + // 'product' => $this->syncQbToNinjaProducts($records), + 'invoice' => $this->syncQbToNinjaInvoices($records), // 'vendor' => $this->syncQbToNinjaClients($records), - // 'invoice' => $this->syncInvoices($records), // 'quote' => $this->syncInvoices($records), // 'purchase_order' => $this->syncInvoices($records), // 'payment' => $this->syncPayment($records), - // 'product' => $this->syncItem($records), default => false, }; } - private function syncQbToNinjaClients(array $records) + private function syncQbToNinjaInvoices($records): void { - nlog("qb => ninja"); + $invoice_transformer = new InvoiceTransformer($this->company); + + foreach($records as $record) + { + $ninja_invoice_data = $invoice_transformer->qbToNinja($record); - $client_transformer = new ClientTransformer(); + $payment_ids = $ninja_invoice_data['payment_ids'] ?? []; + $client_id = $ninja_invoice_data['client_id'] ?? null; + + if(is_null($client_id)) + continue; + + unset($ninja_invoice_data['payment_ids']); + + if($invoice = $this->findInvoice($ninja_invoice_data)) + { + $invoice->fill($ninja_invoice_data); + $invoice->saveQuietly(); + + $invoice = $invoice->calc()->getInvoice()->service()->markSent()->save(); + + foreach($payment_ids as $payment_id) + { + + $payment = $this->sdk->FindById('Payment', $payment_id); + $payment_transformer = new PaymentTransformer($this->company); + + $transformed = $payment_transformer->qbToNinja($payment); + + $ninja_payment = $payment_transformer->buildPayment($payment); + $ninja_payment->service()->applyNumber()->save(); + + $paymentable = new \App\Models\Paymentable(); + $paymentable->payment_id = $ninja_payment->id; + $paymentable->paymentable_id = $invoice->id; + $paymentable->paymentable_type = 'invoices'; + $paymentable->amount = $transformed['applied']; + $paymentable->save(); + + $invoice->service()->applyPayment($ninja_payment, $transformed['applied']); + + } + + } + + $ninja_invoice_data = false; + + } + + } + + private function findInvoice(array $ninja_invoice_data): ?Invoice + { + $search = Invoice::query() + ->withTrashed() + ->where('company_id', $this->company->id) + ->where('number', $ninja_invoice_data['number']); + + if($search->count() == 0) { + //new invoice + $invoice = InvoiceFactory::create($this->company->id, $this->company->owner()->id); + $invoice->client_id = $ninja_invoice_data['client_id']; + + return $invoice; + } elseif($search->count() == 1) { + return $this->settings['invoice']['update_record'] ? $search->first() : null; + } + + return null; + + } + + private function syncQbToNinjaClients(array $records): void + { + + $client_transformer = new ClientTransformer($this->company); foreach($records as $record) { @@ -176,14 +254,28 @@ class QuickbooksService } } + private function syncQbToNinjaProducts($records): void + { + $product_transformer = new ProductTransformer($this->company); + + foreach($records as $record) + { + $ninja_data = $product_transformer->qbToNinja($record); + + if($product = $this->findProduct($ninja_data['product_key'])) + { + $product->fill($ninja_data); + $product->save(); + } + } + } + private function findClient(array $qb_data) :?Client { $client = $qb_data[0]; $contact = $qb_data[1]; $client_meta = $qb_data[2]; - nlog($qb_data); - $search = Client::query() ->withTrashed() ->where('company_id', $this->company->id) @@ -208,8 +300,28 @@ class QuickbooksService elseif($search->count() == 1) { return $this->settings['client']['update_record'] ? $search->first() : null; } - else { - //potentially multiple matching clients? + + return null; + } + + private function findProduct(string $key): ?Product + { + $search = Product::query() + ->withTrashed() + ->where('company_id', $this->company->id) + ->where('product_key', $key); + + if($search->count() == 0) { + //new product + $product = ProductFactory::create($this->company->id, $this->company->owner()->id); + + return $product; + } elseif($search->count() == 1) { + return $this->settings['product']['update_record'] ? $search->first() : null; } + + return null; + + } } diff --git a/app/Services/Import/Quickbooks/SdkWrapper.php b/app/Services/Import/Quickbooks/SdkWrapper.php index 61fe577c723e..afc1502a7151 100644 --- a/app/Services/Import/Quickbooks/SdkWrapper.php +++ b/app/Services/Import/Quickbooks/SdkWrapper.php @@ -21,7 +21,7 @@ class SdkWrapper { public const MAXRESULTS = 10000; - private $entities = ['Customer','Invoice','Payment','Item']; + private $entities = ['Customer','Invoice','Item']; private OAuth2AccessToken $token; @@ -198,6 +198,7 @@ class SdkWrapper nlog("Fetch Quickbooks API Error: {$th->getMessage()}"); } + nlog($records); return $records; } } diff --git a/app/Services/Import/Quickbooks/Transformers/BaseTransformer.php b/app/Services/Import/Quickbooks/Transformers/BaseTransformer.php new file mode 100644 index 000000000000..349bd9ff67ae --- /dev/null +++ b/app/Services/Import/Quickbooks/Transformers/BaseTransformer.php @@ -0,0 +1,74 @@ +first(function ($c) use ($iso_3_code){ + + /** @var \App\Models\Country $c */ + return $c->iso_3166_3 == $iso_3_code; + }); + + return $country ? (string) $country->id : '840'; + } + + public function resolveCurrency(string $currency_code): string + { + + /** @var \App\Models\Currency $currency */ + $currency = app('currencies')->first(function($c) use ($currency_code){ + + /** @var \App\Models\Currency $c */ + return $c->code == $currency_code; + }); + + return $currency ? (string) $currency->id : '1'; + } + + public function getShipAddrCountry($data, $field) + { + return is_null(($c = $this->getString($data, $field))) ? null : $this->getCountryId($c); + } + + public function getBillAddrCountry($data, $field) + { + return is_null(($c = $this->getString($data, $field))) ? null : $this->getCountryId($c); + } + + public function getClientId($customer_reference_id): ?int + { + $client = Client::query() + ->withTrashed() + ->where('company_id', $this->company->id) + ->where('id_number', $customer_reference_id) + ->first(); + + return $client ? $client->id : null; + } + +} diff --git a/app/Services/Import/Quickbooks/Transformers/ClientTransformer.php b/app/Services/Import/Quickbooks/Transformers/ClientTransformer.php index e355f2cf0c76..859eab3fd4d1 100644 --- a/app/Services/Import/Quickbooks/Transformers/ClientTransformer.php +++ b/app/Services/Import/Quickbooks/Transformers/ClientTransformer.php @@ -17,13 +17,9 @@ use App\DataMapper\ClientSettings; /** * Class ClientTransformer. */ -class ClientTransformer +class ClientTransformer extends BaseTransformer { - public function __construct() - { - } - public function qbToNinja(mixed $qb_data) { return $this->transform($qb_data); @@ -31,7 +27,6 @@ class ClientTransformer public function ninjaToQb() { - } public function transform(mixed $data): array @@ -72,32 +67,4 @@ class ClientTransformer return [$client, $contact, $new_client_merge]; } - private function resolveCountry(string $iso_3_code) - { - $country = app('countries')->first(function ($c) use ($iso_3_code){ - return $c->iso_3166_3 == $iso_3_code; - }); - - return $country ? (string) $country->id : '840'; - } - - private function resolveCurrency(string $currency_code) - { - $currency = app('currencies')->first(function($c) use ($currency_code){ - return $c->code == $currency_code; - }); - - return $currency ? (string) $currency->id : '1'; - } - - public function getShipAddrCountry($data, $field) - { - return is_null(($c = $this->getString($data, $field))) ? null : $this->getCountryId($c); - } - - public function getBillAddrCountry($data, $field) - { - return is_null(($c = $this->getString($data, $field))) ? null : $this->getCountryId($c); - } - } diff --git a/app/Services/Import/Quickbooks/Transformers/InvoiceTransformer.php b/app/Services/Import/Quickbooks/Transformers/InvoiceTransformer.php index a4f2f564595a..b8aab65714c3 100644 --- a/app/Services/Import/Quickbooks/Transformers/InvoiceTransformer.php +++ b/app/Services/Import/Quickbooks/Transformers/InvoiceTransformer.php @@ -1,6 +1,7 @@ transform($qb_data); } - private $fillable = [ - 'amount' => "TotalAmt", - 'line_items' => "Line", - 'due_date' => "DueDate", - 'partial' => "Deposit", - 'balance' => "Balance", - 'private_notes' => "CustomerMemo", - 'public_notes' => "CustomerMemo", - 'number' => "DocNumber", - 'created_at' => "CreateTime", - 'updated_at' => "LastUpdatedTime", - 'payments' => 'LinkedTxn', - 'status_id' => 'InvoiceStatus', - ]; - - public function __construct($company) + public function ninjaToQb() { - parent::__construct($company); - - $this->model = new Model(); } - public function getInvoiceStatus($data) + public function transform($qb_data) { - return Invoice::STATUS_SENT; + $client_id = $this->getClientId(data_get($qb_data, 'CustomerRef.value', null)); + + return $client_id ? [ + 'client_id' => $client_id, + 'number' => data_get($qb_data, 'DocNumber', false), + 'date' => data_get($qb_data, 'TxnDate', now()->format('Y-m-d')), + 'private_notes' => data_get($qb_data, 'PrivateNote', ''), + 'public_notes' => data_get($qb_data, 'CustomerMemo.value', false), + 'due_date' => data_get($qb_data, 'DueDate', null), + 'po_number' => data_get($qb_data, 'PONumber', ""), + 'partial' => data_get($qb_data, 'Deposit', 0), + 'line_items' => $this->getLineItems(data_get($qb_data, 'Line', [])), + 'payment_ids' => $this->getPayments($qb_data), + 'status_id' => Invoice::STATUS_SENT, + 'tax_rate1' => $rate = data_get($qb_data,'TxnTaxDetail.TaxLine.TaxLineDetail.TaxPercent', 0), + 'tax_name1' => $rate > 0 ? "Sales Tax" : "", + ] : false; } - public function transform($data) + private function getPayments(mixed $qb_data) { - return $this->preTransform($data) + $this->getInvoiceClient($data); - } + $payments = []; - public function getTotalAmt($data) - { - return (float) $this->getString($data, 'TotalAmt'); - } + nlog("get payments"); - public function getLine($data) - { - return array_map(function ($item) { - return [ - 'description' => $this->getString($item, 'Description'), - 'product_key' => $this->getString($item, 'Description'), - 'quantity' => (int) $this->getString($item, 'SalesItemLineDetail.Qty'), - 'unit_price' => (float) $this->getString($item, 'SalesItemLineDetail.UnitPrice'), - 'line_total' => (float) $this->getString($item, 'Amount'), - 'cost' => (float) $this->getString($item, 'SalesItemLineDetail.UnitPrice'), - 'product_cost' => (float) $this->getString($item, 'SalesItemLineDetail.UnitPrice'), - 'tax_amount' => (float) $this->getString($item, 'TxnTaxDetail.TotalTax'), - ]; - }, array_filter($this->getString($data, 'Line'), function ($item) { - return $this->getString($item, 'DetailType') !== 'SubTotalLineDetail'; - })); - } + $qb_payments = data_get($qb_data, 'LinkedTxn', false); - 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' - ]; + nlog($qb_payments); - */ - $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'); - $address = $has_company ? $bill_address->Line4 : $bill_address->Line3; - $address_1 = substr($address, 0, stripos($address, ',')); - $address = array_filter([$address_1] + (explode(' ', substr($address, stripos($address, ",") + 1)))); - $client_id = null; - $client = - [ - "CompanyName" => $has_company ? $bill_address->Line2 : $bill_address->Line1, - "BillAddr" => array_combine(['City','CountrySubDivisionCode','PostalCode'], array_pad($address, 3, 'N/A')) + ['Line1' => $has_company ? $bill_address->Line3 : $bill_address->Line2 ], - "ShipAddr" => $ship_address - ] + $customer + ['PrimaryEmailAddr' => ['Address' => $this->getString($data, 'BillEmail.Address') ]]; - if($this->hasClient($client['CompanyName'])) { - $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 getDueDate($data) - { - return $this->parseDateOrNull($data, 'DueDate'); - } - - public function getDeposit($data) - { - return (float) $this->getString($data, 'Deposit'); - } - - public function getBalance($data) - { - return (float) $this->getString($data, 'Balance'); - } - - public function getCustomerMemo($data) - { - return $this->getString($data, 'CustomerMemo.value'); - } - - public function getDocNumber($data, $field = null) - { - return sprintf( - "%s-%s", - $this->getString($data, 'DocNumber'), - $this->getString($data, 'Id.value') - ); - } - - public function getLinkedTxn($data) - { - $payments = $this->getString($data, 'LinkedTxn'); - if(empty($payments)) { + if(!$qb_payments) { return []; } - return [[ - 'amount' => $this->getTotalAmt($data), - 'date' => $this->parseDateOrNull($data, 'TxnDate') - ]]; + if(!is_array($qb_payments) && data_get($qb_payments, 'TxnType', false) == 'Payment'){ + nlog([data_get($qb_payments, 'TxnId.value', false)]); + return [data_get($qb_payments, 'TxnId.value', false)]; + } + + + foreach($qb_payments as $payment) + { + if(data_get($payment, 'TxnType', false) == 'Payment') + { + $payments[] = data_get($payment, 'TxnId.value', false); + } + } + + return $payments; } + + private function getLineItems(mixed $qb_items) + { + $items = []; + + foreach($qb_items as $qb_item) + { + $item = new InvoiceItem; + $item->product_key = data_get($qb_item, 'SalesItemLineDetail.ItemRef.name', ''); + $item->notes = data_get($qb_item,'Description', ''); + $item->quantity = data_get($qb_item,'SalesItemLineDetail.Qty', 0); + $item->cost = data_get($qb_item, 'SalesItemLineDetail.UnitPrice', 0); + $item->discount = data_get($item,'DiscountRate', data_get($qb_item,'DiscountAmount', 0)); + $item->is_amount_discount = data_get($qb_item,'DiscountAmount', 0) > 0 ? true : false; + $item->type_id = stripos(data_get($qb_item, 'ItemAccountRef.name'), 'Service') !== false ? '2' : '1'; + $item->tax_id = data_get($qb_item, 'TaxCodeRef.value', '') == 'NON' ? Product::PRODUCT_TYPE_EXEMPT : $item->type_id; + $item->tax_rate1 = data_get($qb_item,'TaxLineDetail.TaxRateRef.TaxPercent', 0); + $item->tax_name1 = $item->tax_rate1 > 0 ? "Sales Tax" : ""; + $items[] = (object)$item; + } + + nlog($items); + + return $items; + + } + + + + + + + + // public function getTotalAmt($data) + // { + // return (float) $this->getString($data, 'TotalAmt'); + // } + + // public function getLine($data) + // { + // return array_map(function ($item) { + // return [ + // 'description' => $this->getString($item, 'Description'), + // 'product_key' => $this->getString($item, 'Description'), + // 'quantity' => (int) $this->getString($item, 'SalesItemLineDetail.Qty'), + // 'unit_price' => (float) $this->getString($item, 'SalesItemLineDetail.UnitPrice'), + // 'line_total' => (float) $this->getString($item, 'Amount'), + // 'cost' => (float) $this->getString($item, 'SalesItemLineDetail.UnitPrice'), + // 'product_cost' => (float) $this->getString($item, 'SalesItemLineDetail.UnitPrice'), + // 'tax_amount' => (float) $this->getString($item, 'TxnTaxDetail.TotalTax'), + // ]; + // }, array_filter($this->getString($data, 'Line'), function ($item) { + // 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'); + // $address = $has_company ? $bill_address->Line4 : $bill_address->Line3; + // $address_1 = substr($address, 0, stripos($address, ',')); + // $address = array_filter([$address_1] + (explode(' ', substr($address, stripos($address, ",") + 1)))); + // $client_id = null; + // $client = + // [ + // "CompanyName" => $has_company ? $bill_address->Line2 : $bill_address->Line1, + // "BillAddr" => array_combine(['City','CountrySubDivisionCode','PostalCode'], array_pad($address, 3, 'N/A')) + ['Line1' => $has_company ? $bill_address->Line3 : $bill_address->Line2 ], + // "ShipAddr" => $ship_address + // ] + $customer + ['PrimaryEmailAddr' => ['Address' => $this->getString($data, 'BillEmail.Address') ]]; + // if($this->hasClient($client['CompanyName'])) { + // $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 getDueDate($data) + // { + // return $this->parseDateOrNull($data, 'DueDate'); + // } + + // public function getDeposit($data) + // { + // return (float) $this->getString($data, 'Deposit'); + // } + + // public function getBalance($data) + // { + // return (float) $this->getString($data, 'Balance'); + // } + + // public function getCustomerMemo($data) + // { + // return $this->getString($data, 'CustomerMemo.value'); + // } + + // public function getDocNumber($data, $field = null) + // { + // return sprintf( + // "%s-%s", + // $this->getString($data, 'DocNumber'), + // $this->getString($data, 'Id.value') + // ); + // } + + // public function getLinkedTxn($data) + // { + // $payments = $this->getString($data, 'LinkedTxn'); + // if(empty($payments)) { + // return []; + // } + + // return [[ + // 'amount' => $this->getTotalAmt($data), + // 'date' => $this->parseDateOrNull($data, 'TxnDate') + // ]]; + + // } } diff --git a/app/Services/Import/Quickbooks/Transformers/PaymentTransformer.php b/app/Services/Import/Quickbooks/Transformers/PaymentTransformer.php index c23ce0e242b3..247ee1dc75c5 100644 --- a/app/Services/Import/Quickbooks/Transformers/PaymentTransformer.php +++ b/app/Services/Import/Quickbooks/Transformers/PaymentTransformer.php @@ -1,5 +1,4 @@ "PaymentRefNum", - 'amount' => "TotalAmt", - "client_id" => "CustomerRef", - "currency_id" => "CurrencyRef", - 'date' => "TxnDate", - "invoices" => "Line", - 'private_notes' => "PrivateNote", - 'created_at' => "CreateTime", - 'updated_at' => "LastUpdatedTime" - ]; - - public function __construct($company) + public function qbToNinja(mixed $qb_data) { - parent::__construct($company); - - $this->model = new Model(); + return $this->transform($qb_data); } - public function getTotalAmt($data, $field = null) + public function ninjaToQb() { - return (float) $this->getString($data, $field); } - public function getTxnDate($data, $field = null) + public function transform(mixed $qb_data) { - return $this->parseDateOrNull($data, $field); - } - public function getCustomerRef($data, $field = null) - { - return $this->getClient($this->getString($data, 'CustomerRef.name'), null); + return [ + 'date' => data_get($qb_data, 'TxnDate', now()->format('Y-m-d')), + 'amount' => floatval(data_get($qb_data, 'TotalAmt', 0)), + 'applied' => data_get($qb_data, 'TotalAmt', 0) - data_get($qb_data, 'UnappliedAmt', 0), + 'number' => data_get($qb_data, 'DocNumber', null), + 'private_notes' => data_get($qb_data, 'PrivateNote', null), + 'currency_id' => (string) $this->resolveCurrency(data_get($qb_data, 'CurrencyRef.value')), + 'client_id' => $this->getClientId(data_get($qb_data, 'CustomerRef.value', null)), + ]; } - - public function getCurrencyRef($data, $field = null) + + public function buildPayment($qb_data): ?Payment { - return $this->getCurrencyByCode($data['CurrencyRef'], 'value'); + $ninja_payment_data = $this->transform($qb_data); + + if($ninja_payment_data['client_id']) + { + $payment = PaymentFactory::create($this->company->id, $this->company->owner()->id,$ninja_payment_data['client_id']); + $payment->amount = $ninja_payment_data['amount']; + $payment->applied = $ninja_payment_data['applied']; + $payment->status_id = 4; + $payment->fill($ninja_payment_data); + + $payment->client->service()->updatePaidToDate($payment->amount); + + return $payment; + } + + return null; } public function getLine($data, $field = null) @@ -84,23 +82,4 @@ class PaymentTransformer extends BaseTransformer ]]; } - /** - * @param $invoice_number - * - * @return int|null - */ - public function getInvoiceId($invoice_number) - { - $invoice = Invoice::query()->where('company_id', $this->company->id) - ->where('is_deleted', false) - ->where( - "number", - "LIKE", - "%-$invoice_number%", - ) - ->first(); - - return $invoice ? $invoice->id : null; - } - } diff --git a/app/Services/Import/Quickbooks/Transformers/ProductTransformer.php b/app/Services/Import/Quickbooks/Transformers/ProductTransformer.php index f66dbd236cf2..e9c8afec30ac 100644 --- a/app/Services/Import/Quickbooks/Transformers/ProductTransformer.php +++ b/app/Services/Import/Quickbooks/Transformers/ProductTransformer.php @@ -1,7 +1,7 @@ 'Name', - 'notes' => 'Description', - 'cost' => 'PurchaseCost', - 'price' => 'UnitPrice', - 'quantity' => 'QtyOnHand', - 'in_stock_quantity' => 'QtyOnHand', - 'created_at' => 'CreateTime', - 'updated_at' => 'LastUpdatedTime', - ]; - - - public function __construct($company) + public function qbToNinja(mixed $qb_data) { - parent::__construct($company); - - $this->model = new Model(); + return $this->transform($qb_data); } - public function getQtyOnHand($data, $field = null) + public function ninjaToQb() { - return (int) $this->getString($data, $field); + } - public function getPurchaseCost($data, $field = null) + public function transform(mixed $data): array { - return (float) $this->getString($data, $field); + + return [ + 'product_key' => data_get($data, 'Name', data_get($data, 'FullyQualifiedName','')), + 'notes' => data_get($data, 'Description', ''), + 'cost' => data_get($data, 'PurchaseCost', 0), + 'price' => data_get($data, 'UnitPrice', 0), + 'in_stock_quantity' => data_get($data, 'QtyOnHand', 0), + ]; + } - - public function getUnitPrice($data, $field = null) - { - return (float) $this->getString($data, $field); - } } diff --git a/app/Services/Invoice/InvoiceService.php b/app/Services/Invoice/InvoiceService.php index 8d3ac788fe75..283333fca75c 100644 --- a/app/Services/Invoice/InvoiceService.php +++ b/app/Services/Invoice/InvoiceService.php @@ -109,6 +109,8 @@ class InvoiceService /** * Apply a payment amount to an invoice. + * + * *** does not create a paymentable **** * @param Payment $payment The Payment * @param float $payment_amount The Payment amount * @return InvoiceService Parent class object diff --git a/app/Services/Invoice/MarkPaid.php b/app/Services/Invoice/MarkPaid.php index 30d8311c7a25..76e119204f76 100644 --- a/app/Services/Invoice/MarkPaid.php +++ b/app/Services/Invoice/MarkPaid.php @@ -103,7 +103,6 @@ class MarkPaid extends AbstractService $this->invoice ->service() ->applyNumber() - // ->deletePdf() ->save(); $payment->ledger() diff --git a/tests/Feature/Import/Quickbooks/QuickbooksTest.php b/tests/Feature/Import/Quickbooks/QuickbooksTest.php index b4869f334d61..a02fd9d7b379 100644 --- a/tests/Feature/Import/Quickbooks/QuickbooksTest.php +++ b/tests/Feature/Import/Quickbooks/QuickbooksTest.php @@ -30,110 +30,11 @@ class QuickbooksTest extends TestCase protected function setUp(): void { parent::setUp(); - - $this->markTestSkipped("NO BUENO"); - $this->withoutMiddleware(ThrottleRequests::class); - config(['database.default' => config('ninja.db.default')]); - $this->makeTestData(); - // - $this->withoutExceptionHandling(); - Auth::setUser($this->user); - + } - public function testImportCallsGetDataOnceForClient() + public function testCustomerSync() { - $data = (json_decode(file_get_contents(base_path('tests/Feature/Import/customers.json')), true))['Customer']; - $hash = Str::random(32); - Cache::put($hash.'-client', base64_encode(json_encode($data)), 360); - - $quickbooks = Mockery::mock(Quickbooks::class, [[ - 'hash' => $hash, - 'column_map' => ['client' => ['mapping' => []]], - 'skip_header' => true, - 'import_type' => 'quickbooks', - ], $this->company ])->makePartial(); - $quickbooks->shouldReceive('getData') - ->once() - ->with('client') - ->andReturn($data); - - // Mocking the dependencies used within the client method - - $quickbooks->import('client'); - - $this->assertArrayHasKey('clients', $quickbooks->entity_count); - $this->assertGreaterThan(0, $quickbooks->entity_count['clients']); - - $base_transformer = new BaseTransformer($this->company); - $this->assertTrue($base_transformer->hasClient('Sonnenschein Family Store')); - $contact = $base_transformer->getClient('Amy\'s Bird Sanctuary', ''); - $contact = Client::where('name', 'Amy\'s Bird Sanctuary')->first(); - $this->assertEquals('(650) 555-3311', $contact->phone); - $this->assertEquals('Birds@Intuit.com', $contact->contacts()->first()->email); - } - - public function testImportCallsGetDataOnceForProducts() - { - $data = (json_decode(file_get_contents(base_path('tests/Feature/Import/items.json')), true))['Item']; - $hash = Str::random(32); - Cache::put($hash.'-item', base64_encode(json_encode($data)), 360); - - $quickbooks = Mockery::mock(Quickbooks::class, [[ - 'hash' => $hash, - 'column_map' => ['item' => ['mapping' => []]], - 'skip_header' => true, - 'import_type' => 'quickbooks', - ], $this->company ])->makePartial(); - $quickbooks->shouldReceive('getData') - ->once() - ->with('product') - ->andReturn($data); - - // Mocking the dependencies used within the client method - - $quickbooks->import('product'); - - $this->assertArrayHasKey('products', $quickbooks->entity_count); - $this->assertGreaterThan(0, $quickbooks->entity_count['products']); - - $base_transformer = new BaseTransformer($this->company); - $this->assertTrue($base_transformer->hasProduct('Gardening')); - $product = Product::where('product_key', 'Pest Control')->first(); - $this->assertGreaterThanOrEqual(35, $product->price); - $this->assertLessThanOrEqual(0, $product->quantity); - } - - public function testImportCallsGetDataOnceForInvoices() - { - $data = (json_decode(file_get_contents(base_path('tests/Feature/Import/invoices.json')), true))['Invoice']; - $hash = Str::random(32); - Cache::put($hash.'-invoice', base64_encode(json_encode($data)), 360); - $quickbooks = Mockery::mock(Quickbooks::class, [[ - 'hash' => $hash, - 'column_map' => ['invoice' => ['mapping' => []]], - 'skip_header' => true, - 'import_type' => 'quickbooks', - ], $this->company ])->makePartial(); - $quickbooks->shouldReceive('getData') - ->once() - ->with('invoice') - ->andReturn($data); - $quickbooks->import('invoice'); - $this->assertArrayHasKey('invoices', $quickbooks->entity_count); - $this->assertGreaterThan(0, $quickbooks->entity_count['invoices']); - $base_transformer = new BaseTransformer($this->company); - $this->assertTrue($base_transformer->hasInvoice(1007)); - $invoice = Invoice::where('number', 1012)->first(); - $data = collect($data)->where('DocNumber', '1012')->first(); - $this->assertGreaterThanOrEqual($data['TotalAmt'], $invoice->amount); - $this->assertEquals(count($data['Line']) - 1, count((array)$invoice->line_items)); - } - - - protected function tearDown(): void - { - Mockery::close(); - parent::tearDown(); + $data = (json_decode(file_get_contents(base_path('tests/Feature/Import/Quickbooks/customers.json')), false)); } } diff --git a/tests/Feature/Import/Quickbooks/customer.json b/tests/Feature/Import/Quickbooks/customer.json new file mode 100644 index 000000000000..a1384ba5b795 --- /dev/null +++ b/tests/Feature/Import/Quickbooks/customer.json @@ -0,0 +1,11675 @@ +[ + { + "Id": { + "value": "130" + }, + "SyncToken": "0", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-30T13:16:17-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-30T13:16:17-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1037", + "TxnDate": "2024-05-30", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": { + "TxnId": { + "value": "100" + }, + "TxnType": "Estimate", + "TxnLineId": null + }, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Rock Fountain", + "Amount": "275.00", + "Received": null, + "LinkedTxn": { + "TxnId": { + "value": "100" + }, + "TxnType": "Estimate", + "TxnLineId": null + }, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "5", + "name": "Rock Fountain", + "type": null + }, + "ClassRef": null, + "UnitPrice": "275", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "1", + "UOMRef": null, + "ItemAccountRef": { + "value": "79", + "name": "Sales of Product Income", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "Fountain Pump", + "Amount": "12.75", + "Received": null, + "LinkedTxn": { + "TxnId": { + "value": "100" + }, + "TxnType": "Estimate", + "TxnLineId": null + }, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "11", + "name": "Pump", + "type": null + }, + "ClassRef": null, + "UnitPrice": "12.75", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "1", + "UOMRef": null, + "ItemAccountRef": { + "value": "79", + "name": "Sales of Product Income", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "3" + }, + "LineNum": "3", + "Description": "Concrete for fountain installation", + "Amount": "47.50", + "Received": null, + "LinkedTxn": { + "TxnId": { + "value": "100" + }, + "TxnType": "Estimate", + "TxnLineId": null + }, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "3", + "name": "Concrete", + "type": null + }, + "ClassRef": null, + "UnitPrice": "9.5", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "5", + "UOMRef": null, + "ItemAccountRef": { + "value": "48", + "name": "Landscaping Services:Job Materials:Fountains and Garden Lighting", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "335.25", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": { + "value": "2", + "name": null, + "type": null + }, + "TotalTax": "26.82", + "TaxReviewStatus": null, + "TaxLine": { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "26.82", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "3", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "8", + "NetAmountTaxable": "335.25", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "24", + "name": "Sonnenschein Family Store", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "95" + }, + "Line1": "Russ Sonnenschein", + "Line2": "Sonnenschein Family Store", + "Line3": "5647 Cypress Hill Ave.", + "Line4": "Middlefield, CA 94303", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "37.4238562", + "Long": "-122.1141681", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "25" + }, + "Line1": "5647 Cypress Hill Ave.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Middlefield", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94303", + "PostalCodeSuffix": null, + "Lat": "37.4238562", + "Long": "-122.1141681", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-29", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "362.07", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Familiystore@intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "362.07", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "129" + }, + "SyncToken": "0", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-30T13:15:36-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-30T13:15:36-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1036", + "TxnDate": "2024-05-30", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": null, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Sod", + "Amount": "50.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "14", + "name": "Sod", + "type": null + }, + "ClassRef": null, + "UnitPrice": "10", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "5", + "UOMRef": null, + "ItemAccountRef": { + "value": "49", + "name": "Landscaping Services:Job Materials:Plants and Soil", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "2 cubic ft. bag", + "Amount": "50.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "15", + "name": "Soil", + "type": null + }, + "ClassRef": null, + "UnitPrice": "10", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "5", + "UOMRef": null, + "ItemAccountRef": { + "value": "49", + "name": "Landscaping Services:Job Materials:Plants and Soil", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "3" + }, + "LineNum": "3", + "Description": "Weekly Gardening Service", + "Amount": "87.50", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "6", + "name": "Gardening", + "type": null + }, + "ClassRef": null, + "UnitPrice": "25", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "3.5", + "UOMRef": null, + "ItemAccountRef": { + "value": "45", + "name": "Landscaping Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "4" + }, + "LineNum": "4", + "Description": "Rock Fountain", + "Amount": "275.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "5", + "name": "Rock Fountain", + "type": null + }, + "ClassRef": null, + "UnitPrice": "275", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "1", + "UOMRef": null, + "ItemAccountRef": { + "value": "79", + "name": "Sales of Product Income", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "5" + }, + "LineNum": "5", + "Description": "Fountain Pump", + "Amount": "15.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "11", + "name": "Pump", + "type": null + }, + "ClassRef": null, + "UnitPrice": "15", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "1", + "UOMRef": null, + "ItemAccountRef": { + "value": "79", + "name": "Sales of Product Income", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "477.50", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": null, + "TotalTax": "0", + "TaxReviewStatus": null, + "TaxLine": null, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "8", + "name": "0969 Ocean View Road", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "94" + }, + "Line1": "Sasha Tillou", + "Line2": "Freeman Sporting Goods", + "Line3": "370 Easy St.", + "Line4": "Middlefield, CA 94482", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "8" + }, + "Line1": "370 Easy St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Middlefield", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94482", + "PostalCodeSuffix": null, + "Lat": "37.4031672", + "Long": "-122.0642815", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-29", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "477.50", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Sporting_goods@intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "477.50", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "96" + }, + "SyncToken": "1", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-29T13:30:49-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-30T13:13:33-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1031", + "TxnDate": "2024-03-15", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": { + "TxnId": { + "value": "128" + }, + "TxnType": "Payment", + "TxnLineId": null + }, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Weekly Gardening Service", + "Amount": "90.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "6", + "name": "Gardening", + "type": null + }, + "ClassRef": null, + "UnitPrice": "30", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "3", + "UOMRef": null, + "ItemAccountRef": { + "value": "45", + "name": "Landscaping Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "Rock Fountain", + "Amount": "275.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "5", + "name": "Rock Fountain", + "type": null + }, + "ClassRef": null, + "UnitPrice": "275", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "1", + "UOMRef": null, + "ItemAccountRef": { + "value": "48", + "name": "Landscaping Services:Job Materials:Fountains and Garden Lighting", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "365.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": { + "value": "2", + "name": null, + "type": null + }, + "TotalTax": "22.00", + "TaxReviewStatus": null, + "TaxLine": { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "22.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "3", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "8", + "NetAmountTaxable": "275.00", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "8", + "name": "0969 Ocean View Road", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "84" + }, + "Line1": "Sasha Tillou", + "Line2": "Freeman Sporting Goods", + "Line3": "370 Easy St.", + "Line4": "Middlefield, CA 94482", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "8" + }, + "Line1": "370 Easy St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Middlefield", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94482", + "PostalCodeSuffix": null, + "Lat": "37.4031672", + "Long": "-122.0642815", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-04-14", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "387.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Sporting_goods@intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "0", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "12" + }, + "SyncToken": "3", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-27T15:04:04-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-30T12:59:21-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1004", + "TxnDate": "2024-05-18", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": [ + { + "TxnId": { + "value": "120" + }, + "TxnType": "Payment", + "TxnLineId": null + }, + { + "TxnId": { + "value": "61" + }, + "TxnType": "Payment", + "TxnLineId": null + } + ], + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Sprinkler Heads", + "Amount": "20.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "16", + "name": "Sprinkler Heads", + "type": null + }, + "ClassRef": null, + "UnitPrice": "2", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "10", + "UOMRef": null, + "ItemAccountRef": { + "value": "79", + "name": "Sales of Product Income", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "Sprinkler Pipes", + "Amount": "24.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "17", + "name": "Sprinkler Pipes", + "type": null + }, + "ClassRef": null, + "UnitPrice": "4", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "6", + "UOMRef": null, + "ItemAccountRef": { + "value": "79", + "name": "Sales of Product Income", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "3" + }, + "LineNum": "3", + "Description": "Sod", + "Amount": "1750.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "14", + "name": "Sod", + "type": null + }, + "ClassRef": null, + "UnitPrice": "35", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "50", + "UOMRef": null, + "ItemAccountRef": { + "value": "49", + "name": "Landscaping Services:Job Materials:Plants and Soil", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "4" + }, + "LineNum": "4", + "Description": "Installation Hours", + "Amount": "400.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "1", + "name": "Services", + "type": null + }, + "ClassRef": null, + "UnitPrice": "50", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "8", + "UOMRef": null, + "ItemAccountRef": { + "value": "1", + "name": "Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "2194.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": { + "value": "2", + "name": null, + "type": null + }, + "TotalTax": "175.52", + "TaxReviewStatus": null, + "TaxLine": { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "175.52", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "3", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "8", + "NetAmountTaxable": "2194.00", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "3", + "name": "Cool Cars", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "50" + }, + "Line1": "Grace Pariente", + "Line2": "Cool Cars", + "Line3": "65 Ocean Dr.", + "Line4": "Half Moon Bay, CA 94213", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "ShipAddr": null, + "FreeFormAddress": "false", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-17", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "2369.52", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NotSet" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Cool_Cars@intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "0", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "119" + }, + "SyncToken": "0", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-30T12:57:24-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-30T12:57:24-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1035", + "TxnDate": "2024-05-30", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": null, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Rock Fountain", + "Amount": "275.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "5", + "name": "Rock Fountain", + "type": null + }, + "ClassRef": null, + "UnitPrice": "275", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "1", + "UOMRef": null, + "ItemAccountRef": { + "value": "79", + "name": "Sales of Product Income", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "Sprinkler Pipes", + "Amount": "16.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "17", + "name": "Sprinkler Pipes", + "type": null + }, + "ClassRef": null, + "UnitPrice": "4", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "4", + "UOMRef": null, + "ItemAccountRef": { + "value": "79", + "name": "Sales of Product Income", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "291.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": { + "value": "2", + "name": null, + "type": null + }, + "TotalTax": "23.28", + "TaxReviewStatus": null, + "TaxLine": { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "23.28", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "3", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "8", + "NetAmountTaxable": "291.00", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "17", + "name": "Mark Cho", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "91" + }, + "Line1": "Mark Cho", + "Line2": "36 Willow Rd", + "Line3": "Menlo Park, CA 94304", + "Line4": null, + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "37.3813444", + "Long": "-122.1802812", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "17" + }, + "Line1": "36 Willow Rd", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Menlo Park", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94304", + "PostalCodeSuffix": null, + "Lat": "37.450412", + "Long": "-122.170593", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-29", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "314.28", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Mark@Cho.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "314.28", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "63" + }, + "SyncToken": "1", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-28T15:28:08-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-30T12:52:44-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1017", + "TxnDate": "2024-05-14", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": { + "TxnId": { + "value": "116" + }, + "TxnType": "Payment", + "TxnLineId": null + }, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Weekly Gardening Service", + "Amount": "80.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "6", + "name": "Gardening", + "type": null + }, + "ClassRef": null, + "UnitPrice": "20", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "4", + "UOMRef": null, + "ItemAccountRef": { + "value": "45", + "name": "Landscaping Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "80.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": null, + "TotalTax": "0", + "TaxReviewStatus": null, + "TaxLine": null, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "25", + "name": "Sushi by Katsuyuki", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "70" + }, + "Line1": "Katsuyuki Yanagawa", + "Line2": "Sushi by Katsuyuki", + "Line3": "898 Elm St.", + "Line4": "Maplewood, NJ 07040", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "40.7312956", + "Long": "-74.2707509", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "26" + }, + "Line1": "898 Elm St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Maplewood", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "NJ", + "PostalCode": "07040", + "PostalCodeSuffix": null, + "Lat": "40.7312816", + "Long": "-74.2652908", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-13", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "80.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Sushi@intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "0", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "106" + }, + "SyncToken": "0", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-29T13:45:12-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T13:45:12-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1034", + "TxnDate": "2024-05-29", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": [ + { + "TxnId": { + "value": "4" + }, + "TxnType": "TimeActivity", + "TxnLineId": null + }, + { + "TxnId": { + "value": "5" + }, + "TxnType": "TimeActivity", + "TxnLineId": null + } + ], + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Tree and Shrub Trimming", + "Amount": "30.00", + "Received": null, + "LinkedTxn": { + "TxnId": { + "value": "4" + }, + "TxnType": "TimeActivity", + "TxnLineId": null + }, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "18", + "name": "Trimming", + "type": null + }, + "ClassRef": null, + "UnitPrice": "15", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "2", + "UOMRef": null, + "ItemAccountRef": { + "value": "45", + "name": "Landscaping Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": "2024-05-28", + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "Garden Lighting", + "Amount": "45.00", + "Received": null, + "LinkedTxn": { + "TxnId": { + "value": "5" + }, + "TxnType": "TimeActivity", + "TxnLineId": null + }, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "8", + "name": "Lighting", + "type": null + }, + "ClassRef": null, + "UnitPrice": "15", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "3", + "UOMRef": null, + "ItemAccountRef": { + "value": "48", + "name": "Landscaping Services:Job Materials:Fountains and Garden Lighting", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": "2024-05-28", + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "75.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": { + "value": "2", + "name": null, + "type": null + }, + "TotalTax": "3.60", + "TaxReviewStatus": null, + "TaxLine": { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "3.60", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "3", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "8", + "NetAmountTaxable": "45.00", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "21", + "name": "Rondonuwu Fruit and Vegi", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "88" + }, + "Line1": "Rondonuwu Fruit and Vegi", + "Line2": "847 California Ave.", + "Line3": "San Jose, CA 95021", + "Line4": null, + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "37.01", + "Long": "-121.57", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "22" + }, + "Line1": "847 California Ave.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "San Jose", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "95021", + "PostalCodeSuffix": null, + "Lat": "37.3313585", + "Long": "-121.911372", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-28", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "78.60", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Tony@Rondonuwu.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "78.60", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "103" + }, + "SyncToken": "1", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-29T13:41:59-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T13:42:08-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1033", + "TxnDate": "2024-05-29", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": { + "TxnId": { + "value": "41" + }, + "TxnType": "Estimate", + "TxnLineId": null + }, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Rock Fountain", + "Amount": "275.00", + "Received": null, + "LinkedTxn": { + "TxnId": { + "value": "41" + }, + "TxnType": "Estimate", + "TxnLineId": null + }, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "5", + "name": "Rock Fountain", + "type": null + }, + "ClassRef": null, + "UnitPrice": "275", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "1", + "UOMRef": null, + "ItemAccountRef": { + "value": "48", + "name": "Landscaping Services:Job Materials:Fountains and Garden Lighting", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "Custom Design", + "Amount": "262.50", + "Received": null, + "LinkedTxn": { + "TxnId": { + "value": "41" + }, + "TxnType": "Estimate", + "TxnLineId": null + }, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "4", + "name": "Design", + "type": null + }, + "ClassRef": null, + "UnitPrice": "75", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "3.5", + "UOMRef": null, + "ItemAccountRef": { + "value": "82", + "name": "Design income", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "3" + }, + "LineNum": "3", + "Description": "Fountain Pump", + "Amount": "45.00", + "Received": null, + "LinkedTxn": { + "TxnId": { + "value": "41" + }, + "TxnType": "Estimate", + "TxnLineId": null + }, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "11", + "name": "Pump", + "type": null + }, + "ClassRef": null, + "UnitPrice": "22.5", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "2", + "UOMRef": null, + "ItemAccountRef": { + "value": "48", + "name": "Landscaping Services:Job Materials:Fountains and Garden Lighting", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "582.50", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": { + "value": "2", + "name": null, + "type": null + }, + "TotalTax": "46.60", + "TaxReviewStatus": null, + "TaxLine": { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "46.60", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "3", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "8", + "NetAmountTaxable": "582.50", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "10", + "name": "Geeta Kalapatapu", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "87" + }, + "Line1": "Geeta Kalapatapu", + "Line2": "1987 Main St.", + "Line3": "Middlefield, CA 94303", + "Line4": null, + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "37.4530553", + "Long": "-122.1178261", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "10" + }, + "Line1": "1987 Main St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Middlefield", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94303", + "PostalCodeSuffix": null, + "Lat": "37.445013", + "Long": "-122.1391443", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-28", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "629.10", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Geeta@Kalapatapu.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "629.10", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "67" + }, + "SyncToken": "2", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-29T12:40:06-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T13:39:32-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1021", + "TxnDate": "2024-05-08", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": { + "TxnId": { + "value": "101" + }, + "TxnType": "Payment", + "TxnLineId": null + }, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "2 cubic ft. bag", + "Amount": "150.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "15", + "name": "Soil", + "type": null + }, + "ClassRef": null, + "UnitPrice": "10", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "15", + "UOMRef": null, + "ItemAccountRef": { + "value": "49", + "name": "Landscaping Services:Job Materials:Plants and Soil", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "Rock Fountain", + "Amount": "275.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "5", + "name": "Rock Fountain", + "type": null + }, + "ClassRef": null, + "UnitPrice": "275", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "1", + "UOMRef": null, + "ItemAccountRef": { + "value": "48", + "name": "Landscaping Services:Job Materials:Fountains and Garden Lighting", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "425.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": { + "value": "2", + "name": null, + "type": null + }, + "TotalTax": "34.00", + "TaxReviewStatus": null, + "TaxLine": { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "34.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "3", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "8", + "NetAmountTaxable": "425.00", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "1", + "name": "Amy's Bird Sanctuary", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "74" + }, + "Line1": "Amy Lauterbach", + "Line2": "Amy's Bird Sanctuary", + "Line3": "4581 Finch St.", + "Line4": "Bayshore, CA 94326", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "2" + }, + "Line1": "4581 Finch St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Bayshore", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94326", + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-07", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "459.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NotSet" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Birds@Intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "239.00", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "99" + }, + "SyncToken": "0", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-29T13:36:31-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T13:36:31-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1032", + "TxnDate": "2024-05-27", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": null, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Sod", + "Amount": "300.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "14", + "name": "Sod", + "type": null + }, + "ClassRef": null, + "UnitPrice": "15", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "20", + "UOMRef": null, + "ItemAccountRef": { + "value": "49", + "name": "Landscaping Services:Job Materials:Plants and Soil", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "Garden Rocks", + "Amount": "84.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "13", + "name": "Rocks", + "type": null + }, + "ClassRef": null, + "UnitPrice": "12", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "7", + "UOMRef": null, + "ItemAccountRef": { + "value": "48", + "name": "Landscaping Services:Job Materials:Fountains and Garden Lighting", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "384.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": { + "value": "2", + "name": null, + "type": null + }, + "TotalTax": "30.72", + "TaxReviewStatus": null, + "TaxLine": { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "30.72", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "3", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "8", + "NetAmountTaxable": "384.00", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "26", + "name": "Travis Waldron", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "85" + }, + "Line1": "Travis Waldron", + "Line2": "78 First St.", + "Line3": "Monlo Park, CA 94304", + "Line4": null, + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "37.3813444", + "Long": "-122.1802812", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "27" + }, + "Line1": "78 First St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Monlo Park", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94304", + "PostalCodeSuffix": null, + "Lat": "37.4585825", + "Long": "-122.1352789", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-26", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "414.72", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Travis@Waldron.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "414.72", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "42" + }, + "SyncToken": "2", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-28T11:24:29-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T13:35:42-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1013", + "TxnDate": "2024-05-18", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": [ + { + "TxnId": { + "value": "29" + }, + "TxnType": "StatementCharge", + "TxnLineId": null + }, + { + "TxnId": { + "value": "98" + }, + "TxnType": "Payment", + "TxnLineId": null + } + ], + "Line": { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "75.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": { + "value": "2", + "name": null, + "type": null + }, + "TotalTax": "6.00", + "TaxReviewStatus": null, + "TaxLine": { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "6.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "3", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "8", + "NetAmountTaxable": "75.00", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "26", + "name": "Travis Waldron", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "60" + }, + "Line1": "Travis Waldron", + "Line2": "78 First St.", + "Line3": "Monlo Park, CA 94304", + "Line4": null, + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "37.3813444", + "Long": "-122.1802812", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "27" + }, + "Line1": "78 First St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Monlo Park", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94304", + "PostalCodeSuffix": null, + "Lat": "37.4585825", + "Long": "-122.1352789", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-17", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "81.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Travis@Waldron.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "0", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "95" + }, + "SyncToken": "1", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-29T13:29:56-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T13:31:45-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1030", + "TxnDate": "2024-02-13", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": { + "TxnId": { + "value": "97" + }, + "TxnType": "Payment", + "TxnLineId": null + }, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Weekly Gardening Service", + "Amount": "50.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "6", + "name": "Gardening", + "type": null + }, + "ClassRef": null, + "UnitPrice": "25", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "2", + "UOMRef": null, + "ItemAccountRef": { + "value": "45", + "name": "Landscaping Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "Pest Control Services", + "Amount": "35.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "10", + "name": "Pest Control", + "type": null + }, + "ClassRef": null, + "UnitPrice": "35", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "1", + "UOMRef": null, + "ItemAccountRef": { + "value": "54", + "name": "Pest Control Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "3" + }, + "LineNum": "3", + "Description": "Sod", + "Amount": "131.25", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "14", + "name": "Sod", + "type": null + }, + "ClassRef": null, + "UnitPrice": "8.75", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "15", + "UOMRef": null, + "ItemAccountRef": { + "value": "49", + "name": "Landscaping Services:Job Materials:Plants and Soil", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "216.25", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": { + "value": "2", + "name": null, + "type": null + }, + "TotalTax": "10.50", + "TaxReviewStatus": null, + "TaxLine": { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "10.50", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "3", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "8", + "NetAmountTaxable": "131.25", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "8", + "name": "0969 Ocean View Road", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "83" + }, + "Line1": "Sasha Tillou", + "Line2": "Freeman Sporting Goods", + "Line3": "370 Easy St.", + "Line4": "Middlefield, CA 94482", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "8" + }, + "Line1": "370 Easy St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Middlefield", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94482", + "PostalCodeSuffix": null, + "Lat": "37.4031672", + "Long": "-122.0642815", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-03-14", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "226.75", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Sporting_goods@intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "0", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "93" + }, + "SyncToken": "1", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-29T13:27:49-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T13:28:29-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1029", + "TxnDate": "2024-04-12", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": { + "TxnId": { + "value": "94" + }, + "TxnType": "Payment", + "TxnLineId": null + }, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Concrete for fountain installation", + "Amount": "75.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "3", + "name": "Concrete", + "type": null + }, + "ClassRef": null, + "UnitPrice": "15", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "5", + "UOMRef": null, + "ItemAccountRef": { + "value": "48", + "name": "Landscaping Services:Job Materials:Fountains and Garden Lighting", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "Garden Rocks", + "Amount": "72.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "13", + "name": "Rocks", + "type": null + }, + "ClassRef": null, + "UnitPrice": "12", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "6", + "UOMRef": null, + "ItemAccountRef": { + "value": "48", + "name": "Landscaping Services:Job Materials:Fountains and Garden Lighting", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "3" + }, + "LineNum": "3", + "Description": "Rock Fountain", + "Amount": "275.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "5", + "name": "Rock Fountain", + "type": null + }, + "ClassRef": null, + "UnitPrice": "275", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "1", + "UOMRef": null, + "ItemAccountRef": { + "value": "48", + "name": "Landscaping Services:Job Materials:Fountains and Garden Lighting", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "422.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": { + "value": "3", + "name": null, + "type": null + }, + "TotalTax": "38.40", + "TaxReviewStatus": null, + "TaxLine": [ + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "29.96", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "1", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "7.1", + "NetAmountTaxable": "422.00", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "8.44", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "2", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "2", + "NetAmountTaxable": "422.00", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "5", + "name": "Dukes Basketball Camp", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "82" + }, + "Line1": "Peter Dukes", + "Line2": "Dukes Basketball Camp", + "Line3": "25 Court St.", + "Line4": "Tucson, AZ 85719", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "32.2546522", + "Long": "-110.9447027", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "6" + }, + "Line1": "25 Court St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Tucson", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "AZ", + "PostalCode": "85719", + "PostalCodeSuffix": null, + "Lat": "32.2841116", + "Long": "-110.9744298", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-05-12", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "460.40", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Dukes_bball@intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "0", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "68" + }, + "SyncToken": "1", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-29T12:41:24-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T13:25:43-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1022", + "TxnDate": "2024-05-08", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": null, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Weekly Gardening Service", + "Amount": "75.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "6", + "name": "Gardening", + "type": null + }, + "ClassRef": null, + "UnitPrice": "25", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "3", + "UOMRef": null, + "ItemAccountRef": { + "value": "45", + "name": "Landscaping Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "75.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": { + "value": "2", + "name": null, + "type": null + }, + "TotalTax": "6.00", + "TaxReviewStatus": null, + "TaxLine": { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "6.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "3", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "8", + "NetAmountTaxable": "75.00", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "12", + "name": "Jeff's Jalopies", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "75" + }, + "Line1": "Jeff Chin", + "Line2": "Jeff's Jalopies", + "Line3": "12 Willow Rd.", + "Line4": "Menlo Park, CA 94305", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "37.4135757", + "Long": "-122.1689284", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "12" + }, + "Line1": "12 Willow Rd.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Menlo Park", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94305", + "PostalCodeSuffix": null, + "Lat": "37.4495308", + "Long": "-122.1726923", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-07", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "81.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Jalopies@intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "81.00", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "9" + }, + "SyncToken": "3", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-27T14:49:30-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T13:25:20-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1001", + "TxnDate": "2024-05-27", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": "Front yard, hedges, and sidewalks", + "TxnStatus": null, + "LinkedTxn": { + "TxnId": { + "value": "31" + }, + "TxnType": "Payment", + "TxnLineId": null + }, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Weekly Gardening Service", + "Amount": "100.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "6", + "name": "Gardening", + "type": null + }, + "ClassRef": null, + "UnitPrice": "25", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "4", + "UOMRef": null, + "ItemAccountRef": { + "value": "45", + "name": "Landscaping Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "100.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": { + "value": "2", + "name": null, + "type": null + }, + "TotalTax": "8.00", + "TaxReviewStatus": null, + "TaxLine": { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "8.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "3", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "8", + "NetAmountTaxable": "100.00", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "1", + "name": "Amy's Bird Sanctuary", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "47" + }, + "Line1": "Amy Lauterbach", + "Line2": "Amy's Bird Sanctuary", + "Line3": "4581 Finch St.", + "Line4": "Bayshore, CA 94326", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "2" + }, + "Line1": "4581 Finch St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Bayshore", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94326", + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-26", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "108.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NotSet" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Birds@Intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "0", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "13" + }, + "SyncToken": "2", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-27T15:05:48-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T13:23:52-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1005", + "TxnDate": "2024-05-21", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": { + "TxnId": { + "value": "33" + }, + "TxnType": "Payment", + "TxnLineId": null + }, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Weekly Gardening Service", + "Amount": "50.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "6", + "name": "Gardening", + "type": null + }, + "ClassRef": null, + "UnitPrice": "25", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "2", + "UOMRef": null, + "ItemAccountRef": { + "value": "45", + "name": "Landscaping Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "50.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": { + "value": "2", + "name": null, + "type": null + }, + "TotalTax": "4.00", + "TaxReviewStatus": null, + "TaxLine": { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "4.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "3", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "8", + "NetAmountTaxable": "50.00", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "9", + "name": "55 Twin Lane", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "51" + }, + "Line1": "Amelia", + "Line2": "Freeman Sporting Goods", + "Line3": "370 Easy St.", + "Line4": "Middlefield, CA 94482", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "9" + }, + "Line1": "370 Easy St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Middlefield", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94482", + "PostalCodeSuffix": null, + "Lat": "37.4031672", + "Long": "-122.0642815", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-20", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "54.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Sporting_goods@intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "4.00", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "14" + }, + "SyncToken": "3", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-27T15:06:59-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T13:23:11-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1006", + "TxnDate": "2024-04-21", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": { + "TxnId": { + "value": "15" + }, + "TxnType": "Payment", + "TxnLineId": null + }, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Weekly Gardening Service", + "Amount": "80.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "6", + "name": "Gardening", + "type": null + }, + "ClassRef": null, + "UnitPrice": "20", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "4", + "UOMRef": null, + "ItemAccountRef": { + "value": "45", + "name": "Landscaping Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "80.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": { + "value": "2", + "name": null, + "type": null + }, + "TotalTax": "6.40", + "TaxReviewStatus": null, + "TaxLine": { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "6.40", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "3", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "8", + "NetAmountTaxable": "80.00", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "9", + "name": "55 Twin Lane", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "52" + }, + "Line1": "Amelia", + "Line2": "Freeman Sporting Goods", + "Line3": "370 Easy St.", + "Line4": "Middlefield, CA 94482", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "9" + }, + "Line1": "370 Easy St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Middlefield", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94482", + "PostalCodeSuffix": null, + "Lat": "37.4031672", + "Long": "-122.0642815", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-05-21", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "86.40", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Sporting_goods@intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "0", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "92" + }, + "SyncToken": "1", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-29T13:22:13-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T13:22:27-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1028", + "TxnDate": "2024-04-12", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": null, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Weekly Gardening Service", + "Amount": "75.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "6", + "name": "Gardening", + "type": null + }, + "ClassRef": null, + "UnitPrice": "25", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "3", + "UOMRef": null, + "ItemAccountRef": { + "value": "45", + "name": "Landscaping Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "75.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": { + "value": "2", + "name": null, + "type": null + }, + "TotalTax": "6.00", + "TaxReviewStatus": null, + "TaxLine": { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "6.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "TaxLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": { + "TaxRateRef": { + "value": "3", + "name": null, + "type": null + }, + "PercentBased": "true", + "TaxPercent": "8", + "NetAmountTaxable": "75.00", + "TaxInclusiveAmount": null, + "OverrideDeltaAmount": null, + "ServiceDate": null, + "TaxLineDetailEx": null + }, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "9", + "name": "55 Twin Lane", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "81" + }, + "Line1": "Amelia", + "Line2": "Freeman Sporting Goods", + "Line3": "370 Easy St.", + "Line4": "Middlefield, CA 94482", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "9" + }, + "Line1": "370 Easy St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Middlefield", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94482", + "PostalCodeSuffix": null, + "Lat": "37.4031672", + "Long": "-122.0642815", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-05-12", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "81.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Sporting_goods@intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "81.00", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "10" + }, + "SyncToken": "2", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-27T14:57:16-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T12:56:01-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1002", + "TxnDate": "2024-02-13", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": { + "TxnId": { + "value": "76" + }, + "TxnType": "Payment", + "TxnLineId": null + }, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Weekly Gardening Service", + "Amount": "140.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "6", + "name": "Gardening", + "type": null + }, + "ClassRef": null, + "UnitPrice": "35", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "4", + "UOMRef": null, + "ItemAccountRef": { + "value": "45", + "name": "Landscaping Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "Pest Control Services", + "Amount": "35.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "10", + "name": "Pest Control", + "type": null + }, + "ClassRef": null, + "UnitPrice": "35", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "1", + "UOMRef": null, + "ItemAccountRef": { + "value": "54", + "name": "Pest Control Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "175.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": null, + "TotalTax": "0", + "TaxReviewStatus": null, + "TaxLine": null, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "2", + "name": "Bill's Windsurf Shop", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "48" + }, + "Line1": "Bill Lucchini", + "Line2": "Bill's Windsurf Shop", + "Line3": "12 Ocean Dr.", + "Line4": "Half Moon Bay, CA 94213", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "ShipAddr": null, + "FreeFormAddress": "false", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-03-14", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "175.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NotSet" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Surf@Intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "0", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "75" + }, + "SyncToken": "0", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-29T12:54:08-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T12:54:08-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1027", + "TxnDate": "2024-04-12", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": null, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Weekly Gardening Service", + "Amount": "50.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "6", + "name": "Gardening", + "type": null + }, + "ClassRef": null, + "UnitPrice": "25", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "2", + "UOMRef": null, + "ItemAccountRef": { + "value": "45", + "name": "Landscaping Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "Pest Control Services", + "Amount": "35.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "10", + "name": "Pest Control", + "type": null + }, + "ClassRef": null, + "UnitPrice": "35", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "1", + "UOMRef": null, + "ItemAccountRef": { + "value": "54", + "name": "Pest Control Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "85.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": null, + "TotalTax": "0", + "TaxReviewStatus": null, + "TaxLine": null, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "2", + "name": "Bill's Windsurf Shop", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "80" + }, + "Line1": "Bill Lucchini", + "Line2": "Bill's Windsurf Shop", + "Line3": "12 Ocean Dr.", + "Line4": "Half Moon Bay, CA 94213", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "ShipAddr": null, + "FreeFormAddress": "false", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-05-12", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "85.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Surf@Intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "85.00", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "71" + }, + "SyncToken": "2", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-29T12:49:30-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T12:51:28-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1025", + "TxnDate": "2024-04-12", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": [ + { + "TxnId": { + "value": "74" + }, + "TxnType": "Payment", + "TxnLineId": null + }, + { + "TxnId": { + "value": "72" + }, + "TxnType": "Payment", + "TxnLineId": null + } + ], + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Weekly Gardening Service", + "Amount": "120.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "6", + "name": "Gardening", + "type": null + }, + "ClassRef": null, + "UnitPrice": "30", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "4", + "UOMRef": null, + "ItemAccountRef": { + "value": "45", + "name": "Landscaping Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "Pest Control Services", + "Amount": "35.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "10", + "name": "Pest Control", + "type": null + }, + "ClassRef": null, + "UnitPrice": "35", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "1", + "UOMRef": null, + "ItemAccountRef": { + "value": "54", + "name": "Pest Control Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "3" + }, + "LineNum": "3", + "Description": "Maintenance & Repair", + "Amount": "50.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "9", + "name": "Maintenance & Repair", + "type": null + }, + "ClassRef": null, + "UnitPrice": "50", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "1", + "UOMRef": null, + "ItemAccountRef": { + "value": "53", + "name": "Landscaping Services:Labor:Maintenance and Repair", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "205.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": null, + "TotalTax": "0", + "TaxReviewStatus": null, + "TaxLine": null, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "1", + "name": "Amy's Bird Sanctuary", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "78" + }, + "Line1": "Amy Lauterbach", + "Line2": "Amy's Bird Sanctuary", + "Line3": "4581 Finch St.", + "Line4": "Bayshore, CA 94326", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "2" + }, + "Line1": "4581 Finch St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Bayshore", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94326", + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-05-12", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "205.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Birds@Intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "0", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "70" + }, + "SyncToken": "0", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-29T12:44:45-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T12:44:45-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1024", + "TxnDate": "2024-03-22", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": null, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Sprinkler Pipes", + "Amount": "48.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "17", + "name": "Sprinkler Pipes", + "type": null + }, + "ClassRef": null, + "UnitPrice": "4", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "12", + "UOMRef": null, + "ItemAccountRef": { + "value": "50", + "name": "Landscaping Services:Job Materials:Sprinklers and Drip Systems", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "Sprinkler Pipes", + "Amount": "60.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "17", + "name": "Sprinkler Pipes", + "type": null + }, + "ClassRef": null, + "UnitPrice": "4", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "15", + "UOMRef": null, + "ItemAccountRef": { + "value": "50", + "name": "Landscaping Services:Job Materials:Sprinklers and Drip Systems", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "3" + }, + "LineNum": "3", + "Description": "Garden Rocks", + "Amount": "48.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "13", + "name": "Rocks", + "type": null + }, + "ClassRef": null, + "UnitPrice": "12", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "4", + "UOMRef": null, + "ItemAccountRef": { + "value": "48", + "name": "Landscaping Services:Job Materials:Fountains and Garden Lighting", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "156.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": null, + "TotalTax": "0", + "TaxReviewStatus": null, + "TaxLine": null, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "20", + "name": "Red Rock Diner", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "77" + }, + "Line1": "Stephanie Martini", + "Line2": "Red Rock Diner", + "Line3": "500 Red Rock Rd.", + "Line4": "Bayshore, CA 94326", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "21" + }, + "Line1": "500 Red Rock Rd.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Bayshore", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94326", + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-04-21", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "156.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NotSet" + }, + "EmailStatus": { + "value": "NeedToSend" + }, + "BillEmail": { + "Id": null, + "Address": "qbwebsamplecompany@yahoo.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "156.00", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": { + "DeliveryType": { + "value": "Email" + }, + "DeliveryTime": null, + "DeliveryErrorType": null + }, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "69" + }, + "SyncToken": "0", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-29T12:42:59-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T12:42:59-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1023", + "TxnDate": "2024-05-28", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": { + "TxnId": { + "value": "46" + }, + "TxnType": "Estimate", + "TxnLineId": null + }, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Pest Control Services", + "Amount": "70.00", + "Received": null, + "LinkedTxn": { + "TxnId": { + "value": "46" + }, + "TxnType": "Estimate", + "TxnLineId": null + }, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "10", + "name": "Pest Control", + "type": null + }, + "ClassRef": null, + "UnitPrice": "35", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "2", + "UOMRef": null, + "ItemAccountRef": { + "value": "54", + "name": "Pest Control Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "70.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": null, + "TotalTax": "0", + "TaxReviewStatus": null, + "TaxLine": null, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "20", + "name": "Red Rock Diner", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "76" + }, + "Line1": "Stephanie Martini", + "Line2": "Red Rock Diner", + "Line3": "500 Red Rock Rd.", + "Line4": "Bayshore, CA 94326", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "21" + }, + "Line1": "500 Red Rock Rd.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Bayshore", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94326", + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-27", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "70.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "qbwebsamplecompany@yahoo.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "70.00", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "65" + }, + "SyncToken": "1", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-28T15:29:27-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-29T12:18:01-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1019", + "TxnDate": "2024-05-28", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": null, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Weekly Gardening Service", + "Amount": "80.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "6", + "name": "Gardening", + "type": null + }, + "ClassRef": null, + "UnitPrice": "20", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "4", + "UOMRef": null, + "ItemAccountRef": { + "value": "45", + "name": "Landscaping Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "TAX", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "80.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": null, + "TotalTax": "0", + "TaxReviewStatus": null, + "TaxLine": null, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "25", + "name": "Sushi by Katsuyuki", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "72" + }, + "Line1": "Katsuyuki Yanagawa", + "Line2": "Sushi by Katsuyuki", + "Line3": "898 Elm St.", + "Line4": "Maplewood, NJ 07040", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "40.7312956", + "Long": "-74.2707509", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "26" + }, + "Line1": "898 Elm St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Maplewood", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "NJ", + "PostalCode": "07040", + "PostalCodeSuffix": null, + "Lat": "40.7312816", + "Long": "-74.2652908", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-27", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "80.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Sushi@intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "80.00", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "64" + }, + "SyncToken": "0", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-28T15:29:00-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-28T15:29:00-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1018", + "TxnDate": "2024-05-21", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": null, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Weekly Gardening Service", + "Amount": "80.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "6", + "name": "Gardening", + "type": null + }, + "ClassRef": null, + "UnitPrice": "20", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "4", + "UOMRef": null, + "ItemAccountRef": { + "value": "45", + "name": "Landscaping Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "80.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": null, + "TotalTax": "0", + "TaxReviewStatus": null, + "TaxLine": null, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "25", + "name": "Sushi by Katsuyuki", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "71" + }, + "Line1": "Katsuyuki Yanagawa", + "Line2": "Sushi by Katsuyuki", + "Line3": "898 Elm St.", + "Line4": "Maplewood, NJ 07040", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "40.7312956", + "Long": "-74.2707509", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "26" + }, + "Line1": "898 Elm St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Maplewood", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "NJ", + "PostalCode": "07040", + "PostalCodeSuffix": null, + "Lat": "40.7312816", + "Long": "-74.2652908", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-20", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "80.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Sushi@intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "80.00", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "60" + }, + "SyncToken": "0", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-28T15:18:18-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-28T15:18:18-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1016", + "TxnDate": "2024-04-11", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": null, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Weekly Gardening Service", + "Amount": "75.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "6", + "name": "Gardening", + "type": null + }, + "ClassRef": null, + "UnitPrice": "25", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "3", + "UOMRef": null, + "ItemAccountRef": { + "value": "45", + "name": "Landscaping Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "75.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": null, + "TotalTax": "0", + "TaxReviewStatus": null, + "TaxLine": null, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "16", + "name": "Kookies by Kathy", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "69" + }, + "Line1": "Kathy Kuplis", + "Line2": "Kookies by Kathy", + "Line3": "789 Sugar Lane", + "Line4": "Middlefield, CA 94303", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "37.4530553", + "Long": "-122.1178261", + "Tag": null, + "Note": null + }, + "ShipAddr": null, + "FreeFormAddress": "false", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-05-11", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "75.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NotSet" + }, + "EmailStatus": { + "value": "NeedToSend" + }, + "BillEmail": { + "Id": null, + "Address": "qbwebsamplecompany@yahoo.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "75.00", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": { + "DeliveryType": { + "value": "Email" + }, + "DeliveryTime": null, + "DeliveryErrorType": null + }, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "49" + }, + "SyncToken": "0", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-28T11:43:20-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-28T11:43:20-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1015", + "TxnDate": "2024-05-28", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": { + "TxnId": { + "value": "48" + }, + "TxnType": "Estimate", + "TxnLineId": null + }, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Custom Design", + "Amount": "300.00", + "Received": null, + "LinkedTxn": { + "TxnId": { + "value": "48" + }, + "TxnType": "Estimate", + "TxnLineId": null + }, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "4", + "name": "Design", + "type": null + }, + "ClassRef": null, + "UnitPrice": "75", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "4", + "UOMRef": null, + "ItemAccountRef": { + "value": "82", + "name": "Design income", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "Installation of landscape design", + "Amount": "250.00", + "Received": null, + "LinkedTxn": { + "TxnId": { + "value": "48" + }, + "TxnType": "Estimate", + "TxnLineId": null + }, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "7", + "name": "Installation", + "type": null + }, + "ClassRef": null, + "UnitPrice": "50", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "5", + "UOMRef": null, + "ItemAccountRef": { + "value": "52", + "name": "Landscaping Services:Labor:Installation", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "3" + }, + "LineNum": "3", + "Description": "Rock Fountain", + "Amount": "275.00", + "Received": null, + "LinkedTxn": { + "TxnId": { + "value": "48" + }, + "TxnType": "Estimate", + "TxnLineId": null + }, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "5", + "name": "Rock Fountain", + "type": null + }, + "ClassRef": null, + "UnitPrice": "275", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "1", + "UOMRef": null, + "ItemAccountRef": { + "value": "48", + "name": "Landscaping Services:Job Materials:Fountains and Garden Lighting", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "4" + }, + "LineNum": "4", + "Description": "Garden Rocks", + "Amount": "180.00", + "Received": null, + "LinkedTxn": { + "TxnId": { + "value": "48" + }, + "TxnType": "Estimate", + "TxnLineId": null + }, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "13", + "name": "Rocks", + "type": null + }, + "ClassRef": null, + "UnitPrice": "22.5", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "8", + "UOMRef": null, + "ItemAccountRef": { + "value": "48", + "name": "Landscaping Services:Job Materials:Fountains and Garden Lighting", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "1005.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "50.25", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "DiscountLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": { + "DiscountRef": null, + "PercentBased": "true", + "DiscountPercent": "5", + "DiscountAccountRef": { + "value": "86", + "name": "Discounts given", + "type": null + }, + "ServiceDate": null, + "ClassRef": null, + "TaxCodeRef": null, + "DiscountLineDetailEx": null + }, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": null, + "TotalTax": "0", + "TaxReviewStatus": null, + "TaxLine": null, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "18", + "name": "Paulsen Medical Supplies", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "68" + }, + "Line1": "Kathy Paulsen", + "Line2": "Paulsen Medical Supplies", + "Line3": "900 Main St.", + "Line4": "Middlefield, CA 94303", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "37.4530553", + "Long": "-122.1178261", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "19" + }, + "Line1": "38921 S. Boise Ave", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Middlefield", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94304", + "PostalCodeSuffix": null, + "Lat": "37.3989376", + "Long": "-122.1443935", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-27", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "954.75", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NotSet" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Medical@intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "954.75", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "27" + }, + "SyncToken": "1", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-27T15:38:07-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-28T11:17:33-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1009", + "TxnDate": "2024-05-27", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": [ + { + "TxnId": { + "value": "26" + }, + "TxnType": "ReimburseCharge", + "TxnLineId": null + }, + { + "TxnId": { + "value": "40" + }, + "TxnType": "Payment", + "TxnLineId": null + } + ], + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Lumber", + "Amount": "103.55", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "1", + "name": "Services", + "type": null + }, + "ClassRef": null, + "UnitPrice": null, + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": { + "PercentBased": "false", + "Value": "103.55", + "Percent": null, + "PriceLevelRef": null, + "MarkUpIncomeAccountRef": { + "value": "1", + "name": "Services", + "type": null + } + }, + "Qty": null, + "UOMRef": null, + "ItemAccountRef": { + "value": "1", + "name": "Services", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": "2024-05-27", + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "103.55", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": null, + "TotalTax": "0", + "TaxReviewStatus": null, + "TaxLine": null, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "26", + "name": "Travis Waldron", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "55" + }, + "Line1": "Travis Waldron", + "Line2": "78 First St.", + "Line3": "Monlo Park, CA 94304", + "Line4": null, + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "37.3813444", + "Long": "-122.1802812", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "27" + }, + "Line1": "78 First St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Monlo Park", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94304", + "PostalCodeSuffix": null, + "Lat": "37.4585825", + "Long": "-122.1352789", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-26", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "103.55", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "Travis@Waldron.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "0", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "39" + }, + "SyncToken": "0", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-28T11:16:52-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-28T11:16:52-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1012", + "TxnDate": "2024-05-16", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": null, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Sprinkler Heads", + "Amount": "30.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "16", + "name": "Sprinkler Heads", + "type": null + }, + "ClassRef": null, + "UnitPrice": "2", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "15", + "UOMRef": null, + "ItemAccountRef": { + "value": "50", + "name": "Landscaping Services:Job Materials:Sprinklers and Drip Systems", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": { + "value": "2" + }, + "LineNum": "2", + "Description": "Rock Fountain", + "Amount": "275.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "5", + "name": "Rock Fountain", + "type": null + }, + "ClassRef": null, + "UnitPrice": "275", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "1", + "UOMRef": null, + "ItemAccountRef": { + "value": "48", + "name": "Landscaping Services:Job Materials:Fountains and Garden Lighting", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "305.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "30.50", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "DiscountLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": { + "DiscountRef": null, + "PercentBased": "true", + "DiscountPercent": "10", + "DiscountAccountRef": { + "value": "86", + "name": "Discounts given", + "type": null + }, + "ServiceDate": null, + "ClassRef": null, + "TaxCodeRef": null, + "DiscountLineDetailEx": null + }, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": null, + "TotalTax": "0", + "TaxReviewStatus": null, + "TaxLine": null, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "23", + "name": "Barnett Design", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "58" + }, + "Line1": "Shara Barnett", + "Line2": "Barnett Design", + "Line3": "19 Main St.", + "Line4": "Middlefield, CA 94303", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "37.4530553", + "Long": "-122.1178261", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "24" + }, + "Line1": "19 Main St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Middlefield", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94303", + "PostalCodeSuffix": null, + "Lat": "37.445013", + "Long": "-122.1391443", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-15", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "274.50", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NeedToSend" + }, + "BillEmail": { + "Id": null, + "Address": "Design@intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "274.50", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": { + "DeliveryType": { + "value": "Email" + }, + "DeliveryTime": null, + "DeliveryErrorType": null + }, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "34" + }, + "SyncToken": "0", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-28T11:09:08-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-28T11:09:08-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1010", + "TxnDate": "2024-05-28", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": null, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Custom Design", + "Amount": "375.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "4", + "name": "Design", + "type": null + }, + "ClassRef": null, + "UnitPrice": "75", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "5", + "UOMRef": null, + "ItemAccountRef": { + "value": "82", + "name": "Design income", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "375.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": null, + "TotalTax": "0", + "TaxReviewStatus": null, + "TaxLine": null, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "29", + "name": "Weiskopf Consulting", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "56" + }, + "Line1": "Nicola Weiskopf", + "Line2": "Weiskopf Consulting", + "Line3": "45612 Main St.", + "Line4": "Bayshore, CA 94326", + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "INVALID", + "Long": "INVALID", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "30" + }, + "Line1": "45612 Main St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Bayshore", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94326", + "PostalCodeSuffix": null, + "Lat": "45.256574", + "Long": "-66.0943698", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-27", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "375.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NotSet" + }, + "EmailStatus": { + "value": "NeedToSend" + }, + "BillEmail": { + "Id": null, + "Address": "Consulting@intuit.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "375.00", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": { + "DeliveryType": { + "value": "Email" + }, + "DeliveryTime": null, + "DeliveryErrorType": null + }, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + }, + { + "Id": { + "value": "16" + }, + "SyncToken": "1", + "MetaData": { + "CreatedByRef": null, + "CreateTime": "2024-05-27T15:10:40-07:00", + "LastModifiedByRef": { + "value": "9341452606525892", + "name": null, + "type": null + }, + "LastUpdatedTime": "2024-05-28T11:06:49-07:00", + "LastChangedInQB": null, + "Synchronized": null + }, + "CustomField": null, + "AttachableRef": null, + "domain": null, + "status": null, + "sparse": null, + "DocNumber": "1007", + "TxnDate": "2024-05-05", + "DepartmentRef": null, + "CurrencyRef": { + "value": "USD", + "name": "United States Dollar", + "type": null + }, + "ExchangeRate": null, + "PrivateNote": null, + "TxnStatus": null, + "LinkedTxn": { + "TxnId": { + "value": "32" + }, + "TxnType": "Payment", + "TxnLineId": null + }, + "Line": [ + { + "Id": { + "value": "1" + }, + "LineNum": "1", + "Description": "Custom Design", + "Amount": "750.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SalesItemLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": { + "ItemRef": { + "value": "4", + "name": "Design", + "type": null + }, + "ClassRef": null, + "UnitPrice": "75", + "RatePercent": null, + "PriceLevelRef": null, + "MarkupInfo": null, + "Qty": "10", + "UOMRef": null, + "ItemAccountRef": { + "value": "82", + "name": "Design income", + "type": null + }, + "InventorySiteRef": null, + "TaxCodeRef": { + "value": "NON", + "name": null, + "type": null + }, + "TaxClassificationRef": null, + "ServiceDate": null, + "TaxInclusiveAmt": null, + "DiscountRate": null, + "DiscountAmt": null, + "DeferredRevenue": null, + "SalesItemLineDetailEx": null + }, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": null, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + }, + { + "Id": null, + "LineNum": null, + "Description": null, + "Amount": "750.00", + "Received": null, + "LinkedTxn": null, + "DetailType": { + "value": "SubTotalLineDetail" + }, + "PaymentLineDetail": null, + "DiscountLineDetail": null, + "TaxLineDetail": null, + "SalesItemLineDetail": null, + "DescriptionLineDetail": null, + "ItemBasedExpenseLineDetail": null, + "AccountBasedExpenseLineDetail": null, + "ReimburseLineDetail": null, + "DepositLineDetail": null, + "PurchaseOrderItemLineDetail": null, + "SalesOrderItemLineDetail": null, + "ItemReceiptLineDetail": null, + "JournalEntryLineDetail": null, + "GroupLineDetail": null, + "SubTotalLineDetail": { + "ItemRef": null, + "ServiceDate": null + }, + "TDSLineDetail": null, + "ItemAdjustmentLineDetail": null, + "CustomField": null, + "LineEx": null, + "ProjectRef": null + } + ], + "TxnTaxDetail": { + "DefaultTaxCodeRef": null, + "TxnTaxCodeRef": null, + "TotalTax": "0", + "TaxReviewStatus": null, + "TaxLine": null, + "UseAutomatedSalesTax": null + }, + "TxnSource": null, + "TaxFormType": null, + "TaxFormNum": null, + "TransactionLocationType": null, + "Tag": null, + "TxnApprovalInfo": null, + "RecurDataRef": null, + "RecurringInfo": null, + "ProjectRef": null, + "AutoDocNumber": null, + "CustomerRef": { + "value": "13", + "name": "John Melton", + "type": null + }, + "CustomerMemo": { + "value": "Thank you for your business and have a great day!", + "id": null + }, + "BillAddr": { + "Id": { + "value": "53" + }, + "Line1": "John Melton", + "Line2": "85 Pine St.", + "Line3": "Menlo Park, CA 94304", + "Line4": null, + "Line5": null, + "City": null, + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": null, + "PostalCode": null, + "PostalCodeSuffix": null, + "Lat": "37.3813444", + "Long": "-122.1802812", + "Tag": null, + "Note": null + }, + "ShipAddr": { + "Id": { + "value": "13" + }, + "Line1": "85 Pine St.", + "Line2": null, + "Line3": null, + "Line4": null, + "Line5": null, + "City": "Menlo Park", + "Country": null, + "CountryCode": null, + "County": null, + "CountrySubDivisionCode": "CA", + "PostalCode": "94304", + "PostalCodeSuffix": null, + "Lat": "37.4451342", + "Long": "-122.1409626", + "Tag": null, + "Note": null + }, + "FreeFormAddress": "true", + "ShipFromAddr": null, + "RemitToRef": null, + "ClassRef": null, + "SalesTermRef": { + "value": "3", + "name": "Net 30", + "type": null + }, + "DueDate": "2024-06-04", + "SalesRepRef": null, + "PONumber": null, + "FOB": null, + "ShipMethodRef": null, + "ShipDate": null, + "TrackingNum": null, + "GlobalTaxCalculation": null, + "TotalAmt": "750.00", + "HomeTotalAmt": null, + "ApplyTaxAfterDiscount": "false", + "ShippingTaxIncludedInTotalTax": null, + "TemplateRef": null, + "PrintStatus": { + "value": "NeedToPrint" + }, + "EmailStatus": { + "value": "NotSet" + }, + "BillEmail": { + "Id": null, + "Address": "John@Melton.com", + "Default": null, + "Tag": null + }, + "BillEmailCc": null, + "BillEmailBcc": null, + "ARAccountRef": null, + "Balance": "450.00", + "HomeBalance": null, + "FinanceCharge": null, + "PaymentMethodRef": null, + "PaymentRefNum": null, + "PaymentType": null, + "CheckPayment": null, + "CreditCardPayment": null, + "DepositToAccountRef": null, + "DeliveryInfo": null, + "DiscountRate": null, + "DiscountAmt": null, + "GovtTxnRefIdentifier": null, + "TaxExemptionRef": null, + "Deposit": null, + "AllowIPNPayment": "false", + "AllowOnlinePayment": "false", + "AllowOnlineCreditCardPayment": "false", + "AllowOnlineACHPayment": "false", + "AllowOnlinePayPalPayment": null, + "EInvoiceStatus": null, + "ECloudStatusTimeStamp": null, + "CfdiUse": null, + "Exportation": null, + "GlobalInfo": null, + "invoiceStatus": null, + "callToAction": null, + "invoiceStatusLog": null, + "InvoiceEx": null, + "LessCIS": null, + "InvoiceLink": null, + "PaymentDetailsMessage": null, + "ConvenienceFeeDetail": null, + "InvoiceLinkSecurityCode": null, + "InvoiceLinkExpiryDate": null, + "AutoPayEligible": null, + "SchedulePayEligible": null, + "ScheduledPaymentId": null, + "GratuityEnabled": null, + "FinancingProductType": null, + "SubscriptionPaymentsSetting": null + } +] \ No newline at end of file