fix PHP 8.0 TypeError: Unsupported operand types: string * float

This commit is contained in:
Ralf Becker 2021-11-16 18:27:40 +01:00
parent bbc7fb93de
commit 382c39e817

View File

@ -62,7 +62,7 @@ class timesheet_datasource extends datasource
'pl_id' => $data['pl_id'],
'pe_unitprice' => $data['ts_unitprice'],
'pe_used_quantity' => $data['ts_quantity'],
'pe_used_budget' => $data['ts_quantity'] * (float)$data['ts_unitprice'],
'pe_used_budget' => (float)$data['ts_quantity'] * (float)$data['ts_unitprice'],
'pe_completion' => 100,
'cat_id' => $data['cat_id'],
);