冻结相关处理

This commit is contained in:
liu 2024-07-05 11:14:26 +08:00
parent 0a96bcd30b
commit 37f0de8c37
2 changed files with 36 additions and 0 deletions

View File

@ -330,6 +330,15 @@ class UserLogic extends BaseLogic
->page($params['page_no'],$params['page_size'])
->order('id','desc')
->select()->toArray();
foreach ($data as &$value){
if($value['status'] == 0){
$value['title'] = "购买商品".$value['all']."元获得".$value['number']."元返还金";
}else{
//退回到余额、微信、采购款
$back = self::dealTitleCate($value['pay_type']);
$value['title'] = "返还金解冻".$value['number']."元退回到".$back;
}
}
break;
default:
$data = [];
@ -344,5 +353,31 @@ class UserLogic extends BaseLogic
}
public static function dealTitleCate($pay_type)
{
switch ($pay_type){
case 18:
$title = "采购款";
break;
case 17:
$title = "现金";
break;
case 3:
$title ="余额";
break;
case 7:
case 9:
$title ="微信";
break;
case 13:
$title ="支付宝";
break;
default:
$title ="默认";
}
return $title;
}
}

View File

@ -872,6 +872,7 @@ class PayNotifyLogic extends BaseLogic
'order_sn' => $order['order_id'],
'user_id' => $order['uid'],
'number' => $total_vip,
'all' => $order['pay_price'],
'pay_type' => $pay_type ?? 1,
'status' => 0,
'store_id' => $order['store_id'],