123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\common\dao\store\product;
- use app\common\dao\BaseDao;
- use app\common\model\store\product\ProductAssist;
- use app\common\repositories\store\product\SpuRepository;
- use app\common\repositories\system\merchant\MerchantRepository;
- class ProductAssistDao extends BaseDao
- {
- protected function getModel(): string
- {
- return ProductAssist::class;
- }
- public function search(array $where)
- {
- $query = ProductAssist::hasWhere('product',function($query)use($where){
- $query->when(isset($where['product_show']) && $where['product_show'] !== '',function($query)use($where){
- $query->where('is_del',0)->where('mer_status',1)->where('product_type',3);
- })
- ->where('status',1);
- });
- $query->when(isset($where['product_assist_id']) && $where['product_assist_id'] !== '',function($query)use($where){
- $query->where('product_assist_id',$where['product_assist_id']);
- })
- ->when(isset($where['keyword']) && $where['keyword'] !== '',function($query)use($where){
- $query->whereLike('ProductAssist.store_name|ProductAssist.product_id',"%{$where['keyword']}%");
- })
- ->when(isset($where['mer_id']) && $where['mer_id'] !== '',function($query)use($where){
- $query->where('ProductAssist.mer_id',$where['mer_id']);
- })
- ->when(isset($where['type']) && $where['type'] !== '',function($query)use($where){
- switch ($where['type']){
- case 0: //未开始
- $query->whereTime('start_time','>',time());
- break;
- case 1: //进行中
- $query->whereTime('start_time','<=',time())->whereTime('end_time','>',time())
- ->where('ProductAssist.product_status',1)->where('ProductAssist.status',1)->where('ProductAssist.is_show',1);
- break;
- case 2: //已结束
- $query->where(function($query){
- $query->where('action_status',-1)->whereOr('end_time','<= TIME',time());
- });
- break;
- }
- })
- ->when(isset($where['status']) && $where['status'] !== '',function($query)use($where){
- $query->where('ProductAssist.status',$where['status']);
- })
- ->when(isset($where['is_show']) && $where['is_show'] !== '',function($query)use($where){
- $query->where('ProductAssist.is_show',$where['is_show']);
- })
- ->when(isset($where['mer_name']) && $where['mer_name'] !== '',function($query)use($where){
- $make = app()->make(MerchantRepository::class);
- $mer_id = $make->search(['keyword' => $where['mer_name']])->column('mer_id');
- $query->whereIn('ProductAssist.mer_id',$mer_id);
- })
- ->when(isset($where['product_status']) && $where['product_status'] !== '',function($query)use($where){
- if($where['product_status'] == -1){
- $query->where('ProductAssist.product_status','in',[-1,-2]);
- }else{
- $query->where('ProductAssist.product_status',$where['product_status']);
- }
- })
- ->when(isset($where['is_trader']) && $where['is_trader'] !== '',function($query)use($where){
- $make = app()->make(MerchantRepository::class);
- $mer_id = $make->search(['is_trader' => $where['is_trader']])->column('mer_id');
- $query->whereIn('ProductAssist.mer_id',$mer_id);
- })
- ->when(isset($where['us_status']) && $where['us_status'] !== '',function($query)use($where){
- if($where['us_status'] == 0) {
- $query->where('ProductAssist.is_show',0)->where('ProductAssist.status',1)->where('ProductAssist.product_status',1);
- }
- if($where['us_status'] == 1) {
- $query->where('ProductAssist.is_show',1)->where('ProductAssist.status',1)->where('ProductAssist.product_status',1);
- }
- if($where['us_status'] == -1) {
- $query->where(function($query){
- $query->where('ProductAssist.status',0)->whereOr('ProductAssist.product_status','<>',1);
- });
- }
- })
- ->when(isset($where['star']),function($query)use($where){
- $query->Join('StoreSpu U', 'Product.product_id = U.product_id')->where('U.product_type', 3);
- $query->when($where['star'] !== '', function ($query) use ($where) {
- $query->where('U.star', $where['star']);
- });
- $query->order('U.star DESC,U.rank DESC,ProductAssist.create_time DESC');
- });
- $query->where('ProductAssist.is_del',0);
- return $query;
- }
- /**
- * TODO 移动端展示 条件
- * @return array
- * @author Qinii
- * @day 2020-10-19
- */
- public function assistShow()
- {
- return [
- 'product_show' => 1,
- 'product_status' => 1,
- 'status' => 1,
- 'is_show' => 1,
- 'type' => 1
- ];
- }
- /**
- * TODO
- * @author Qinii
- * @day 1/27/21
- */
- public function valActiveStatus()
- {
- $query = $this->getModel()::getDB()->whereTime('end_time','<=',time())->where('action_status',1);
- $id = $query->column($this->getPk());
- if($id) {
- $this->getModel()::getDB()->where($this->getPk(),'in',$id)->update(['action_status' => -1]);
- $where = [
- 'product_type' => 3,
- 'activity_ids' => $id
- ];
- app()->make(SpuRepository::class)->getSearch($where)->update(['status' => 0]);
- }
- }
- }
|