123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- <?php
- namespace app\models\store;
- use crmeb\services\UtilService;
- use crmeb\traits\ModelTrait;
- use crmeb\basic\BaseModel;
- /**
- * TODO 助力商品Model
- * Class StoreAssistance
- * @package app\models\store
- */
- class StoreAssistance extends BaseModel
- {
- /**
- * 数据表主键
- * @var string
- */
- protected $pk = 'id';
- /**
- * 模型名称
- * @var string
- */
- protected $name = 'store_assistance';
- use ModelTrait;
- public static function merSet($mer_id, $alias = '')
- {
- return $mer_id ? self::where($alias ? $alias . '.mer_id' : 'mer_id', $mer_id) : new self;
- }
- protected function getAddTimeAttr($value)
- {
- if ($value) return date('Y-m-d H:i:s', $value);
- return '';
- }
- /**
- * 获取助力数据
- * @param int $page
- * @param int $limit
- * @return mixed
- */
- public static function getAll($page = 0, $limit = 20, $mer_id = false)
- {
- $model = self::merSet($mer_id, 'c');
- $model = $model->alias('c');
- $model = $model->join('StoreProduct s', 's.id=c.product_id');
- $model = $model->field('c.*,s.price as product_price');
- $model = $model->order('c.sort desc,c.id desc');
- $model = $model->where('c.is_show', 1);
- $model = $model->where('c.is_del', 0);
- $model = $model->where('c.start_time', '<', time());
- $model = $model->where('c.stop_time', '>', time());
- if ($page) $model = $model->page($page, $limit);
- return $model->select()->each(function ($item) {
- $item['image'] = set_file_url($item['image']);
- $item['price'] = floatval($item['price']);
- $item['product_price'] = floatval($item['product_price']);
- $item['subsidy'] = bcmul($item['price'], $item['p_separate_account']/100, 2);
- });
- }
- /**
- * 获取一条助力数据
- * @param $id
- * @return mixed
- */
- public static function getAssistanceOne($id)
- {
- $model = new self();
- $model = $model->alias('c');
- $model = $model->join('StoreProduct s', 's.id=c.product_id');
- $model = $model->field('c.*,s.price as product_price,SUM(s.sales+s.ficti) as total');
- $model = $model->where('c.is_show', 1);
- $model = $model->where('c.is_del', 0);
- $model = $model->where('c.id', $id);
- $model = $model->where('c.start_time', '<', time());
- $model = $model->where('c.stop_time', '>', time() - 86400);
- $info = $model->find();
- if ($info['id']) {
- return $info;
- } else {
- return [];
- }
- }
- /**
- * 获取推荐的助力商品
- * @return mixed
- */
- public static function getAssistanceHost($limit = 0, $mer_id = false)
- {
- $model = self::merSet($mer_id,'c');
- $model = $model->alias('c');
- $model = $model->join('StoreProduct s', 's.id=c.product_id');
- $model = $model->field('c.id,c.image,c.price,c.sales,c.title,c.people,s.price as product_price');
- $model = $model->where('c.is_del', 0);
- $model = $model->where('c.is_host', 1);
- $model = $model->where('c.start_time', '<', time());
- $model = $model->where('c.stop_time', '>', time());
- if ($limit) $model = $model->limit($limit);
- return $model->select();
- }
- /**
- * 修改销量和库存
- * @param $num
- * @param $assistanceId
- * @return bool
- */
- public static function decAssistanceStock($num, $assistanceId, $unique)
- {
- $product_id = self::where('id', $assistanceId)->value('product_id');
- if ($unique) {
- $res = false !== StoreProductAttrValue::decProductAttrStock($assistanceId, $unique, $num, 4);
- $res = $res && self::where('id', $assistanceId)->dec('stock', $num)->inc('sales', $num)->update();
- $sku = StoreProductAttrValue::where('product_id', $assistanceId)->where('unique', $unique)->where('type', 4)->value('suk');
- $res = $res && StoreProductAttrValue::where('product_id', $product_id)->where('suk', $sku)->where('type', 0)->dec('stock', $num)->inc('sales', $num)->update();
- } else {
- $res = false !== self::where('id', $assistanceId)->dec('stock', $num)->inc('sales', $num)->update();
- }
- $res = $res && StoreProduct::where('id', $product_id)->dec('stock', $num)->inc('sales', $num)->update();
- return $res;
- }
- /**
- * 获取查看拼团统计
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public static function getStatistics($mer_id = '')
- {
- $statistics = array();
- $statistics['browseCount'] = self::where('mer_id', $mer_id)->value('sum(browse) as browse');//总展现量
- $statistics['browseCount'] = $statistics['browseCount'] ? $statistics['browseCount'] : 0;
- $statistics['visitCount'] = StoreVisit::where('mer_id', $mer_id)->where('product_type', 'assistance')->count();//访客人数
- $statistics['partakeCount'] = StoreAssistanceActive::getCountPeopleAll(0, $mer_id);//参与人数
- $statistics['assistanceCount'] = StoreAssistanceActive::getCountPeopleAssistance(0, $mer_id);//成团数量
- $res = [
- ['col' => 6, 'count' => $statistics['browseCount'], 'name' => '总展现量(次)', 'className' => 'md-trending-up'],
- ['col' => 6, 'count' => $statistics['visitCount'], 'name' => '访客人数(人)', 'className' => 'md-stats'],
- ['col' => 6, 'count' => $statistics['partakeCount'], 'name' => '参与人数(人)', 'className' => 'ios-speedometer-outline'],
- ['col' => 6, 'count' => $statistics['assistanceCount'], 'name' => '成团数量(个)', 'className' => 'md-rose'],
- ];
- return compact('res');
- }
- /**
- * 助力列表
- * @param $where
- * @return array
- */
- public static function systemPage($where)
- {
- $model = self::setWhere($where);
- $count = $model->count();
- $list = $model->page((int)$where['page'], (int)$where['limit'])
- ->select()
- ->each(function ($item) {
- $item['count_people_all'] = StoreAssistanceActive::getCountPeopleAll($item['id'], $item['mer_id']);//参与人数
- $item['count_people_assistance'] = StoreAssistanceActive::getCountPeopleAssistance($item['id'], $item['mer_id']);//助力人数
- $item['count_people_browse'] = StoreVisit::getVisitPeople($item['id'], 'assistance');//访问人数
- });
- return compact('count', 'list');
- }
- /**
- * 设置助力 where 条件
- * @param $where
- * @param null $model
- * @return mixed
- */
- public static function setWhere($where, $model = null)
- {
- $model = $model === null ? new self() : $model;
- $model = $model->alias('c');
- $model = $model->field('c.*,p.store_name,p.price as ot_price');
- $model = $model->where('c.mer_id', $where['mer_id']);
- $model = $model->join('StoreProduct p', 'p.id=c.product_id', 'LEFT');
- if (isset($where['is_show']) && $where['is_show'] != '') $model = $model->where('c.is_show', $where['is_show']);
- // if(isset($where['is_host']) && $where['is_host'] != '') $model = $model->where('c.is_host',$where['is_host']);
- if (isset($where['store_name']) && $where['store_name'] != '') $model = $model->where('p.store_name|p.id|c.id|c.title', 'LIKE', "%$where[store_name]%");
- return $model->order('c.id desc')->where('c.is_del', 0);
- }
- /**
- *查出导出数据
- * @param $where
- */
- public static function exportData($where)
- {
- $list = self::setWhere($where)->select();
- count($list) && $list = $list->toArray();
- foreach ($list as &$item) {
- $item['count_people_all'] = StoreAssistanceActive::getCountPeopleAll($item['id'], $item['mer_id']);//参与人数
- $item['count_people_assistance'] = StoreAssistanceActive::getCountPeopleAssistance($item['id'], $item['mer_id']);//助力人数
- $item['count_people_browse'] = StoreVisit::getVisitPeople($item['id'], 'assistance');//访问人数
- $item['_stop_time'] = date('Y/m/d H:i:s', $item['stop_time']);
- }
- return $list;
- }
- /**
- * 详情
- */
- public static function getOne($id)
- {
- $info = self::get($id);
- if ($info) {
- if ($info['start_time'])
- $start_time = date('Y-m-d H:i:s', $info['start_time']);
- if ($info['stop_time'])
- $stop_time = date('Y-m-d H:i:s', $info['stop_time']);
- if (isset($start_time) && isset($stop_time))
- $info['section_time'] = [$start_time, $stop_time];
- else
- $info['section_time'] = [];
- unset($info['start_time'], $info['stop_time']);
- }
- if ($info['images'])
- $info['images'] = json_decode($info['images'], true);
- else
- $info['images'] = [];
- $info['price'] = floatval($info['price']);
- $info['postage'] = floatval($info['postage']);
- $info['weight'] = floatval($info['weight']);
- $info['volume'] = floatval($info['volume']);
- $info['description'] = StoreDescription::getDescription($id, 4);
- $info['attrs'] = self::attr_list($id);
- return $info;
- }
- public static function attr_list($id)
- {
- $productId = self::where('id', $id)->value('product_id');
- $combinationResult = StoreProductAttrResult::where('product_id', $id)->where('type', 4)->value('result');
- $items = json_decode($combinationResult, true)['attr'];
- $productAttr = self::get_attr($items, $productId, 0);
- $seckillAttr = self::get_attr($items, $id, 4);
- foreach ($productAttr as $pk => $pv) {
- foreach ($seckillAttr as &$sv) {
- if ($pv['detail'] == $sv['detail']) {
- $productAttr[$pk] = $sv;
- }
- }
- $productAttr[$pk]['detail'] = json_decode($productAttr[$pk]['detail']);
- }
- $attrs['items'] = $items;
- $attrs['value'] = $productAttr;
- foreach ($items as $key => $item) {
- $header[] = ['title' => $item['value'], 'key' => 'value' . ($key + 1), 'align' => 'center', 'minWidth' => 80];
- }
- $header[] = ['title' => '图片', 'slot' => 'pic', 'align' => 'center', 'minWidth' => 120];
- $header[] = ['title' => '助力价', 'key' => 'price', 'type' => 1, 'align' => 'center', 'minWidth' => 80];
- $header[] = ['title' => '成本价', 'key' => 'cost', 'align' => 'center', 'minWidth' => 80];
- $header[] = ['title' => '原价', 'key' => 'ot_price', 'align' => 'center', 'minWidth' => 80];
- $header[] = ['title' => '库存', 'key' => 'stock', 'align' => 'center', 'minWidth' => 80];
- $header[] = ['title' => '限量', 'key' => 'quota', 'type' => 1, 'align' => 'center', 'minWidth' => 80];
- $header[] = ['title' => '重量(KG)', 'key' => 'weight', 'align' => 'center', 'minWidth' => 80];
- $header[] = ['title' => '体积(m³)', 'key' => 'volume', 'align' => 'center', 'minWidth' => 80];
- $header[] = ['title' => '商品编号', 'key' => 'bar_code', 'align' => 'center', 'minWidth' => 80];
- $attrs['header'] = $header;
- return $attrs;
- }
- public static function get_attr($attr, $id, $type)
- {
- $value = attr_format($attr)[1];
- $valueNew = [];
- $count = 0;
- foreach ($value as $key => $item) {
- $detail = $item['detail'];
- sort($item['detail'], SORT_STRING);
- $suk = implode(',', $item['detail']);
- $sukValue = StoreProductAttrValue::where('product_id', $id)->where('type', $type)->where('suk', $suk)->column('bar_code,cost,price,ot_price,stock,image as pic,weight,volume,brokerage,brokerage_two,quota', 'suk');
- if (count($sukValue)) {
- foreach (array_values($detail) as $k => $v) {
- $valueNew[$count]['value' . ($k + 1)] = $v;
- }
- $valueNew[$count]['detail'] = json_encode($detail);
- $valueNew[$count]['pic'] = $sukValue[$suk]['pic'] ?? '';
- $valueNew[$count]['price'] = $sukValue[$suk]['price'] ? floatval($sukValue[$suk]['price']) : 0;
- $valueNew[$count]['cost'] = $sukValue[$suk]['cost'] ? floatval($sukValue[$suk]['cost']) : 0;
- $valueNew[$count]['ot_price'] = isset($sukValue[$suk]['ot_price']) ? floatval($sukValue[$suk]['ot_price']) : 0;
- $valueNew[$count]['stock'] = $sukValue[$suk]['stock'] ? intval($sukValue[$suk]['stock']) : 0;
- $valueNew[$count]['quota'] = $sukValue[$suk]['quota'] ? intval($sukValue[$suk]['quota']) : 0;
- $valueNew[$count]['bar_code'] = $sukValue[$suk]['bar_code'] ?? '';
- $valueNew[$count]['weight'] = $sukValue[$suk]['weight'] ? floatval($sukValue[$suk]['weight']) : 0;
- $valueNew[$count]['volume'] = $sukValue[$suk]['volume'] ? floatval($sukValue[$suk]['volume']) : 0;
- $valueNew[$count]['brokerage'] = $sukValue[$suk]['brokerage'] ? floatval($sukValue[$suk]['brokerage']) : 0;
- $valueNew[$count]['brokerage_two'] = $sukValue[$suk]['brokerage_two'] ? floatval($sukValue[$suk]['brokerage_two']) : 0;
- $valueNew[$count]['_checked'] = $type != 0 ? true : false;
- $count++;
- }
- }
- return $valueNew;
- }
- }
|