12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583 |
- <?php
- /**
- * 商品管理
- *
- *好商城V3 BY 33ha o.c om
- */
- defined('InShopNC') or exit('Access Invalid!');
- class goodsModel extends Model
- {
- public function __construct()
- {
- parent::__construct('goods');
- }
- const STATE1 = 1; // 出售中
- const STATE0 = 0; // 下架
- const STATE10 = 10; // 违规
- const VERIFY1 = 1; // 审核通过
- const VERIFY0 = 0; // 审核失败
- const VERIFY10 = 10; // 等待审核
- /**
- * 新增商品数据
- *
- * @param array $insert 数据
- * @param string $table 表名
- */
- public function addGoods($insert)
- {
- $result = $this->table('goods')->insert($insert);
- if ($result) {
- $this->_dGoodsCache($result);
- $this->_dGoodsCommonCache($insert['goods_commonid']);
- $this->_dGoodsSpecCache($insert['goods_commonid']);
- }
- return $result;
- }
- /**
- * 新增商品公共数据
- *
- * @param array $insert 数据
- * @param string $table 表名
- */
- public function addGoodsCommon($insert)
- {
- return $this->table('goods_common')->insert($insert);
- }
- /**
- * 新增多条商品数据
- *
- * @param unknown $insert
- */
- public function addGoodsImagesAll($insert)
- {
- $result = $this->table('goods_images')->insertAll($insert);
- if ($result) {
- foreach ($insert as $val) {
- $this->_dGoodsImageCache($val['goods_commonid'] . '|' . $val['color_id']);
- }
- }
- return $result;
- }
- /**
- * 商品SKU列表
- *
- * @param array $condition 条件
- * @param string $field 字段
- * @param string $group 分组
- * @param string $order 排序
- * @param int $limit 限制
- * @param int $page 分页
- * @param boolean $lock 是否锁定
- * @return array 二维数组
- */
- public function getGoodsList($condition, $field = '*', $group = '', $order = '', $limit = 0, $page = 0, $lock = false, $count = 0)
- {
- $start = microtime(true);
- $condition = $this->_getRecursiveClass($condition);
- perfor_period("goods.model",$start,"getGoodsList");
- return $this->table('goods')->field($field)->where($condition)->group($group)->page($page, $count)->order($order)->limit($limit)->lock($lock)->select();
- }
- /**
- * 出售中的商品SKU列表(只显示不同颜色的商品,前台商品索引,店铺也商品列表等使用)
- * @param array $condition
- * @param string $field
- * @param string $order
- * @param number $page
- * @return array
- */
- public function getGoodsListByColorDistinct($condition, $field = '*', $order = 'goods_id asc', $page = 0)
- {
- $condition['goods_state'] = self::STATE1;
- $condition['goods_verify'] = self::VERIFY1;
- $condition = $this->_getRecursiveClass($condition);
- //去掉多规格颜色显示 好商城V3-B11
- // $field = "CONCAT(goods_commonid,',',color_id) as nc_distinct ," . $field;
- // $count = $this->getGoodsOnlineCount($condition, "distinct CONCAT(goods_commonid,',',color_id)");
- $fieldex = "CONCAT(goods_commonid) as nc_distinct, max(goods_storage) as max_goods_storage, " . $field;
- $count = $this->getGoodsOnlineCount($condition, "distinct CONCAT(goods_commonid)");
- $goods_list = array();
- if ($count != 0) {
- $goods_list = $this->getGoodsOnlineList($condition, $fieldex, $page, $order, 0, 'nc_distinct', false, $count);
- }
- $goods_ret = array();
- $goods_cids = array();
- foreach($goods_list as $goods)
- {
- $g_storage = intval($goods['goods_storage']);
- if($g_storage > 0 || $g_storage == intval($goods['max_goods_storage'])) {
- array_push($goods_ret,$goods);
- } else {
- array_push($goods_cids,intval($goods['goods_commonid']));
- }
- }
- if(!empty($goods_cids))
- {
- arsort($goods_cids);
- $condition['goods_commonid'] = array('in', $goods_cids);
- $items = $this->cls()->table('goods')->field($field)->where($condition)->order('goods_commonid desc,goods_storage desc')->limit(false)->select();
- foreach($goods_cids as $commonid)
- {
- $fAdd = true;
- foreach($items as $key => $goods)
- {
- if($commonid == intval($goods['goods_commonid'])) {
- if($fAdd) {
- array_push($goods_ret,$goods);
- $fAdd = false;
- }
- unset($items[$key]);
- }
- else {
- break;
- }
- }
- }
- }
- return $goods_ret;
- }
- /**
- * 在售商品SKU列表
- *
- * @param array $condition 条件
- * @param string $field 字段
- * @param string $group 分组
- * @param string $order 排序
- * @param int $limit 限制
- * @param int $page 分页
- * @param boolean $lock 是否锁定
- * @return array
- */
- public function getGeneralGoodsList($condition, $field = '*', $page = 0, $order = 'goods_id desc')
- {
- $condition['is_virtual'] = 0;
- $condition['is_fcode'] = 0;
- $condition['is_presell'] = 0;
- return $this->getGoodsList($condition, $field, '', $order, 0, $page, false, 0);
- }
- /**
- * 在售商品SKU列表
- *
- * @param array $condition 条件
- * @param string $field 字段
- * @param string $group 分组
- * @param string $order 排序
- * @param int $limit 限制
- * @param int $page 分页
- * @param boolean $lock 是否锁定
- * @return array
- */
- public function getGoodsOnlineList($condition, $field = '*', $page = 0, $order = 'goods_id desc', $limit = 0, $group = '', $lock = false, $count = 0)
- {
- $condition['goods_state'] = self::STATE1;
- $condition['goods_verify'] = self::VERIFY1;
- return $this->getGoodsList($condition, $field, $group, $order, $limit, $page, $lock, $count);
- }
- /**
- * 出售中的普通商品列表,即不包括虚拟商品、F码商品、预售商品
- */
- public function getGoodsListForPromotion($condition, $field = '*', $page = 0, $type = '')
- {
- switch ($type) {
- case 'xianshi':
- case 'bundling':
- case 'combo':
- $condition['is_virtual'] = 0;
- $condition['is_fcode'] = 0;
- $condition['is_presell'] = 0;
- $condition['goods_state'] = self::STATE1;
- $condition['goods_verify'] = self::VERIFY1;
- break;
- case 'gift':
- $condition['is_virtual'] = 0;
- break;
- default:
- break;
- }
- return $this->getGoodsList($condition, $field, '', '', 0, $page);
- }
- /**
- * 商品列表 卖家中心使用
- *
- * @param array $condition 条件
- * @param array $field 字段
- * @param string $page 分页
- * @param string $order 排序
- * @return array
- */
- public function getGoodsCommonList($condition, $field = '*', $page = 10, $order = 'goods_commonid desc')
- {
- $condition = $this->_getRecursiveClass($condition);
- return $this->table('goods_common')->field($field)->where($condition)->order($order)->page($page)->select();
- }
- /**
- * 出售中的商品列表 卖家中心使用
- *
- * @param array $condition 条件
- * @param array $field 字段
- * @param string $page 分页
- * @param string $order 排序
- * @return array
- */
- public function getGoodsCommonOnlineList($condition, $field = '*', $page = 10, $order = "goods_commonid desc")
- {
- $condition['goods_state'] = self::STATE1;
- $condition['goods_verify'] = self::VERIFY1;
- return $this->getGoodsCommonList($condition, $field, $page, $order);
- }
- /**
- * 出售中的普通商品列表,即不包括虚拟商品、F码商品、预售商品
- */
- public function getGoodsCommonListForPromotion($condition, $field = '*', $page = 10, $type)
- {
- if ($type == 'groupbuy') {
- $condition['is_virtual'] = 0;
- $condition['is_fcode'] = 0;
- $condition['is_presell'] = 0;
- $condition['goods_state'] = self::STATE1;
- $condition['goods_verify'] = self::VERIFY1;
- }
- return $this->getGoodsCommonList($condition, $field, $page);
- }
- /**
- * 出售中的未参加促销的虚拟商品列表
- */
- public function getGoodsCommonListForVrPromotion($condition, $field = '*', $page = 10)
- {
- $condition['is_virtual'] = 1;
- $condition['is_fcode'] = 0;
- $condition['is_presell'] = 0;
- $condition['goods_state'] = self::STATE1;
- $condition['goods_verify'] = self::VERIFY1;
- return $this->getGoodsCommonList($condition, $field, $page);
- }
- /**
- * 仓库中的商品列表 卖家中心使用
- *
- * @param array $condition 条件
- * @param array $field 字段
- * @param string $page 分页
- * @param string $order 排序
- * @return array
- */
- public function getGoodsCommonOfflineList($condition, $field = '*', $page = 10, $order = "goods_commonid desc")
- {
- $condition['goods_state'] = self::STATE0;
- $condition['goods_verify'] = self::VERIFY1;
- return $this->getGoodsCommonList($condition, $field, $page, $order);
- }
- /**
- * 违规的商品列表 卖家中心使用
- *
- * @param array $condition 条件
- * @param array $field 字段
- * @param string $page 分页
- * @param string $order 排序
- * @return array
- */
- public function getGoodsCommonLockUpList($condition, $field = '*', $page = 10, $order = "goods_commonid desc")
- {
- $condition['goods_state'] = self::STATE10;
- $condition['goods_verify'] = self::VERIFY1;
- return $this->getGoodsCommonList($condition, $field, $page, $order);
- }
- /**
- * 等待审核或审核失败的商品列表 卖家中心使用
- *
- * @param array $condition 条件
- * @param array $field 字段
- * @param string $page 分页
- * @param string $order 排序
- * @return array
- */
- public function getGoodsCommonWaitVerifyList($condition, $field = '*', $page = 10, $order = "goods_commonid desc")
- {
- if (!isset($condition['goods_verify'])) {
- $condition['goods_verify'] = array('neq', self::VERIFY1);
- }
- return $this->getGoodsCommonList($condition, $field, $page, $order);
- }
- /**
- * 查询商品SUK及其店铺信息
- *
- * @param array $condition
- * @param string $field
- * @return array
- */
- public function getGoodsStoreList($condition, $field = '*')
- {
- $condition = $this->_getRecursiveClass($condition);
- return $this->table('goods,store')->field($field)->join('inner')->on('goods.store_id = store.store_id')->where($condition)->select();
- }
- /**
- * 计算商品库存
- *
- * @param array $goods_list
- * @return array|boolean
- */
- public function calculateStorage($goods_list)
- {
- // 计算库存
- if (!empty($goods_list)) {
- $goodsid_array = array();
- foreach ($goods_list as $value) {
- $goodscommonid_array[] = $value['goods_commonid'];
- }
- $goods_storage = $this->getGoodsList(array('goods_commonid' => array('in', $goodscommonid_array)), 'goods_storage,goods_commonid,goods_id,goods_storage_alarm');
- $storage_array = array();
- foreach ($goods_storage as $val) {
- if ($val['goods_storage_alarm'] != 0 && $val['goods_storage'] <= $val['goods_storage_alarm']) {
- $storage_array[$val['goods_commonid']]['alarm'] = true;
- }
- $storage_array[$val['goods_commonid']]['sum'] += $val['goods_storage'];
- $storage_array[$val['goods_commonid']]['goods_id'] = $val['goods_id'];
- }
- return $storage_array;
- } else {
- return false;
- }
- }
- /**
- * 更新商品SUK数据
- *
- * @param array $update 更新数据
- * @param array $condition 条件
- * @return boolean
- */
- public function editGoods($update, $condition)
- {
- $goods_list = $this->getGoodsList($condition, 'goods_id');
- if (empty($goods_list)) {
- return true;
- }
- $goodsid_array = array();
- foreach ($goods_list as $value) {
- $goodsid_array[] = $value['goods_id'];
- }
- return $this->editGoodsById($update, $goodsid_array);
- }
- /**
- * 更新商品SUK数据
- * @param array $update
- * @param int|array $goodsid_array
- * @return boolean|unknown
- */
- public function editGoodsById($update, $goodsid_array)
- {
- if (empty($goodsid_array)) {
- return true;
- }
- $condition['goods_id'] = array('in', $goodsid_array);
- $update['goods_edittime'] = time();
- $result = $this->table('goods')->where($condition)->update($update);
- if ($result)
- {
- foreach ((array)$goodsid_array as $value) {
- $this->_dGoodsCache($value);
- }
- $items = $this->table('goods')->field('goods_commonid')->where($condition)->limit(false)->select();
- $commonids = array();
- foreach($items as $key => $commid) {
- array_push($commonids,intval($commid['goods_commonid']));
- }
- $commonids = array_unique($commonids);
- foreach($commonids as $commid) {
- $this->_dGoodsCommonCache($commid);
- $this->_dGoodsSpecCache($commid);
- }
- }
- return $result;
- }
- /**
- * 更新商品促销价 (需要验证抢购和限时折扣是否进行)
- *
- * @param array $update 更新数据
- * @param array $condition 条件
- * @return boolean
- */
- public function editGoodsPromotionPrice($condition)
- {
- $goods_list = $this->getGoodsList($condition, 'goods_id,goods_commonid');
- $goods_array = array();
- foreach ($goods_list as $val) {
- $goods_array[$val['goods_commonid']][$val['goods_id']] = $val;
- }
- $model_groupbuy = Model('groupbuy');
- $model_xianshigoods = Model('p_xianshi_goods');
- foreach ($goods_array as $key => $val) {
- // 查询抢购时候进行
- $groupbuy = $model_groupbuy->getGroupbuyOnlineInfo(array('goods_commonid' => $key));
- if (!empty($groupbuy)) {
- // 更新价格
- $this->editGoods(array('goods_promotion_price' => $groupbuy['groupbuy_price'], 'goods_promotion_type' => 1), array('goods_commonid' => $key));
- continue;
- }
- foreach ($val as $k => $v) {
- // 查询限时折扣时候进行
- $xianshigoods = $model_xianshigoods->getXianshiGoodsInfo(array('goods_id' => $k, 'start_time' => array('lt', time()), 'end_time' => array('gt', time())));
- if (!empty($xianshigoods)) {
- // 更新价格
- $this->editGoodsById(array('goods_promotion_price' => $xianshigoods['xianshi_price'], 'goods_promotion_type' => 2), $k);
- continue;
- }
- // 没有促销使用原价
- $this->editGoodsById(array('goods_promotion_price' => array('exp', 'goods_price'), 'goods_promotion_type' => 0), $k);
- }
- }
- return true;
- }
- /**
- * 更新商品数据
- * @param array $update 更新数据
- * @param array $condition 条件
- * @return boolean
- */
- public function editGoodsCommon($update, $condition)
- {
- $common_list = $this->getGoodsCommonList($condition, 'goods_commonid', 0);
- if (empty($common_list)) {
- return false;
- }
- $commonid_array = array();
- foreach ($common_list as $val) {
- $commonid_array[] = $val['goods_commonid'];
- }
- return $this->editGoodsCommonById($update, $commonid_array);
- }
- /**
- * 更新商品数据
- * @param array $update
- * @param int|array $commonid_array
- * @return boolean|unknown
- */
- public function editGoodsCommonById($update, $commonid_array)
- {
- if (empty($commonid_array)) {
- return true;
- }
- $condition['goods_commonid'] = array('in', $commonid_array);
- $result = $this->table('goods_common')->where($condition)->update($update);
- if ($result) {
- foreach ((array)$commonid_array as $val) {
- $this->_dGoodsCommonCache($val);
- }
- }
- return $result;
- }
- /**
- * 锁定商品
- * @param unknown $condition
- * @return boolean
- */
- public function editGoodsCommonLock($condition)
- {
- $update = array('goods_lock' => 1);
- return $this->editGoodsCommon($update, $condition);
- }
- /**
- * 解锁商品
- * @param unknown $condition
- * @return boolean
- */
- public function editGoodsCommonUnlock($condition)
- {
- $update = array('goods_lock' => 0);
- return $this->editGoodsCommon($update, $condition);
- }
- /**
- * 更新商品信息
- *
- * @param array $condition
- * @param array $update1
- * @param array $update2
- * @return boolean
- */
- public function editProduces($condition, $update1, $update2 = array())
- {
- $update2 = empty($update2) ? $update1 : $update2;
- $goods_array = $this->getGoodsCommonList($condition, 'goods_commonid', 0);
- if (empty($goods_array)) {
- return true;
- }
- $commonid_array = array();
- foreach ($goods_array as $val) {
- $commonid_array[] = $val['goods_commonid'];
- }
- $return1 = $this->editGoodsCommonById($update1, $commonid_array);
- $return2 = $this->editGoods($update2, array('goods_commonid' => array('in', $commonid_array)));
- if ($return1 && $return2) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * 更新商品信息(审核失败)
- *
- * @param array $condition
- * @param array $update1
- * @param array $update2
- * @return boolean
- */
- public function editProducesVerifyFail($condition, $update1, $update2 = array())
- {
- $result = $this->editProduces($condition, $update1, $update2);
- if ($result) {
- $commonlist = $this->getGoodsCommonList($condition, 'goods_commonid,store_id,goods_verifyremark', 0);
- foreach ($commonlist as $val) {
- $param = array();
- $param['common_id'] = $val['goods_commonid'];
- $param['remark'] = $val['goods_verifyremark'];
- $this->_sendStoreMsg('goods_verify', $val['store_id'], $param);
- }
- }
- }
- /**
- * 更新未锁定商品信息
- *
- * @param array $condition
- * @param array $update1
- * @param array $update2
- * @return boolean
- */
- public function editProducesNoLock($condition, $update1, $update2 = array())
- {
- $condition['goods_lock'] = 0;
- return $this->editProduces($condition, $update1, $update2);
- }
- /**
- * 商品下架
- * @param array $condition 条件
- * @return boolean
- */
- public function editProducesOffline($condition)
- {
- $update = array('goods_state' => self::STATE0);
- return $this->editProducesNoLock($condition, $update);
- }
- /**
- * 商品上架
- * @param array $condition 条件
- * @return boolean
- */
- public function editProducesOnline($condition)
- {
- $update = array('goods_state' => self::STATE1);
- // 禁售商品、审核失败商品不能上架。
- $condition['goods_state'] = self::STATE0;
- $condition['goods_verify'] = array('neq', self::VERIFY0);
- // 修改预约商品状态
- $update['is_appoint'] = 0;
- return $this->editProduces($condition, $update);
- }
- /**
- * 违规下架
- *
- * @param array $update
- * @param array $condition
- * @return boolean
- */
- public function editProducesLockUp($update, $condition)
- {
- $update_param['goods_state'] = self::STATE10;
- $update = array_merge($update, $update_param);
- $return = $this->editProduces($condition, $update, $update_param);
- if ($return) {
- // 商品违规下架发送店铺消息
- $common_list = $this->getGoodsCommonList($condition, 'goods_commonid,store_id,goods_stateremark', 0);
- foreach ($common_list as $val) {
- $param = array();
- $param['remark'] = $val['goods_stateremark'];
- $param['common_id'] = $val['goods_commonid'];
- $this->_sendStoreMsg('goods_violation', $val['store_id'], $param);
- }
- return true;
- } else {
- return false;
- }
- }
- /**
- * 获取单条商品SKU信息
- *
- * @param array $condition
- * @param string $field
- * @return array
- */
- public function getGoodsInfo($condition, $field = '*')
- {
- return $this->table('goods')->field($field)->where($condition)->find();
- }
- /**
- * 获取单条商品SKU信息及其促销信息
- *
- * @param int $goods_id
- * @param string $field
- * @return array
- */
- public function getGoodsOnlineInfoForShare($goods_id)
- {
- $goods_info = $this->getGoodsOnlineInfoAndPromotionById($goods_id);
- if (empty($goods_info)) {
- return array();
- }
- //抢购
- if (isset($goods_info['groupbuy_info'])) {
- $goods_info['promotion_type'] = '抢购';
- $goods_info['promotion_price'] = $goods_info['groupbuy_info']['groupbuy_price'];
- }
- if (isset($goods_info['xianshi_info'])) {
- $goods_info['promotion_type'] = '限时折扣';
- $goods_info['promotion_price'] = $goods_info['xianshi_info']['xianshi_price'];
- }
- return $goods_info;
- }
- /**
- * 查询出售中的商品详细信息及其促销信息
- * @param int $goods_id
- * @return array
- */
- public function getGoodsOnlineInfoAndPromotionById($goods_id)
- {
- $goods_info = $this->getGoodsInfoAndPromotionById($goods_id);
- if (empty($goods_info) || $goods_info['goods_state'] != self::STATE1 || $goods_info['goods_verify'] != self::VERIFY1) {
- return array();
- }
- return $goods_info;
- }
- /**
- * 查询商品详细信息及其促销信息
- * @param int $goods_id
- * @return array
- */
- public function getGoodsInfoAndPromotionById($goods_id)
- {
- $goods_info = $this->getGoodsInfoByID($goods_id);
- if (empty($goods_info)) {
- return array();
- }
- //抢购
- if (C('groupbuy_allow'))
- {
- $goods_info['groupbuy_info'] = Model('groupbuy')->getGroupbuyInfoByGoodsCommonID($goods_info['goods_commonid']);
- }
- //限时折扣
- if (C('promotion_allow') && empty($goods_info['groupbuy_info']))
- {
- $goods_info['xianshi_info'] = Model('p_xianshi_goods')->getXianshiGoodsInfoByGoodsID($goods_info['goods_id']);
- }
- return $goods_info;
- }
- public function getGoodsStorageById($goods_id)
- {
- $goods_info = $this->getGoodsInfoByID($goods_id);
- if (empty($goods_info)) {
- return "0";
- }
- return $goods_info['goods_storage'];
- }
- /**
- * 查询出售中的商品列表及其促销信息
- * @param array $goodsid_array
- * @return array
- */
- public function getGoodsOnlineListAndPromotionByIdArray($goodsid_array)
- {
- if (empty($goodsid_array) || !is_array($goodsid_array)) return array();
- $goods_list = array();
- foreach ($goodsid_array as $goods_id) {
- $goods_info = $this->getGoodsOnlineInfoAndPromotionById($goods_id);
- if (!empty($goods_info)) $goods_list[] = $goods_info;
- }
- return $goods_list;
- }
- /**
- * 获取单条商品信息
- *
- * @param array $condition
- * @param string $field
- * @return array
- */
- public function getGoodeCommonInfo($condition, $field = '*')
- {
- return $this->table('goods_common')->field($field)->where($condition)->find();
- }
- /**
- * 取得商品详细信息(优先查询缓存)
- * 如果未找到,则缓存所有字段
- * @param int $goods_commonid
- * @param string $fields 需要取得的缓存键值, 例如:'*','goods_name,store_name'
- * @return array
- */
- public function getGoodeCommonInfoByID($goods_commonid, $fields = '*')
- {
- $common_info = $this->_rGoodsCommonCache($goods_commonid, $fields);
- if (empty($common_info)) {
- $common_info = $this->getGoodeCommonInfo(array('goods_commonid' => $goods_commonid));
- $this->_wGoodsCommonCache($goods_commonid, $common_info);
- }
- return $common_info;
- }
- /**
- * 获得商品SKU某字段的和
- *
- * @param array $condition
- * @param string $field
- * @return boolean
- */
- public function getGoodsSum($condition, $field)
- {
- return $this->table('goods')->where($condition)->sum($field);
- }
- /**
- * 获得商品SKU数量
- *
- * @param array $condition
- * @param string $field
- * @return int
- */
- public function getGoodsCount($condition)
- {
- return $this->table('goods')->where($condition)->count();
- }
- /**
- * 获得出售中商品SKU数量
- *
- * @param array $condition
- * @param string $field
- * @return int
- */
- public function getGoodsOnlineCount($condition, $field = '*')
- {
- $condition['goods_state'] = self::STATE1;
- $condition['goods_verify'] = self::VERIFY1;
- return $this->table('goods')->where($condition)->group('')->count1($field);
- }
- /**
- * 获得商品数量
- *
- * @param array $condition
- * @param string $field
- * @return int
- */
- public function getGoodsCommonCount($condition)
- {
- return $this->table('goods_common')->where($condition)->count();
- }
- /**
- * 出售中的商品数量
- *
- * @param array $condition
- * @return int
- */
- public function getGoodsCommonOnlineCount($condition)
- {
- $condition['goods_state'] = self::STATE1;
- $condition['goods_verify'] = self::VERIFY1;
- return $this->getGoodsCommonCount($condition);
- }
- /**
- * 仓库中的商品数量
- *
- * @param array $condition
- * @return int
- */
- public function getGoodsCommonOfflineCount($condition)
- {
- $condition['goods_state'] = self::STATE0;
- $condition['goods_verify'] = self::VERIFY1;
- return $this->getGoodsCommonCount($condition);
- }
- /**
- * 等待审核的商品数量
- *
- * @param array $condition
- * @return int
- */
- public function getGoodsCommonWaitVerifyCount($condition)
- {
- $condition['goods_verify'] = self::VERIFY10;
- return $this->getGoodsCommonCount($condition);
- }
- /**
- * 审核失败的商品数量
- *
- * @param array $condition
- * @return int
- */
- public function getGoodsCommonVerifyFailCount($condition)
- {
- $condition['goods_verify'] = self::VERIFY0;
- return $this->getGoodsCommonCount($condition);
- }
- /**
- * 违规下架的商品数量
- *
- * @param array $condition
- * @return int
- */
- public function getGoodsCommonLockUpCount($condition)
- {
- $condition['goods_state'] = self::STATE10;
- $condition['goods_verify'] = self::VERIFY1;
- return $this->getGoodsCommonCount($condition);
- }
- /**
- * 商品图片列表
- *
- * @param array $condition
- * @param array $order
- * @param string $field
- * @return array
- */
- public function getGoodsImageList($condition, $field = '*', $order = 'is_default desc,goods_image_sort asc')
- {
- return $this->table('goods_images')->field($field)->where($condition)->order($order)->select();
- }
- public function getGoodsImageListEx($condition, $field = '*', $order = 'is_default desc,goods_image_sort asc')
- {
- return $this->table('goods_images')->field($field)->where($condition)->group('filesig')->order($order)->select();
- }
- /**
- * 删除商品SKU信息
- *
- * @param array $condition
- * @return boolean
- */
- public function delGoods($condition)
- {
- $goods_list = $this->getGoodsList($condition, 'goods_id,goods_commonid,store_id');
- if (!empty($goods_list)) {
- $goodsid_array = array();
- // 删除商品二维码
- foreach ($goods_list as $val) {
- $goodsid_array[] = $val['goods_id'];
- @unlink(BASE_UPLOAD_PATH . DS . ATTACH_STORE . DS . $val['store_id'] . DS . $val['goods_id'] . '.png');
- // 删除商品缓存
- $this->_dGoodsCache($val['goods_id']);
- // 删除商品规格缓存
- $this->_dGoodsSpecCache($val['goods_commonid']);
- }
- // 删除属性关联表数据
- $this->table('goods_attr_index')->where(array('goods_id' => array('in', $goodsid_array)))->delete();
- // 删除优惠套装商品
- Model('p_bundling')->delBundlingGoods(array('goods_id' => array('in', $goodsid_array)));
- // 优惠套餐活动下架
- Model('p_bundling')->editBundlingCloseByGoodsIds(array('goods_id' => array('in', $goodsid_array)));
- // 推荐展位商品
- Model('p_booth')->delBoothGoods(array('goods_id' => array('in', $goodsid_array)));
- // 限时折扣
- Model('p_xianshi_goods')->delXianshiGoods(array('goods_id' => array('in', $goodsid_array)));
- //删除商品浏览记录
- Model('goods_browse')->delGoodsbrowse(array('goods_id' => array('in', $goodsid_array)));
- // 删除买家收藏表数据
- $this->table('favorites')->where(array('fav_id' => array('in', $goodsid_array), 'fav_type' => 'goods'))->delete();
- // 删除商品赠品
- Model('goods_gift')->delGoodsGift(array('goods_id' => array('in', $goodsid_array), 'gift_goodsid' => array('in', $goodsid_array), '_op' => 'or'));
- // 删除推荐组合
- Model('goods_combo')->delGoodsCombo(array('goods_id' => array('in', $goodsid_array), 'combo_goodsid' => array('in', $goodsid_array), '_op' => 'or'));
- }
- return $this->table('goods')->where($condition)->delete();
- }
- /**
- * 删除商品图片表信息
- *
- * @param array $condition
- * @return boolean
- */
- public function delGoodsImages($condition)
- {
- $image_list = $this->getGoodsImageList($condition, 'goods_commonid,color_id');
- if (empty($image_list)) {
- return true;
- }
- $result = $this->table('goods_images')->where($condition)->delete();
- if ($result) {
- foreach ($image_list as $val) {
- $this->_dGoodsImageCache($val['goods_commonid'] . '|' . $val['color_id']);
- }
- }
- return $result;
- }
- /**
- * 商品删除及相关信息
- *
- * @param array $condition 列表条件
- * @return boolean
- */
- public function delGoodsAll($condition)
- {
- $goods_list = $this->getGoodsList($condition, 'goods_id,goods_commonid,store_id');
- if (empty($goods_list)) {
- return false;
- }
- $goodsid_array = array();
- $commonid_array = array();
- foreach ($goods_list as $val) {
- $goodsid_array[] = $val['goods_id'];
- $commonid_array[] = $val['goods_commonid'];
- // 商品公共缓存
- $this->_dGoodsCommonCache($val['goods_commonid']);
- // 商品规格缓存
- $this->_dGoodsSpecCache($val['goods_commonid']);
- }
- $commonid_array = array_unique($commonid_array);
- // 删除商品表数据
- $this->delGoods(array('goods_id' => array('in', $goodsid_array)));
- // 删除商品公共表数据
- $this->table('goods_common')->where(array('goods_commonid' => array('in', $commonid_array)))->delete();
- // 删除商品图片表数据
- $this->delGoodsImages(array('goods_commonid' => array('in', $commonid_array)));
- // 删除商品F码
- Model('goods_fcode')->delGoodsFCode(array('goods_commonid' => array('in', $commonid_array)));
- return true;
- }
- /**
- * 删除未锁定商品
- * @param unknown $condition
- */
- public function delGoodsNoLock($condition)
- {
- $condition['goods_lock'] = 0;
- $common_array = $this->getGoodsCommonList($condition, 'goods_commonid', 0);
- $common_array = array_under_reset($common_array, 'goods_commonid');
- $commonid_array = array_keys($common_array);
- return $this->delGoodsAll(array('goods_commonid' => array('in', $commonid_array)));
- }
- /**
- * 发送店铺消息
- * @param string $code
- * @param int $store_id
- * @param array $param
- */
- private function _sendStoreMsg($code, $store_id, $param)
- {
- QueueClient::push('sendStoreMsg', array('code' => $code, 'store_id' => $store_id, 'param' => $param));
- }
- /**
- * 获得商品子分类的ID
- * @param array $condition
- * @return array
- */
- private function _getRecursiveClass($condition)
- {
- if (isset($condition['gc_id']) && !is_array($condition['gc_id'])) {
- $gc_list = Model('goods_class')->getGoodsClassForCacheModel();
- if (!empty($gc_list[$condition['gc_id']])) {
- $gc_id[] = $condition['gc_id'];
- $gcchild_id = empty($gc_list[$condition['gc_id']]['child']) ? array() : explode(',', $gc_list[$condition['gc_id']]['child']);
- $gcchildchild_id = empty($gc_list[$condition['gc_id']]['childchild']) ? array() : explode(',', $gc_list[$condition['gc_id']]['childchild']);
- $gc_id = array_merge($gc_id, $gcchild_id, $gcchildchild_id);
- $condition['gc_id'] = array('in', $gc_id);
- }
- }
- return $condition;
- }
- /**
- * 由ID取得在售单个虚拟商品信息
- * @param unknown $goods_id
- * @param string $field 需要取得的缓存键值, 例如:'*','goods_name,store_name'
- * @return array
- */
- public function getVirtualGoodsOnlineInfoByID($goods_id)
- {
- $goods_info = $this->getGoodsInfoByID($goods_id, '*');
- return $goods_info['is_virtual'] == 1 && $goods_info['virtual_indate'] >= time() ? $goods_info : array();
- }
- /**
- * 取得商品详细信息(优先查询缓存)(在售)
- * 如果未找到,则缓存所有字段
- * @param int $goods_id
- * @param string $field 需要取得的缓存键值, 例如:'*','goods_name,store_name'
- * @return array
- */
- public function getGoodsOnlineInfoByID($goods_id, $field = '*')
- {
- if ($field != '*') {
- $field .= ',goods_state,goods_verify';
- }
- $goods_info = $this->getGoodsInfoByID($goods_id, trim($field, ','));
- if ($goods_info['goods_state'] != self::STATE1 || $goods_info['goods_verify'] != self::VERIFY1) {
- $goods_info = array();
- }
- return $goods_info;
- }
- /**
- * 取得商品详细信息(优先查询缓存)
- * 如果未找到,则缓存所有字段
- * @param int $goods_id
- * @param string $fields 需要取得的缓存键值, 例如:'*','goods_name,store_name'
- * @return array
- */
- public function getGoodsInfoByID($goods_id, $fields = '*')
- {
- $goods_info = $this->_rGoodsCache($goods_id, $fields);
- if (empty($goods_info)) {
- $goods_info = $this->getGoodsInfo(array('goods_id' => $goods_id));
- $this->_wGoodsCache($goods_id, $goods_info);
- }
- return $goods_info;
- }
- /**
- * 验证是否为普通商品
- * @param array $goods 商品数组
- * @return boolean
- */
- public function checkIsGeneral($goods)
- {
- if ($goods['is_virtual'] == 1 || $goods['is_fcode'] == 1 || $goods['is_presell'] == 1) {
- return false;
- }
- return true;
- }
- /**
- * 验证是否允许送赠品
- * @param unknown $goods
- * @return boolean
- */
- public function checkGoodsIfAllowGift($goods)
- {
- if ($goods['is_virtual'] == 1) {
- return false;
- }
- return true;
- }
- public function checkGoodsIfAllowCombo($goods)
- {
- if ($goods['is_virtual'] == 1 || $goods['is_fcode'] == 1 || $goods['is_presell'] == 1 || $goods['is_appoint'] == 1) {
- return false;
- }
- return true;
- }
- /**
- * 获得商品规格数组
- * @param unknown $common_id
- */
- public function getGoodsSpecListByCommonId($common_id)
- {
- $spec_list = $this->_rGoodsSpecCache($common_id);
- if (empty($spec_list)) {
- $spec_array = $this->getGoodsList(array('goods_commonid' => $common_id), 'goods_spec,goods_id,store_id,goods_image,color_id,goods_price,goods_promotion_price,goods_serial,goods_storage,goods_storage_alarm');
- $spec_list['spec'] = serialize($spec_array);
- $this->_wGoodsSpecCache($common_id, $spec_list);
- }
- $spec_array = unserialize($spec_list['spec']);
- return $spec_array;
- }
- /**
- * 获得商品图片数组
- * @param int $goods_id
- * @param array $condition
- */
- public function getGoodsImageByKey($key)
- {
- $image_list = $this->_rGoodsImageCache($key);
- if (empty($image_list)) {
- $array = explode('|', $key);
- list($common_id, $color_id) = $array;
- $image_more = $this->getGoodsImageList(array('goods_commonid' => $common_id, 'color_id' => $color_id), 'goods_image');
- $image_list['image'] = serialize($image_more);
- $this->_wGoodsImageCache($key, $image_list);
- }
- $image_more = unserialize($image_list['image']);
- return $image_more;
- }
- /**
- * 读取商品缓存
- * @param int $goods_id
- * @param string $fields
- * @return array
- */
- private function _rGoodsCache($goods_id, $fields)
- {
- return rcache($goods_id, 'goods', $fields);
- }
- /**
- * 写入商品缓存
- * @param int $goods_id
- * @param array $goods_info
- * @return boolean
- */
- private function _wGoodsCache($goods_id, $goods_info)
- {
- return wcache($goods_id, $goods_info, 'goods');
- }
- /**
- * 删除商品缓存
- * @param int $goods_id
- * @return boolean
- */
- private function _dGoodsCache($goods_id)
- {
- return dcache($goods_id, 'goods');
- }
- /**
- * 读取商品公共缓存
- * @param int $goods_commonid
- * @param string $fields
- * @return array
- */
- private function _rGoodsCommonCache($goods_commonid, $fields)
- {
- return rcache($goods_commonid, 'goods_common', $fields);
- }
- /**
- * 写入商品公共缓存
- * @param int $goods_commonid
- * @param array $common_info
- * @return boolean
- */
- private function _wGoodsCommonCache($goods_commonid, $common_info)
- {
- return wcache($goods_commonid, $common_info, 'goods_common');
- }
- /**
- * 删除商品公共缓存
- * @param int $goods_commonid
- * @return boolean
- */
- private function _dGoodsCommonCache($goods_commonid)
- {
- return dcache($goods_commonid, 'goods_common');
- }
- /**
- * 读取商品规格缓存
- * @param int $goods_commonid
- * @param string $fields
- * @return array
- */
- private function _rGoodsSpecCache($goods_commonid)
- {
- return rcache($goods_commonid, 'goods_spec');
- }
- /**
- * 写入商品规格缓存
- * @param int $goods_commonid
- * @param array $spec_list
- * @return boolean
- */
- private function _wGoodsSpecCache($goods_commonid, $spec_list)
- {
- return wcache($goods_commonid, $spec_list, 'goods_spec');
- }
- /**
- * 删除商品规格缓存
- * @param int $goods_commonid
- * @return boolean
- */
- private function _dGoodsSpecCache($goods_commonid)
- {
- return dcache($goods_commonid, 'goods_spec');
- }
- /**
- * 读取商品图片缓存
- * @param int $key ($goods_commonid .'|'. $color_id)
- * @param string $fields
- * @return array
- */
- private function _rGoodsImageCache($key)
- {
- return rcache($key, 'goods_image');
- }
- /**
- * 写入商品图片缓存
- * @param int $key ($goods_commonid .'|'. $color_id)
- * @param array $image_list
- * @return boolean
- */
- private function _wGoodsImageCache($key, $image_list)
- {
- return wcache($key, $image_list, 'goods_image');
- }
- /**
- * 删除商品图片缓存
- * @param int $key ($goods_commonid .'|'. $color_id)
- * @return boolean
- */
- private function _dGoodsImageCache($key)
- {
- return dcache($key, 'goods_image');
- }
- private function _formatGoodsAttr($goods_attr)
- {
- $result_attr = array();
- foreach ($goods_attr as $key => $val) {
- $attr_item['goods_attr_id'] = intval($key);
- $attr_item['goods_attr_name'] = $val['name'];
- if ($attr_item['goods_attr_name'] === '功效' ||
- $attr_item['goods_attr_name'] === '品牌' ||
- $attr_item['goods_attr_name'] === '保质期'
- ) {
- $goods_attr_value = array();
- foreach ($val as $id => $name) {
- if ($id !== 'name') {
- $val_item['id'] = intval($id);
- $val_item['name'] = $name;
- array_push($goods_attr_value, $val_item);
- }
- }
- $attr_item['goods_attr_value'] = $goods_attr_value;
- array_push($result_attr, $attr_item);
- }
- }
- return $result_attr;
- }
- public function getGoodsSku($goods_id)
- {
- Log::record(__FUNCTION__ . " goods_id={$goods_id}.", Log::DEBUG);
- if (empty($goods_id) || $goods_id <= 0) {
- Log::record(" return null 1.", Log::DEBUG);
- return null;
- }
- // get goods_commonid
- $goods_info = $this->getGoodsInfoAndPromotionById($goods_id);
- if (empty($goods_info)) {
- Log::record(" return null 2.", Log::DEBUG);
- return null;
- }
- $goods_common_info = $this->getGoodeCommonInfoByID($goods_info['goods_commonid']);
- if (empty($goods_common_info)) {
- Log::record(" return null 3.", Log::DEBUG);
- return null;
- }
- Log::record("goods_common_info = " . (string)$goods_common_info, Log::DEBUG);
- $goods_common_info['goods_body'] = '';//base64_encode($goods_common_info['goods_body']);
- $goods_common_info['goods_attr'] = $this->_formatGoodsAttr(unserialize($goods_common_info['goods_attr']));
- // sku
- $goods_spec_list = $this->getGoodsSpecListByCommonId($goods_info['goods_commonid']);
- $spec = Model('spec');
- foreach ($goods_spec_list as $key => &$value) {
- $value['goods_image'] = cthumb($value['goods_image'], 1280);
- $goods_spec = unserialize($value['goods_spec']);
- $value['goods_spec'] = array();
- if (!empty($goods_spec)) {
- foreach ($goods_spec as $key => $val) {
- $spec_id = $spec->getSpecValueList(array('sp_value_id' => $key), 'sp_id');
- $spec_name = $spec->specList(array('sp_id' => $spec_id[0]['sp_id']), '', 'sp_name');
- $spec_value = array('key' => $key, 'name' => $spec_name[0]['sp_name'], 'value' => $goods_spec[$key]);
- array_push($value['goods_spec'], $spec_value);
- }
- }
- // xianshi
- $xianshi_item = Model('p_xianshi_goods')->getXianshiGoodsInfoByGoodsID($value['goods_id']);
- if (!empty($xianshi_item)) {
- $value['promotion_type'] = 'xianshi';
- $value['title'] = $xianshi_item['xianshi_title'];
- $value['remark'] = $xianshi_item['xianshi_title'];
- $value['promotion_price'] = $xianshi_item['xianshi_price'];
- $value['down_price'] = ncPriceFormat($value['goods_price'] - $xianshi_item['xianshi_price']);
- $value['lower_limit'] = $xianshi_item['lower_limit'];
- $value['explain'] = $xianshi_item['xianshi_explain'];
- }
- }
- // images
- $goods_images = $this->getGoodsImageListEx(array('goods_commonid' => $goods_info['goods_commonid']));
- foreach ($goods_images as $key => &$value) {
- $value['goods_image'] = cthumb($value['goods_image'], 1280);
- }
- $goods_common_info['skus'] = $goods_spec_list;
- $goods_common_info['images'] = $goods_images;
- $result = array();
- $result['request_goods_id'] = $goods_id;
- $result['goods_info'] = $goods_common_info;
- //$result['goods_info']['goods_id'] = $goods_id;
- Log::record(" return 4 result = {$result}.", Log::DEBUG);
- return $result;
- }
- /**
- * 获取单条商品信息
- *
- * @param int $goods_id
- * @return array
- */
- public function getGoodsDetail($goods_id)
- {
- if ($goods_id <= 0) {
- return null;
- }
- $result1 = $this->getGoodsInfoAndPromotionById($goods_id);
- if (empty($result1)) {
- return null;
- }
- $result2 = $this->getGoodeCommonInfoByID($result1['goods_commonid']);
- $goods_info = array_merge($result2, $result1);
- $goods_info['spec_value'] = unserialize($goods_info['spec_value']);
- $goods_info['spec_name'] = unserialize($goods_info['spec_name']);
- $goods_info['goods_spec'] = unserialize($goods_info['goods_spec']);
- $goods_info['goods_attr'] = unserialize($goods_info['goods_attr']);
- // 手机商品描述
- if ($goods_info['mobile_body'] != '') {
- $mobile_body_array = unserialize($goods_info['mobile_body']);
- if (is_array($mobile_body_array)) {
- $mobile_body = '';
- foreach ($mobile_body_array as $val) {
- switch ($val['type']) {
- case 'text':
- $mobile_body .= '<div>' . $val['value'] . '</div>';
- break;
- case 'image':
- $mobile_body .= '<img src="' . $val['value'] . '">';
- break;
- }
- }
- $goods_info['mobile_body'] = $mobile_body;
- }
- }
- // 查询所有规格商品
- $spec_array = $this->getGoodsSpecListByCommonId($goods_info['goods_commonid']);
- $spec_list = array(); // 各规格商品地址,js使用
- $spec_list_mobile = array(); // 各规格商品地址,js使用
- $spec_image = array(); // 各规格商品主图,规格颜色图片使用
- foreach ($spec_array as $key => $value) {
- $s_array = unserialize($value['goods_spec']);
- $tmp_array = array();
- if (!empty($s_array) && is_array($s_array)) {
- foreach ($s_array as $k => $v) {
- $tmp_array[] = $k;
- }
- }
- sort($tmp_array);
- $spec_sign = implode('|', $tmp_array);
- $tpl_spec = array();
- $tpl_spec['sign'] = $spec_sign;
- $tpl_spec['url'] = urlShop('goods', 'index', array('goods_id' => $value['goods_id']));
- $spec_list[] = $tpl_spec;
- //$spec_list_mobile[$spec_sign] = $value['goods_id'];
- $spec_list_mobile[$spec_sign] = $value;
- $spec_image[$value['color_id']] = thumb($value, 60);
- }
- $spec_list = json_encode($spec_list);
- // 商品多图
- $image_more = $this->getGoodsImageByKey($goods_info['goods_commonid'] . '|' . $goods_info['color_id']);
- $goods_image = array();
- $goods_image_mobile = array();
- if (!empty($image_more)) {
- foreach ($image_more as $val) {
- $goods_image[] = "{ title : '', levelA : '" . cthumb($val['goods_image'], 60, $goods_info['store_id']) . "', levelB : '" . cthumb($val['goods_image'], 360, $goods_info['store_id']) . "', levelC : '" . cthumb($val['goods_image'], 360, $goods_info['store_id']) . "', levelD : '" . cthumb($val['goods_image'], 1280, $goods_info['store_id']) . "'}";
- $goods_image_mobile[] = cthumb($val['goods_image'], 360, $goods_info['store_id']);
- }
- } else {
- $goods_image[] = "{ title : '', levelA : '" . thumb($goods_info, 60) . "', levelB : '" . thumb($goods_info, 360) . "', levelC : '" . thumb($goods_info, 360) . "', levelD : '" . thumb($goods_info, 1280) . "'}";
- $goods_image_mobile[] = thumb($goods_info, 360);
- }
- //抢购
- if (!empty($goods_info['groupbuy_info'])) {
- $goods_info['promotion_type'] = 'groupbuy';
- $goods_info['title'] = '抢购';
- $goods_info['remark'] = $goods_info['groupbuy_info']['remark'];
- $goods_info['promotion_price'] = $goods_info['groupbuy_info']['groupbuy_price'];
- $goods_info['down_price'] = ncPriceFormat($goods_info['goods_price'] - $goods_info['groupbuy_info']['groupbuy_price']);
- $goods_info['upper_limit'] = $goods_info['groupbuy_info']['upper_limit'];
- unset($goods_info['groupbuy_info']);
- }
- //限时折扣
- if (!empty($goods_info['xianshi_info'])) {
- $goods_info['promotion_type'] = 'xianshi';
- $goods_info['title'] = $goods_info['xianshi_info']['xianshi_title'];
- $goods_info['remark'] = $goods_info['xianshi_info']['xianshi_title'];
- $goods_info['promotion_price'] = $goods_info['xianshi_info']['xianshi_price'];
- $goods_info['down_price'] = ncPriceFormat($goods_info['goods_price'] - $goods_info['xianshi_info']['xianshi_price']);
- $goods_info['lower_limit'] = $goods_info['xianshi_info']['lower_limit'];
- $goods_info['explain'] = $goods_info['xianshi_info']['xianshi_explain'];
- unset($goods_info['xianshi_info']);
- }
- // 验证是否允许送赠品
- if ($this->checkGoodsIfAllowGift($goods_info)) {
- $gift_array = Model('goods_gift')->getGoodsGiftListByGoodsId($goods_id);
- if (!empty($gift_array)) {
- $goods_info['have_gift'] = 'gift';
- }
- }
- // 加入购物车按钮
- $goods_info['cart'] = true;
- //虚拟、F码、预售不显示加入购物车
- if ($goods_info['is_virtual'] == 1 || $goods_info['is_fcode'] == 1 || $goods_info['is_presell'] == 1) {
- $goods_info['cart'] = false;
- }
- // 立即购买文字显示
- $goods_info['buynow_text'] = '立即购买';
- if ($goods_info['is_presell'] == 1) {
- $goods_info['buynow_text'] = '预售购买';
- } elseif ($goods_info['is_fcode'] == 1) {
- $goods_info['buynow_text'] = 'F码购买';
- }
- //满即送
- $mansong_info = ($goods_info['is_virtual'] == 1) ? array() : Model('p_mansong')->getMansongInfoByStoreID($goods_info['store_id']);
- // 商品受关注次数加1
- $goods_info['goods_click'] = intval($goods_info['goods_click']) + 1;
- if (C('cache_open')) {
- $this->_wGoodsCache($goods_id, array('goods_click' => $goods_info['goods_click']));
- wcache('updateRedisDate', array($goods_id => $goods_info['goods_click']), 'goodsClick');
- } else {
- $this->editGoodsById(array('goods_click' => array('exp', 'goods_click + 1')), $goods_id);
- }
- $result = array();
- $result['goods_info'] = $goods_info;
- $result['spec_list'] = $spec_list;
- $result['spec_list_mobile'] = $spec_list_mobile;
- $result['spec_image'] = $spec_image;
- $result['goods_image'] = $goods_image;
- $result['goods_image_mobile'] = $goods_image_mobile;
- $result['mansong_info'] = $mansong_info;
- $result['gift_array'] = $gift_array;
- return $result;
- }
- public function getMobileBodyByCommonID($goods_commonid, $fields = 'mobile_body')
- {
- $common_info = $this->_rGoodsCommonCache($goods_commonid, $fields);
- if (empty($common_info)) {
- $common_info = $this->getGoodeCommonInfo(array('goods_commonid' => $goods_commonid));
- $this->_wGoodsCommonCache($goods_commonid, $common_info);
- }
- // 手机商品描述
- if ($common_info['mobile_body'] != '') {
- $mobile_body_array = unserialize($common_info['mobile_body']);
- if (is_array($mobile_body_array)) {
- $mobile_body = '';
- foreach ($mobile_body_array as $val) {
- switch ($val['type']) {
- case 'text':
- $mobile_body .= '<div>' . $val['value'] . '</div>';
- break;
- case 'image':
- $mobile_body .= '<img src="' . $val['value'] . '">';
- break;
- }
- }
- $common_info['mobile_body'] = $mobile_body;
- }
- }
- return $common_info;
- }
- public function click_goods($goods_id)
- {
- QueueClient::push('click_goods',['goods_id' => $goods_id]);
- }
- }
|