截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ConfigLogic.php 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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\PrinterConfig;
  22. /**
  23. * 打印设置逻辑层
  24. * Class ConfigLogic
  25. * @package app\admin\logic\printer
  26. */
  27. class ConfigLogic extends Logic
  28. {
  29. /**
  30. * @notes 打印设置列表
  31. * @param $shop_id
  32. * @return array
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\DbException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. * @author 段誉
  37. * @date 2022/1/19 17:20
  38. */
  39. public static function lists($shop_id)
  40. {
  41. self::createDefaultConfig($shop_id);
  42. $lists = PrinterConfig::where(['del' => 0, 'shop_id' => $shop_id])->select();
  43. return ['lists' => $lists];
  44. }
  45. /**
  46. * @notes 创建当前门店默认打印机配置
  47. * @param $shop_id
  48. * @author 段誉
  49. * @date 2022/1/19 17:20
  50. */
  51. public static function createDefaultConfig($shop_id)
  52. {
  53. $config = PrinterConfig::where(['shop_id' => $shop_id, 'del' => 0])->findOrEmpty();
  54. if ($config->isEmpty()) {
  55. PrinterConfig::create([
  56. 'name' => '易联云',
  57. 'shop_id' => $shop_id,
  58. 'client_id' => 0,
  59. 'client_secret' => 0,
  60. 'type' => 1,
  61. 'update_time' => time(),
  62. ]);
  63. }
  64. }
  65. /**
  66. * @notes 配置详情
  67. * @param $id
  68. * @param $shop_id
  69. * @return array|\think\Model
  70. * @author 段誉
  71. * @date 2022/1/19 17:21
  72. */
  73. public static function getDetail($id, $shop_id)
  74. {
  75. return PrinterConfig::where(['id' => $id, 'shop_id' => $shop_id])->findOrEmpty();
  76. }
  77. /**
  78. * @notes 设置配置
  79. * @param $post
  80. * @param $shop_id
  81. * @return PrinterConfig
  82. * @author 段誉
  83. * @date 2022/1/19 17:21
  84. */
  85. public static function editConfig($post, $shop_id)
  86. {
  87. $post['status'] = isset($post['status']) && $post['status'] == 'on' ? 1 : 0;
  88. if ($post['status']) {
  89. PrinterConfig::where(['status' => 1, 'shop_id' => $shop_id])->update(['status' => 0]);
  90. }
  91. $update_data = [
  92. 'client_id' => $post['client_id'],
  93. 'client_secret' => $post['client_secret'],
  94. 'update_time' => time(),
  95. 'status' => $post['status'],
  96. ];
  97. return PrinterConfig::where(['id' => $post['id'], 'shop_id' => $shop_id])->update($update_data);
  98. }
  99. }