1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- namespace app\admin\model;
- use support\Db;
- use support\Model;
- /**
- * 悦活影院订单详情
- * Class Users
- * @package app\admin\model
- */
- class CinemaOrderDetail extends Model
- {
- /**
- *
- * The table associated with the model.
- *
- * @var string
- */
- protected $table = 'life_cinema_order_detail';
- public $timestamps = false;
- /**
- * Notes:获取产品列表
- * @param string $keywords
- * @param int $page
- * @param int $limit
- * @return array
- * User: ZQ
- * Date: 2022/10/13
- */
- public static function getOrderList(int $page, int $limit,$keywords)
- {
- $list = static::select('*')
- ->with(['user'])
- ->when($keywords != '', function ($query) use ($keywords){
- $query->where('order_sn', 'like', '%' . $keywords . '%');
- })
- ->orderBy('order_create_time','DESC')
- ->forPage($page, $limit)
- ->get();
- $count = static::when($keywords != '', function ($query) use ($keywords){
- $query->where('order_sn', 'like', '%' . $keywords . '%');
- })->count();
- return [$list, $count];
- }
- public function Attr(){
- return $this->hasMany(MedicalCareProductAttr::class,'attr_product_id','product_id')->where(['attr_is_delete'=>0]);
- }
- //关联店铺
- public function Shop(){
- return $this->belongsTo(MerchantShop::class,'order_shop_id','shop_id');
- }
- //获取器修改产品标签
- public function User(){
- return $this->belongsTo(User::class,'order_user_id','user_id');
- }
- }
|