|
|
@@ -171,6 +171,10 @@ class ShopController extends BaseController {
|
|
|
$country = Countries::getById($user['COUNTRY_ID']);
|
|
|
$coin = Currency::getById($country['LOCAL_CURRENCY_ID']);
|
|
|
|
|
|
+ // AMP
|
|
|
+ $sysConfig = Cache::getSystemConfig();
|
|
|
+ $ampDivideLine = (int)$sysConfig['ampBVCondition']['VALUE'];
|
|
|
+
|
|
|
return static::notice(
|
|
|
[
|
|
|
'payList'=>$payList,
|
|
|
@@ -181,6 +185,7 @@ class ShopController extends BaseController {
|
|
|
'freeShipping' => $freeShipping,
|
|
|
'isDec' => $isDec,
|
|
|
'coin' => $coin['CODE'] ?? '',
|
|
|
+ 'ampDivideLine' => floatval($ampDivideLine),
|
|
|
]);
|
|
|
}
|
|
|
|