Updated fuel prices. #748

This commit is contained in:
Korina Cordero 2023-07-12 07:49:30 +00:00
parent f26d6284f3
commit 97917cf49b

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;
} }
} }