截流自动化的商城平台
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.

PrinterLogic.php 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  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\shop\logic\printer;
  20. use app\common\basics\Logic;
  21. use app\common\model\printer\Printer;
  22. use app\common\model\printer\PrinterConfig;
  23. use app\common\server\ConfigServer;
  24. use app\common\server\UrlServer;
  25. use app\common\server\YlyPrinter;
  26. use think\facade\Cache;
  27. use think\facade\Db;
  28. /**
  29. * 打印机管理逻辑层
  30. * Class PrinterLogic
  31. * @package app\admin\logic\printer
  32. */
  33. class PrinterLogic extends Logic
  34. {
  35. /**
  36. * @notes 打印机列表
  37. * @param $get
  38. * @param $shop_id
  39. * @return array
  40. * @throws \think\db\exception\DataNotFoundException
  41. * @throws \think\db\exception\DbException
  42. * @throws \think\db\exception\ModelNotFoundException
  43. * @author 段誉
  44. * @date 2022/1/20 10:54
  45. */
  46. public static function lists($get, $shop_id)
  47. {
  48. $where[] = ['p.del', '=', 0];
  49. $where[] = ['p.shop_id', '=', $shop_id];
  50. $lists = Printer::alias('p')
  51. ->where($where)
  52. ->append(['status_desc', 'auto_print_desc', 'type_desc'])
  53. ->page($get['page'], $get['limit'])
  54. ->order('p.id desc')
  55. ->select()
  56. ->toArray();
  57. return ['count' => 0, 'lists' => $lists];
  58. }
  59. /**
  60. * @notes 添加打印机
  61. * @param $post
  62. * @param $shop_id
  63. * @return bool|string
  64. * @author 段誉
  65. * @date 2022/1/20 10:53
  66. */
  67. public static function add($post, $shop_id)
  68. {
  69. Db::startTrans();
  70. try {
  71. Printer::create([
  72. 'shop_id' => $shop_id,
  73. 'config_id' => $post['config_id'],
  74. 'name' => $post['name'],
  75. 'machine_code' => $post['machine_code'],
  76. 'private_key' => $post['private_key'],
  77. 'print_number' => $post['print_number'],
  78. 'auto_print' => $post['auto_print'],
  79. 'status' => $post['status'],
  80. 'create_time' => time(),
  81. 'update_time' => time(),
  82. ]);
  83. // 打印机配置
  84. $config = PrinterConfig::getConfigById($post['config_id'], $shop_id);
  85. $yly_print = new YlyPrinter($config['client_id'], $config['client_secret'], $shop_id);
  86. //调用易联云添加打印机
  87. $yly_print->addPrinter($post['machine_code'], $post['private_key'], $post['name']);
  88. Db::commit();
  89. return true;
  90. } catch (\Exception $e) {
  91. $msg = json_decode($e->getMessage(), true);
  92. if ($msg && isset($msg['error'])) {
  93. return '易联云:' . $msg['error_description'];
  94. }
  95. if (18 === $e->getCode()) {
  96. Cache::rm('yly_access_token' . $shop_id);
  97. Cache::rm('yly_refresh_token' . $shop_id);
  98. }
  99. Db::rollback();
  100. return '易联云:' . $e->getMessage();
  101. }
  102. }
  103. /**
  104. * @notes 编辑打印机
  105. * @param $post
  106. * @param $shop_id
  107. * @return bool|string
  108. * @author 段誉
  109. * @date 2022/1/20 10:53
  110. */
  111. public static function edit($post, $shop_id)
  112. {
  113. Db::startTrans();
  114. try {
  115. $now = time();
  116. $data = [
  117. 'name' => $post['name'],
  118. 'print_number' => $post['print_number'],
  119. 'status' => $post['status'],
  120. 'auto_print' => $post['auto_print'],
  121. 'update_time' => $now,
  122. ];
  123. Printer::where(['id' => $post['id']])->update($data);
  124. //调用易联云,更新打印机
  125. $config = PrinterConfig::getConfigById($post['config_id'], $shop_id);
  126. $yly_print = new YlyPrinter($config['client_id'], $config['client_secret'], $shop_id);
  127. //调用易联云添加打印机
  128. $yly_print->addPrinter($post['machine_code'], $post['private_key'], $post['name']);
  129. Db::commit();
  130. return true;
  131. } catch (\Exception $e) {
  132. $msg = json_decode($e->getMessage(), true);
  133. if ($msg && isset($msg['error'])) {
  134. return '易联云:' . $msg['error_description'];
  135. }
  136. if (18 === $e->getCode()) {
  137. Cache::rm('yly_access_token'. $shop_id);
  138. Cache::rm('yly_refresh_token'. $shop_id);
  139. }
  140. Db::rollback();
  141. return '易联云:' . $e->getMessage();
  142. }
  143. }
  144. /**
  145. * @notes 删除打印机
  146. * @param $id
  147. * @param $shop_id
  148. * @return bool|string
  149. * @author 段誉
  150. * @date 2022/1/20 9:58
  151. */
  152. public static function del($id, $shop_id)
  153. {
  154. Db::startTrans();
  155. try {
  156. Printer::where(['id' => $id, 'shop_id' => $shop_id])->update(['del' => 1, 'update_time' => time()]);
  157. $printer = Printer::where(['id' => $id, 'shop_id' => $shop_id])->findOrEmpty();
  158. $config = PrinterConfig::getConfigById($printer['config_id'], $shop_id);
  159. //调用易联云接口,删除打印机
  160. $yly_print = new YlyPrinter($config['client_id'], $config['client_secret'], $shop_id);
  161. $yly_print->deletePrinter($printer['machine_code']);
  162. Db::commit();
  163. return true;
  164. } catch (\Exception $e) {
  165. $msg = json_decode($e->getMessage(), true);
  166. if ($msg && isset($msg['error'])) {
  167. return '易联云:' . $msg['error_description'];
  168. }
  169. if (18 === $e->getCode()) {
  170. Cache::rm('yly_access_token'. $shop_id);
  171. Cache::rm('yly_refresh_token'. $shop_id);
  172. }
  173. Db::rollback();
  174. return '易联云:' . $e->getMessage();
  175. }
  176. }
  177. public static function testPrint($post, $shop_id)
  178. {
  179. try {
  180. $printer = Printer::where([
  181. 'id' => $post['id'],
  182. 'del' => 0,
  183. 'shop_id' => $shop_id,
  184. 'status' => 1
  185. ])->findOrEmpty();
  186. if ($printer->isEmpty()) {
  187. throw new \Exception('请配置打印机');
  188. }
  189. $config = PrinterConfig::getConfigById($printer['config_id'], $shop_id);
  190. // 易联云
  191. $yly_print = new YlyPrinter($config['client_id'], $config['client_secret'], $shop_id);
  192. //获取打印机状态
  193. $response = $yly_print->getPrintStatus($printer['machine_code']);
  194. if (1 == $response->body->state) {
  195. $data = static::testData();
  196. $template = self::getPrinterTpl($shop_id);
  197. $yly_print->ylyPrint([['machine_code' => $printer['machine_code'], 'print_number' => $printer['print_number']]], $data, $template);
  198. return true;
  199. }
  200. $msg = '打印机离线';
  201. if (2 == $response->body->state) {
  202. $msg = '打印机缺纸';
  203. }
  204. throw new \Exception($msg);
  205. } catch (\Exception $e) {
  206. $msg = json_decode($e->getMessage(), true);
  207. if ($msg && isset($msg['error'])) {
  208. return '易联云:' . $msg['error_description'];
  209. }
  210. if (18 === $e->getCode()) {
  211. Cache::rm('yly_access_token' . $shop_id);
  212. Cache::rm('yly_refresh_token' . $shop_id);
  213. }
  214. return '易联云:' . $e->getMessage();
  215. }
  216. }
  217. /**
  218. * @notes 打印机配置
  219. * @param $shop_id
  220. * @return array
  221. * @throws \think\db\exception\DataNotFoundException
  222. * @throws \think\db\exception\DbException
  223. * @throws \think\db\exception\ModelNotFoundException
  224. * @author 段誉
  225. * @date 2022/1/20 10:21
  226. */
  227. public static function getTypeList($shop_id)
  228. {
  229. ConfigLogic::createDefaultConfig($shop_id);
  230. return PrinterConfig::where(['del' => 0, 'shop_id' => $shop_id])->select()->toArray();
  231. }
  232. /**
  233. * @notes 打印机详情
  234. * @param $id
  235. * @param $shop_id
  236. * @return array|\think\Model
  237. * @author 段誉
  238. * @date 2022/1/20 10:21
  239. */
  240. public static function getPrinter($id, $shop_id)
  241. {
  242. $where = ['del' => 0, 'id' => $id, 'shop_id' => $shop_id];
  243. return Printer::where($where)->findOrEmpty();
  244. }
  245. /**
  246. * @notes 获取打印机配置
  247. * @param $shop_id
  248. * @return array|int|mixed|string|null
  249. * @author 段誉
  250. * @date 2022/1/19 19:01
  251. */
  252. public static function getPrinterTpl($shop_id)
  253. {
  254. return ConfigServer::get('printer', 'yly_template', [], $shop_id);
  255. }
  256. /**
  257. * @notes 设置打印机配置
  258. * @param $data
  259. * @param $shop_id
  260. * @throws \think\db\exception\DataNotFoundException
  261. * @throws \think\db\exception\DbException
  262. * @throws \think\db\exception\ModelNotFoundException
  263. * @author 段誉
  264. * @date 2022/1/19 19:01
  265. */
  266. public static function setPrinterTpl($data, $shop_id)
  267. {
  268. ConfigServer::set('printer', 'yly_template', $data, $shop_id);
  269. }
  270. /**
  271. * @notes 测试数据
  272. * @return array
  273. * @author 段誉
  274. * @date 2022/1/20 11:03
  275. */
  276. public static function testData()
  277. {
  278. $order = [
  279. 'order_sn' => date("Ymd") . '88888888888',
  280. 'create_time' => date('Y-m-d H:i:s'),
  281. 'delivery_type' => 1,
  282. 'consignee' => '张先生',
  283. 'mobile' => '138888888888',
  284. 'delivery_address' => '广东省广州市天河区XXXX科技园',
  285. 'user_remark' => '这是用户备注',
  286. 'order_goods' => [
  287. [
  288. 'goods_name' => 'iPhone 13',
  289. 'spec_value_str' => '全网通256G,银色',
  290. 'spec_value' => '全网通256G,银色',
  291. 'goods_num' => '88',
  292. 'goods_price' => '3689',
  293. 'total_price' => '88888',
  294. ],
  295. [
  296. 'goods_name' => '小米手机Plus',
  297. 'spec_value_str' => '全网通256G,黑色',
  298. 'spec_value' => '全网通256G,黑色',
  299. 'goods_num' => '88',
  300. 'goods_price' => '3689',
  301. 'total_price' => '88888',
  302. ],
  303. [
  304. 'goods_name' => '华为 P40',
  305. 'spec_value_str' => '全网通256G,黑色',
  306. 'spec_value' => '全网通256G,黑色',
  307. 'goods_num' => '88',
  308. 'goods_price' => '3689',
  309. 'total_price' => '88888',
  310. ],
  311. ],
  312. 'selffetch_shop' => [],
  313. 'goods_price' => '888888', //商品总价
  314. 'discount_amount' => '80', //优惠金额
  315. 'member_amount' => '80', //会员金额
  316. 'shipping_price' => '12', //应付
  317. 'order_amount' => '222' //应付金额
  318. ];
  319. return $order;
  320. }
  321. }