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

TemplateLogic.php 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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\UrlServer;
  24. use app\common\server\YlyPrinter;
  25. /**
  26. * 小票模板逻辑层
  27. * Class TemplateLogic
  28. * @package app\admin\logic\printer
  29. */
  30. class TemplateLogic extends Logic
  31. {
  32. /**
  33. * @notes 模板详情
  34. * @param $shop_id
  35. * @return array|\think\Model
  36. * @author 段誉
  37. * @date 2022/1/19 16:02
  38. */
  39. public static function getDetail($shop_id)
  40. {
  41. $result = PrinterLogic::getPrinterTpl($shop_id);
  42. $result['file_url'] = UrlServer::getFileUrl();
  43. return $result;
  44. }
  45. /**
  46. * @notes 编辑模板
  47. * @param $post
  48. * @param $shop_id
  49. * @return bool|string
  50. * @author 段誉
  51. * @date 2022/1/19 16:44
  52. */
  53. public static function edit($post, $shop_id)
  54. {
  55. try {
  56. PrinterLogic::setPrinterTpl($post, $shop_id);
  57. return true;
  58. } catch (\Exception $e) {
  59. return $e->getMessage();
  60. }
  61. }
  62. /**
  63. * @notes 打印机列表
  64. * @param $shop_id
  65. * @return mixed
  66. * @author 段誉
  67. * @date 2022/1/19 18:54
  68. */
  69. public static function getPrinterList($shop_id)
  70. {
  71. $where[] = ['p.del', '=', 0];
  72. $where[] = ['pc.type', '=', 1]; //类型为易联云
  73. $where[] = ['p.shop_id', '=', $shop_id];
  74. $result = (new Printer())->alias('p')
  75. ->join('printer_config pc', 'p.config_id = pc.id')
  76. ->where($where)
  77. ->column('machine_code,private_key,print_number', 'machine_code');
  78. return $result;
  79. }
  80. }