220 lines
9.2 KiB
PHP
Raw Normal View History

2022-06-14 09:53:44 +03:00
<div class="print-template">
<table class="border-bottom-1" style="width: 100%;">
<tbody>
<tr>
<td style="width: 60%; padding: 0 0 15px 0;">
<h2 class="mb-1" style="font-size: 14px; font-weight:600; margin-bottom: 15px;">
{{ trans('transfers.from_account') }}
</h2>
<table>
<tr>
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
{{ trans('accounts.account_name') }}:
</td>
<td style="width:70%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
{{ $transfer->expense_account->name }}
2022-06-14 09:53:44 +03:00
</td>
</tr>
</table>
<table>
<tr>
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
{{ trans('accounts.number') }}:
</td>
<td style="width:70%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
{{ $transfer->expense_account->number }}
2022-06-14 09:53:44 +03:00
</td>
</tr>
</table>
<table>
<tr>
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
{{ trans('accounts.bank_name') }}:
</td>
<td style="width:70%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
{{ $transfer->expense_account->bank_name }}
2022-06-14 09:53:44 +03:00
</td>
</tr>
</table>
<table>
<tr>
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
{{ trans('general.phone') }}:
</td>
<td style="width:70%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
{{ $transfer->expense_account->bank_phone }}
2022-06-14 09:53:44 +03:00
</td>
</tr>
</table>
<table>
<tr>
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
{{ trans('general.address') }}:
</td>
<td style="width:70%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
{{ $transfer->expense_account->bank_address }}
2022-06-14 09:53:44 +03:00
</td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>
<table class="border-bottom-1" style="width: 100%; margin-top:15px;">
<tbody>
<tr>
<td style="width: 60%; padding: 0 0 15px 0;">
<h2 class="mb-1" style="font-size: 14px; font-weight:600; margin-bottom: 15px;">
{{ trans('transfers.to_account') }}
</h2>
<table>
<tr>
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
{{ trans('accounts.account_name') }}:
</td>
<td style="width:70%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
{{ $transfer->income_account->name }}
2022-06-14 09:53:44 +03:00
</td>
</tr>
</table>
<table>
<tr>
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
{{ trans('accounts.number') }}:
</td>
<td style="width:70%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
{{ $transfer->income_account->number }}
2022-06-14 09:53:44 +03:00
</td>
</tr>
</table>
<table>
<tr>
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
{{ trans('accounts.bank_name') }}:
</td>
<td style="width:70%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
{{ $transfer->income_account->bank_name }}
2022-06-14 09:53:44 +03:00
</td>
</tr>
</table>
<table>
<tr>
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
{{ trans('general.phone') }}:
</td>
<td style="width:70%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
{{ $transfer->income_account->bank_phone }}
2022-06-14 09:53:44 +03:00
</td>
</tr>
</table>
<table>
<tr>
<td style="width:30%; margin: 0px; padding: 0 0 8px 0; font-size: 12px; font-weight:600;">
{{ trans('general.address') }}:
</td>
<td style="width:70%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
{{ $transfer->income_account->bank_address }}
2022-06-14 09:53:44 +03:00
</td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>
<table style="width: 100%; margin-top:15px;">
2022-06-01 10:15:55 +03:00
<tr>
2022-06-14 09:53:44 +03:00
<td style="padding:0 0 15px 0;">
<h2 class="text-left text-uppercase" style="font-size: 14px; font-weight:600;">
{{ trans_choice('transfers.details', 2) }}
2022-06-01 10:15:55 +03:00
</h2>
</td>
</tr>
2022-06-14 09:53:44 +03:00
</table>
2022-06-01 10:15:55 +03:00
2022-06-14 09:53:44 +03:00
<table>
2022-06-01 10:15:55 +03:00
<tr>
2022-06-14 09:53:44 +03:00
<td valign="top" style="width: 30%; margin: 0px; padding: 0 4px 8px 0; font-size: 12px; font-weight:600;">
{{ trans('general.date') }}:
</td>
2022-06-01 10:15:55 +03:00
2022-06-14 09:53:44 +03:00
<td valign="top" style="width:70%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
<x-date date="{{ $transfer->expense_transaction->paid_at}}" />
</td>
</tr>
2022-06-01 10:15:55 +03:00
2022-06-14 09:53:44 +03:00
<tr>
<td valign="top" style="width: 30%; margin: 0px; padding: 0 4px 8px 0; font-size: 12px; font-weight:600;">
{{ trans_choice('general.payment_methods', 1) }}:
</td>
2022-06-01 10:15:55 +03:00
2022-06-14 09:53:44 +03:00
<td valign="top" style="width:70%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
@if (! empty($payment_methods[$transfer->expense_transaction->payment_method]))
{!! $payment_methods[$transfer->expense_transaction->payment_method] !!}
@else
<x-empty-data />
@endif
</td>
</tr>
2021-07-09 23:36:41 +03:00
2022-06-14 09:53:44 +03:00
<tr>
<td valign="top" style="width: 30%; margin: 0px; padding: 0 4px 8px 0; font-size: 12px; font-weight:600;">
{{ trans('general.reference') }}:
</td>
2021-07-09 23:36:41 +03:00
2022-06-14 09:53:44 +03:00
<td valign="top" style="width:70%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
{{ $transfer->expense_transaction->reference }}
</td>
</tr>
2021-07-09 23:36:41 +03:00
2022-06-14 09:53:44 +03:00
<tr>
<td valign="top" style="width: 30%; margin: 0px; padding: 0 4px 8px 0; font-size: 12px; font-weight:600;">
{{ trans('general.description') }}
</td>
2022-06-01 10:15:55 +03:00
2022-06-14 09:53:44 +03:00
<td valign="top" style="width:70%; margin: 0px; padding: 0 0 8px 0; font-size: 12px;">
{{ $transfer->expense_transaction->description }}
</td>
</tr>
</table>
2021-07-09 23:36:41 +03:00
2022-06-14 09:53:44 +03:00
<table style="text-align: right;">
<tr>
<td valign="center" style="width:80%; display:block; float:right; background-color: #55588B; -webkit-print-color-adjust: exact; color:#ffffff; border-radius: 5px;">
2021-07-09 23:36:41 +03:00
<table>
2022-06-01 10:15:55 +03:00
<tr>
2022-06-14 09:53:44 +03:00
<td valign="center" style="width: 80%; padding:0; font-size: 14px; font-weight:600; color:#ffffff;">
{{ trans('general.amount') }}:
2022-06-01 10:15:55 +03:00
</td>
2022-06-14 09:53:44 +03:00
<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 />
2022-06-01 10:15:55 +03:00
</td>
</tr>
2021-07-09 23:36:41 +03:00
</table>
</td>
</tr>
2022-06-14 09:53:44 +03:00
</table>
</div>