截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

FaceSheetTplLogic.php 5.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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\Express;
  22. use app\common\model\face_sheet\FaceSheetTemplate;
  23. use Exception;
  24. /**
  25. * 面单模板
  26. * Class FaceSheetTplLogic
  27. * @package app\shop\logic\express_assistant
  28. */
  29. class FaceSheetTplLogic extends Logic
  30. {
  31. /**
  32. * @notes 获取电子面单模板列表
  33. * @param $get
  34. * @return array
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\DbException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. * @author 段誉
  39. * @date 2023/2/13 15:29
  40. */
  41. public static function lists($get, $shop_id)
  42. {
  43. $where = ['shop_id' => $shop_id];
  44. $model = new FaceSheetTemplate();
  45. $count = $model->where($where)->count('id');
  46. $lists = $model->order('id', 'desc')
  47. ->where($where)
  48. ->page($get['page'], $get['limit'])
  49. ->select();
  50. foreach ($lists as &$item) {
  51. $item['express'] = Express::where(['id'=>$item['express_id']])->value('name') ?? '未知';
  52. }
  53. return ['count' => $count, 'lists' => $lists];
  54. }
  55. /**
  56. * @notes 获取电子面单模板详细
  57. * @param $id
  58. * @param $shop_id
  59. * @return array|\think\Model|null
  60. * @throws \think\db\exception\DataNotFoundException
  61. * @throws \think\db\exception\DbException
  62. * @throws \think\db\exception\ModelNotFoundException
  63. * @author 段誉
  64. * @date 2023/2/13 15:34
  65. */
  66. public static function detail($id, $shop_id)
  67. {
  68. return FaceSheetTemplate::where(['id' => intval($id), 'shop_id' => $shop_id])->find();
  69. }
  70. /**
  71. * @notes 新增电子面单模板
  72. * @param $post
  73. * @param $shop_id
  74. * @return bool|string
  75. * @author 段誉
  76. * @date 2023/2/13 15:31
  77. */
  78. public static function add($post, $shop_id)
  79. {
  80. try {
  81. FaceSheetTemplate::create([
  82. 'shop_id' => $shop_id,
  83. 'express_id' => $post['express_id'],
  84. 'name' => $post['name'],
  85. 'template_id' => $post['template_id'],
  86. 'partner_id' => $post['partner_id'],
  87. 'partner_key' => $post['partner_key'],
  88. 'net' => $post['net'],
  89. 'pay_type' => $post['pay_type'],
  90. 'create_time' => time(),
  91. 'update_time' => time()
  92. ]);
  93. return true;
  94. } catch (Exception $e) {
  95. return $e->getMessage();
  96. }
  97. }
  98. /**
  99. * @notes 编辑电子面单模板
  100. * @param $post
  101. * @return bool|string
  102. * @author 段誉
  103. * @date 2023/2/13 15:32
  104. */
  105. public static function edit($post, $shop_id)
  106. {
  107. try {
  108. FaceSheetTemplate::update([
  109. 'express_id' => $post['express_id'],
  110. 'name' => $post['name'],
  111. 'template_id' => $post['template_id'],
  112. 'partner_id' => $post['partner_id'],
  113. 'partner_key' => $post['partner_key'],
  114. 'net' => $post['net'],
  115. 'pay_type' => $post['pay_type'],
  116. 'update_time' => time()
  117. ], ['id' => $post['id'], 'shop_id' => $shop_id]);
  118. return true;
  119. } catch (Exception $e) {
  120. return $e->getMessage();
  121. }
  122. }
  123. /**
  124. * @notes 删除电子面单模板
  125. * @param $id
  126. * @param $shop_id
  127. * @return bool|string
  128. * @author 段誉
  129. * @date 2023/2/13 15:32
  130. */
  131. public static function del($id, $shop_id)
  132. {
  133. try {
  134. FaceSheetTemplate::where(['shop_id' => $shop_id, 'id' => $id])
  135. ->delete();
  136. return true;
  137. } catch (Exception $e) {
  138. return $e->getMessage();
  139. }
  140. }
  141. /**
  142. * @notes 快递公司
  143. * @return \think\Collection
  144. * @throws \think\db\exception\DataNotFoundException
  145. * @throws \think\db\exception\DbException
  146. * @throws \think\db\exception\ModelNotFoundException
  147. * @author 段誉
  148. * @date 2023/2/13 15:13
  149. */
  150. public static function allExpress()
  151. {
  152. return Express::where(['del' => 0])->select();
  153. }
  154. /**
  155. * @notes 所有电子面单模板
  156. * @return \think\Collection
  157. * @throws \think\db\exception\DataNotFoundException
  158. * @throws \think\db\exception\DbException
  159. * @throws \think\db\exception\ModelNotFoundException
  160. * @author 段誉
  161. * @date 2023/2/13 16:02
  162. */
  163. public static function allTpl($shop_id)
  164. {
  165. $model = new FaceSheetTemplate();
  166. return $model->where(['shop_id' => $shop_id])
  167. ->order('id', 'desc')
  168. ->select();
  169. }
  170. }