123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387 |
- <?php
- namespace app\model\activity\seckill;
- use app\model\activity\StoreActivity;
- use app\model\product\product\StoreDescription;
- use app\model\product\product\StoreProduct;
- use app\model\product\sku\StoreProductAttrValue;
- use crmeb\basic\BaseModel;
- use crmeb\traits\ModelTrait;
- use think\Model;
- class StoreSeckill extends BaseModel
- {
- use ModelTrait;
-
- protected $pk = 'id';
-
- protected $name = 'store_seckill';
-
- protected function setDeliveryTypeAttr($value)
- {
- if ($value) {
- return is_array($value) ? implode(',', $value) : $value;
- }
- return '';
- }
-
- protected function getDeliveryTypeAttr($value)
- {
- if ($value) {
- return is_string($value) ? explode(',', $value) : $value;
- }
- return [];
- }
-
- protected function getCustomFormAttr($value)
- {
- if ($value) {
- return is_string($value) ? json_decode($value, true) : $value;
- }
- return [];
- }
-
- protected function getStoreLabelIdAttr($value)
- {
- if ($value) {
- return is_string($value) ? explode(',', $value) : $value;
- }
- return [];
- }
-
- protected function getEnsureIdAttr($value)
- {
- if ($value) {
- return is_string($value) ? explode(',', $value) : $value;
- }
- return [];
- }
-
- protected function getSpecsAttr($value)
- {
- if ($value) {
- return is_string($value) ? json_decode($value, true) : $value;
- }
- return [];
- }
-
- protected function getAddTimeAttr($value)
- {
- if ($value) return date('Y-m-d H:i:s', (int)$value);
- return '';
- }
-
- protected function getImagesAttr($value)
- {
- return json_decode($value, true) ?: [];
- }
-
- protected function setApplicableStoreIdAttr($value)
- {
- if ($value) {
- return is_array($value) ? implode(',', $value) : $value;
- }
- return '';
- }
-
- protected function getApplicableStoreIdAttr($value)
- {
- if ($value) {
- return is_string($value) ? array_map('intval', array_filter(explode(',', $value))) : $value;
- }
- return [];
- }
-
- protected function setTimeIdAttr($value)
- {
- if ($value) {
- return is_array($value) ? implode(',', $value) : $value;
- }
- return '';
- }
-
- protected function getTimeIdAttr($value)
- {
- if ($value) {
- return is_string($value) ? array_map('intval', array_filter(explode(',', $value))) : $value;
- }
- return [];
- }
-
- public function descriptions()
- {
- return $this->hasOne(StoreDescription::class, 'product_id', 'id')->where('type', 1)->bind(['description']);
- }
-
- public function product()
- {
- return $this->hasOne(StoreProduct::class, 'id', 'product_id')->where('is_show', 1)->where('is_del', 0)->field(['SUM(sales+ficti) as total', 'id'])->bind([
- 'total' => 'total'
- ]);
- }
-
- public function attrValue()
- {
- return $this->hasMany(StoreProductAttrValue::class, 'product_id', 'id')->where('type', 1);
- }
-
- public function activity()
- {
- return $this->hasOne(StoreActivity::class, 'id', 'activity_id');
- }
-
- public function activityName()
- {
- return $this->hasOne(StoreActivity::class, 'id', 'activity_id')->field(['id', 'name'])->bind([
- 'activity_name' => 'name'
- ]);
- }
-
- public function searchActivityIdAttr($query, $value)
- {
- if ($value) {
- if (is_array($value)) {
- $query->whereIn('activity_id', $value);
- } else {
- $query->where('activity_id', $value);
- }
- }
- }
-
- public function searchTimeIdAttr($query, $value)
- {
- if ($value) $query->where('find_in_set(' . $value . ',`time_id`)');
- }
-
- public function searchStoreNameAttr($query, $value, $data)
- {
- if ($value) $query->where('title|id', 'like', '%' . $value . '%');
- }
-
- public function searchIsHotAttr($query, $value, $data)
- {
- $query->where('is_hot', $value ?? 1);
- }
-
- public function searchIsShowAttr($query, $value, $data)
- {
- $query->where('is_show', $value ?? 1);
- }
-
- public function searchIsDelAttr($query, $value, $data)
- {
- $query->where('is_del', $value ?? 0);
- }
-
- public function searchStatusAttr($query, $value, $data)
- {
- if ($value != '') $query->where('status', $value);
- }
-
- public function searchProductIdAttr($query, $value, $data)
- {
- if ($value) {
- if (is_array($value)) {
- $query->whereIn('product_id', $value);
- } else {
- $query->where('product_id', $value);
- }
- }
- }
-
- public function searchSeckillTimeAttr($query, $value)
- {
- if ($value == 1) {
- $time = time();
- $query->where('start_time', '<=', $time)->where('stop_time', '>=', $time - 86400);
- }
- }
-
- public function searchSystemFormIdAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('system_form_id', $value);
- } else {
- if ($value !== '') $query->where('system_form_id', $value);
- }
- }
-
- public function searchApplicableTypeAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('applicable_type', $value);
- } else {
- if ($value !== '') $query->where('applicable_type', $value);
- }
- }
- }
|