|
@@ -640,11 +640,12 @@ class CartModel |
|
@@ -640,11 +640,12 @@ class CartModel |
640
|
'yohoCoin' => isset($orderCompute['yoho_coin']) ? Helpers::transPrice($orderCompute['yoho_coin']) : 0,
|
640
|
'yohoCoin' => isset($orderCompute['yoho_coin']) ? Helpers::transPrice($orderCompute['yoho_coin']) : 0,
|
641
|
'useYohoCoin' => isset($orderCompute['use_yoho_coin']) ? Helpers::transPrice($orderCompute['use_yoho_coin']) : 0,
|
641
|
'useYohoCoin' => isset($orderCompute['use_yoho_coin']) ? Helpers::transPrice($orderCompute['use_yoho_coin']) : 0,
|
642
|
'yohoCoinClick' => 0,
|
642
|
'yohoCoinClick' => 0,
|
643
|
- 'yohoCoinMsg' => ''
|
643
|
+ 'yohoCoinMsg' => '',
|
|
|
644
|
+ 'yoho_coin_pay_rule' => $orderCompute['yoho_coin_pay_rule']
|
644
|
];
|
645
|
];
|
645
|
|
646
|
|
646
|
if ($yohoCoinData['totalYohoCoinNum'] < 100) {
|
647
|
if ($yohoCoinData['totalYohoCoinNum'] < 100) {
|
647
|
- $yohoCoinData['yohoCoinMsg'] = "共{$yohoCoinData['totalYohoCoinNum']}有货币,满100可用";
|
648
|
+ $yohoCoinData['yohoCoinMsg'] = "共{$yohoCoinData['totalYohoCoinNum']}有货币,满{$orderCompute['yoho_coin_pay_rule']['num_limit']}可用";
|
648
|
} else if ($yohoCoinData['useYohoCoin'] > 0 || $yohoCoinData['yohoCoin'] > 0) {
|
649
|
} else if ($yohoCoinData['useYohoCoin'] > 0 || $yohoCoinData['yohoCoin'] > 0) {
|
649
|
$yohoCoinData['yohoCoinMsg'] = '可抵¥' . ($yohoCoinData['useYohoCoin'] > 0 ? $yohoCoinData['useYohoCoin'] : $yohoCoinData['yohoCoin']);
|
650
|
$yohoCoinData['yohoCoinMsg'] = '可抵¥' . ($yohoCoinData['useYohoCoin'] > 0 ? $yohoCoinData['useYohoCoin'] : $yohoCoinData['yohoCoin']);
|
650
|
$yohoCoinData['yohoCoinClick'] = 1;
|
651
|
$yohoCoinData['yohoCoinClick'] = 1;
|