StoreBargain.php 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\model\activity\bargain;
  12. use app\model\product\product\StoreDescription;
  13. use app\model\product\product\StoreProduct;
  14. use crmeb\basic\BaseModel;
  15. use crmeb\traits\ModelTrait;
  16. use think\Model;
  17. /**
  18. * 砍价商品Model
  19. * Class StoreBargain
  20. * @package app\model\activity\bargain
  21. */
  22. class StoreBargain extends BaseModel
  23. {
  24. use ModelTrait;
  25. /**
  26. * 数据表主键
  27. * @var string
  28. */
  29. protected $pk = 'id';
  30. /**
  31. * 模型名称
  32. * @var string
  33. */
  34. protected $name = 'store_bargain';
  35. public function getImagesAttr($value)
  36. {
  37. return json_decode($value, true) ?? [];
  38. }
  39. /**
  40. * 配送信息
  41. * @param $value
  42. * @return false|string
  43. */
  44. protected function setDeliveryTypeAttr($value)
  45. {
  46. if ($value) {
  47. return is_array($value) ? implode(',', $value) : $value;
  48. }
  49. return '';
  50. }
  51. /**
  52. * 配送信息
  53. * @param $value
  54. * @param $data
  55. * @return mixed
  56. */
  57. protected function getDeliveryTypeAttr($value)
  58. {
  59. if ($value) {
  60. return is_string($value) ? explode(',', $value) : $value;
  61. }
  62. return [];
  63. }
  64. /**
  65. * 配送信息
  66. * @param $value
  67. * @param $data
  68. * @return mixed
  69. */
  70. protected function getCustomFormAttr($value)
  71. {
  72. if ($value) {
  73. return is_string($value) ? json_decode($value, true) : $value;
  74. }
  75. return [];
  76. }
  77. /**
  78. * 商品标签
  79. * @param $value
  80. * @return array|mixed
  81. */
  82. protected function getLabelIdAttr($value)
  83. {
  84. if ($value) {
  85. return is_string($value) ? explode(',', $value) : $value;
  86. }
  87. return [];
  88. }
  89. /**
  90. * @param $value
  91. * @return array|mixed
  92. */
  93. public function getStoreLabelIdAttr($value)
  94. {
  95. if ($value) {
  96. return is_string($value) ? array_map('intval', array_filter(explode(',', $value))) : $value;
  97. }
  98. return [];
  99. }
  100. /**
  101. * 商品保障服务
  102. * @param $value
  103. * @return array|mixed
  104. */
  105. protected function getEnsureIdAttr($value)
  106. {
  107. if ($value) {
  108. return is_string($value) ? array_map('intval', array_filter(explode(',', $value))) : $value;
  109. }
  110. return [];
  111. }
  112. /**
  113. * 参数信息
  114. * @param $value
  115. * @return array|mixed
  116. */
  117. protected function getSpecsAttr($value)
  118. {
  119. if ($value) {
  120. return is_string($value) ? json_decode($value, true) : $value;
  121. }
  122. return [];
  123. }
  124. /**
  125. * 适用门店信息
  126. * @param $value
  127. * @return string
  128. */
  129. protected function setApplicableStoreIdAttr($value)
  130. {
  131. if ($value) {
  132. return is_array($value) ? implode(',', $value) : $value;
  133. }
  134. return '';
  135. }
  136. /**
  137. * 适用门店信息
  138. * @param $value
  139. * @return array|false|string[]
  140. */
  141. protected function getApplicableStoreIdAttr($value)
  142. {
  143. if ($value) {
  144. return is_string($value) ? array_map('intval', array_filter(explode(',', $value))) : $value;
  145. }
  146. return [];
  147. }
  148. /**
  149. * 一对一关联
  150. * 商品关联商品商品详情
  151. * @return \think\model\relation\HasOne
  152. */
  153. public function descriptions()
  154. {
  155. return $this->hasOne(StoreDescription::class, 'product_id', 'id')->where('type', 2)->bind(['description']);
  156. }
  157. /**
  158. * 原价
  159. * @return \think\model\relation\HasOne
  160. */
  161. public function product()
  162. {
  163. return $this->hasOne(StoreProduct::class, 'id', 'product_id')->field(['id', 'ot_price'])->bind(['ot_price']);
  164. }
  165. /**
  166. * 添加时间获取器
  167. * @param $value
  168. * @return false|string
  169. */
  170. protected function getAddTimeAttr($value)
  171. {
  172. if ($value) return date('Y-m-d H:i:s', (int)$value);
  173. return '';
  174. }
  175. /**
  176. * 砍价商品名称搜索器
  177. * @param Model $query
  178. * @param $value
  179. * @param $data
  180. */
  181. public function searchStoreNameAttr($query, $value, $data)
  182. {
  183. if ($value != '') $query->where('title|id', 'like', '%' . $value . '%');
  184. }
  185. /**
  186. * 状态搜索器
  187. * @param Model $query
  188. * @param $value
  189. * @param $data
  190. */
  191. public function searchStatusAttr($query, $value, $data)
  192. {
  193. if ($value != '') $query->where('status', $value ?? 1);
  194. }
  195. /**
  196. * 是否推荐搜索器
  197. * @param Model $query
  198. * @param $value
  199. * @param $data
  200. */
  201. public function searchIsHotAttr($query, $value, $data)
  202. {
  203. $query->where('is_hot', $value ?? 0);
  204. }
  205. /**
  206. * 是否删除搜索器
  207. * @param Model $query
  208. * @param $value
  209. * @param $data
  210. */
  211. public function searchIsDelAttr($query, $value, $data)
  212. {
  213. $query->where('is_del', $value ?? 0);
  214. }
  215. /**
  216. * 商品ID搜索器
  217. * @param Model $query
  218. * @param $value
  219. * @param $data
  220. */
  221. public function searchProductIdAttr($query, $value, $data)
  222. {
  223. if ($value) {
  224. if (is_array($value)) {
  225. $query->whereIn('product_id', $value);
  226. } else {
  227. $query->where('product_id', $value);
  228. }
  229. }
  230. }
  231. /**
  232. * 活动有效时间搜索器
  233. * @param $query
  234. * @param $value
  235. */
  236. public function searchBargainTimeAttr($query, $value)
  237. {
  238. if ($value == 1) {
  239. $time = time();
  240. $query->where('start_time', '<=', $time)->where('stop_time', '>=', $time);
  241. }
  242. }
  243. /**
  244. * 系统表单搜索器
  245. * @param Model $query
  246. * @param $value
  247. */
  248. public function searchSystemFormIdAttr($query, $value)
  249. {
  250. if (is_array($value)) {
  251. if ($value) $query->whereIn('system_form_id', $value);
  252. } else {
  253. if ($value !== '') $query->where('system_form_id', $value);
  254. }
  255. }
  256. /**
  257. * 适用门店类型搜索器
  258. * @param Model $query
  259. * @param $value
  260. */
  261. public function searchApplicableTypeAttr($query, $value)
  262. {
  263. if (is_array($value)) {
  264. if ($value) $query->whereIn('applicable_type', $value);
  265. } else {
  266. if ($value !== '') $query->where('applicable_type', $value);
  267. }
  268. }
  269. }