Ppintuan.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. <?php
  2. /**
  3. * 拼团活动模型
  4. *
  5. */
  6. namespace app\common\model;
  7. use think\facade\Db;
  8. /**
  9. * ============================================================================
  10. *
  11. * ============================================================================
  12. * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
  13. * 网站地址: https://www.valimart.net/
  14. * ----------------------------------------------------------------------------
  15. *
  16. * ============================================================================
  17. * 数据层模型
  18. */
  19. class Ppintuan extends BaseModel {
  20. public $page_info;
  21. const PINTUAN_STATE_CLOSE = 0;
  22. const PINTUAN_STATE_NORMAL = 1;
  23. const PINTUAN_STATE_CANCEL = 2;
  24. private $pintuan_state_array = array(
  25. self::PINTUAN_STATE_CLOSE => '已结束',
  26. self::PINTUAN_STATE_NORMAL => '正常',
  27. self::PINTUAN_STATE_CANCEL => '管理员关闭'
  28. );
  29. /**
  30. * 读取拼团列表
  31. * @access public
  32. * @author csdeshang
  33. * @param array $condition 查询条件
  34. * @param int $pagesize 分页数
  35. * @param string $order 排序
  36. * @param string $field 所需字段
  37. * @return array 拼团列表
  38. */
  39. public function getPintuanList($condition, $pagesize = null, $order = '', $field = '*') {
  40. if($pagesize){
  41. $res = Db::name('ppintuan')->field($field)->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  42. $pintuan_list = $res->items();
  43. $this->page_info = $res;
  44. }else{
  45. $pintuan_list = Db::name('ppintuan')->field($field)->where($condition)->order($order)->select()->toArray();
  46. }
  47. if (!empty($pintuan_list)) {
  48. for ($i = 0, $j = count($pintuan_list); $i < $j; $i++) {
  49. $pintuan_list[$i] = $this->getPintuanExtendInfo($pintuan_list[$i]);
  50. }
  51. }
  52. return $pintuan_list;
  53. }
  54. /**
  55. * 根据条件读取限制折扣信息
  56. * @access public
  57. * @author csdeshang
  58. * @param array $condition 查询条件
  59. * @return array 拼团信息
  60. */
  61. public function getPintuanInfo($condition) {
  62. $pintuan_info = Db::name('ppintuan')->where($condition)->find();
  63. if(!empty($pintuan_info)){
  64. $pintuan_info = $this->getPintuanExtendInfo($pintuan_info);
  65. }
  66. return $pintuan_info;
  67. }
  68. /**
  69. * 根据拼团编号读取限制折扣信息
  70. * @access public
  71. * @author csdeshang
  72. * @param array $pintuan_id 限制折扣活动编号
  73. * @param int $store_id 如果提供店铺编号,判断是否为该店铺活动,如果不是返回null
  74. * @return array 拼团信息
  75. */
  76. public function getPintuanInfoByID($pintuan_id, $store_id = 0) {
  77. if (intval($pintuan_id) <= 0) {
  78. return null;
  79. }
  80. $condition = array();
  81. $condition[] = array('pintuan_id','=',$pintuan_id);
  82. $pintuan_info = $this->getPintuanInfo($condition);
  83. if ($store_id > 0 && $pintuan_info['store_id'] != $store_id) {
  84. return null;
  85. } else {
  86. return $pintuan_info;
  87. }
  88. }
  89. /**
  90. * 拼团状态数组
  91. * @access public
  92. * @author csdeshang
  93. * @return type
  94. */
  95. public function getPintuanStateArray() {
  96. return $this->pintuan_state_array;
  97. }
  98. /**
  99. * 增加
  100. * @access public
  101. * @author csdeshang
  102. * @param array $data 数据
  103. * @return type
  104. */
  105. public function addPintuan($data) {
  106. $data['pintuan_state'] = self::PINTUAN_STATE_NORMAL;
  107. $flag= Db::name('ppintuan')->insertGetId($data);
  108. if($flag){
  109. // 发布拼团锁定商品
  110. $this->_lockGoods($data['pintuan_goods_commonid']);
  111. }
  112. return $flag;
  113. }
  114. /**
  115. * 删除活动
  116. * @author csdeshang
  117. * @param type $condition 删除条件
  118. * @return type
  119. */
  120. public function delPintuan($condition)
  121. {
  122. return Db::name('ppintuan')->where($condition)->delete();
  123. }
  124. /**
  125. * 锁定商品
  126. * @access private
  127. * @author csdeshang
  128. * @param type $goods_commonid 商品编号
  129. */
  130. private function _lockGoods($goods_commonid)
  131. {
  132. $condition = array();
  133. $condition[] = array('goods_commonid','=',$goods_commonid);
  134. $goods_model = model('goods');
  135. $goods_model->editGoodsCommonLock($condition);
  136. $goods_model->editGoodsLock($condition);
  137. }
  138. /**
  139. * 解锁商品
  140. * @access private
  141. * @author csdeshang
  142. * @param type $goods_commonid 商品编号ID
  143. */
  144. private function _unlockGoods($goods_commonid)
  145. {
  146. $goods_model = model('goods');
  147. $goods_model->editGoodsCommonUnlock(array(array('goods_commonid' ,'in', $goods_commonid)));
  148. $goods_model->editGoodsUnlock(array(array('goods_commonid' ,'in', $goods_commonid)));
  149. }
  150. /**
  151. * 编辑更新
  152. * @param type $update 更新数据
  153. * @param type $condition 条件
  154. * @return type
  155. */
  156. public function editPintuan($update, $condition) {
  157. $goods_commonids=Db::name('ppintuan')->where($condition)->column('pintuan_goods_commonid');
  158. foreach($goods_commonids as $goods_commonid){
  159. $this->_dGoodsPintuanCache($goods_commonid);
  160. }
  161. return Db::name('ppintuan')->where($condition)->update($update);
  162. }
  163. /**
  164. * 指定拼团活动结束,参团成功的继续参团,不成功的保持默认.
  165. * @access public
  166. * @author csdeshang
  167. * @param type $condition
  168. * @return type
  169. */
  170. public function endPintuan($condition) {
  171. $goods_commonid=Db::name('ppintuan')->where($condition)->column('pintuan_goods_commonid');
  172. $data['pintuan_state'] = self::PINTUAN_STATE_CLOSE;
  173. $flag= Db::name('ppintuan')->where($condition)->update($data);
  174. if($flag){
  175. if(!empty($goods_commonid)){
  176. $this->_unlockGoods($goods_commonid);
  177. }
  178. }
  179. return $flag;
  180. }
  181. /**
  182. * 获取拼团扩展信息,包括状态文字和是否可编辑状态
  183. * @access public
  184. * @author csdeshang
  185. * @param type $pintuan_info 拼团信息
  186. * @return boolean
  187. */
  188. public function getPintuanExtendInfo($pintuan_info) {
  189. $pintuan_info['pintuan_state_text'] = $this->pintuan_state_array[$pintuan_info['pintuan_state']];
  190. //是否有正在参加拼团的订单
  191. $pintuan_order_count=Db::name('ppintuanorder')->where(array('pintuan_id'=>$pintuan_info['pintuan_id'],'pintuanorder_state'=>1))->count();
  192. if ($pintuan_info['pintuan_state'] == self::PINTUAN_STATE_NORMAL && $pintuan_info['pintuan_end_time'] > TIMESTAMP) {
  193. $pintuan_info['editable'] = true;
  194. } else {
  195. $pintuan_info['editable'] = false;
  196. }
  197. return $pintuan_info;
  198. }
  199. /**
  200. * 过期修改状态
  201. * @access public
  202. * @author csdeshang
  203. * @param type $condition 条件
  204. * @return boolean
  205. */
  206. public function editExpirePintuan($condition) {
  207. $condition[] = array('pintuan_end_time','<', TIMESTAMP);
  208. $condition[] = array('pintuan_state','=',self::PINTUAN_STATE_NORMAL);
  209. $updata = array();
  210. $update['pintuan_state'] = self::PINTUAN_STATE_CLOSE;
  211. $this->editPintuan($update, $condition);
  212. return true;
  213. }
  214. /**
  215. * 读取拼团列表
  216. * @access public
  217. * @author csdeshang
  218. * @param type $condition 条件
  219. * @param type $pagesize 分页
  220. * @param type $order 排序
  221. * @param type $field 字段
  222. * @param type $limit 限制
  223. * @return type
  224. */
  225. public function getPintuanExtendList($condition, $pagesize = null, $order = 'pintuan_state asc', $field = '*', $limit = 0) {
  226. $pintuan_list = $this->getPintuanList($condition, $pagesize, $order, $field, $limit);
  227. if (!empty($pintuan_list)) {
  228. for ($i = 0, $j = count($pintuan_list); $i < $j; $i++) {
  229. $pintuan_list[$i] = $this->getPintuanExtendInfo($pintuan_list[$i]);
  230. }
  231. }
  232. return $pintuan_list;
  233. }
  234. /**
  235. * 根据商品编号查询是否有可用拼团活动,如果有返回抢购信息,没有返回null
  236. * @param type $goods_commonid 商品id
  237. * @return array
  238. */
  239. public function getPintuanInfoByGoodsCommonID($goods_commonid) {
  240. $info = $this->_rGoodsPintuanCache($goods_commonid);
  241. if (empty($info)) {
  242. $condition = array();
  243. $condition[] = array('pintuan_state', '=', self::PINTUAN_STATE_NORMAL);
  244. $condition[] = array('pintuan_end_time', '>', TIMESTAMP);
  245. $condition[] = array('pintuan_goods_commonid', '=', $goods_commonid);
  246. $pintuan_goods_list = $this->getPintuanExtendList($condition, null, 'pintuan_starttime asc', '*', 1);
  247. $pintuan_goods = isset($pintuan_goods_list[0]) ? $pintuan_goods_list[0] : "";
  248. if (!empty($pintuan_goods)) {
  249. //获取此商品拼团对应的开团人
  250. $condition = array();
  251. $condition[] = array('pintuangroup_joined','>',0);
  252. $condition[] = array('pintuan_id','=',$pintuan_goods['pintuan_id']);
  253. $condition[] = array('pintuangroup_state','=',1);
  254. $pintuan_goods['pintuangroup_list'] = model('ppintuangroup')->getPpintuangroupList($condition);
  255. }
  256. //序列化存储到缓存
  257. $info['info'] = serialize($pintuan_goods);
  258. $this->_wGoodsPintuanCache($goods_commonid, $info);
  259. }
  260. $pintuan_goods_info = unserialize($info['info']);
  261. if (!empty($pintuan_goods_info) && ($pintuan_goods_info['pintuan_starttime'] > TIMESTAMP || $pintuan_goods_info['pintuan_end_time'] < TIMESTAMP)) {
  262. $pintuan_goods_info = array();
  263. }
  264. return $pintuan_goods_info;
  265. }
  266. /**
  267. * 读取商品抢购缓存
  268. * @access public
  269. * @author csdeshang
  270. * @param type $goods_commonid 商品id
  271. * @return type
  272. */
  273. private function _rGoodsPintuanCache($goods_commonid) {
  274. return rcache($goods_commonid, 'goods_pintuan');
  275. }
  276. /**
  277. * 写入商品抢购缓存
  278. * @access public
  279. * @author csdeshang
  280. * @param type $goods_commonid ID
  281. * @param type $info 信息
  282. * @return type
  283. */
  284. private function _wGoodsPintuanCache($goods_commonid, $info) {
  285. return wcache($goods_commonid, $info, 'goods_pintuan');
  286. }
  287. /**
  288. * 删除商品抢购缓存
  289. * @access public
  290. * @author csdeshang
  291. * @param int $goods_commonid 商品ID
  292. * @return boolean
  293. */
  294. public function _dGoodsPintuanCache($goods_commonid) {
  295. return dcache($goods_commonid, 'goods_pintuan');
  296. }
  297. }