349 lines
23 KiB
PHP
349 lines
23 KiB
PHP
<tr v-for="(row, index) in items"
|
|
:index="index">
|
|
@stack('name_td_start')
|
|
<td class="border-right-0 border-bottom-0 p-0"
|
|
:class="[{'has-error': form.errors.has('items.' + index + '.name') }]"
|
|
colspan="7">
|
|
<table class="w-100">
|
|
<colgroup>
|
|
<col style="width: 40px;">
|
|
<col style="width: 25%;">
|
|
<col style="width: 30%;">
|
|
<col style="width: 10%">
|
|
<col style="width: 10%">
|
|
<col style="width: 20%">
|
|
<col style="width: 40px;">
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
@stack('move_td_start')
|
|
<td class="pl-3 pb-3 align-middle border-bottom-0" style="max-width: 40px;" style="color: #8898aa;">
|
|
<div>
|
|
<i class="fas fa-grip-vertical"></i>
|
|
</div>
|
|
</td>
|
|
@stack('move_td_end')
|
|
|
|
@stack('items_td_start')
|
|
@if (!$hideItems || (!$hideName && !$hideDescription))
|
|
@stack('name_td_start')
|
|
@if (!$hideName)
|
|
<td class="pb-3 align-middle border-bottom-0">
|
|
<span class="aka-text aka-text--body" tabindex="0" v-html="row.name" v-if="row.item_id"></span>
|
|
<div v-else>
|
|
@stack('name_input_start')
|
|
<input type="text"
|
|
class="form-control"
|
|
:name="'items.' + index + '.name'"
|
|
autocomplete="off"
|
|
required="required"
|
|
data-item="name"
|
|
v-model="row.name"
|
|
@input="onBindingItemField(index, 'name')"
|
|
@change="form.errors.clear('items.' + index + '.name')">
|
|
|
|
<div class="invalid-feedback d-block"
|
|
v-if="form.errors.has('items.' + index + '.name')"
|
|
v-html="form.errors.get('items.' + index + '.name')">
|
|
</div>
|
|
@stack('name_input_end')
|
|
</div>
|
|
</td>
|
|
@endif
|
|
@stack('name_td_end')
|
|
|
|
@stack('description_td_start')
|
|
@if (!$hideDescription)
|
|
<td class="pb-3 border-bottom-0">
|
|
<textarea
|
|
class="form-control"
|
|
placeholder="Enter item description"
|
|
style="height: 46px; overflow: hidden;"
|
|
:name="'items.' + index + '.description'"
|
|
v-model="row.description"
|
|
data-item="description"
|
|
resize="none"
|
|
@input="onBindingItemField(index, 'description')"
|
|
></textarea>
|
|
</td>
|
|
@endif
|
|
@stack('description_td_end')
|
|
@endif
|
|
@stack('items_td_end')
|
|
|
|
@stack('quantity_td_start')
|
|
@if (!$hideQuantity)
|
|
<td class="pb-3 pl-0 pr-2 border-bottom-0">
|
|
<div>
|
|
@stack('quantity_input_start')
|
|
<input type="text"
|
|
class="form-control text-center p-0"
|
|
:name="'items.' + index + '.quantity'"
|
|
autocomplete="off"
|
|
required="required"
|
|
data-item="quantity"
|
|
v-model="row.quantity"
|
|
@input="onCalculateTotal"
|
|
@change="form.errors.clear('items.' + index + '.quantity')">
|
|
|
|
<div class="invalid-feedback d-block"
|
|
v-if="form.errors.has('items.' + index + '.quantity')"
|
|
v-html="form.errors.get('items.' + index + '.quantity')">
|
|
</div>
|
|
@stack('quantity_input_end')
|
|
</div>
|
|
</td>
|
|
@endif
|
|
@stack('quantity_td_end')
|
|
|
|
@stack('price_td_start')
|
|
@if (!$hidePrice)
|
|
<td class="pb-3 pl-0 pr-0 border-bottom-0" style="padding-right: 5px; padding-left: 5px;">
|
|
<div>
|
|
@stack('price_input_start')
|
|
{{ Form::moneyGroup('price', '', '', ['required' => 'required', 'row-input' => 'true', 'v-model' => 'row.price', 'v-error' => 'form.errors.get(\'items.\' + index + \'.price\')', 'v-error-message' => 'form.errors.get(\'items.\' + index + \'.price\')' , 'data-item' => 'price', 'currency' => $currency, 'dynamic-currency' => 'currency', 'change' => 'row.price = $event; form.errors.clear(\'items.\' + index + \'.price\'); onCalculateTotal'], 0.00, 'text-right input-price p-0') }}
|
|
@stack('price_input_end')
|
|
</div>
|
|
</td>
|
|
@endif
|
|
@stack('price_td_end')
|
|
|
|
@stack('total_td_start')
|
|
@if (!$hideAmount)
|
|
<td class="text-right long-texts pb-3 border-bottom-0">
|
|
<div>
|
|
{{ Form::moneyGroup('total', '', '', ['required' => 'required', 'disabled' => 'true' , 'row-input' => 'true', 'v-model' => 'row.total', 'data-item' => 'total', 'currency' => $currency, 'dynamic-currency' => 'currency'], 0.00, 'text-right input-price disabled-money') }}
|
|
</div>
|
|
</td>
|
|
@endif
|
|
@stack('total_td_end')
|
|
|
|
@stack('delete_td_start')
|
|
<td class="pb-3 pl-2 align-middle border-bottom-0" style="max-width: 40px;" >
|
|
<div>
|
|
<button type="button" @click="onDeleteItem(index)" class="btn btn-link btn-delete p-0">
|
|
<i class="far fa-trash-alt"></i>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
@stack('delete_td_end')
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="border-top-0" colspan="3">
|
|
@stack('item_custom_fields')
|
|
</td>
|
|
|
|
<td class="border-top-0 p-0" colspan="4">
|
|
<table class="w-100">
|
|
<colgroup>
|
|
@if (!$hideDiscount && in_array(setting('localisation.discount_location'), ['item', 'both']))
|
|
<col style="width: 25%;">
|
|
<col style="width: 30%;">
|
|
<col style="width: 55%;">
|
|
<col style="width: 40px;">
|
|
@else
|
|
<col style="width: 10%;">
|
|
<col style="width: 10%;">
|
|
<col style="width: 42%;">
|
|
<col style="width: 40px;">
|
|
@endif
|
|
</colgroup>
|
|
|
|
<tbody>
|
|
|
|
@if (!$hideDiscount && in_array(setting('localisation.discount_location'), ['item', 'both']))
|
|
<tr v-if="!row.add_tax || !row.add_discount">
|
|
<td class="text-left border-0 p-0">
|
|
<div>
|
|
<button type="button" class="btn btn-link btn-sm p-0" @click="onAddLineDiscount(index)" v-if="!row.add_discount">
|
|
{{ trans('general.title.add', ['type' => trans('invoices.discount')]) }}
|
|
</button>
|
|
</div>
|
|
</td>
|
|
|
|
<td class="text-right border-0 p-0 pr-4">
|
|
<div>
|
|
<button type="button" class="btn btn-link btn-sm p-0" @click="onAddTax(index)" v-if="!row.add_tax">
|
|
{{ trans('general.title.add', ['type' => trans_choice('general.taxes', 1)]) }}
|
|
</button>
|
|
</div>
|
|
</td>
|
|
|
|
<td class="text-right total-column border-0 long-texts">
|
|
</td>
|
|
|
|
<td class="w-1 border-0">
|
|
</td>
|
|
</tr>
|
|
|
|
<tr v-if="row.add_discount">
|
|
<td colspan="2" class="pl-0 pb-0 border-0" :class="{'pb-2' : !row.add_tax}">
|
|
<div>
|
|
<div style="float: left; margin-top: 15px; margin-left: -65px;">
|
|
{{ trans('invoices.discount') }}
|
|
</div>
|
|
|
|
@stack('discount_input_start')
|
|
<div class="form-group mb-0 w-100" style="display: inline-block; position: relative;">
|
|
<div class="input-group input-group-merge mb-0 select-tax">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text" id="input-discount">
|
|
<i class="fa fa-percent"></i>
|
|
</span>
|
|
</div>
|
|
<input type="number"
|
|
max="100"
|
|
min="0"
|
|
class="form-control text-center"
|
|
:name="'items.' + index + '.discount'"
|
|
autocomplete="off"
|
|
required="required"
|
|
data-item="discount"
|
|
v-model="row.discount"
|
|
@input="onCalculateTotal"
|
|
@change="form.errors.clear('items.' + index + '.discount')">
|
|
|
|
<div class="invalid-feedback d-block"
|
|
v-if="form.errors.has('items.' + index + '.discount')"
|
|
v-html="form.errors.get('items.' + index + '.discount')">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@stack('discount_input_end')
|
|
</div>
|
|
</td>
|
|
|
|
<td class="border-0 pb-0 text-right long-texts" :class="{'pb-2' : !row.add_tax}">
|
|
<div>
|
|
{{ Form::moneyGroup('discount', '', '', ['required' => 'required', 'disabled' => 'true' , 'row-input' => 'true', 'value' => 'row.discount', 'data-item' => 'discount', 'currency' => $currency, 'dynamic-currency' => 'currency'], 0.00, 'text-right input-price disabled-money') }}
|
|
</div>
|
|
</td>
|
|
|
|
<td class="pb-3 pl-2 align-bottom border-0" style="max-width: 40px;" :class="{'pb-2' : !row.add_tax}">
|
|
<button type="button" @click="onDeleteDiscount(index)" class="btn btn-link btn-delete p-0">
|
|
<i class="far fa-trash-alt"></i>
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
@endif
|
|
|
|
<tr v-for="(row_tax, row_tax_index) in row.tax_ids"
|
|
:index="row_tax_index">
|
|
<td colspan="2" class="pl-0 pb-0 border-0" :class="{'pb-2' : !row.add_tax}">
|
|
<div>
|
|
<div style="float: left; margin-top: 15px; margin-left: -30px;">
|
|
{{ trans_choice('general.taxes', 1) }}
|
|
</div>
|
|
|
|
@stack('taxes_input_start')
|
|
<akaunting-select
|
|
class="mb-0 select-tax"
|
|
:form-classes="[{'has-error': form.errors.has('items.' + index + '.taxes') }]"
|
|
:icon="''"
|
|
:title="''"
|
|
:placeholder="'{{ trans('general.form.select.field', ['field' => trans_choice('general.taxes', 1)]) }}'"
|
|
:name="'items.' + index + '.taxes.' + row_tax_index"
|
|
:options="{{ json_encode($taxes->pluck('title', 'id')) }}"
|
|
:disabled-options="form.items[index].tax_ids"
|
|
:value="row_tax.id"
|
|
@interface="row_tax.id = $event"
|
|
@change="onCalculateTotal()"
|
|
@new="taxes.push($event)"
|
|
:form-error="form.errors.get('items.' + index + '.taxes')"
|
|
:no-data-text="'{{ trans('general.no_data') }}'"
|
|
:no-matching-data-text="'{{ trans('general.no_matching_data') }}'"
|
|
></akaunting-select>
|
|
@stack('taxes_input_end')
|
|
</div>
|
|
</td>
|
|
|
|
<td :class="{'pb-2' : !row.add_tax}" class="border-0 pb-0 text-right long-texts">
|
|
<div>
|
|
{{ Form::moneyGroup('tax', '', '', ['required' => 'required', 'disabled' => 'true' , 'row-input' => 'true', 'v-model' => 'row_tax.price', 'data-item' => 'total', 'currency' => $currency, 'dynamic-currency' => 'currency'], 0.00, 'text-right input-price disabled-money') }}
|
|
</div>
|
|
</td>
|
|
|
|
<td class="pb-3 pl-2 align-bottom border-0" :class="{'pb-2' : !row.add_tax}" style="max-width: 40px;" >
|
|
<button type="button" @click="onDeleteTax(index, row_tax_index)" class="btn btn-link btn-delete p-0">
|
|
<i class="far fa-trash-alt"></i>
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr v-if="row.add_tax">
|
|
<td colspan="2" class="pl-0 border-0">
|
|
<div>
|
|
<div style="float: left; margin-top: 15px; margin-left: -30px;">
|
|
{{ trans_choice('general.taxes', 1) }}
|
|
</div>
|
|
|
|
@stack('taxes_input_start')
|
|
<akaunting-select
|
|
class="mb-0 select-tax"
|
|
style="margin-left: 1px; margin-right: -2px;"
|
|
:form-classes="[{'has-error': form.errors.has('items.' + index + '.taxes') }]"
|
|
:icon="''"
|
|
:title="''"
|
|
:placeholder="'{{ trans('general.form.select.field', ['field' => trans_choice('general.taxes', 1)]) }}'"
|
|
:name="'items.' + index + '.taxes.999'"
|
|
:options="{{ json_encode($taxes->pluck('title', 'id')) }}"
|
|
:disabled-options="form.items[index].tax_ids"
|
|
:value="tax_id"
|
|
:add-new="{{ json_encode([
|
|
'status' => true,
|
|
'text' => trans('general.add_new'),
|
|
'path' => route('modals.taxes.create'),
|
|
'type' => 'modal',
|
|
'field' => [
|
|
'key' => 'id',
|
|
'value' => 'title'
|
|
],
|
|
'new_text' => trans('modules.new'),
|
|
'buttons' => [
|
|
'cancel' => [
|
|
'text' => trans('general.cancel'),
|
|
'class' => 'btn-outline-secondary'
|
|
],
|
|
'confirm' => [
|
|
'text' => trans('general.save'),
|
|
'class' => 'btn-success'
|
|
]
|
|
]
|
|
])}}"
|
|
@interface="tax_id = $event"
|
|
@visible-change="onSelectedTax(index)"
|
|
@new="taxes.push($event)"
|
|
:form-error="form.errors.get('items.' + index + '.taxes')"
|
|
:no-data-text="'{{ trans('general.no_data') }}'"
|
|
:no-matching-data-text="'{{ trans('general.no_matching_data') }}'"
|
|
></akaunting-select>
|
|
@stack('taxes_input_end')
|
|
</div>
|
|
</td>
|
|
|
|
<td class="border-0 text-right long-texts align-middle">
|
|
<div>
|
|
__
|
|
</div>
|
|
</td>
|
|
|
|
<td class="pb-3 pl-2 align-bottom border-0" style="max-width: 40px;" >
|
|
@if (!$hideDiscount && in_array(setting('localisation.discount_location'), ['item', 'both']))
|
|
<button type="button" @click="onDeleteTax(index, 999)" class="btn btn-link btn-delete p-0">
|
|
<i class="far fa-trash-alt"></i>
|
|
</button>
|
|
@endif
|
|
</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
</td>
|
|
<tr>
|
|
</tbody>
|
|
</table>
|
|
</td>
|
|
@stack('name_td_end')
|
|
</tr>
|