截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FaceSheetSenderLogic.php 5.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\shop\logic\express_assistant;
  20. use app\common\basics\Logic;
  21. use app\common\model\face_sheet\FaceSheetSender;
  22. use app\common\server\AreaServer;
  23. use Exception;
  24. /**
  25. * 发件人模板
  26. * Class FaceSheetSenderLogic
  27. * @package app\shop\logic\express_assistant
  28. */
  29. class FaceSheetSenderLogic extends Logic
  30. {
  31. /**
  32. * @notes 获取发件人列表
  33. * @param $get
  34. * @param $shop_id
  35. * @return array
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\DbException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. * @author 段誉
  40. * @date 2023/2/13 16:41
  41. */
  42. public static function lists($get, $shop_id)
  43. {
  44. $where = ['shop_id' => $shop_id];
  45. $model = new FaceSheetSender();
  46. $count = $model->where($where)->count('id');
  47. $lists = $model->where($where)->order('id', 'desc')
  48. ->page($get['page'], $get['limit'])
  49. ->select();
  50. foreach ($lists as &$item) {
  51. $item['region'] = AreaServer::getAddress([
  52. $item['province_id'],
  53. $item['city_id'],
  54. $item['district_id'],
  55. ]);
  56. }
  57. return ['count' => $count, 'lists' => $lists];
  58. }
  59. /**
  60. * @notes 所有发件人模板
  61. * @param $shop_id
  62. * @return \think\Collection
  63. * @throws \think\db\exception\DataNotFoundException
  64. * @throws \think\db\exception\DbException
  65. * @throws \think\db\exception\ModelNotFoundException
  66. * @author 段誉
  67. * @date 2023/2/13 16:41
  68. */
  69. public static function allSender($shop_id)
  70. {
  71. $model = new FaceSheetSender();
  72. return $model->where(['shop_id' => $shop_id])
  73. ->order('id', 'desc')
  74. ->select();
  75. }
  76. /**
  77. * @notes 获取发件人模板详细
  78. * @param $id
  79. * @param $shop_id
  80. * @return array|\think\Model|null
  81. * @throws \think\db\exception\DataNotFoundException
  82. * @throws \think\db\exception\DbException
  83. * @throws \think\db\exception\ModelNotFoundException
  84. * @author 段誉
  85. * @date 2023/2/13 16:40
  86. */
  87. public static function detail($id, $shop_id)
  88. {
  89. return FaceSheetSender::where(['id'=>$id, 'shop_id' => $shop_id])->find();
  90. }
  91. /**
  92. * @notes 新增发件人模板
  93. * @param $post
  94. * @param $shop_id
  95. * @return bool|string
  96. * @author 段誉
  97. * @date 2023/2/13 16:40
  98. */
  99. public static function add($post, $shop_id)
  100. {
  101. try {
  102. FaceSheetSender::create([
  103. 'shop_id' => $shop_id,
  104. 'name' => $post['name'],
  105. 'mobile' => $post['mobile'],
  106. 'province_id' => $post['province_id'],
  107. 'city_id' => $post['city_id'],
  108. 'district_id' => $post['district_id'],
  109. 'address' => $post['address'],
  110. 'create_time' => time(),
  111. 'update_time' => time(),
  112. ]);
  113. return true;
  114. } catch (Exception $e) {
  115. return $e->getMessage();
  116. }
  117. }
  118. /**
  119. * @notes 编辑发件人模板
  120. * @param $post
  121. * @param $shop_id
  122. * @return bool|string
  123. * @author 段誉
  124. * @date 2023/2/13 16:40
  125. */
  126. public static function edit($post, $shop_id)
  127. {
  128. try {
  129. FaceSheetSender::update([
  130. 'name' => $post['name'],
  131. 'mobile' => $post['mobile'],
  132. 'province_id' => $post['province_id'],
  133. 'city_id' => $post['city_id'],
  134. 'district_id' => $post['district_id'],
  135. 'address' => $post['address'],
  136. 'update_time' => time(),
  137. ], ['id'=>$post['id'], 'shop_id' => $shop_id]);
  138. return true;
  139. } catch (Exception $e) {
  140. return $e->getMessage();
  141. }
  142. }
  143. /**
  144. * @notes 删除发件人模板
  145. * @param $id
  146. * @param $shop_id
  147. * @return bool|string
  148. * @author 段誉
  149. * @date 2023/2/13 16:40\
  150. */
  151. public static function del($id, $shop_id)
  152. {
  153. try {
  154. FaceSheetSender::where(['shop_id' => $shop_id, 'id' => $id])
  155. ->delete();
  156. return true;
  157. } catch (Exception $e) {
  158. return $e->getMessage();
  159. }
  160. }
  161. }