From 50c67d708856507d16e5e7ba674d7901134b2d78 Mon Sep 17 00:00:00 2001 From: Korina Cordero Date: Fri, 22 Oct 2021 10:19:37 +0000 Subject: [PATCH] Modify the fuel charges for gas and diesel. #633 --- src/Service/InvoiceGenerator/ResqInvoiceGenerator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Service/InvoiceGenerator/ResqInvoiceGenerator.php b/src/Service/InvoiceGenerator/ResqInvoiceGenerator.php index d3e3e4cc..6c3cbf36 100644 --- a/src/Service/InvoiceGenerator/ResqInvoiceGenerator.php +++ b/src/Service/InvoiceGenerator/ResqInvoiceGenerator.php @@ -35,8 +35,8 @@ class ResqInvoiceGenerator implements InvoiceGeneratorInterface const WARRANTY_FEE = 0; const OTHER_SERVICES_FEE = 200; const COOLANT_FEE = 1600; - const REFUEL_FEE_GAS = 260; - const REFUEL_FEE_DIESEL = 220; + const REFUEL_FEE_GAS = 300; + const REFUEL_FEE_DIESEL = 260; private $security; protected $em;