mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
Added and removed extra lables from activity messages
This commit is contained in:
parent
df3a103825
commit
b111adaf17
@ -173,6 +173,7 @@ class PublicClientController extends BaseController
|
|||||||
foreach ($paymentMethods as $paymentMethod) {
|
foreach ($paymentMethods as $paymentMethod) {
|
||||||
if ($paymentMethod->payment_type_id != PAYMENT_TYPE_ACH || $paymentMethod->status == PAYMENT_METHOD_STATUS_VERIFIED) {
|
if ($paymentMethod->payment_type_id != PAYMENT_TYPE_ACH || $paymentMethod->status == PAYMENT_METHOD_STATUS_VERIFIED) {
|
||||||
$code = htmlentities(str_replace(' ', '', strtolower($paymentMethod->payment_type->name)));
|
$code = htmlentities(str_replace(' ', '', strtolower($paymentMethod->payment_type->name)));
|
||||||
|
$html = '';
|
||||||
|
|
||||||
if ($paymentMethod->payment_type_id == PAYMENT_TYPE_ACH) {
|
if ($paymentMethod->payment_type_id == PAYMENT_TYPE_ACH) {
|
||||||
if($paymentMethod->bank_data) {
|
if($paymentMethod->bank_data) {
|
||||||
@ -321,9 +322,9 @@ class PublicClientController extends BaseController
|
|||||||
$data = [
|
$data = [
|
||||||
'client' => Utils::getClientDisplayName($model),
|
'client' => Utils::getClientDisplayName($model),
|
||||||
'user' => $model->is_system ? ('<i>' . trans('texts.system') . '</i>') : ($model->user_first_name . ' ' . $model->user_last_name),
|
'user' => $model->is_system ? ('<i>' . trans('texts.system') . '</i>') : ($model->user_first_name . ' ' . $model->user_last_name),
|
||||||
'invoice' => trans('texts.invoice') . ' ' . $model->invoice,
|
'invoice' => $model->invoice,
|
||||||
'contact' => Utils::getClientDisplayName($model),
|
'contact' => Utils::getClientDisplayName($model),
|
||||||
'payment' => trans('texts.payment') . ($model->payment ? ' ' . $model->payment : ''),
|
'payment' => $model->payment ? ' ' . $model->payment : '',
|
||||||
'credit' => $model->payment_amount ? Utils::formatMoney($model->credit, $model->currency_id, $model->country_id) : '',
|
'credit' => $model->payment_amount ? Utils::formatMoney($model->credit, $model->currency_id, $model->country_id) : '',
|
||||||
'payment_amount' => $model->payment_amount ? Utils::formatMoney($model->payment_amount, $model->currency_id, $model->country_id) : null,
|
'payment_amount' => $model->payment_amount ? Utils::formatMoney($model->payment_amount, $model->currency_id, $model->country_id) : null,
|
||||||
'adjustment' => $model->adjustment ? Utils::formatMoney($model->adjustment, $model->currency_id, $model->country_id) : null,
|
'adjustment' => $model->adjustment ? Utils::formatMoney($model->adjustment, $model->currency_id, $model->country_id) : null,
|
||||||
|
Loading…
Reference in New Issue
Block a user