@lang('sales/customer_credit_note.document_title')
@lang('general.text_add')
| @lang('general.column_actions') | @lang('sales/customer_credit_note.column_line_product_id') | @lang('sales/customer_credit_note.column_line_name') * | @lang('sales/customer_credit_note.column_line_unit_measure_id') * | @lang('sales/customer_credit_note.column_line_sat_product_id') * | @lang('sales/customer_credit_note.column_line_quantity') * | @lang('sales/customer_credit_note.column_line_price_unit') * | @lang('sales/customer_credit_note.column_line_taxes') | @lang('sales/customer_credit_note.column_line_tax_object') | @lang('sales/customer_credit_note.column_line_amount_untaxed') |
|---|---|---|---|---|---|---|---|---|---|
|
{!! Form::select('item[' . $item_row . '][product_id]', $tmp_products,old('item.' . $item_row . '.product_id'), ['class' => 'form-control input-sm col-product-id', 'placeholder' => __('general.text_select'),'id' => 'item_product_id_' . $item_row,'data-row' => $item_row]) !!}
|
{!! Form::textarea('item[' . $item_row . '][name]', old('item.' . $item_row . '.name'), ['class' => 'form-control input-sm ym-auto-resize col-name-id', 'required','autocomplete'=>'off','id' => 'item_name_' . $item_row,'rows' => 1]) !!}
@if ($errors->has('item.'.$item_row.'.name'))
{{ $errors->first('item.'.$item_row.'.name') }}
@endif
|
{!! Form::select('item[' . $item_row . '][unit_measure_id]', $tmp_unit_measures,old('item.' . $item_row . '.unit_measure_id'), ['class' => 'form-control input-sm col-unit-measure-id', 'placeholder' => __('general.text_select'),'required','id' => 'item_unit_measure_id_' . $item_row]) !!}
@if ($errors->has('item.'.$item_row.'.unit_measure_id'))
{{ $errors->first('item.'.$item_row.'.unit_measure_id') }}
@endif
|
{!! Form::select('item[' . $item_row . '][sat_product_id]', $tmp_sat_products,old('item.' . $item_row . '.sat_product_id'), ['class' => 'form-control input-sm col-sat-product-id', 'placeholder' => __('general.text_select'),'required','id' => 'item_sat_product_id_' . $item_row]) !!}
@if ($errors->has('item.'.$item_row.'.sat_product_id'))
{{ $errors->first('item.'.$item_row.'.sat_product_id') }}
@endif
|
{!! Form::number('item[' . $item_row . '][quantity]', old('item.' . $item_row . '.quantity'), ['class' => 'form-control input-sm text-right col-quantity', 'required','id' => 'item_quantity_' . $item_row, 'step' => 'any']) !!}
@if ($errors->has('item.'.$item_row.'.quantity'))
{{ $errors->first('item.'.$item_row.'.quantity') }}
@endif
|
{!! Form::number('item[' . $item_row . '][price_unit]', old('item.' . $item_row . '.price_unit'), ['class' => 'form-control input-sm text-right col-price-unit', 'required','id' => 'item_price_unit_' . $item_row, 'step' => 'any']) !!}
@if ($errors->has('item.'.$item_row.'.price_unit'))
{{ $errors->first('item.'.$item_row.'.price_unit') }}
@endif
|
{!! Form::select('item[' . $item_row . '][taxes][]', $taxes,old('item.' . $item_row . '.taxes'), ['class' => 'form-control input-sm my-select2 col-taxes','multiple','id' => 'item_taxes_' . $item_row]) !!}
|
{!! Form::select('item[' . $item_row . '][tax_object]', $tax_objects,old('item.' . $item_row . '.tax_object',$item->tax_object ?? ''), ['class' => 'form-control input-sm col-tax-object','id' => 'item_tax_object_' . $item_row]) !!}
|
0 | |
| {!! Form::textarea('comment', old('comment'), ['class' => 'form-control input-sm ym-auto-resize', 'placeholder' => __('sales/customer_credit_note.entry_comment'),'rows' => '3']) !!} | @lang('general.text_amount_untaxed') | 0 | |||||||
| @lang('general.text_amount_total') | 0 | ||||||||
@lang('sales/customer_credit_note.entry_amount_total'): @lang('sales/customer_credit_note.text_reconciled'): @lang('sales/customer_credit_note.text_per_reconciled'):
| @lang('sales/customer_payment.column_reconciled_name') | @lang('sales/customer_payment.column_reconciled_date') | @lang('sales/customer_payment.column_reconciled_date_due') | @lang('sales/customer_payment.column_reconciled_payment_method') | @lang('sales/customer_payment.column_reconciled_currency') | @lang('sales/customer_payment.column_reconciled_amount_total') | @lang('sales/customer_payment.column_reconciled_balance') | @lang('sales/customer_payment.column_reconciled_amount_reconciled') |
|---|---|---|---|---|---|---|---|
| {{$tmp_name}} | {{$tmp_date}} | {{$tmp_date_due}} | {{$tmp_currency_code}} | {{$tmp_amount_total}} | {!!$tmp_balance!!} |
{!! Form::number('item_reconciled[' . $item_reconciled_row . '][amount_reconciled]', old('item_reconciled.' . $item_reconciled_row . '.amount_reconciled'), ['class' => 'form-control input-sm text-right col-amount-reconciled','id' => 'item_reconciled_amount_reconciled_' . $item_reconciled_row, 'step' => 'any']) !!}
@if ($errors->has('item_reconciled.'.$item_reconciled_row.'.amount_reconciled'))
{{ $errors->first('item_reconciled.'.$item_reconciled_row.'.amount_reconciled') }}
@endif
|
| @lang('general.column_actions') | @lang('sales/customer_credit_note.column_relation_relation_id') | @lang('sales/customer_credit_note.column_relation_uuid') |
|---|---|---|
|
{!! Form::select('item_relation[' . $item_relation_row . '][relation_id]', $tmp_customer_credit_note_relations,old('item_relation.' . $item_relation_row . '.relation_id'), ['class' => 'form-control input-sm col-relation-id', 'placeholder' => __('general.text_select'),'id' => 'item_relation_relation_id_' . $item_relation_row,'data-row' => $item_relation_row]) !!}
@if ($errors->has('item_relation.'.$item_relation_row.'.relation_id'))
{{ $errors->first('item_relation.'.$item_relation_row.'.relation_id') }}
@endif
|
||