This commit is contained in:
David Bomba 2024-01-18 11:53:07 +11:00
parent cc03d28988
commit 29766e6304
5 changed files with 6567 additions and 6559 deletions

View File

@ -1 +1 @@
5.8.11
5.8.12

View File

@ -117,6 +117,14 @@ class Wave extends BaseImport implements ImportInterface
$this->transformer = new InvoiceTransformer($this->company);
foreach($data as $key => $invoice)
{
if(!isset($invoice['Invoice Number']) || empty($invoice['Invoice Number']))
{
unset($data[$key]);
}
}
$invoice_count = $this->ingestInvoices($data, 'Invoice Number');
$this->entity_count['invoices'] = $invoice_count;

View File

@ -17,8 +17,8 @@ return [
'require_https' => env('REQUIRE_HTTPS', true),
'app_url' => rtrim(env('APP_URL', ''), '/'),
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
'app_version' => env('APP_VERSION', '5.8.11'),
'app_tag' => env('APP_TAG', '5.8.11'),
'app_version' => env('APP_VERSION', '5.8.12'),
'app_tag' => env('APP_TAG', '5.8.12'),
'minimum_client_version' => '5.0.16',
'terms_version' => '1.0.1',
'api_secret' => env('API_SECRET', false),

File diff suppressed because it is too large Load Diff

View File

@ -36,7 +36,7 @@
description: 'The currency id of the related invoice'
type: string
example: '1'
expense_currency_id:
currency_id:
description: 'The currency id of the expense'
type: string
example: '2'