mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-09 04:44:36 -04: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);
|
return $this->paytrace->processUnsuccessfulTransaction($data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
nlog("paytrace response createCustomer");
|
||||||
|
nlog($response);
|
||||||
|
|
||||||
$cgt = [];
|
$cgt = [];
|
||||||
$cgt['token'] = $response->customer_id;
|
$cgt['token'] = $response->customer_id;
|
||||||
$cgt['payment_method_id'] = GatewayType::CREDIT_CARD;
|
$cgt['payment_method_id'] = GatewayType::CREDIT_CARD;
|
||||||
|
@ -54,7 +54,7 @@ class PurchaseOrderService
|
|||||||
if (! $this->purchase_order->design_id)
|
if (! $this->purchase_order->design_id)
|
||||||
$this->purchase_order->design_id = $this->decodePrimaryKey($settings->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;
|
$this->purchase_order->footer = $settings->purchase_order_footer;
|
||||||
|
|
||||||
if (!isset($this->purchase_order->terms) || empty($this->purchase_order->terms))
|
if (!isset($this->purchase_order->terms) || empty($this->purchase_order->terms))
|
||||||
|
@ -209,7 +209,7 @@
|
|||||||
|
|
||||||
@if($steps['passwordless_login_sent'])
|
@if($steps['passwordless_login_sent'])
|
||||||
<span
|
<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
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user