Fix for expense test
This commit is contained in:
parent
4d9927d856
commit
8b14161d0a
1 changed files with 1 additions and 1 deletions
|
|
@ -129,7 +129,7 @@ class ExpenseRepository extends BaseRepository
|
|||
$expense->private_notes = trim($input['private_notes']);
|
||||
}
|
||||
$expense->public_notes = trim($input['public_notes']);
|
||||
$expense->should_be_invoiced = floatval($input['should_be_invoiced']) || $expense->client_id ? true : false;
|
||||
$expense->should_be_invoiced = isset($input['should_be_invoiced']) && floatval($input['should_be_invoiced']) || $expense->client_id ? true : false;
|
||||
|
||||
if ( ! $expense->expense_currency_id) {
|
||||
$expense->expense_currency_id = \Auth::user()->account->getCurrencyId();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue