截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Printer.php 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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\controller\printer;
  20. use app\common\basics\ShopBase;
  21. use app\shop\logic\printer\PrinterLogic;
  22. use app\common\server\JsonServer;
  23. use app\shop\validate\printer\PrinterValidate;
  24. /**
  25. * 打印机管理控制器
  26. * Class Printer
  27. * @package app\admin\controller\printer
  28. */
  29. class Printer extends ShopBase
  30. {
  31. /**
  32. * @notes 打印机列表
  33. * @return \think\response\Json|\think\response\View
  34. * @author 段誉
  35. * @date 2022/1/19 10:34
  36. */
  37. public function lists()
  38. {
  39. if ($this->request->isAjax()) {
  40. $get = $this->request->get();
  41. $result = PrinterLogic::lists($get, $this->shop_id);
  42. return JsonServer::success('', $result);
  43. }
  44. return view();
  45. }
  46. /**
  47. * Notes:添加打印机
  48. * @return mixed
  49. */
  50. public function add()
  51. {
  52. if ($this->request->isAjax()) {
  53. $post = $this->request->post();
  54. $post['del'] = 0;
  55. $post['shop_id'] = $this->shop_id;
  56. (new PrinterValidate())->goCheck('add', $post);
  57. $result = PrinterLogic::add($post, $this->shop_id);
  58. if (true === $result) {
  59. return JsonServer::success('操作成功');
  60. }
  61. return JsonServer::error($result);
  62. }
  63. return view('', [
  64. 'type_list' => PrinterLogic::getTypeList($this->shop_id)
  65. ]);
  66. }
  67. /**
  68. * @notes 编辑打印机
  69. * @return \think\response\Json|\think\response\View
  70. * @throws \think\db\exception\DataNotFoundException
  71. * @throws \think\db\exception\DbException
  72. * @throws \think\db\exception\ModelNotFoundException
  73. * @author 段誉
  74. * @date 2022/1/20 10:59
  75. */
  76. public function edit()
  77. {
  78. $id = $this->request->get('id/d');
  79. if ($this->request->isAjax()) {
  80. $post = $this->request->post();
  81. $post['del'] = 0;
  82. $post['shop_id'] = $this->shop_id;
  83. (new PrinterValidate())->goCheck('', $post);
  84. $result = PrinterLogic::edit($post, $this->shop_id);
  85. if (true === $result) {
  86. return JsonServer::success('操作成功');
  87. }
  88. return JsonServer::error($result);
  89. }
  90. return view('', [
  91. 'type_list' => PrinterLogic::getTypeList($this->shop_id),
  92. 'detail' => PrinterLogic::getPrinter($id, $this->shop_id)
  93. ]);
  94. }
  95. /**
  96. * @notes 删除打印机
  97. * @return \think\response\Json
  98. * @author 段誉
  99. * @date 2022/1/20 11:00
  100. */
  101. public function del()
  102. {
  103. if ($this->request->isAjax()) {
  104. $id = $this->request->post('id');
  105. (new PrinterValidate())->goCheck('del');
  106. $result = PrinterLogic::del($id, $this->shop_id);
  107. if (true === $result) {
  108. return JsonServer::success('操作成功');
  109. }
  110. return JsonServer::error($result);
  111. }
  112. return JsonServer::error('操作失败');
  113. }
  114. public function testPrint()
  115. {
  116. if ($this->request->isAjax()) {
  117. $post = $this->request->post();
  118. $post['shop_id'] = $this->shop_id;
  119. (new PrinterValidate())->goCheck('config', $post);
  120. $result = PrinterLogic::testPrint($post, $this->shop_id);
  121. if (true === $result) {
  122. return JsonServer::success('打印成功');
  123. }
  124. return JsonServer::error($result);
  125. }
  126. return JsonServer::error('操作失败');
  127. }
  128. }