Fixes for custom value nullables
This commit is contained in:
parent
14b67a2053
commit
d32ac5327c
1 changed files with 4 additions and 4 deletions
|
|
@ -885,8 +885,8 @@ info("get company");
|
|||
'tax_name3' => (string) '',
|
||||
'tax_rate3' => (float) 0,
|
||||
'date' => Carbon::parse($item->created_at)->toDateString(),
|
||||
'custom_value1' => $item->custom_value1,
|
||||
'custom_value2' => $item->custom_value2,
|
||||
'custom_value1' => $item->custom_value1 ?: '',
|
||||
'custom_value2' => $item->custom_value2 ?: '',
|
||||
'custom_value3' => '',
|
||||
'custom_value4' => '',
|
||||
'type_id' => (string)$item->invoice_item_type_id,
|
||||
|
|
@ -917,8 +917,8 @@ info("get company");
|
|||
'tax_name3' => (string) '',
|
||||
'tax_rate3' => (float) 0,
|
||||
'date' => Carbon::parse($item->created_at)->toDateString(),
|
||||
'custom_value1' => $item->custom_value1,
|
||||
'custom_value2' => $item->custom_value2,
|
||||
'custom_value1' => $item->custom_value1 ?: '',
|
||||
'custom_value2' => $item->custom_value2 ?: '',
|
||||
'custom_value3' => '',
|
||||
'custom_value4' => '',
|
||||
'type_id' => (string)$item->invoice_item_type_id,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue