Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
Hi.
In saveAssignment.php I see
foreach ($wkList as $wk) {
$wk->dailyCost=$cost;
$wk->dailyCost=$cost*$wk->work;
$wk->save();
}
Maybe
foreach ($wkList as $wk) {
$wk->dailyCost=$cost;
$wk->cost=$cost*$wk->work;
$wk->save();
}
Best regards.
You're right 😉
Fortunately this issue occurs only in very specific use case : change assignment which changes daily cost from zero to non zero value.
Code fixed, will be included in next patch/version.