限制现金支付相关处理和未核销数量

This commit is contained in:
liu 2024-06-22 18:27:58 +08:00
parent 40aff5aeb3
commit 3f8e88bff1
2 changed files with 8 additions and 0 deletions

View File

@ -99,6 +99,10 @@ class UserLogic extends BaseLogic
$data['return_money'] = Db::name('vip_flow')->
where(['user_id'=>$uid,'status'=>0])
->sum('number');
//小程序 未核销的订单
$data['no_writeoff'] = StoreOrder::where([
'is_writeoff'=>0,'uid'=>$uid
])->whereIn('shipping_type',[1,2])->count();
}else{
$data = [];

View File

@ -119,6 +119,10 @@ class StoreOrderLogic extends BaseLogic
$pay_price =bcsub(self::$pay_price, self::$activity_price, 2); //减去活动优惠金额
$activity_string = '减免';
}
if($pay_type == 19){
$pay_price = self::$pay_price;
$activity_string = '';
}
// if($pay_price < 500){
// throw new \think\Exception('金额低于500');