fix 2x steps and service charge

This commit is contained in:
Omair Saleh
2019-04-18 12:15:59 +08:00
parent a8f97eb731
commit 18a1b270e5
18 changed files with 52 additions and 55 deletions
+2 -2
View File
@@ -720,10 +720,10 @@ class BookingController extends Controller
break;
}
if ($amount >= 10000 && ($term == 'x2_cash' || $term == 'x2_cheque' || $term == 'x2_ba')) {
if ($amount >= 20000 && ($term == 'x2_cash' || $term == 'x2_cheque' || $term == 'x2_ba')) {
$svcharge = 0;
} else {
$svcharge = 0;
$svcharge = 20;
//$svcharge = 0; // UPDATE ON : 15-8-2018 from PM
}