110 lines
4.5 KiB
PHP
Raw Normal View History

2019-11-16 10:21:14 +03:00
<tr class="row" v-for="(row, index) in form.items"
:index="index">
@stack('actions_td_start')
2019-11-16 10:21:14 +03:00
<td class="col-md-1 action-column border-right-0 border-bottom-0">
@stack('actions_button_start')
<button type="button"
@click="onDeleteItem(index)"
data-toggle="tooltip"
title="{{ trans('general.delete') }}"
class="btn btn-icon btn-outline-danger btn-lg"><i class="fa fa-trash"></i>
</button>
@stack('actions_button_end')
</td>
@stack('actions_td_end')
2019-11-16 10:21:14 +03:00
@stack('name_td_start')
2019-11-16 10:21:14 +03:00
<td class="col-md-3 border-right-0 border-bottom-0">
@stack('name_input_start')
2019-12-25 15:02:55 +03:00
{{ Form::selectAddNewGroup('name', '', '', $items, '', [
'data-item' => 'name',
'v-model' => 'row.name',
'@input' => 'onGetItem($event, index)',
'class' => 'form-control',
'autocomplete' => 'form-control',
'path' => route('modals.taxes.create')
], 'mb-0 select-item') }}
2019-11-16 10:21:14 +03:00
<input name="items[][show]"
value="false"
v-model="row.show"
data-item="show"
type="hidden">
<input name="items[][item_id]"
v-model="row.item_id"
data-item="item_id"
type="hidden">
@stack('name_input_end')
</td>
@stack('name_td_end')
2019-11-16 10:21:14 +03:00
@stack('quantity_td_start')
2019-11-16 10:21:14 +03:00
<td class="col-md-2 border-right-0 border-bottom-0">
@stack('quantity_input_start')
<input class="form-control text-center"
2019-12-19 14:07:44 +03:00
autocomplete="off"
2019-11-16 10:21:14 +03:00
required="required"
data-item="quantity"
v-model="row.quantity"
@input="onCalculateTotal"
name="item[][quantity]"
type="text">
{!! $errors->first('item.quantity', '<p class="help-block">:message</p>') !!}
@stack('quantity_input_end')
</td>
@stack('quantity_td_end')
2019-11-16 10:21:14 +03:00
@stack('price_td_start')
2019-11-16 10:21:14 +03:00
<td class="col-md-2 border-right-0 border-bottom-0">
@stack('price_input_start')
<input class="form-control text-right input-price"
2019-12-19 14:07:44 +03:00
autocomplete="off"
2019-11-16 10:21:14 +03:00
required="required"
data-item="price"
v-model.lazy="row.price"
v-money="money"
@input="onCalculateTotal"
name="items[][price]"
type="text">
<input name="items[][currency]"
data-item="currency"
v-model="row.currency"
@input="onCalculateTotal"
type="hidden">
{!! $errors->first('item.price', '<p class="help-block">:message</p>') !!}
@stack('price_input_end')
</td>
@stack('price_td_end')
2019-11-16 10:21:14 +03:00
@stack('taxes_td_start')
2019-11-16 10:21:14 +03:00
<td class="col-md-2 border-right-0 border-bottom-0">
@stack('tax_id_input_start')
{{ Form::multiSelectAddNewGroup('tax_id', '', '', $taxes, '', [
'data-item' => 'tax_id',
'v-model' => 'row.tax_id',
'change' => 'onCalculateTotal',
2019-12-19 14:40:16 +08:00
'class' => 'form-control',
2019-12-25 15:02:55 +03:00
'collapse' => 'false',
2019-12-19 14:40:16 +08:00
'path' => route('modals.taxes.create')
2019-11-16 10:21:14 +03:00
], 'mb-0 select-tax') }}
@stack('tax_id_input_end')
</td>
@stack('taxes_td_end')
2019-11-16 10:21:14 +03:00
@stack('total_td_start')
<td class="col-md-2 text-right total-column border-bottom-0 long-texts">
2019-11-16 10:21:14 +03:00
<input name="item[][total]"
data-item="total"
v-model.lazy="row.total"
v-money="money"
type="hidden">
@stack('total_input_start')
@if (empty($item) || !isset($item->total))
<span id="item-total" v-html="row.total">0</span>
@else
<span id="item-total" v-html="row.total">@money($item->total, $invoice->currency_code, true)</span>
@endif
@stack('total_input_end')
</td>
@stack('total_td_end')
</tr>