ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
### 根据商品编码ID查询限时折扣价格信息(详情页展示活动价用) **位置:** Common\Lib\EventLib.class.php **参数:** * @param $no_id int 商品编码ID * @param $type int 商品编码ID类型, 1表示传入的是唯一码,2表示传入的是SKU, 3表示传入的是SKC **调用:** * $event = new EventLib(); * $time_event = $event->getTimeEventPrice($skc_id, 3); **返回:** 返回最优限时折扣信息$min数组,数组各项含义如下: $min['id'] // 最优限时折扣活动ID $min['ac_price'] // 最优限时折扣价格 $min['ac_discount'] // 最优限时折扣 $min['event_name'] // 活动名称 $min['start_time'] // 活动开始时间 $min['end_time'] // 活动结束时间 $min['shops_ids'] // 参与门店ID $min['shops'] // 参与门店数组 $min['actor'] // 参与人员数组,为空表示所有人都参与 $min['enjoy'] // 是否同时参与会员折扣,1表示是,0表示否 $min['prior'] // 会员是否优先参与活动,1表示是,0表示否 $min['prior_days'] // 会员优先天数 如果是会员优先活动 $min['normal_start'] //0表示非会员活动未开始,1表示非会员活动已开始 $min['rate'] // 积分倍率 **完整代码:** ~~~ /** * * 获取最优限时折扣活动价格相关信息(商城展示用) * QJM 2018-07-11 * @param $no_id int 商品ID * @param $type int ID类型, 1表示传入的是唯一码,2表示传入的是SKU,3表示传入的SKC,(活动范围为唯一码时必须传入唯一码) * @return $min array 最优限时折扣信息 * 异常返回 异常:传入商品ID的SPUID不存在 * 异常:传入商品ID的SKUID不存在 * 异常:传入商品ID的SKCID不存在 */ public function getTimeEventPrice($no_id, $type) { // 1、查询所有正在进行的限时折扣活动 $time = time(); $map['start_time'] = array('elt', $time); // 活动开始时间 $map['end_time'] = array('egt', $time); // 活动结束时间 $map['types'] = array('eq', 1); // 活动类型 1为限时折扣,2为满减,3为满折 $map['status'] = 1; // 审批状态(0为未审批;1为审批通过;2为终止或审批不通过) $event_result = M('event_basic')->where($map)->select(); // 2、根据传入的商品ID获取商品的SPUID和SKUID及商品品类信息 if ($type == 1) { $spu_id = M('goods_item')->where('id=' . $no_id)->getField('spu_id'); // 获取spu_id $sku_id = M('goods_item')->where('id=' . $no_id)->getField('sku_id'); // 获取sku_id $skc_id = M('goods_item')->where('id=' . $no_id)->getField('skc_id'); // 获取skc_id $item_id = $no_id; // 获取唯一码id } elseif ($type == 2) { $spu_id = M('goods_sku')->where('id=' . $no_id)->getField('spu_id'); // 获取spu_id $sku_id = $no_id; // 获取sku_id $skc_id = M('goods_sku')->where('id=' . $no_id)->getField('skc_id'); // 获取skc_id } elseif ($type == 3) { $spu_id = M('goods_skc')->where('id=' . $no_id)->getField('spu_id'); // 获取spu_id $sku_ids = M('goods_sku')->where('skc_id=' . $no_id)->getField('id', true); // 获取sku_id $skc_id = $no_id; } if (empty($spu_id)) { return '异常:传入商品ID的SPUID不存在'; } if (empty($sku_id) && empty($sku_ids)) { return '异常:传入商品ID的SKUID不存在'; } if (empty($skc_id)) { return '异常:传入商品ID的SKCID不存在'; } $goods['price'] = M('goods_sku')->where('skc_id=' . $skc_id)->getField('original_price'); // 获取商品吊牌价 $goods['brand'] = M('goods_spu')->where('id=' . $spu_id)->getField('brand_id'); // 获取品牌ID $goods['sex'] = M('goods_spu_category')->where('level=1 and spu_id=' . $spu_id)->getField('cat_id'); // 获取性别ID $goods['big_class'] = M('goods_spu_category')->where('level=2 and spu_id=' . $spu_id)->getField('cat_id'); // 获取大类ID // 3、判断商品符合的活动 foreach ($event_result as $key => $value) { // 活动范围 1为品类,2为SPU,3为SKU, 4为SKC,5为唯一码 if ($value['time_discount'] == 1) { $where_a['event_id'] = array('eq', $value['id']); $where_a['is_delete'] = array('eq', 0); $event_class = M('event_time_goods_class')->where($where_a)->select(); foreach ($event_class as $k => $v) { // 判断品牌ID是否相等 if (!empty($v['brand_id'])) { if ($v['brand_id'] != $goods['brand'] && $v['cat_big_id'] != 1) { unset($event_class[$k]); continue; } } // 判断性别ID是否相等 if (!empty($v['cat_sex_id'])) { if ($v['cat_sex_id'] != $goods['sex'] && $v['cat_big_id'] != 1) { unset($event_class[$k]); continue; } } // 判断大类ID是否相等 if (!empty($v['cat_big_id'])) { if ($v['cat_big_id'] != $goods['big_class'] && $v['cat_big_id'] != 1) { unset($event_class[$k]); continue; } } } if (empty($event_class)) { unset($event_result[$key]); } else { foreach ($event_class as $kk => $vv) { $id = $vv['event_id']; $discount = $vv['event_discount']; $price = $vv['event_discount'] * $goods['price']; $active[] = array('id' => $id, 'ac_price' => $price, 'ac_discount' => $discount); } } } elseif ($value['time_discount'] == 2) { // 2活动范围为款号 $where_b['event_id'] = array('eq', $value['id']); $where_b['mark'] = array('eq', 1); // 1是款号;2是SKU;3是SKC;4是唯一码 $where_b['is_delete'] = array('eq', 0); $where_b['menu_id'] = array('eq', $spu_id); $event_no = M('event_time_goods_no')->where($where_b)->select(); if (!empty($event_no)) { $id = array_column($event_no, 'event_id')[0]; $discount = round(array_column($event_no, 'discount_price')[0] / $goods['price'], 2); // 折扣价/原价保留两位小数 $price = array_column($event_no, 'discount_price')[0]; $active[] = array('id' => $id, 'ac_price' => $price, 'ac_discount' => $discount); } } elseif ($value['time_discount'] == 3) { // 3活动范围为SKU $where_c['event_id'] = array('eq', $value['id']); $where_c['mark'] = array('eq', 2); // 1是款号;2是SKU;3是SKC;4是唯一码 $where_c['is_delete'] = array('eq', 0); // $type表示传入的ID类型, 1表示传入的是唯一码,2表示传入的是SKU,3表示传入的SKC if ($type == 1 || $type == 2) { // 在限时折扣款号表中查询该SKU $where_c['menu_id'] = array('eq', $sku_id); $event_no = M('event_time_goods_no')->where($where_c)->select(); } elseif ($type == 3) { // 在限时折扣款号表中查询该SKU $where_c['menu_id'] = array('in', $sku_ids); $event_no = M('event_time_goods_no')->where($where_c)->select(); } if (!empty($event_no)) { $id = array_column($event_no, 'event_id')[0]; $discount = round(array_column($event_no, 'discount_price')[0] / $goods['price'], 2); // 折扣价/原价保留两位小数 $price = array_column($event_no, 'discount_price')[0]; // 将活动ID,活动折扣,活动折扣价存入活动数组 $active[] = array('id' => $id, 'ac_price' => $price, 'ac_discount' => $discount); } } elseif ($value['time_discount'] == 4) { $where_d['event_id'] = array('eq', $value['id']); $where_d['mark'] = array('eq', 3); // 1是款号;2是SKU;3是SKC;4是唯一码 $where_d['is_delete'] = array('eq', 0); $where_d['menu_id'] = array('eq', $skc_id); $event_no = M('event_time_goods_no')->where($where_d)->select(); if (!empty($event_no)) { $id = array_column($event_no, 'event_id')[0]; $discount = round(array_column($event_no, 'discount_price')[0] / $goods['price'], 2); // 折扣价/原价保留两位小数 $price = array_column($event_no, 'discount_price')[0]; // 将活动ID,活动折扣,活动折扣价存入活动数组 $active[] = array('id' => $id, 'ac_price' => $price, 'ac_discount' => $discount); } } elseif ($value['time_discount'] = 5) { // $type表示传入的ID类型, 1表示传入的是唯一码,2表示传入的是SKU, 3表示传入的SKC if ($type == 1) { // 在限时折扣款号表中查询该唯一码 $where_e['event_id'] = array('eq', $value['id']); $where_e['mark'] = array('eq', 4); // 1是款号;2是SKU;3是SKC;4是唯一码 $where_e['is_delete'] = array('eq', 0); $where_e['menu_id'] = array('eq', $item_id); $event_no = M('event_time_goods_no')->where($where_e)->select(); } if (!empty($event_no)) { $id = array_column($event_no, 'event_id')[0]; $discount = round(array_column($event_no, 'discount_price')[0] / $goods['price'], 2); // 折扣价/原价保留两位小数 $price = array_column($event_no, 'discount_price')[0]; // 将活动ID,活动折扣,活动折扣价存入活动数组 $active[] = array('id' => $id, 'ac_price' => $price, 'ac_discount' => $discount); } } } // 4、如果过滤后的活动信息为空,直接返回 if (empty($active)) { return; } // 判断价格最低的活动 $min = null; foreach ($active as $key => $value) { if ($key == 0) { $min = $active[$key]; continue; } if ($active[$key]['ac_price'] < $min['ac_price']) { $min = $active[$key]; } } // 查询最优活动基本信息 $event_basic = M('event_basic')->where('id='.$min['id'])->find(); // 查询活动参与门店 $shops_ids = M('event_shop')->where('event_id='.$value['id'])->getField('shops_id',true); foreach ($shops_ids as $kk => $vv) { if ($vv == 1) { $event_shops = array( 0 => '全部门店' ); break; } $event_shops[$kk] = M('shops')->where('id='.$vv)->getField('shops_name'); } $min['event_name'] = $event_basic['event_name']; // 活动名称 $min['start_time'] = $event_basic['start_time']; // 活动开始时间 $min['end_time'] = $event_basic['end_time']; // 活动结束时间 $min['shops_ids'] = $shops_ids; // 参与门店ID $min['shops'] = $event_shops; // 参与门店 $actor = explode(",", $event_basic['actor']); // 参与人员 if ($actor[0] == 0) { $min['actor'] = ''; // 参与人员 } else { $min['actor'] = $actor; // 参与人员 } $min['enjoy'] = $event_basic['enjoy']; // 会员顾客可同时参与会员折扣 $min['prior'] = $event_basic['prior']; // 会员优先参与活动 // 如果是会员优先活动 if ($min['prior'] == 1) { // 判断非会员是否已经可以参与最优活动价 $time = time(); if ($time < $event_basic['start_time'] + $event_basic['prior_days'] * 86400) { $min['normal_start'] = 0; // 0表示非会员活动未开始,1表示非会员活动已开始 } else { $min['normal_start'] = 1; // 0表示非会员活动未开始,1表示非会员活动已开始 } } $min['prior_days'] = $event_basic['prior_days']; // 会员优先天数 $min['rate'] = $event_basic['rate']; // 积分倍率 return $min; } ~~~