|
|
|
@@ -443,6 +443,11 @@ class BusinessController extends Controller |
|
|
|
|
|
|
|
$total = number_format((floatval($product->retail_price) * 1.06) + ($otc * 1.06) + $deposit + $ip_tax, 2); |
|
|
|
|
|
|
|
if ($request->coverage == 'CYBERJAYA' && $request->subscription == '24'){ |
|
|
|
$ip = $request->ip1; |
|
|
|
} else { |
|
|
|
$ip = $request->ip; |
|
|
|
} |
|
|
|
array_push($data, array( |
|
|
|
'coverage' => $request->coverage, |
|
|
|
'unit' => $request->unit, |
|
|
|
@@ -462,7 +467,7 @@ class BusinessController extends Controller |
|
|
|
'subscription' => $request->subscription, |
|
|
|
'billing' => $request->billing, |
|
|
|
'voice' => $voice, |
|
|
|
'ip' => $request->ip, |
|
|
|
'ip' => $ip, |
|
|
|
'ip_fee' => $ip_fee, |
|
|
|
'ip_tax' => $ip_tax, |
|
|
|
'thedate' => $request->thedate, |