feat(CartList): 根据用户等级调整购物车商品价格

This commit is contained in:
mkm 2024-08-15 09:09:54 +08:00
parent 1d52ecdde2
commit 388581f707

View File

@ -62,15 +62,16 @@ class CartList extends BaseAdminDataLists implements ListsSearchInterface, Lists
if ($this->request->get('uid')) {
$uid = $this->request->get('uid');
}
$user_ship=0;
if ($uid > 0) {
$user_ship = User::where('id', $uid)->value('user_ship');
if (in_array($user_ship, [4, 5, 6, 7])) {
if (in_array($user_ship, [4, 6, 7])) {
$off_activity = 1;
}
}
foreach ($list as $key => &$item) {
$find = StoreBranchProduct::where(['product_id' => $item['product_id'], 'store_id' => $item['store_id']])
->field('product_id,image,price,cost,store_name,unit,delete_time,vip_price')
->field('product_id,image,price,cost,store_name,unit,delete_time,vip_price,top_cate_id')
->withTrashed()
->find();
if ($find) {
@ -79,6 +80,9 @@ class CartList extends BaseAdminDataLists implements ListsSearchInterface, Lists
$item['price'] = $find['cost'];
} else {
$item['price'] = $find['price'];
if ($find['top_cate_id'] == 15189 && $user_ship == 5) {
$item['price'] = $find['cost'];
}
}
$item['pay_price'] = bcmul($item['cart_num'], $item['price'], 2);
$item['total_price'] = bcmul($item['cart_num'], $find['price'], 2);