close #1551 Fixed: Reconciliation form checkbox missing values

This commit is contained in:
Cüneyt Şentürk
2020-08-10 14:15:15 +03:00
parent 115b55f688
commit 48a37246c5
5 changed files with 33 additions and 3 deletions

View File

@@ -55,7 +55,7 @@
@endif
<td class="col-md-1 text-right d-none d-md-block">
<div class="custom-control custom-checkbox">
{{ Form::checkbox($item->type . '_' . $item->id, $item->price, $item->reconciled, [
{{ Form::checkbox($item->type . '_' . $item->id, $item->amount_for_account, $item->reconciled, [
'data-field' => 'transactions',
'v-model' => 'form.transactions.' . $item->type . '_' . $item->id,
'id' => 'transaction-' . $item->id . '-'. $item->type,