123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <?php
- // +----------------------------------------------------------------------
- // | likeshop100%开源免费商用商城系统
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | 开源版本可自由商用,可去除界面版权logo
- // | 商业版本务必购买商业授权,以免引起法律纠纷
- // | 禁止对系统程序代码以任何目的,任何形式的再发布
- // | gitee下载:https://gitee.com/likeshop_gitee
- // | github下载:https://github.com/likeshop-github
- // | 访问官网:https://www.likeshop.cn
- // | 访问社区:https://home.likeshop.cn
- // | 访问手册:http://doc.likeshop.cn
- // | 微信公众号:likeshop技术社区
- // | likeshop团队 版权所有 拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeshopTeam
- // +----------------------------------------------------------------------
-
- namespace app\shop\logic\express_assistant;
-
-
- use app\common\basics\Logic;
- use app\common\model\face_sheet\FaceSheetSender;
- use app\common\server\AreaServer;
- use Exception;
-
- /**
- * 发件人模板
- * Class FaceSheetSenderLogic
- * @package app\shop\logic\express_assistant
- */
- class FaceSheetSenderLogic extends Logic
- {
-
- /**
- * @notes 获取发件人列表
- * @param $get
- * @param $shop_id
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2023/2/13 16:41
- */
- public static function lists($get, $shop_id)
- {
- $where = ['shop_id' => $shop_id];
- $model = new FaceSheetSender();
- $count = $model->where($where)->count('id');
- $lists = $model->where($where)->order('id', 'desc')
- ->page($get['page'], $get['limit'])
- ->select();
-
- foreach ($lists as &$item) {
- $item['region'] = AreaServer::getAddress([
- $item['province_id'],
- $item['city_id'],
- $item['district_id'],
- ]);
- }
-
- return ['count' => $count, 'lists' => $lists];
- }
-
-
- /**
- * @notes 所有发件人模板
- * @param $shop_id
- * @return \think\Collection
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2023/2/13 16:41
- */
- public static function allSender($shop_id)
- {
- $model = new FaceSheetSender();
- return $model->where(['shop_id' => $shop_id])
- ->order('id', 'desc')
- ->select();
- }
-
-
- /**
- * @notes 获取发件人模板详细
- * @param $id
- * @param $shop_id
- * @return array|\think\Model|null
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2023/2/13 16:40
- */
- public static function detail($id, $shop_id)
- {
- return FaceSheetSender::where(['id'=>$id, 'shop_id' => $shop_id])->find();
- }
-
-
- /**
- * @notes 新增发件人模板
- * @param $post
- * @param $shop_id
- * @return bool|string
- * @author 段誉
- * @date 2023/2/13 16:40
- */
- public static function add($post, $shop_id)
- {
- try {
- FaceSheetSender::create([
- 'shop_id' => $shop_id,
- 'name' => $post['name'],
- 'mobile' => $post['mobile'],
- 'province_id' => $post['province_id'],
- 'city_id' => $post['city_id'],
- 'district_id' => $post['district_id'],
- 'address' => $post['address'],
- 'create_time' => time(),
- 'update_time' => time(),
- ]);
-
- return true;
- } catch (Exception $e) {
- return $e->getMessage();
- }
- }
-
-
- /**
- * @notes 编辑发件人模板
- * @param $post
- * @param $shop_id
- * @return bool|string
- * @author 段誉
- * @date 2023/2/13 16:40
- */
- public static function edit($post, $shop_id)
- {
- try {
- FaceSheetSender::update([
- 'name' => $post['name'],
- 'mobile' => $post['mobile'],
- 'province_id' => $post['province_id'],
- 'city_id' => $post['city_id'],
- 'district_id' => $post['district_id'],
- 'address' => $post['address'],
- 'update_time' => time(),
- ], ['id'=>$post['id'], 'shop_id' => $shop_id]);
-
- return true;
- } catch (Exception $e) {
- return $e->getMessage();
- }
- }
-
-
- /**
- * @notes 删除发件人模板
- * @param $id
- * @param $shop_id
- * @return bool|string
- * @author 段誉
- * @date 2023/2/13 16:40\
- */
- public static function del($id, $shop_id)
- {
- try {
- FaceSheetSender::where(['shop_id' => $shop_id, 'id' => $id])
- ->delete();
- return true;
- } catch (Exception $e) {
- return $e->getMessage();
- }
- }
- }
|