截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

ExpressLogic.php 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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\server\ConfigServer;
  21. use app\common\server\UrlServer;
  22. use think\facade\Db;
  23. use think\Exception;
  24. class ExpressLogic
  25. {
  26. /**
  27. * 列表
  28. * @param $get
  29. * @return array
  30. * @throws \think\db\exception\DataNotFoundException
  31. * @throws \think\db\exception\ModelNotFoundException
  32. * @throws \think\exception\DbException
  33. */
  34. public static function lists($get)
  35. {
  36. $where = [];
  37. $where[] = ['del', '=', '0'];
  38. if (isset($get['express_name']) && $get['express_name'] != '') {
  39. $where[] = ['name', 'like', '%' . trim($get['express_name']) . '%'];
  40. }
  41. $count = Db::name('express')
  42. ->where($where)
  43. ->count();
  44. $lists = Db::name('express')
  45. ->where($where)
  46. ->page($get['page'], $get['limit'])
  47. ->select()->toArray();
  48. foreach ($lists as $key => &$item) {
  49. $item['icon'] = UrlServer::getFileUrl($item['icon']);
  50. }
  51. return ['lists' => $lists, 'count' => $count];
  52. }
  53. /**
  54. * 添加
  55. * @param $post
  56. * @return array|\PDOStatement|string|\think\Model|null
  57. * @throws \think\db\exception\DataNotFoundException
  58. * @throws \think\db\exception\ModelNotFoundException
  59. * @throws \think\exception\DbException
  60. */
  61. public static function addExpress($post)
  62. {
  63. $time = time();
  64. $data = [
  65. 'name' => $post['name'],
  66. 'icon' => clearDomain($post['poster']),
  67. 'website' => $post['website'],
  68. 'code' => $post['code'],
  69. 'code100' => $post['code100'],
  70. 'codebird' => $post['codebird'],
  71. 'sort' => $post['sort'],
  72. 'create_time' => $time
  73. ];
  74. $result = Db::name('express')->insert($data);
  75. return $result;
  76. }
  77. /**
  78. * 获取信息
  79. * @param $id
  80. * @return array|\PDOStatement|string|\think\Model|null
  81. * @throws \think\db\exception\DataNotFoundException
  82. * @throws \think\db\exception\ModelNotFoundException
  83. * @throws \think\exception\DbException
  84. */
  85. public static function info($id)
  86. {
  87. $detail = Db::name('express')->where(['id' => $id, 'del' => 0])->find();
  88. $detail['abs_icon'] = UrlServer::getFileUrl($detail['icon']);
  89. return $detail;
  90. }
  91. /**
  92. * 编辑
  93. * @param $post
  94. * @return int|string
  95. * @throws Exception
  96. * @throws \think\exception\PDOException
  97. */
  98. public static function editExpress($post)
  99. {
  100. $data = [
  101. 'name' => $post['name'],
  102. 'icon' => UrlServer::setFileUrl($post['poster']),
  103. 'website' => $post['website'],
  104. 'code' => $post['code'],
  105. 'code100' => $post['code100'],
  106. 'codebird' => $post['codebird'],
  107. 'sort' => $post['sort'],
  108. 'update_time' => time()
  109. ];
  110. $result = Db::name('express')->where(['id' => $post['id']])->update($data);
  111. return $result;
  112. }
  113. /**
  114. * 删除
  115. * @param $delData
  116. * @return int|string
  117. * @throws Exception
  118. * @throws \think\exception\PDOException
  119. */
  120. public static function delExpress($delData)
  121. {
  122. $data = [
  123. 'del' => 1,
  124. 'update_time' => time(),
  125. ];
  126. return Db::name('express')->where(['del' => 0, 'id' => $delData])->update($data);
  127. }
  128. public static function getExpress()
  129. {
  130. $config = [
  131. 'way' => ConfigServer::get('express', 'way', 'kd100'),
  132. 'kd100_appkey' => ConfigServer::get('kd100', 'appkey', ''),
  133. 'kd100_customer' => ConfigServer::get('kd100', 'appsecret', ''),
  134. 'kdniao_appkey' => ConfigServer::get('kdniao', 'appkey', ''),
  135. 'kdniao_ebussinessid' => ConfigServer::get('kdniao', 'appsecret', ''),
  136. 'kdniao_type' => ConfigServer::get('kdniao', 'type', 'free'),
  137. ];
  138. return $config;
  139. }
  140. //快递100
  141. public static function kd100(){
  142. $config = [
  143. 'appkey' => ConfigServer::get('kd100', 'appkey', ''),
  144. 'appsecret' => ConfigServer::get('kd100', 'appsecret', ''),
  145. ];
  146. return $config;
  147. }
  148. //快递鸟
  149. public static function kdniao(){
  150. $res=[
  151. 'appkey2' => ConfigServer::get('kdniao', 'appkey', ''),
  152. 'appsecret2' => ConfigServer::get('kdniao', 'appsecret', ''),
  153. ];
  154. return $res;
  155. }
  156. //快递方式
  157. public static function way(){
  158. $way = ConfigServer::get('express', 'way', '');
  159. return $way;
  160. }
  161. }