fixing totals to include service charge for x2 payments

This commit is contained in:
Omair Saleh
2019-04-19 15:47:23 +08:00
parent fe9c18447a
commit 36c761b7a7
+1 -1
View File
@@ -342,7 +342,7 @@ class BookingController extends Controller
if($booking){
if($booking->term === 'x2_cash' || $booking->term === 'x2_cheque' || $booking->term === 'x2_ba'){
if ($booking->amount < 10000) {
$booking->service_charge = 20;
$booking->service_charge = 'tara';
}
}