截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

FreightLogic.php 7.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\logic;
  20. use app\common\model\Freight;
  21. use app\common\model\FreightConfig;
  22. use think\facade\Db;
  23. use think\Exception;
  24. class FreightLogic
  25. {
  26. public static function lists($get)
  27. {
  28. $freight = new Freight();
  29. $where = [];
  30. if (isset($get['name']) && $get['name'] != '') {
  31. $where[] = ['name', 'like', '%' . $get['name'] . '%'];
  32. }
  33. if (isset($get['charge_way']) && $get['charge_way'] != '') {
  34. $where[] = ['charge_way', '=', $get['charge_way']];
  35. }
  36. if (isset($get['shop_id'])){
  37. $where[] = ['shop_id','=',$get['shop_id']];
  38. }
  39. $count = $freight->where($where)->count();
  40. $list = $freight
  41. ->where($where)
  42. ->page($get['page'], $get['limit'])
  43. ->append(['charge_way_text'])
  44. ->order('id desc')
  45. ->select();
  46. if (!$list) {
  47. return ['count' => '', 'lists' => []];
  48. }
  49. return ['count' => $count, 'lists' => $list];
  50. }
  51. public static function add($post)
  52. {
  53. $freight = new Freight();
  54. $freight->name = $post['name'];
  55. $freight->charge_way = $post['charge_way'];
  56. $freight->remark = $post['remark'];
  57. $freight->shop_id = $post['shop_id'];
  58. $freight->allowField(['name','charge_way','remark','shop_id'])->save();
  59. $freight_config = new FreightConfig();
  60. $config_data = [];
  61. foreach ($post as &$item) {
  62. if (is_array($item)) {
  63. $item = array_values($item);
  64. }
  65. }
  66. $post = form_to_linear($post);
  67. foreach ($post as $v) {
  68. $v['freight_id'] = $freight->id;
  69. $v['create_time'] = time();
  70. $config_data[] = $v;
  71. }
  72. $freight_config->allowField(['region','first_unit','first_money','continue_unit','continue_money','freight_id','create_time'])->insertAll($config_data);
  73. }
  74. public static function edit($post)
  75. {
  76. Db::startTrans();
  77. try {
  78. $freight = Freight::where(['id' => $post['id']])
  79. ->with('configs')
  80. ->find();
  81. //删除之前保存的配置,再增加
  82. FreightConfig::where(['freight_id' => $freight['id']])->delete();
  83. $freight->where('id',$freight['id'])->save([
  84. 'name' => $post['name'],
  85. 'charge_way' => $post['charge_way'],
  86. 'remark' => $post['remark'],
  87. ]);
  88. $config_data = [];
  89. foreach ($post as &$item) {
  90. if (is_array($item)) {
  91. $item = array_values($item);
  92. }
  93. }
  94. $post = form_to_linear($post);
  95. foreach ($post as $v) {
  96. $v['freight_id'] = $freight->id;
  97. $config_data[] = $v;
  98. }
  99. $freight_config = new FreightConfig();
  100. $freight_config->allowField(['region','first_unit','first_money','continue_unit','continue_money','freight_id','create_time'])->insertAll($config_data);
  101. Db::commit();
  102. } catch (Exception $e) {
  103. Db::rollback();
  104. }
  105. }
  106. public static function del($post)
  107. {
  108. Db::startTrans();
  109. try {
  110. Freight::where(['id' => $post['id']])->delete();
  111. FreightConfig::where(['freight_id' => $post['id']])->delete();
  112. Db::commit();
  113. } catch (Exception $e) {
  114. Db::rollback();
  115. }
  116. }
  117. public static function detail($id)
  118. {
  119. $freight = Freight::where(['id' => $id])
  120. ->with('configs')
  121. ->append(['charge_way_text'])
  122. ->find()->toArray();
  123. $regions = Db::name('dev_region')->column('name', 'id');
  124. foreach ($freight['configs'] as &$item) {
  125. $item['region_name'] = '';
  126. if ($item['region'] == 'all'){
  127. $item['region_name'] = '全国';
  128. continue;
  129. }
  130. $region = explode(',', $item['region']);
  131. foreach ($region as $v) {
  132. if (isset($regions[$v])) {
  133. $item['region_name'] .= $regions[$v] . ',';
  134. }
  135. }
  136. $item['region_name'] = rtrim($item['region_name'], ',');
  137. }
  138. return $freight;
  139. }
  140. public static function areaTree()
  141. {
  142. $lists = Db::name('dev_region')
  143. ->field('id,parent_id,level,name as title')
  144. ->order('parent_id', 'desc')
  145. ->select();
  146. $result = self::areaSort($lists);
  147. return $result;
  148. }
  149. public static function areaSort(&$lists)
  150. {
  151. $tree = [];
  152. foreach ($lists as $k1 => $province) {
  153. if ($province['level'] == 1) {
  154. //树形结构参数
  155. $province['checkArr']['type'] = 0;
  156. $province['checkArr']['checked'] = 0;
  157. $province['last'] = false;
  158. $province['parentId'] = -1;
  159. //钓鱼岛这个没有下级
  160. if ($province['id'] == 900000) {
  161. $province['children'] = [];
  162. $province['last'] = true;
  163. }
  164. $tree[$k1] = $province;
  165. unset($lists[$k1]);
  166. foreach ($lists as $k2 => $city) {
  167. $city['parentId'] = $city['parent_id'];
  168. if ($city['parentId'] == $province['id']) {
  169. foreach ($lists as $k3 => $district) {
  170. $district['parentId'] = $district['parent_id'];
  171. if ($district['parentId'] == $city['id']) {
  172. //树形结构参数
  173. $district['checkArr']['type'] = 0;
  174. $district['checkArr']['checked'] = 0;
  175. $district['last'] = true;
  176. $city['children'][] = $district;
  177. unset($lists[$k3]);
  178. }
  179. }
  180. //树形结构参数
  181. $city['checkArr']['type'] = 0;
  182. $city['checkArr']['checked'] = 0;
  183. $city['last'] = false;
  184. $tree[$k1]['children'][] = $city;
  185. unset($lists[$k2]);
  186. }
  187. }
  188. }
  189. }
  190. return array_values($tree);
  191. }
  192. /**
  193. * note 获取全部运费模板
  194. */
  195. public static function getFreightList()
  196. {
  197. return Db::name('freight')->field('id,name')->select();
  198. }
  199. }