Merge branch '748-fuel-price-update-for-resq-2' into '746-resq-2-0-final'

Resolve "Fuel Price Update for Resq 2"

See merge request jankstudio/resq!862
This commit is contained in:
Ramon Gutierrez 2023-07-13 13:43:27 +00:00
commit 20301b6b98

View file

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