mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
V5.8.12
This commit is contained in:
parent
cc03d28988
commit
29766e6304
@ -1 +1 @@
|
||||
5.8.11
|
||||
5.8.12
|
@ -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;
|
||||
|
@ -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),
|
||||
|
13110
openapi/api-docs.yaml
13110
openapi/api-docs.yaml
File diff suppressed because it is too large
Load Diff
@ -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'
|
||||
|
Loading…
x
Reference in New Issue
Block a user