123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- <?php
- /**
- * 限时折扣活动模型
- *
- *
- *
- *
-
- */
- defined('InShopNC') or exit('Access Invalid!');
- require_once (BASE_ROOT_PATH . '/helper/message/publisher.php');
- class p_xianshiModel extends Model{
- const XIANSHI_STATE_NORMAL = 1;
- const XIANSHI_STATE_CLOSE = 2;
- const XIANSHI_STATE_CANCEL = 3;
- private $xianshi_state_array = array(
- 0 => '全部',
- self::XIANSHI_STATE_NORMAL => '正常',
- self::XIANSHI_STATE_CLOSE => '已结束',
- self::XIANSHI_STATE_CANCEL => '管理员关闭'
- );
- public function __construct(){
- parent::__construct('p_xianshi');
- }
- /**
- * 读取限时折扣列表
- * @param array $condition 查询条件
- * @param int $page 分页数
- * @param string $order 排序
- * @param string $field 所需字段
- * @return array 限时折扣列表
- *
- */
- public function getXianshiList($condition, $page=null, $order='', $field='*') {
- $xianshi_list = $this->field($field)->where($condition)->page($page)->order($order)->select();
- if(!empty($xianshi_list)) {
- for($i =0, $j = count($xianshi_list); $i < $j; $i++) {
- $xianshi_list[$i] = $this->getXianshiExtendInfo($xianshi_list[$i]);
- }
- }
- return $xianshi_list;
- }
- /**
- * 根据条件读取限制折扣信息
- * @param array $condition 查询条件
- * @return array 限时折扣信息
- *
- */
- public function getXianshiInfo($condition) {
- $xianshi_info = $this->where($condition)->find();
- $xianshi_info = $this->getXianshiExtendInfo($xianshi_info);
- return $xianshi_info;
- }
- /**
- * 根据限时折扣编号读取限制折扣信息
- * @param array $xianshi_id 限制折扣活动编号
- * @param int $store_id 如果提供店铺编号,判断是否为该店铺活动,如果不是返回null
- * @return array 限时折扣信息
- *
- */
- public function getXianshiInfoByID($xianshi_id, $store_id = 0) {
- if(intval($xianshi_id) <= 0) {
- return null;
- }
- $condition = array();
- $condition['xianshi_id'] = $xianshi_id;
- $xianshi_info = $this->getXianshiInfo($condition);
- if($store_id > 0 && $xianshi_info['store_id'] != $store_id) {
- return null;
- } else {
- return $xianshi_info;
- }
- }
- /**
- * 限时折扣状态数组
- *
- */
- public function getXianshiStateArray() {
- return $this->xianshi_state_array;
- }
- /*
- * 增加
- * @param array $param
- * @return bool
- *
- */
- public function addXianshi($param){
- $param['state'] = self::XIANSHI_STATE_NORMAL;
- $ret = $this->insert($param);
- $this->_wVersionCache();
- return $ret;
- }
- /*
- * 更新
- * @param array $update
- * @param array $condition
- * @return bool
- *
- */
- public function editXianshi($update, $condition){
- $ret = $this->where($condition)->update($update);
- $this->_wVersionCache();
- return $ret;
- }
- /*
- * 删除限时折扣活动,同时删除限时折扣商品
- * @param array $condition
- * @return bool
- *
- */
- public function delXianshi($condition){
- $xianshi_list = $this->getXianshiList($condition);
- $xianshi_id_string = '';
- if(!empty($xianshi_list)) {
- foreach ($xianshi_list as $value) {
- $xianshi_id_string .= $value['xianshi_id'] . ',';
- }
- }
- //删除限时折扣商品
- if($xianshi_id_string !== '') {
- $model_xianshi_goods = Model('p_xianshi_goods');
- $model_xianshi_goods->delXianshiGoods(array('xianshi_id'=>array('in', $xianshi_id_string)));
- }
- $ret = $this->where($condition)->delete();
- $this->_wVersionCache();
- return $ret;
- }
- /*
- * 取消限时折扣活动,同时取消限时折扣商品
- * @param array $condition
- * @return bool
- *
- */
- public function cancelXianshi($condition){
- $xianshi_list = $this->getXianshiList($condition);
- $xianshi_id_string = '';
- if(!empty($xianshi_list)) {
- foreach ($xianshi_list as $value) {
- $xianshi_id_string .= $value['xianshi_id'] . ',';
- }
- }
- $update = array();
- $update['state'] = self::XIANSHI_STATE_CANCEL;
- //删除限时折扣商品
- if($xianshi_id_string !== '') {
- $model_xianshi_goods = Model('p_xianshi_goods');
- $model_xianshi_goods->editXianshiGoods($update, array('xianshi_id'=>array('in', $xianshi_id_string)));
- }
- return $this->editXianshi($update, $condition);
- }
- /**
- * 获取限时折扣扩展信息,包括状态文字和是否可编辑状态
- * @param array $xianshi_info
- * @return string
- *
- */
- public function getXianshiExtendInfo($xianshi_info) {
- if($xianshi_info['end_time'] > time()) {
- $xianshi_info['xianshi_state_text'] = $this->xianshi_state_array[$xianshi_info['state']];
- } else {
- $xianshi_info['xianshi_state_text'] = '已结束';
- }
- if($xianshi_info['state'] == self::XIANSHI_STATE_NORMAL && $xianshi_info['end_time'] > time()) {
- $xianshi_info['editable'] = true;
- } else {
- $xianshi_info['editable'] = false;
- }
- return $xianshi_info;
- }
- /**
- * 过期修改状态
- */
- public function editExpireXianshi($condition) {
- $condition['end_time'] = array('lt', time());
-
- // 更新商品促销价格
- $xianshigoods_list = Model('p_xianshi_goods')->getXianshiGoodsList($condition);
- if (!empty($xianshigoods_list)) {
- $goodsid_array = array();
- foreach ($xianshigoods_list as $val) {
- $goodsid_array[] = $val['goods_id'];
- }
- // 更新商品促销价格,需要考虑抢购是否在进行中
- QueueClient::push('updateGoodsPromotionPriceByGoodsId', $goodsid_array);
- }
- $condition['state'] = self::XIANSHI_STATE_NORMAL;
-
- $updata = array();
- $updata['state'] = self::XIANSHI_STATE_CLOSE;
- $this->editXianshi($updata, $condition);
- return true;
- }
- private function _wVersionCache()
- {
- $publisher = new message\publisher();
- $publisher->modify_activity_limit();
- }
- }
|