Document item hide price column styling..
This commit is contained in:
parent
d9e29e2a18
commit
54b5960b84
@ -10,6 +10,8 @@ return [
|
|||||||
'billing' => 'Billing',
|
'billing' => 'Billing',
|
||||||
'advanced' => 'Advanced',
|
'advanced' => 'Advanced',
|
||||||
|
|
||||||
|
'item_price_hidden' => 'This column is hidden on your :type.',
|
||||||
|
|
||||||
'actions' => [
|
'actions' => [
|
||||||
'cancel' => 'Cancel',
|
'cancel' => 'Cancel',
|
||||||
],
|
],
|
||||||
|
@ -59,8 +59,13 @@
|
|||||||
@stack('price_th_start')
|
@stack('price_th_start')
|
||||||
|
|
||||||
<th class="px-3 py-1 ltr:text-left rtl:text-right text-xs font-normal border-t-0 border-r-0 border-b-0 pr-1" style="vertical-align:bottom;">
|
<th class="px-3 py-1 ltr:text-left rtl:text-right text-xs font-normal border-t-0 border-r-0 border-b-0 pr-1" style="vertical-align:bottom;">
|
||||||
@if (! $hideItemPrice)
|
{{ trans($textItemPrice) }}
|
||||||
{{ trans($textItemPrice) }}
|
|
||||||
|
@if ($hideItemPrice)
|
||||||
|
|
||||||
|
<x-tooltip id="tooltip-item-price" placement="top" message="{{ trans('documents.item_price_hidden', ['type' => config('type.document.' . $type . '.translation.prefix')]) }}">
|
||||||
|
<x-icon icon="visibility_off" class="text-sm font-normal"></x-icon>
|
||||||
|
</x-tooltip>
|
||||||
@endif
|
@endif
|
||||||
</th>
|
</th>
|
||||||
|
|
||||||
|
@ -126,28 +126,26 @@
|
|||||||
@stack('price_td_start')
|
@stack('price_td_start')
|
||||||
|
|
||||||
<td class="px-3 py-3 pr-1 border-b-0 price">
|
<td class="px-3 py-3 pr-1 border-b-0 price">
|
||||||
@if (! $hideItemPrice)
|
<div>
|
||||||
<div>
|
@stack('price_input_start')
|
||||||
@stack('price_input_start')
|
|
||||||
|
|
||||||
<x-form.input.money
|
<x-form.input.money
|
||||||
name="price"
|
name="price"
|
||||||
value="0"
|
value="0"
|
||||||
row-input
|
row-input
|
||||||
data-item="price"
|
data-item="price"
|
||||||
v-model="row.price"
|
v-model="row.price"
|
||||||
v-error="form.errors.get('items.' + index + '.price')"
|
v-error="form.errors.get('items.' + index + '.price')"
|
||||||
v-error-message="form.errors.get('items.' + index + '.price')"
|
v-error-message="form.errors.get('items.' + index + '.price')"
|
||||||
change="row.price = $event; form.errors.clear('items.' + index + '.price'); onCalculateTotal"
|
change="row.price = $event; form.errors.clear('items.' + index + '.price'); onCalculateTotal"
|
||||||
:currency="$currency"
|
:currency="$currency"
|
||||||
dynamicCurrency="currency"
|
dynamicCurrency="currency"
|
||||||
money-class="text-right mt-0"
|
money-class="text-right mt-0"
|
||||||
form-group-class="text-right"
|
form-group-class="text-right"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
@stack('price_input_end')
|
@stack('price_input_end')
|
||||||
</div>
|
</div>
|
||||||
@endif
|
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@stack('price_td_end')
|
@stack('price_td_end')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user