long text status updated for invoice and bill
This commit is contained in:
parent
3a15c1d615
commit
0b737e0119
@ -146,10 +146,10 @@
|
||||
|
||||
@stack('grand_total_td_start')
|
||||
<tr class="row" id="tr-total">
|
||||
<td class="col-md-10 text-right border-right-0 long-texts">
|
||||
<td class="col-md-10 text-right border-right-0">
|
||||
<strong>{{ trans('bills.total') }}</strong>
|
||||
</td>
|
||||
<td class="col-md-2 text-right">
|
||||
<td class="col-md-2 text-right long-texts">
|
||||
<span id="grand-total" v-html="totals.total">0</span>
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -157,7 +157,7 @@
|
||||
<div class="card-body">
|
||||
@stack('bill_header_start')
|
||||
<div class="row mx--4">
|
||||
<div class="col-md-7">
|
||||
<div class="col-md-7 border-bottom-1">
|
||||
<div class="table-responsive mt-2">
|
||||
<table class="table table-borderless">
|
||||
<tbody>
|
||||
@ -218,7 +218,7 @@
|
||||
|
||||
@stack('bill_information_start')
|
||||
<div class="row">
|
||||
<div class="col-md-7">
|
||||
<div class="col-md-7 long-texts">
|
||||
<div class="table-responsive">
|
||||
<table class="table table-borderless">
|
||||
<tbody>
|
||||
@ -266,7 +266,7 @@
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-5">
|
||||
<div class="col-md-5 long-texts">
|
||||
<div class="table-responsive">
|
||||
<table class="table table-borderless">
|
||||
<tbody>
|
||||
@ -366,7 +366,7 @@
|
||||
<tr>
|
||||
<th>
|
||||
<p class="form-control-label">{{ trans_choice('general.notes', 2) }}:</p>
|
||||
<p class="form-control text-muted show-note">{{ $bill->notes }}</p>
|
||||
<p class="form-control text-muted show-note long-texts">{{ $bill->notes }}</p>
|
||||
</th>
|
||||
</tr>
|
||||
@endif
|
||||
|
@ -75,7 +75,7 @@
|
||||
<td class="col-md-10 text-right border-right-0 border-bottom-0">
|
||||
<strong>{{ trans('invoices.sub_total') }}</strong>
|
||||
</td>
|
||||
<td class="col-md-2 text-right border-bottom-0">
|
||||
<td class="col-md-2 text-right border-bottom-0 long-texts">
|
||||
<span id="sub-total" v-html="totals.sub">0</span>
|
||||
</td>
|
||||
</tr>
|
||||
@ -137,7 +137,7 @@
|
||||
<td class="col-md-10 text-right border-right-0 border-bottom-0">
|
||||
<strong>{{ trans_choice('general.taxes', 1) }}</strong>
|
||||
</td>
|
||||
<td class="col-md-2 text-right border-bottom-0">
|
||||
<td class="col-md-2 text-right border-bottom-0 long-texts">
|
||||
<span id="tax-total" v-html="totals.tax">0</span>
|
||||
</td>
|
||||
</tr>
|
||||
@ -148,7 +148,7 @@
|
||||
<td class="col-md-10 text-right border-right-0">
|
||||
<strong>{{ trans('invoices.total') }}</strong>
|
||||
</td>
|
||||
<td class="col-md-2 text-right">
|
||||
<td class="col-md-2 text-right long-texts">
|
||||
<span id="grand-total" v-html="totals.total">0</span>
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -76,7 +76,7 @@
|
||||
<td class="col-md-10 text-right border-right-0 border-bottom-0">
|
||||
<strong>{{ trans('invoices.sub_total') }}</strong>
|
||||
</td>
|
||||
<td class="col-md-2 text-right border-bottom-0">
|
||||
<td class="col-md-2 text-right border-bottom-0 long-texts">
|
||||
<span id="sub-total" v-html="totals.sub">0</span>
|
||||
</td>
|
||||
</tr>
|
||||
@ -138,7 +138,7 @@
|
||||
<td class="col-md-10 text-right border-right-0 border-bottom-0">
|
||||
<strong>{{ trans_choice('general.taxes', 1) }}</strong>
|
||||
</td>
|
||||
<td class="col-md-2 text-right border-bottom-0">
|
||||
<td class="col-md-2 text-right border-bottom-0 long-texts">
|
||||
<span id="tax-total" v-html="totals.tax">0</span>
|
||||
</td>
|
||||
</tr>
|
||||
@ -149,7 +149,7 @@
|
||||
<td class="col-md-10 text-right border-right-0">
|
||||
<strong>{{ trans('invoices.total') }}</strong>
|
||||
</td>
|
||||
<td class="col-md-2 text-right">
|
||||
<td class="col-md-2 text-right long-texts">
|
||||
<span id="grand-total" v-html="totals.total">0</span>
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -103,7 +103,7 @@
|
||||
@stack('taxes_td_end')
|
||||
|
||||
@stack('total_td_start')
|
||||
<td class="col-md-2 text-right total-column border-bottom-0">
|
||||
<td class="col-md-2 text-right total-column border-bottom-0 long-texts">
|
||||
<input name="item[][total]"
|
||||
data-item="total"
|
||||
v-model.lazy="row.total"
|
||||
|
@ -240,7 +240,7 @@
|
||||
|
||||
@stack('invoice_information_start')
|
||||
<div class="row">
|
||||
<div class="col-md-7">
|
||||
<div class="col-md-7 long-texts">
|
||||
<div class="table-responsive">
|
||||
<table class="table table-borderless">
|
||||
<tbody>
|
||||
@ -288,7 +288,7 @@
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-5">
|
||||
<div class="col-md-5 long-texts">
|
||||
<div class="table-responsive">
|
||||
<table class="table table-borderless">
|
||||
<tbody>
|
||||
@ -388,7 +388,7 @@
|
||||
<tr>
|
||||
<th>
|
||||
<p class="form-control-label">{{ trans_choice('general.notes', 2) }}</p>
|
||||
<p class="form-control text-muted show-note">{{ $invoice->notes }}</p>
|
||||
<p class="form-control text-muted show-note long-texts">{{ $invoice->notes }}</p>
|
||||
</th>
|
||||
</tr>
|
||||
@endif
|
||||
|
@ -3,8 +3,8 @@
|
||||
<div class="container-fluid content-layout">
|
||||
<div class="header-body">
|
||||
<div class="row py-4 align-items-center">
|
||||
<div class="col-sm-4 col-md-5 align-items-center">
|
||||
<h2 class="d-inline-block mb-0 long-texts">@yield('title')</h2>
|
||||
<div class="col-sm-4 col-md-5 align-items-center long-texts">
|
||||
<h2 class="d-inline-block mb-0">@yield('title')</h2>
|
||||
@yield('dashboard_action')
|
||||
</div>
|
||||
<div class="col-sm-8 col-md-7">
|
||||
|
@ -3,8 +3,8 @@
|
||||
<div class="container-fluid content-layout">
|
||||
<div class="header-body">
|
||||
<div class="row py-4 align-items-center">
|
||||
<div class="col-sm-4 col-md-5 align-items-center">
|
||||
<h2 class="d-inline-block mb-0 long-texts">@yield('title')</h2>
|
||||
<div class="col-sm-4 col-md-5 align-items-center long-texts">
|
||||
<h2 class="d-inline-block mb-0">@yield('title')</h2>
|
||||
@yield('dashboard_action')
|
||||
</div>
|
||||
<div class="col-sm-8 col-md-7">
|
||||
|
Loading…
x
Reference in New Issue
Block a user