Add source to invoice criteria. Modify invoice rules to get service fees from... #1701

Merged
arcticzero merged 217 commits from 746-resq-2-0-final into master 2023-11-22 08:54:48 +00:00
Showing only changes of commit 20301b6b98 - Show all commits

View file

@ -98,12 +98,12 @@ class Fuel implements InvoiceRuleInterface
if ($fuel_type == FuelType::GAS) if ($fuel_type == FuelType::GAS)
{ {
// gas fuel fee // gas fuel fee
return 320; return 340;
} }
else else
{ {
// diesel fuel fee // diesel fuel fee
return 340; return 300;
} }
} }