file updated..
This commit is contained in:
parent
156fb83e37
commit
71394f895b
@ -100,6 +100,7 @@ return [
|
||||
],
|
||||
'translation' => [
|
||||
'prefix' => 'revenues', // this translation file name.
|
||||
'related_document_amount' => 'invoices.invoice_amount',
|
||||
],
|
||||
'contact_type' => 'customer',
|
||||
],
|
||||
@ -117,6 +118,7 @@ return [
|
||||
],
|
||||
'translation' => [
|
||||
'prefix' => 'payments', // this translation file name.
|
||||
'related_document_amount' => 'bills.bill_amount',
|
||||
],
|
||||
'contact_type' => 'vendor',
|
||||
],
|
||||
|
@ -4,6 +4,7 @@ return [
|
||||
|
||||
'bill_number' => 'Bill Number',
|
||||
'bill_date' => 'Bill Date',
|
||||
'bill_amount' => 'Bill Amount',
|
||||
'total_price' => 'Total Price',
|
||||
'due_date' => 'Due Date',
|
||||
'order_number' => 'Order Number',
|
||||
|
@ -4,6 +4,7 @@ return [
|
||||
|
||||
'invoice_number' => 'Invoice Number',
|
||||
'invoice_date' => 'Invoice Date',
|
||||
'invoice_amount' => 'Invoice Amount',
|
||||
'total_price' => 'Total Price',
|
||||
'due_date' => 'Due Date',
|
||||
'order_number' => 'Order Number',
|
||||
|
@ -33,7 +33,7 @@
|
||||
</td>
|
||||
|
||||
<td class="col-xs-4 col-sm-6 text-left long-texts">
|
||||
{{ $history->created->name }}
|
||||
{{ $history->creator->name }}
|
||||
</td>
|
||||
@stack('row_footer_histories_body_td_end')
|
||||
</tr>
|
||||
|
@ -2,20 +2,21 @@
|
||||
@if (!$hideCompany)
|
||||
<table class="border-bottom-1">
|
||||
<tr>
|
||||
@if (!$hideCompanyLogo)
|
||||
<td style="width:5%;" valign="top">
|
||||
@stack('company_logo_start')
|
||||
@if (!$hideCompanyLogo)
|
||||
@if (!empty($document->contact->logo) && !empty($document->contact->logo->id))
|
||||
<img src="{{ Storage::url($document->contact->logo->id) }}" height="128" width="128" alt="{{ $document->contact_name }}" />
|
||||
@else
|
||||
<img src="{{ $logo }}" alt="{{ setting('company.name') }}" />
|
||||
@endif
|
||||
@endif
|
||||
@stack('company_logo_end')
|
||||
</td>
|
||||
@endif
|
||||
|
||||
@if (!$hideCompanyDetails)
|
||||
<td style="width: 60%;">
|
||||
@stack('company_details_start')
|
||||
@if (!$hideCompanyDetails)
|
||||
@if (!$hideCompanyName)
|
||||
<h2 class="mb-1" style="font-size: 16px;">
|
||||
{{ setting('company.name') }}
|
||||
@ -45,9 +46,9 @@
|
||||
@if (!$hideCompanyEmail)
|
||||
<p style="margin:0; padding:0; font-size:14px;">{{ setting('company.email') }}</p>
|
||||
@endif
|
||||
@endif
|
||||
@stack('company_details_end')
|
||||
</td>
|
||||
@endif
|
||||
</tr>
|
||||
</table>
|
||||
@endif
|
||||
@ -57,7 +58,9 @@
|
||||
<table>
|
||||
<tr>
|
||||
<td style="padding-bottom: 0; padding-top: 32px;">
|
||||
<h2 class="text-center text-uppercase" style="font-size: 16px;">{{ trans('invoices.revenue_made') }}</h2>
|
||||
<h2 class="text-center text-uppercase" style="font-size: 16px;">
|
||||
{{ trans($textContentTitle) }}
|
||||
</h2>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -69,53 +72,87 @@
|
||||
<table>
|
||||
@if (!$hidePaidAt)
|
||||
<tr>
|
||||
<td style="width: 20%; padding-bottom:3px; font-size:14px; font-weight: bold;">{{ trans('general.date') }}:</td>
|
||||
<td class="border-bottom-1" style="width:80%; padding-bottom:3px; font-size:14px;"> @date($transaction->paid_at)</td>
|
||||
<td style="width: 20%; padding-bottom:3px; font-size:14px; font-weight: bold;">
|
||||
{{ trans($textPaidAt) }}:
|
||||
</td>
|
||||
|
||||
<td class="border-bottom-1" style="width:80%; padding-bottom:3px; font-size:14px;">
|
||||
@date($transaction->paid_at)
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
|
||||
@if (!$hideAccount)
|
||||
<tr>
|
||||
<td style="width: 20%; padding-bottom:3px; font-size:14px; font-weight: bold;">{{ trans_choice('general.accounts', 1) }}:</td>
|
||||
<td class="border-bottom-1" style="width:80%; padding-bottom:3px; font-size:14px;">{{ $transaction->account->name }}</td>
|
||||
<td style="width: 20%; padding-bottom:3px; font-size:14px; font-weight: bold;">
|
||||
{{ trans_choice($textAccount, 1) }}:
|
||||
</td>
|
||||
|
||||
<td class="border-bottom-1" style="width:80%; padding-bottom:3px; font-size:14px;">
|
||||
{{ $transaction->account->name }}
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
|
||||
@if (!$hideCategory)
|
||||
<tr>
|
||||
<td style="width: 20%; padding-bottom:3px; font-size:14px; font-weight: bold;">{{ trans_choice('general.categories', 1) }}:</td>
|
||||
<td class="border-bottom-1" style="width:80%; padding-bottom:3px; font-size:14px;">{{ $transaction->category->name }}</td>
|
||||
<td style="width: 20%; padding-bottom:3px; font-size:14px; font-weight: bold;">
|
||||
{{ trans_choice($textCategory, 1) }}:
|
||||
</td>
|
||||
|
||||
<td class="border-bottom-1" style="width:80%; padding-bottom:3px; font-size:14px;">
|
||||
{{ $transaction->category->name }}
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
|
||||
@if (!$hidePaymentMethods)
|
||||
<tr>
|
||||
<td style="width: 20%; padding-bottom:3px; font-size:14px; font-weight: bold;">{{ trans_choice('general.payment_methods', 1) }}:</td>
|
||||
<td class="border-bottom-1" style="width:80%; padding-bottom:3px; font-size:14px;">{{ $payment_methods[$transaction->payment_method] }}</td>
|
||||
<td style="width: 20%; padding-bottom:3px; font-size:14px; font-weight: bold;">
|
||||
{{ trans_choice($textPaymentMethods, 1) }}:
|
||||
</td>
|
||||
|
||||
<td class="border-bottom-1" style="width:80%; padding-bottom:3px; font-size:14px;">
|
||||
{{ $payment_methods[$transaction->payment_method] }}
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
|
||||
@if (!$hideReference)
|
||||
<tr>
|
||||
<td style="width: 20%; padding-bottom:3px; font-size:14px; font-weight: bold;">{{ trans('general.reference') }}:</td>
|
||||
<td class="border-bottom-1" style="width:80%; padding-bottom:3px; font-size:14px;">{{ $transaction->reference }}</td>
|
||||
<td style="width: 20%; padding-bottom:3px; font-size:14px; font-weight: bold;">
|
||||
{{ trans($textReference) }}:
|
||||
</td>
|
||||
|
||||
<td class="border-bottom-1" style="width:80%; padding-bottom:3px; font-size:14px;">
|
||||
{{ $transaction->reference }}
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
|
||||
@if (!$hideDescription)
|
||||
<tr>
|
||||
<td style="width: 20%; padding-bottom:3px; font-size:14px; font-weight: bold;">{{ trans('general.description') }}:</td>
|
||||
<td style="width: 20%; padding-bottom:3px; font-size:14px; font-weight: bold;">
|
||||
{{ trans($textDescription) }}:
|
||||
</td>
|
||||
|
||||
<td style="width:80%; padding-bottom:3px; font-size:14px;">
|
||||
<p style="font-size:14px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin: 0;">{!! nl2br($transaction->description) !!}</p>
|
||||
<p style="font-size:14px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin: 0;">
|
||||
{!! nl2br($transaction->description) !!}
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
|
||||
@if (!$hideContact)
|
||||
<tr>
|
||||
<td style="padding-top:45px; padding-bottom:0;">
|
||||
<h2 style="font-size: 16px;">{{ trans('general.paid_by') }}</h2>
|
||||
<h2 style="font-size: 16px;">
|
||||
{{ trans($textDescription) }}
|
||||
</h2>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@if ($hideContactInfo)
|
||||
<tr>
|
||||
<td style="padding-bottom:5px; padding-top:0; font-size:14px;">
|
||||
@ -138,7 +175,9 @@
|
||||
@if (!$hideContactAddress)
|
||||
<tr>
|
||||
<td style="padding-bottom:5px; padding-top:0; font-size:14px;">
|
||||
<p style="margin:0; padding:0; font-size:14px;">{!! nl2br($transaction->contact->address) !!}</p>
|
||||
<p style="margin:0; padding:0; font-size:14px;">
|
||||
{!! nl2br($transaction->contact->address) !!}
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
@ -186,12 +225,16 @@
|
||||
@endif
|
||||
</table>
|
||||
</td>
|
||||
|
||||
@if (!$hideAmount)
|
||||
<td style="width:30%; padding-top:32px; padding-left: 25px;" valign="top">
|
||||
<table>
|
||||
<tr>
|
||||
<td style="background-color: #6da252; -webkit-print-color-adjust: exact; width: 280px; font-weight:bold !important; display:block;">
|
||||
<h5 class="text-muted mb-0 text-white" style="font-size: 20px; color:#ffffff; text-align:center; margin-top: 16px;">{{ trans('general.amount') }}</h5>
|
||||
<h5 class="text-muted mb-0 text-white" style="font-size: 20px; color:#ffffff; text-align:center; margin-top: 16px;">
|
||||
{{ trans($textAmount) }}
|
||||
</h5>
|
||||
|
||||
<p class="font-weight-bold mb-0 text-white" style="font-size: 32px; color:#ffffff; text-align:center;">
|
||||
@money($transaction->amount, $transaction->currency_code, true)
|
||||
</p>
|
||||
@ -203,81 +246,92 @@
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
@if (!$hideReletad)
|
||||
@if ($transaction->document)
|
||||
<table>
|
||||
<tr>
|
||||
<td class="border-bottom-1" style="padding-bottom: 0; padding-top:16px;"></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
@if (!$hideReletad)
|
||||
@if ($transaction->document)
|
||||
<table>
|
||||
<tr>
|
||||
<td style="padding-bottom: 0; padding-top:36px;">
|
||||
<h2 style="font-size: 16px;">{{ trans('invoices.related_revenue') }}</h2>
|
||||
<h2 style="font-size: 16px;">{{ trans($textReleatedTransansaction) }}</h2>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table class="table table-flush table-hover" cellspacing="0" cellpadding="0" style="margin-bottom: 36px;">
|
||||
<thead style="background-color: #f6f9fc; -webkit-print-color-adjust: exact; font-family: Arial, sans-serif; color:#8898aa; font-size:11px;">
|
||||
<tr class="border-bottom-1">
|
||||
@if (!$hideReletadDocumentNumber)
|
||||
<th class="item text-left" style="text-align: left; text-transform: uppercase; font-family: Arial, sans-serif;">
|
||||
<span>{{ trans_choice('general.numbers', 1) }}</span>
|
||||
<span>{{ trans_choice($textReleatedDocumentNumber, 1) }}</span>
|
||||
</th>
|
||||
@endif
|
||||
|
||||
@if (!$hideReletadContact)
|
||||
<th class="quantity" style="text-align: left; text-transform: uppercase; font-family: Arial, sans-serif;">
|
||||
{{ trans_choice('general.customers', 1) }}
|
||||
{{ trans_choice($textReleatedContact, 1) }}
|
||||
</th>
|
||||
@endif
|
||||
|
||||
@if (!$hideReletadDocumentDate)
|
||||
<th class="price" style="text-align: left; text-transform: uppercase; font-family: Arial, sans-serif;">
|
||||
{{ trans('invoices.invoice_date') }}
|
||||
{{ trans($textReleatedDocumentDate) }}
|
||||
</th>
|
||||
@endif
|
||||
|
||||
@if (!$hideReletadDocumentAmount)
|
||||
<th class="price" style="text-align: left; text-transform: uppercase; font-family: Arial, sans-serif;">
|
||||
{{ trans('invoices.invoice_date') }}
|
||||
{{ trans($textReleatedDocumentAmount) }}
|
||||
</th>
|
||||
@endif
|
||||
|
||||
@if (!$hideReletadAmount)
|
||||
<th class="total" style="text-align: left; text-transform: uppercase; font-family: Arial, sans-serif;">
|
||||
{{ trans('general.amount') }}
|
||||
{{ trans($textReleatedAmount) }}
|
||||
</th>
|
||||
@endif
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
@if (!$hideReletadDocumentNumber)
|
||||
<td class="item" style="color:#525f7f; font-size:13px;">
|
||||
<a style="color:#6da252 !important;" href="{{ route('invoices.show' , $transaction->document->id) }}">
|
||||
<a style="color:#6da252 !important;" href="{{ route($routeDocumentShow, $transaction->document->id) }}">
|
||||
{{ $transaction->document->document_number }}
|
||||
</a>
|
||||
</td>
|
||||
@endif
|
||||
|
||||
@if (!$hideReletadContact)
|
||||
<td class="quantity" style="color:#525f7f; font-size:13px;">
|
||||
{{ $transaction->document->contact_name }}
|
||||
</td>
|
||||
@endif
|
||||
|
||||
@if (!$hideReletadDocumentDate)
|
||||
<td class="price" style="color:#525f7f; font-size:13px;">
|
||||
@date($transaction->document->due_at)
|
||||
</td>
|
||||
@endif
|
||||
|
||||
@if (!$hideReletadDocumentAmount)
|
||||
<td class="price" style="color:#525f7f; font-size:13px;">
|
||||
@money($transaction->document->amount, $transaction->document->currency_code, true)
|
||||
</td>
|
||||
@endif
|
||||
|
||||
@if (!$hideReletadAmount)
|
||||
<td class="total" style="color:#525f7f; font-size:13px;">
|
||||
@money($transaction->amount, $transaction->currency_code, true)
|
||||
</td>
|
||||
@endif
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
@else
|
||||
<table>
|
||||
<tr>
|
||||
<td style="padding-bottom:0; font-size:14px;">
|
||||
<p style="margin-bottom:0; font-size:14px;">
|
||||
{{ trans('invoices.overdue_revenue') }}: <strong style="font-weight: bold;">@money($transaction->amount, $transaction->currency_code, true)</strong>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@endif
|
||||
@endif
|
@ -1,6 +1,6 @@
|
||||
@extends('layouts.admin')
|
||||
|
||||
@section('title', trans('invoices.payment_made'))
|
||||
@section('title', trans('payments.payment_made'))
|
||||
|
||||
@section('new_button')
|
||||
<x-transactions.show.top-buttons type="expense" :transaction="$payment" hide-button-share hide-button-email />
|
||||
|
@ -1,6 +1,6 @@
|
||||
@extends('layouts.admin')
|
||||
|
||||
@section('title', trans('invoices.revenue_made'))
|
||||
@section('title', trans('revenues.revenue_made'))
|
||||
|
||||
@section('new_button')
|
||||
<x-transactions.show.top-buttons type="income" :transaction="$revenue" />
|
||||
|
Loading…
x
Reference in New Issue
Block a user