ThinkSSL🔒 一键申购 5分钟快速签发 30天无理由退款 购买更放心 广告
### 根据传入的商品ID查询最优限时折扣活动价格或者折扣信息(返回结果带有html标签) **位置:** Common\Common\function.php **参数:** * @param int $no_id 商品ID * @param int $type 商品ID类型, 1表示传入的是唯一码,2表示传入的是SKU,3表示传入的SKC * @param $back int 返回结果类型 1表示返回的是活动折扣价,2表示返回的是限时折扣 **调用:** 列表展示用,详情页展示限时折扣活动价请调用Event组件库中的同名方法 getTimeEventPrice **View模版中调用:** {$vo.no_id|get_time_event_price = 1,1} // 返回活动折扣价 {$vo.no_id|get_time_event_price = 1,2} // 返回限时折扣 **返回:** 如果是会员优先活动,非会员参与时间未到,根据函数第三个参数返回 会员限时折扣价 return "<a href=".$href.">".$min["ac_price"]."(会员)</a>"; 或者会员限时折扣 return $min['ac_discount']."(会员)"; 如果是会员优先活动,非会员参与时间已到,根据函数第三个参数返回 限时折扣价 return "<a href=".$href.">".$min["ac_price"]."</a>"; 或者限时折扣 return $min['ac_discount']; 如果是非会员优先活动,根据函数第三个参数直接返回最低限时折扣价 return "<a href=".$href.">".$min["ac_price"]."</a>"; 或者限时折扣 return $min['ac_discount']; **完整代码:** ~~~ /** * 查询最优限时折扣活动价格信息 * QJM 2018-07-11 * @param $no_id int 商品ID * @param $type int 商品ID类型 1表示传入的是唯一码,2表示传入的是SKU,3表示传入的SKC * @param $back int 返回结果类型 1表示返回的是活动折扣价,2表示返回的是限时折扣 * @return $min array 最优限时折扣信息 */ function get_time_event_price ($no_id, $type, $back) { // 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; // 获取skc_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) { $where_b['event_id'] = array('eq', $value['id']); $where_b['mark'] = array('eq', 1); // 1是款号;2是SKU $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) { $where_c['event_id'] = array('eq', $value['id']); $where_c['mark'] = array('eq', 2); // 1是款号;2是SKU $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; } // 5、判断价格最低的活动 $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]; } } // 6、查询最优活动基本信息 $event_basic = M('event_basic')->where('id='.$min['id'])->find(); $min['prior'] = $event_basic['prior']; // 会员优先参与活动 // 拼接限时折扣活动价链接 $href = '/index.php/Wpos/Member/Event/index/id/'.$event_basic['id'].'.html'; // 7、判断会员优先活动 if ($min['prior'] == 1) { // 判断非会员是否已经可以参与最优活动价 $time = time(); if ($time < $event_basic['start_time'] + $event_basic['prior_days'] * 86400) { if ($back == 1) { return "<a href=".$href.">".$min["ac_price"]."(会员)</a>"; } elseif ($back == 2) { return $min['ac_discount']."(会员)"; } } else { if ($back == 1) { return "<a href=".$href.">".$min["ac_price"]."</a>"; } elseif ($back == 2) { return $min['ac_discount']; } } } // 8、非会员优先活动直接返回最低限时折扣价或折扣 if ($back == 1) { return "<a href=".$href.">".$min["ac_price"]."</a>"; } elseif ($back == 2) { return $min['ac_discount']; } } ~~~