mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
commit
dc54167543
@ -1 +1 @@
|
||||
5.3.70
|
||||
5.3.71
|
@ -237,6 +237,7 @@ class CreditCard
|
||||
{
|
||||
$amount = array_sum(array_column($payment_hash->invoices(), 'amount')) + $payment_hash->fee_total;
|
||||
|
||||
$invoice_numbers = '';
|
||||
|
||||
if($this->eway_driver->payment_hash->data)
|
||||
$invoice_numbers = collect($this->eway_driver->payment_hash->data->invoices)->pluck('invoice_number')->implode(',');
|
||||
@ -251,7 +252,6 @@ class CreditCard
|
||||
'TotalAmount' => $this->convertAmountForEway($amount),
|
||||
'CurrencyCode' => $this->eway_driver->client->currency()->code,
|
||||
'InvoiceNumber' => $invoice_numbers,
|
||||
'InvoiceDescription' => $description,
|
||||
'InvoiceReference' => $description,
|
||||
],
|
||||
'TransactionType' => \Eway\Rapid\Enum\TransactionType::RECURRING,
|
||||
|
@ -187,7 +187,7 @@ class SystemHealth
|
||||
config(['database.connections.mysql.password' => $request->input('db_password')]);
|
||||
config(['database.default' => 'mysql']);
|
||||
|
||||
DB::purge('db-ninja-01');
|
||||
DB::purge('mysql');
|
||||
}
|
||||
|
||||
if (!config('ninja.db.multi_db_enabled')) {
|
||||
|
@ -14,8 +14,8 @@ return [
|
||||
'require_https' => env('REQUIRE_HTTPS', true),
|
||||
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
||||
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
||||
'app_version' => '5.3.70',
|
||||
'app_tag' => '5.3.70',
|
||||
'app_version' => '5.3.71',
|
||||
'app_tag' => '5.3.71',
|
||||
'minimum_client_version' => '5.0.16',
|
||||
'terms_version' => '1.0.1',
|
||||
'api_secret' => env('API_SECRET', ''),
|
||||
|
Loading…
Reference in New Issue
Block a user