| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?php
- namespace app\store\model\sharing;
- use think\Cache;
- use app\common\model\sharing\Category as CategoryModel;
- /**
- * 拼团商品分类模型
- * Class Category
- * @package app\store\model
- */
- class Category extends CategoryModel
- {
- /**
- * 分类详情
- * @param $category_id
- * @return Category|null
- * @throws \think\exception\DbException
- */
- public static function detail($category_id)
- {
- return static::get($category_id);
- }
- /**
- * 添加新记录
- * @param $data
- * @return false|int
- */
- public function add($data)
- {
- $data['wxapp_id'] = self::$wxapp_id;
- $this->deleteCache();
- return $this->allowField(true)->save($data);
- }
- /**
- * 编辑记录
- * @param $data
- * @return bool|int
- */
- public function edit($data)
- {
- $this->deleteCache();
- return $this->allowField(true)->save($data);
- }
- /**
- * 删除商品分类
- * @param $category_id
- * @return bool|int
- */
- public function remove($category_id)
- {
- // 判断是否存在商品
- if ($goodsCount = (new Goods)->getGoodsTotal(['category_id' => $category_id])) {
- $this->error = '该分类下存在' . $goodsCount . '个商品,不允许删除';
- return false;
- }
- // 判断是否存在子分类
- if ((new self)->where(['parent_id' => $category_id])->count()) {
- $this->error = '该分类下存在子分类,请先删除';
- return false;
- }
- $this->deleteCache();
- return $this->delete();
- }
- /**
- * 删除缓存
- * @return bool
- */
- private function deleteCache()
- {
- return Cache::rm('sharing_category_' . self::$wxapp_id);
- }
- }
|