修改折扣方案

This commit is contained in:
邹景立 2021-03-24 18:39:21 +08:00
parent e8d9ec1d9e
commit f662b4fa8d
2 changed files with 19 additions and 15 deletions

View File

@ -100,15 +100,7 @@ class Order extends Auth
$allowPayments = $_allowPayments;
}
// 商品折扣处理
[$discountId, $discountRate] = [0, 100.00];
if ($goodsInfo['discount_id'] > 0) {
$map = ['status' => 1, 'deleted' => 0, 'id' => $goodsInfo['discount_id']];
if ($discount = $this->app->db->name('DataUserDiscount')->where($map)->value('items')) {
foreach (json_decode($discount, true) as $vo) if ($vo['level'] == $this->user['vip_code']) {
[$discountId, $discountRate] = [$goodsInfo['discount_id'], $vo['discount']];
}
}
}
[$discountId, $discountRate] = OrderService::instance()->discount($goodsInfo['discount_id'], $this->user['vip_code']);
// 订单详情处理
$items[] = [
'uid' => $order['uid'],
@ -200,12 +192,7 @@ class Order extends Auth
public function discount()
{
$data = $this->_vali(['discount.require' => '折扣编号不能为空!']);
[$map, $rate] = [['status' => 1, 'deleted' => 0, 'id' => $data['discount']], 100.00];
if ($discount = $this->app->db->name('DataUserDiscount')->where($map)->value('items')) {
foreach (json_decode($discount, true) as $vo) if ($vo['level'] == $this->user['vip_code']) {
$rate = round($vo['discount']);
}
}
[, $rate] = OrderService::instance()->discount(intval($data['discount']), $this->user['vip_code']);
$this->success('获取用户折扣', ['rate' => $rate]);
}

View File

@ -95,6 +95,23 @@ class OrderService extends Service
return $buyVipEntry;
}
/**
* 获取级别折扣比例
* @param integer $disId 折扣方案ID
* @param integer $vipCode 等级序号
* @return array [方案ID, 等级序号]
*/
public function discount(int $disId, int $vipCode): array
{
[$map, $rate] = ['id' => $disId, ['status' => 1, 'deleted' => 0], 100.00];
if ($discount = $this->app->db->name('DataUserDiscount')->where($map)->value('items')) {
foreach (json_decode($discount, true) as $vo) if ($vo['level'] == $vipCode) {
$rate = round($vo['discount']);
}
}
return [$disId, $rate];
}
/**
* 绑定订单详情数据
* @param array $data