mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
Merge pull request #8268 from turbo124/v5-develop
Fixes for translation string in subscriptions
This commit is contained in:
commit
150c341eb5
@ -87,6 +87,9 @@ class CreditCard
|
||||
return $this->paytrace->processUnsuccessfulTransaction($data);
|
||||
}
|
||||
|
||||
nlog("paytrace response createCustomer");
|
||||
nlog($response);
|
||||
|
||||
$cgt = [];
|
||||
$cgt['token'] = $response->customer_id;
|
||||
$cgt['payment_method_id'] = GatewayType::CREDIT_CARD;
|
||||
|
@ -54,7 +54,7 @@ class PurchaseOrderService
|
||||
if (! $this->purchase_order->design_id)
|
||||
$this->purchase_order->design_id = $this->decodePrimaryKey($settings->purchase_order_design_id);
|
||||
|
||||
if (!isset($this->invoice->footer) || empty($this->invoice->footer))
|
||||
if (!isset($this->purchase_order->footer) || empty($this->purchase_order->footer))
|
||||
$this->purchase_order->footer = $settings->purchase_order_footer;
|
||||
|
||||
if (!isset($this->purchase_order->terms) || empty($this->purchase_order->terms))
|
||||
|
@ -209,7 +209,7 @@
|
||||
|
||||
@if($steps['passwordless_login_sent'])
|
||||
<span
|
||||
class="block mt-2 text-sm text-green-600">{{ ctrans('texts.email_sent') }}</span>
|
||||
class="block mt-2 text-sm text-green-600">{!! ctrans('texts.sent') !!}</span>
|
||||
@endif
|
||||
@endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user