Merge pull request #2617 from brkcvn/print
E-mail templates development for Chinese language.
This commit is contained in:
commit
35ddf208be
@ -239,43 +239,43 @@
|
|||||||
<tr>
|
<tr>
|
||||||
@stack('name_th_start')
|
@stack('name_th_start')
|
||||||
@if (! $hideItems || (! $hideName && ! $hideDescription))
|
@if (! $hideItems || (! $hideName && ! $hideDescription))
|
||||||
<th class="item text font-semibold text-alignment-left text-left">
|
<td class="item text font-semibold text-alignment-left text-left">
|
||||||
{{ (trans_choice($textItems, 2) != $textItems) ? trans_choice($textItems, 2) : trans($textItems) }}
|
{{ (trans_choice($textItems, 2) != $textItems) ? trans_choice($textItems, 2) : trans($textItems) }}
|
||||||
</th>
|
</td>
|
||||||
@endif
|
@endif
|
||||||
@stack('name_th_end')
|
@stack('name_th_end')
|
||||||
|
|
||||||
@stack('quantity_th_start')
|
@stack('quantity_th_start')
|
||||||
@if (! $hideQuantity)
|
@if (! $hideQuantity)
|
||||||
<th class="quantity text font-semibold text-alignment-right text-right">
|
<td class="quantity text font-semibold text-alignment-right text-right">
|
||||||
{{ trans($textQuantity) }}
|
{{ trans($textQuantity) }}
|
||||||
</th>
|
</td>
|
||||||
@endif
|
@endif
|
||||||
@stack('quantity_th_end')
|
@stack('quantity_th_end')
|
||||||
|
|
||||||
@stack('price_th_start')
|
@stack('price_th_start')
|
||||||
@if (! $hidePrice)
|
@if (! $hidePrice)
|
||||||
<th class="price text font-semibold text-alignment-right text-right">
|
<td class="price text font-semibold text-alignment-right text-right">
|
||||||
{{ trans($textPrice) }}
|
{{ trans($textPrice) }}
|
||||||
</th>
|
</td>
|
||||||
@endif
|
@endif
|
||||||
@stack('price_th_end')
|
@stack('price_th_end')
|
||||||
|
|
||||||
@if (! $hideDiscount)
|
@if (! $hideDiscount)
|
||||||
@if (in_array(setting('localisation.discount_location', 'total'), ['item', 'both']))
|
@if (in_array(setting('localisation.discount_location', 'total'), ['item', 'both']))
|
||||||
@stack('discount_td_start')
|
@stack('discount_td_start')
|
||||||
<th class="discount text font-semibold text-alignment-right text-right">
|
<td class="discount text font-semibold text-alignment-right text-right">
|
||||||
{{ trans('invoices.discount') }}
|
{{ trans('invoices.discount') }}
|
||||||
</th>
|
</td>
|
||||||
@stack('discount_td_end')
|
@stack('discount_td_end')
|
||||||
@endif
|
@endif
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
@stack('total_th_start')
|
@stack('total_th_start')
|
||||||
@if (! $hideAmount)
|
@if (! $hideAmount)
|
||||||
<th class="total text font-semibold text-alignment-right text-right">
|
<td class="total text font-semibold text-alignment-right text-right">
|
||||||
{{ trans($textAmount) }}
|
{{ trans($textAmount) }}
|
||||||
</th>
|
</td>
|
||||||
@endif
|
@endif
|
||||||
@stack('total_th_end')
|
@stack('total_th_end')
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -200,43 +200,53 @@
|
|||||||
<tr>
|
<tr>
|
||||||
@stack('name_th_start')
|
@stack('name_th_start')
|
||||||
@if (! $hideItems || (! $hideName && ! $hideDescription))
|
@if (! $hideItems || (! $hideName && ! $hideDescription))
|
||||||
<th class="item text font-semibold text-alignment-left text-left text-white border-radius-first">
|
<td class="item text font-semibold text-alignment-left text-left text-white border-radius-first">
|
||||||
{{ (trans_choice($textItems, 2) != $textItems) ? trans_choice($textItems, 2) : trans($textItems) }}
|
<span>
|
||||||
</th>
|
{{ (trans_choice($textItems, 2) != $textItems) ? trans_choice($textItems, 2) : trans($textItems) }}
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
@endif
|
@endif
|
||||||
@stack('name_th_end')
|
@stack('name_th_end')
|
||||||
|
|
||||||
@stack('quantity_th_start')
|
@stack('quantity_th_start')
|
||||||
@if (! $hideQuantity)
|
@if (! $hideQuantity)
|
||||||
<th class="quantity text font-semibold text-alignment-right text-right text-white">
|
<td class="quantity text font-semibold text-alignment-right text-right text-white">
|
||||||
{{ trans($textQuantity) }}
|
<span>
|
||||||
</th>
|
{{ trans($textQuantity) }}
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
@endif
|
@endif
|
||||||
@stack('quantity_th_end')
|
@stack('quantity_th_end')
|
||||||
|
|
||||||
@stack('price_th_start')
|
@stack('price_th_start')
|
||||||
@if (! $hidePrice)
|
@if (! $hidePrice)
|
||||||
<th class="price text font-semibold text-alignment-right text-right text-white">
|
<td class="price text font-semibold text-alignment-right text-right text-white">
|
||||||
{{ trans($textPrice) }}
|
<span>
|
||||||
</th>
|
{{ trans($textPrice) }}
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
@endif
|
@endif
|
||||||
@stack('price_th_end')
|
@stack('price_th_end')
|
||||||
|
|
||||||
@if (! $hideDiscount)
|
@if (! $hideDiscount)
|
||||||
@if (in_array(setting('localisation.discount_location', 'total'), ['item', 'both']))
|
@if (in_array(setting('localisation.discount_location', 'total'), ['item', 'both']))
|
||||||
@stack('discount_td_start')
|
@stack('discount_td_start')
|
||||||
<th class="discount text font-semibold text-alignment-right text-right text-white">
|
<td class="discount text font-semibold text-alignment-right text-right text-white">
|
||||||
{{ trans('invoices.discount') }}
|
<span>
|
||||||
</th>
|
{{ trans('invoices.discount') }}
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
@stack('discount_td_end')
|
@stack('discount_td_end')
|
||||||
@endif
|
@endif
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
@stack('total_th_start')
|
@stack('total_th_start')
|
||||||
@if (! $hideAmount)
|
@if (! $hideAmount)
|
||||||
<th class="total text font-semibold text-white text-alignment-right text-right border-radius-last">
|
<td class="total text font-semibold text-white text-alignment-right text-right border-radius-last">
|
||||||
{{ trans($textAmount) }}
|
<span>
|
||||||
</th>
|
{{ trans($textAmount) }}
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
@endif
|
@endif
|
||||||
@stack('total_th_end')
|
@stack('total_th_end')
|
||||||
</tr>
|
</tr>
|
||||||
@ -337,9 +347,9 @@
|
|||||||
<div class="row mt-4">
|
<div class="row mt-4">
|
||||||
<div class="col-100 text-left">
|
<div class="col-100 text-left">
|
||||||
<div class="text">
|
<div class="text">
|
||||||
<strong>
|
<span class="font-bold">
|
||||||
{!! nl2br($document->footer) !!}
|
{!! nl2br($document->footer) !!}
|
||||||
</strong>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -211,25 +211,25 @@
|
|||||||
<tr>
|
<tr>
|
||||||
@stack('name_th_start')
|
@stack('name_th_start')
|
||||||
@if (! $hideItems || (! $hideName && ! $hideDescription))
|
@if (! $hideItems || (! $hideName && ! $hideDescription))
|
||||||
<th class="item text font-semibold text-alignment-left text-left text-white border-radius-first">
|
<td class="item text font-semibold text-alignment-left text-left text-white border-radius-first">
|
||||||
{{ (trans_choice($textItems, 2) != $textItems) ? trans_choice($textItems, 2) : trans($textItems) }}
|
{{ (trans_choice($textItems, 2) != $textItems) ? trans_choice($textItems, 2) : trans($textItems) }}
|
||||||
</th>
|
</td>
|
||||||
@endif
|
@endif
|
||||||
@stack('name_th_end')
|
@stack('name_th_end')
|
||||||
|
|
||||||
@stack('quantity_th_start')
|
@stack('quantity_th_start')
|
||||||
@if (! $hideQuantity)
|
@if (! $hideQuantity)
|
||||||
<th class="quantity text font-semibold text-white text-alignment-right text-right">
|
<td class="quantity text font-semibold text-white text-alignment-right text-right">
|
||||||
{{ trans($textQuantity) }}
|
{{ trans($textQuantity) }}
|
||||||
</th>
|
</td>
|
||||||
@endif
|
@endif
|
||||||
@stack('quantity_th_end')
|
@stack('quantity_th_end')
|
||||||
|
|
||||||
@stack('price_th_start')
|
@stack('price_th_start')
|
||||||
@if (! $hidePrice)
|
@if (! $hidePrice)
|
||||||
<th class="price text font-semibold text-white text-alignment-right text-right">
|
<td class="price text font-semibold text-white text-alignment-right text-right">
|
||||||
{{ trans($textPrice) }}
|
{{ trans($textPrice) }}
|
||||||
</th>
|
</td>
|
||||||
@endif
|
@endif
|
||||||
@stack('price_th_end')
|
@stack('price_th_end')
|
||||||
|
|
||||||
@ -245,9 +245,9 @@
|
|||||||
|
|
||||||
@stack('total_th_start')
|
@stack('total_th_start')
|
||||||
@if (! $hideAmount)
|
@if (! $hideAmount)
|
||||||
<th class="total text font-semibold text-white text-alignment-right text-right border-radius-last">
|
<td class="total text font-semibold text-white text-alignment-right text-right border-radius-last">
|
||||||
{{ trans($textAmount) }}
|
{{ trans($textAmount) }}
|
||||||
</th>
|
</td>
|
||||||
@endif
|
@endif
|
||||||
@stack('total_th_end')
|
@stack('total_th_end')
|
||||||
</tr>
|
</tr>
|
||||||
@ -348,9 +348,9 @@
|
|||||||
<div class="row mt-7">
|
<div class="row mt-7">
|
||||||
<div class="col-100 py-top p-modern" style="background-color:{{ $backgroundColor }} !important; -webkit-print-color-adjust: exact;">
|
<div class="col-100 py-top p-modern" style="background-color:{{ $backgroundColor }} !important; -webkit-print-color-adjust: exact;">
|
||||||
<div class="text pl-2">
|
<div class="text pl-2">
|
||||||
<strong class="text-white">
|
<span class="text-white font-bold">
|
||||||
{!! nl2br($document->footer) !!}
|
{!! nl2br($document->footer) !!}
|
||||||
</strong>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
<!-- Css -->
|
<!-- Css -->
|
||||||
<link rel="stylesheet" href="{{ asset('public/css/print.css') }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('public/css/print.css') }}" type="text/css">
|
||||||
|
|
||||||
@if (isset($currency_style) && $currency_style && in_array(app()->getLocale(), ['zh-CN', 'ja-JP', 'zh-TW']))
|
@if (isset($currency_style) && $currency_style || in_array(app()->getLocale(), ['zh-CN', 'ja-JP', 'zh-TW']))
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Firefly Sung';
|
font-family: 'Firefly Sung';
|
||||||
|
@ -59,9 +59,9 @@
|
|||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width: 60%; padding: 15px 0 15px 0;">
|
<td style="width: 60%; padding: 15px 0 15px 0;">
|
||||||
<h2 style="font-size: 12px; font-weight:600;">
|
<div class="font-semibold" style="font-size: 12px;">
|
||||||
{{ $textContentTitle != trans_choice($textContentTitle, 1) ? trans_choice($textContentTitle, 1) : trans($textContentTitle) }}
|
{{ $textContentTitle != trans_choice($textContentTitle, 1) ? trans_choice($textContentTitle, 1) : trans($textContentTitle) }}
|
||||||
</h2>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -71,7 +71,7 @@
|
|||||||
@stack('number_input_start')
|
@stack('number_input_start')
|
||||||
@if (! $hideNumber)
|
@if (! $hideNumber)
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans_choice($textNumber, 1) }}
|
{{ trans_choice($textNumber, 1) }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -85,7 +85,7 @@
|
|||||||
@stack('paid_at_input_start')
|
@stack('paid_at_input_start')
|
||||||
@if (! $hidePaidAt)
|
@if (! $hidePaidAt)
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans($textPaidAt) }}
|
{{ trans($textPaidAt) }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -99,7 +99,7 @@
|
|||||||
@stack('account_id_input_start')
|
@stack('account_id_input_start')
|
||||||
@if (! $hideAccount)
|
@if (! $hideAccount)
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans_choice($textAccount, 1) }}
|
{{ trans_choice($textAccount, 1) }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -113,7 +113,7 @@
|
|||||||
@stack('category_id_input_start')
|
@stack('category_id_input_start')
|
||||||
@if (! $hideCategory)
|
@if (! $hideCategory)
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans_choice($textCategory, 1) }}
|
{{ trans_choice($textCategory, 1) }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -127,7 +127,7 @@
|
|||||||
@stack('payment_method_input_start')
|
@stack('payment_method_input_start')
|
||||||
@if (! $hidePaymentMethods)
|
@if (! $hidePaymentMethods)
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans_choice($textPaymentMethods, 1) }}
|
{{ trans_choice($textPaymentMethods, 1) }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -141,7 +141,7 @@
|
|||||||
@stack('reference_input_start')
|
@stack('reference_input_start')
|
||||||
@if (! $hideReference)
|
@if (! $hideReference)
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans($textReference) }}
|
{{ trans($textReference) }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -155,7 +155,7 @@
|
|||||||
@stack('description_input_start')
|
@stack('description_input_start')
|
||||||
@if (! $hideDescription)
|
@if (! $hideDescription)
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans($textDescription) }}
|
{{ trans($textDescription) }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -172,9 +172,9 @@
|
|||||||
<table class="border-top-1" style="margin-top:15px;">
|
<table class="border-top-1" style="margin-top:15px;">
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width: 60%; padding: 15px 0 15px 0;">
|
<td style="width: 60%; padding: 15px 0 15px 0;">
|
||||||
<h2 style="font-size: 12px; font-weight:600;">
|
<div class="font-semibold" style="font-size: 12px;">
|
||||||
{{ trans($textPaidBy) }}
|
{{ trans($textPaidBy) }}
|
||||||
</h2>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -183,8 +183,8 @@
|
|||||||
@if (! $hideContact)
|
@if (! $hideContact)
|
||||||
@if (! $hideContactInfo)
|
@if (! $hideContactInfo)
|
||||||
<tr>
|
<tr>
|
||||||
<td style="margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
<td class="font-semibold" style="margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
<strong>{{ trans($textContactInfo) }}</strong><br>
|
{{ trans($textContactInfo) }}<br>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@endif
|
@endif
|
||||||
@ -192,7 +192,7 @@
|
|||||||
@stack('name_input_start')
|
@stack('name_input_start')
|
||||||
@if (! $hideContactName)
|
@if (! $hideContactName)
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('general.name') }}
|
{{ trans('general.name') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -206,7 +206,7 @@
|
|||||||
@stack('address_input_start')
|
@stack('address_input_start')
|
||||||
@if (! $hideContactAddress)
|
@if (! $hideContactAddress)
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('general.address') }}
|
{{ trans('general.address') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -220,7 +220,7 @@
|
|||||||
@stack('tax_number_input_start')
|
@stack('tax_number_input_start')
|
||||||
@if (! $hideContactTaxNumber)
|
@if (! $hideContactTaxNumber)
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('general.tax_number') }}
|
{{ trans('general.tax_number') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -236,7 +236,7 @@
|
|||||||
@stack('phone_input_start')
|
@stack('phone_input_start')
|
||||||
@if (! $hideContactPhone)
|
@if (! $hideContactPhone)
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('general.phone') }}
|
{{ trans('general.phone') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -252,7 +252,7 @@
|
|||||||
@stack('email_start')
|
@stack('email_start')
|
||||||
@if (! $hideContactEmail)
|
@if (! $hideContactEmail)
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('general.email') }}
|
{{ trans('general.email') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -274,9 +274,9 @@
|
|||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="padding:15px 0 0 0;">
|
<td style="padding:15px 0 0 0;">
|
||||||
<h2 style="font-size: 12px; font-weight:600; margin-bottom: 15px;">
|
<div class="font-semibold" style="font-size: 12px; margin-bottom: 15px;">
|
||||||
{{ trans($textRelatedTransansaction) }}
|
{{ trans($textRelatedTransansaction) }}
|
||||||
</h2>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -284,7 +284,7 @@
|
|||||||
<table class="table" cellspacing="0" cellpadding="0" style="padding:15px 0 0 0;">
|
<table class="table" cellspacing="0" cellpadding="0" style="padding:15px 0 0 0;">
|
||||||
<thead style="color:#424242; font-size:12px;">
|
<thead style="color:#424242; font-size:12px;">
|
||||||
<tr class="border-bottom-1">
|
<tr class="border-bottom-1">
|
||||||
<th class="item text-alignment-left text-left" style="padding:5px 0;">
|
<td class="item text-alignment-left text-left font-semibold" style="padding:5px 0;">
|
||||||
@if (! $hideRelatedDocumentNumber)
|
@if (! $hideRelatedDocumentNumber)
|
||||||
<span style="font-size: 13px;">
|
<span style="font-size: 13px;">
|
||||||
{{ trans_choice($textRelatedDocumentNumber, 1) }}
|
{{ trans_choice($textRelatedDocumentNumber, 1) }}
|
||||||
@ -293,19 +293,19 @@
|
|||||||
@endif
|
@endif
|
||||||
|
|
||||||
@if (! $hideRelatedContact)
|
@if (! $hideRelatedContact)
|
||||||
<span style="font-weight:500;">
|
<span>
|
||||||
{{ trans_choice($textRelatedContact, 1) }}
|
{{ trans_choice($textRelatedContact, 1) }}
|
||||||
</span>
|
</span>
|
||||||
@endif
|
@endif
|
||||||
</th>
|
</td>
|
||||||
|
|
||||||
@if (! $hideRelatedDocumentDate)
|
@if (! $hideRelatedDocumentDate)
|
||||||
<th class="price" style="padding:5px 0; text-align:center;">
|
<td class="price font-semibold" style="padding:5px 0; text-align:center;">
|
||||||
{{ trans($textRelatedDocumentDate) }}
|
{{ trans($textRelatedDocumentDate) }}
|
||||||
</th>
|
</td>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
<th class="price text-alignment-right text-right" style="padding: 5px 0;">
|
<td class="price text-alignment-right text-right font-semibold" style="padding: 5px 0;">
|
||||||
@if (! $hideRelatedDocumentAmount)
|
@if (! $hideRelatedDocumentAmount)
|
||||||
<span style="font-size: 13px;">
|
<span style="font-size: 13px;">
|
||||||
{{ trans($textRelatedDocumentAmount) }}
|
{{ trans($textRelatedDocumentAmount) }}
|
||||||
@ -314,11 +314,11 @@
|
|||||||
@endif
|
@endif
|
||||||
|
|
||||||
@if (! $hideRelatedAmount)
|
@if (! $hideRelatedAmount)
|
||||||
<span style="font-weight:500;">
|
<span>
|
||||||
{{ trans($textRelatedAmount) }}
|
{{ trans($textRelatedAmount) }}
|
||||||
</span>
|
</span>
|
||||||
@endif
|
@endif
|
||||||
</th>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|
||||||
@ -369,7 +369,7 @@
|
|||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="center" style="font-size: 14px; color: #ffffff; padding: 0;">
|
<td valign="center" style="font-size: 14px; color: #ffffff; padding: 0;">
|
||||||
<span class="ml-2" style="font-weight: 600;">{{ trans($textAmount) }}</span>
|
<span class="ml-2 font-semibold">{{ trans($textAmount) }}</span>
|
||||||
@money($transaction->amount, $transaction->currency_code, true)
|
@money($transaction->amount, $transaction->currency_code, true)
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -5,14 +5,14 @@
|
|||||||
@stack('from_account_id_start')
|
@stack('from_account_id_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width: 60%; padding: 0 0 15px 0;">
|
<td style="width: 60%; padding: 0 0 15px 0;">
|
||||||
<h2 class="mb-1" style="font-size: 14px; font-weight:600; margin-bottom: 15px;">
|
<div class="mb-1 font-semibold" style="font-size: 14px; margin-bottom: 15px;">
|
||||||
{{ trans('transfers.from_account') }}
|
{{ trans('transfers.from_account') }}
|
||||||
</h2>
|
</div>
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
@stack('from_account_name_input_start')
|
@stack('from_account_name_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('accounts.account_name') }}
|
{{ trans('accounts.account_name') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -26,7 +26,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('from_account_number_input_start')
|
@stack('from_account_number_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('accounts.number') }}
|
{{ trans('accounts.number') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -41,7 +41,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('from_account_bank_name_input_start')
|
@stack('from_account_bank_name_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('accounts.bank_name') }}
|
{{ trans('accounts.bank_name') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -57,7 +57,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('from_account_phone_input_start')
|
@stack('from_account_phone_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('general.phone') }}
|
{{ trans('general.phone') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -73,7 +73,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('from_account_address_input_start')
|
@stack('from_account_address_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('general.address') }}
|
{{ trans('general.address') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -97,14 +97,14 @@
|
|||||||
@stack('to_account_id_start')
|
@stack('to_account_id_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width: 60%; padding: 0 0 15px 0;">
|
<td style="width: 60%; padding: 0 0 15px 0;">
|
||||||
<h2 class="mb-1" style="font-size: 14px; font-weight:600; margin-bottom: 15px;">
|
<div class="mb-1 font-semibold" style="font-size: 14px; margin-bottom: 15px;">
|
||||||
{{ trans('transfers.to_account') }}
|
{{ trans('transfers.to_account') }}
|
||||||
</h2>
|
</div>
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
@stack('to_account_name_input_start')
|
@stack('to_account_name_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('accounts.account_name') }}
|
{{ trans('accounts.account_name') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -118,7 +118,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('to_account_number_input_start')
|
@stack('to_account_number_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('accounts.number') }}
|
{{ trans('accounts.number') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -133,7 +133,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('to_account_bank_name_input_start')
|
@stack('to_account_bank_name_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('accounts.bank_name') }}
|
{{ trans('accounts.bank_name') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -149,7 +149,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('to_account_phone_input_start')
|
@stack('to_account_phone_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('general.phone') }}
|
{{ trans('general.phone') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -165,7 +165,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('to_account_address_input_start')
|
@stack('to_account_address_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('general.address') }}
|
{{ trans('general.address') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -187,9 +187,9 @@
|
|||||||
<table style="margin-top:15px;">
|
<table style="margin-top:15px;">
|
||||||
<tr>
|
<tr>
|
||||||
<td style="padding:0 0 15px 0;">
|
<td style="padding:0 0 15px 0;">
|
||||||
<h2 class="text-left text-uppercase" style="font-size: 14px; font-weight:600;">
|
<div class="text-left text-uppercase font-semibold" style="font-size: 14px;">
|
||||||
{{ trans_choice('transfers.details', 2) }}
|
{{ trans_choice('transfers.details', 2) }}
|
||||||
</h2>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -197,7 +197,7 @@
|
|||||||
<table class="border-bottom-1" style="padding-bottom:15px;">
|
<table class="border-bottom-1" style="padding-bottom:15px;">
|
||||||
@stack('transferred_at_input_start')
|
@stack('transferred_at_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('general.date') }}
|
{{ trans('general.date') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -209,7 +209,7 @@
|
|||||||
|
|
||||||
@stack('payment_method_input_start')
|
@stack('payment_method_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans_choice('general.payment_methods', 1) }}
|
{{ trans_choice('general.payment_methods', 1) }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -225,7 +225,7 @@
|
|||||||
|
|
||||||
@stack('reference_input_start')
|
@stack('reference_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('general.reference') }}
|
{{ trans('general.reference') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -237,7 +237,7 @@
|
|||||||
|
|
||||||
@stack('description_input_start')
|
@stack('description_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px; font-weight:600;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 4px 0 0; font-size: 12px;">
|
||||||
{{ trans('general.description') }}
|
{{ trans('general.description') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -261,11 +261,11 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('amount_input_start')
|
@stack('amount_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="center" style="width: 80%; padding:0; font-size: 14px; font-weight:600; color:#ffffff;">
|
<td valign="center" class="font-semibold" style="padding:0; font-size: 14px; color:#ffffff;">
|
||||||
{{ trans('general.amount') }}
|
<span class="ml-2">
|
||||||
</td>
|
{{ trans('general.amount') }}
|
||||||
|
</span>
|
||||||
|
|
||||||
<td valign="center" style="width: 20%; padding:0; font-size: 14px; color:#ffffff;">
|
|
||||||
<x-money :amount="$transfer->expense_transaction->amount" :currency="$transfer->expense_transaction->currency_code" convert />
|
<x-money :amount="$transfer->expense_transaction->amount" :currency="$transfer->expense_transaction->currency_code" convert />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -3,9 +3,9 @@
|
|||||||
<table style="width: 100%;">
|
<table style="width: 100%;">
|
||||||
<tr>
|
<tr>
|
||||||
<td style="padding:0 0 15px 0;">
|
<td style="padding:0 0 15px 0;">
|
||||||
<h2 class="text-left" style="font-size: 14px; font-weight:600;">
|
<div class="text-left font-semibold" style="font-size: 14px;">
|
||||||
{{ trans_choice('transfers.details', 2) }}
|
{{ trans_choice('transfers.details', 2) }}
|
||||||
</h2>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -13,7 +13,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('transferred_at_input_start')
|
@stack('transferred_at_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 0 8px 0; font-size: 12px; font-weight:600; border-bottom:1px solid #adadad;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 0 8px 0; font-size: 12px; border-bottom:1px solid #adadad;">
|
||||||
{{ trans('general.date') }}
|
{{ trans('general.date') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
@stack('payment_method_input_start')
|
@stack('payment_method_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 0 8px 0; font-size: 12px; font-weight:600; border-bottom:1px solid #adadad;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 0 8px 0; font-size: 12px; border-bottom:1px solid #adadad;">
|
||||||
{{ trans_choice('general.payment_methods', 1) }}
|
{{ trans_choice('general.payment_methods', 1) }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -41,7 +41,7 @@
|
|||||||
|
|
||||||
@stack('reference_input_start')
|
@stack('reference_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 0 8px 0; font-size: 12px; font-weight:600; border-bottom:1px solid #adadad;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 0 8px 0; font-size: 12px; border-bottom:1px solid #adadad;">
|
||||||
{{ trans('general.reference') }}
|
{{ trans('general.reference') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -53,7 +53,7 @@
|
|||||||
|
|
||||||
@stack('description_input_start')
|
@stack('description_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 8px 0 8px 0; font-size: 12px; font-weight:600; border-bottom:1px solid #adadad;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 8px 0 8px 0; font-size: 12px; border-bottom:1px solid #adadad;">
|
||||||
{{ trans('general.description') }}
|
{{ trans('general.description') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -71,14 +71,14 @@
|
|||||||
@stack('from_account_id_start')
|
@stack('from_account_id_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td class="border-bottom-1 border-top-1" style="width: 60%; padding: 15px 0 15px 0;">
|
<td class="border-bottom-1 border-top-1" style="width: 60%; padding: 15px 0 15px 0;">
|
||||||
<h2 class="mb-1" style="font-size: 14px; font-weight:600; margin-bottom: 15px;">
|
<div class="mb-1 font-semibold" style="font-size: 14px; margin-bottom: 15px;">
|
||||||
{{ trans('transfers.from_account') }}
|
{{ trans('transfers.from_account') }}
|
||||||
</h2>
|
</div>
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
@stack('from_account_name_input_start')
|
@stack('from_account_name_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('accounts.account_name') }}
|
{{ trans('accounts.account_name') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -92,7 +92,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('from_account_number_input_start')
|
@stack('from_account_number_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('accounts.number') }}
|
{{ trans('accounts.number') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -107,7 +107,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('from_account_bank_name_input_start')
|
@stack('from_account_bank_name_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('accounts.bank_name') }}
|
{{ trans('accounts.bank_name') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -123,7 +123,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('from_account_phone_input_start')
|
@stack('from_account_phone_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('general.phone') }}
|
{{ trans('general.phone') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -139,7 +139,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('from_account_address_input_start')
|
@stack('from_account_address_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('general.address') }}
|
{{ trans('general.address') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -163,14 +163,14 @@
|
|||||||
@stack('to_account_id_start')
|
@stack('to_account_id_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width: 60%; padding: 0 0 15px 0;">
|
<td style="width: 60%; padding: 0 0 15px 0;">
|
||||||
<h2 class="mb-1" style="font-size: 14px; font-weight:600; margin-bottom: 15px;">
|
<div class="mb-1 font-semibold" style="font-size: 14px; margin-bottom: 15px;">
|
||||||
{{ trans('transfers.to_account') }}
|
{{ trans('transfers.to_account') }}
|
||||||
</h2>
|
</div>
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
@stack('to_account_name_input_start')
|
@stack('to_account_name_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('accounts.number') }}
|
{{ trans('accounts.number') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -184,7 +184,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('to_account_number_input_start')
|
@stack('to_account_number_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('accounts.number') }}
|
{{ trans('accounts.number') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -199,7 +199,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('to_account_bank_name_input_start')
|
@stack('to_account_bank_name_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('accounts.bank_name') }}
|
{{ trans('accounts.bank_name') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -215,7 +215,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('to_account_phone_input_start')
|
@stack('to_account_phone_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('general.phone') }}
|
{{ trans('general.phone') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -231,7 +231,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('to_account_address_input_start')
|
@stack('to_account_address_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('general.address') }}
|
{{ trans('general.address') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -257,11 +257,11 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('amount_input_start')
|
@stack('amount_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="center" style="width: 80%; padding:0; font-size: 14px; font-weight:600;">
|
<td valign="center" class="font-semibold" style="padding:0; font-size: 14px;">
|
||||||
{{ trans('general.amount') }}
|
<span class="ml-2">
|
||||||
</td>
|
{{ trans('general.amount') }}
|
||||||
|
</span>
|
||||||
|
|
||||||
<td valign="center" style="width: 20%; padding:0; font-size: 14px;">
|
|
||||||
<x-money :amount="$transfer->expense_transaction->amount" :currency="$transfer->expense_transaction->currency_code" convert />
|
<x-money :amount="$transfer->expense_transaction->amount" :currency="$transfer->expense_transaction->currency_code" convert />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -9,14 +9,14 @@
|
|||||||
@stack('from_account_id_start')
|
@stack('from_account_id_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="padding:0;">
|
<td style="padding:0;">
|
||||||
<h2 class="mb-1" style="font-size: 14px; font-weight:600; margin-bottom: 15px;">
|
<div class="mb-1 font-semibold" style="font-size: 14px; margin-bottom: 15px;">
|
||||||
{{ trans('transfers.from_account') }}
|
{{ trans('transfers.from_account') }}
|
||||||
</h2>
|
</div>
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
@stack('from_account_name_input_start')
|
@stack('from_account_name_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('accounts.account_name') }}
|
{{ trans('accounts.account_name') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -30,7 +30,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('from_account_number_input_start')
|
@stack('from_account_number_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('accounts.number') }}
|
{{ trans('accounts.number') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -45,7 +45,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('from_account_bank_name_input_start')
|
@stack('from_account_bank_name_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('accounts.bank_name') }}
|
{{ trans('accounts.bank_name') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -61,7 +61,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('from_account_phone_input_start')
|
@stack('from_account_phone_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('general.phone') }}
|
{{ trans('general.phone') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -77,7 +77,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('from_account_address_input_start')
|
@stack('from_account_address_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('general.address') }}
|
{{ trans('general.address') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -103,14 +103,14 @@
|
|||||||
@stack('to_account_id_start')
|
@stack('to_account_id_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="padding:0;">
|
<td style="padding:0;">
|
||||||
<h2 class="mb-1" style="font-size: 14px; font-weight:600; margin-bottom: 15px;">
|
<div class="mb-1 font-semibold" style="font-size: 14px; margin-bottom: 15px;">
|
||||||
{{ trans('transfers.to_account') }}
|
{{ trans('transfers.to_account') }}
|
||||||
</h2>
|
</div>
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
@stack('to_account_name_input_start')
|
@stack('to_account_name_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('accounts.account_name') }}
|
{{ trans('accounts.account_name') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -124,7 +124,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('to_account_number_input_start')
|
@stack('to_account_number_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('accounts.number') }}
|
{{ trans('accounts.number') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -139,7 +139,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('to_account_bank_name_input_start')
|
@stack('to_account_bank_name_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('accounts.bank_name') }}
|
{{ trans('accounts.bank_name') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -155,7 +155,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('to_account_phone_input_start')
|
@stack('to_account_phone_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('general.phone') }}
|
{{ trans('general.phone') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -171,7 +171,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('to_account_address_input_start')
|
@stack('to_account_address_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
|
<td class="font-semibold" style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
|
||||||
{{ trans('general.address') }}
|
{{ trans('general.address') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -197,9 +197,9 @@
|
|||||||
<table style="width: 100%; margin-top:15px;">
|
<table style="width: 100%; margin-top:15px;">
|
||||||
<tr>
|
<tr>
|
||||||
<td style="padding:0 0 15px 0;">
|
<td style="padding:0 0 15px 0;">
|
||||||
<h2 class="text-left text-uppercase" style="font-size: 14px; font-weight:600;">
|
<div class="text-left text-uppercase font-semibold" style="font-size: 14px;">
|
||||||
{{ trans_choice('transfers.details', 2) }}
|
{{ trans_choice('transfers.details', 2) }}
|
||||||
</h2>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -207,7 +207,7 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('transferred_at_input_start')
|
@stack('transferred_at_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 0; font-size: 12px; font-weight:600; line-height: 24px;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 0; font-size: 12px; line-height: 24px;">
|
||||||
{{ trans('general.date') }}
|
{{ trans('general.date') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -219,7 +219,7 @@
|
|||||||
|
|
||||||
@stack('payment_method_input_start')
|
@stack('payment_method_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 0; font-size: 12px; font-weight:600; line-height: 24px;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 0; font-size: 12px; line-height: 24px;">
|
||||||
{{ trans_choice('general.payment_methods', 1) }}
|
{{ trans_choice('general.payment_methods', 1) }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -235,7 +235,7 @@
|
|||||||
|
|
||||||
@stack('reference_input_start')
|
@stack('reference_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 0; font-size: 12px; font-weight:600; line-height: 24px;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 0; font-size: 12px; line-height: 24px;">
|
||||||
{{ trans('general.reference') }}
|
{{ trans('general.reference') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -247,7 +247,7 @@
|
|||||||
|
|
||||||
@stack('description_input_start')
|
@stack('description_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" style="width: 30%; margin: 0px; padding: 0; font-size: 12px; font-weight:600; line-height: 24px;">
|
<td valign="top" class="font-semibold" style="width: 30%; margin: 0px; padding: 0; font-size: 12px; line-height: 24px;">
|
||||||
{{ trans('general.description') }}
|
{{ trans('general.description') }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -271,11 +271,11 @@
|
|||||||
<table>
|
<table>
|
||||||
@stack('amount_input_start')
|
@stack('amount_input_start')
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="center" style="width: 80%; padding:0; font-size: 14px; font-weight:600;">
|
<td valign="center" class="font-semibold" style="width: 80%; padding:0; font-size: 14px;">
|
||||||
{{ trans('general.amount') }}
|
<span class="ml-2">
|
||||||
</td>
|
{{ trans('general.amount') }}
|
||||||
|
</span>
|
||||||
|
|
||||||
<td valign="center" style="width: 20%; padding:0; font-size: 14px;">
|
|
||||||
<x-money :amount="$transfer->expense_transaction->amount" :currency="$transfer->expense_transaction->currency_code" convert />
|
<x-money :amount="$transfer->expense_transaction->amount" :currency="$transfer->expense_transaction->currency_code" convert />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user