refs #2611 Reconciliation edit added transaction list..
This commit is contained in:
@ -15,6 +15,7 @@ class UpdateReconciliation extends Job implements ShouldUpdate
|
||||
$reconcile = (int) $this->request->get('reconcile');
|
||||
$transactions = $this->request->get('transactions');
|
||||
|
||||
$this->model->transactions = $transactions;
|
||||
$this->model->reconciled = $reconcile;
|
||||
$this->model->save();
|
||||
|
||||
|
@ -28,6 +28,7 @@ class Reconciliation extends Model
|
||||
protected $casts = [
|
||||
'closing_balance' => 'double',
|
||||
'reconciled' => 'boolean',
|
||||
'transactions' => 'array',
|
||||
];
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user