1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- // +----------------------------------------------------------------------
- // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2017~2024 https://www.yiovo.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
- // +----------------------------------------------------------------------
- // | Author: 萤火科技 <admin@yiovo.com>
- // +----------------------------------------------------------------------
- declare (strict_types=1);
- namespace app\store\model;
- use app\common\model\Express as ExpressModel;
- /**
- * 物流公司模型
- * Class Goods
- * @package app\store\model
- */
- class Express extends ExpressModel
- {
- /**
- * 添加新记录
- * @param array $data
- * @return bool|false
- */
- public function add(array $data): bool
- {
- $data['store_id'] = self::$storeId;
- return $this->save($data);
- }
- /**
- * 编辑记录
- * @param array $data
- * @return bool
- */
- public function edit(array $data): bool
- {
- return $this->save($data);
- }
- /**
- * 删除记录
- * @return bool
- */
- public function remove(): bool
- {
- // 判断当前物流公司是否已被订单使用
- $Order = new Order;
- if ($orderCount = $Order->where(['express_id' => $this['express_id']])->count()) {
- $this->error = '当前物流公司已被' . $orderCount . '个订单使用,不允许删除';
- return false;
- }
- return $this->delete();
- }
- /**
- * 根据物流公司名称获取ID集
- * @param array $expressNameArr
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public static function getExpressIds(array $expressNameArr): array
- {
- $list = (new static)->where('express_name', 'in', $expressNameArr)->select();
- $data = [];
- foreach ($list as $item) {
- $data[$item['express_name']] = $item['express_id'];
- }
- return $data;
- }
- }
|