截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PrinterValidate.php 3.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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\validate\printer;
  20. use app\common\basics\Validate;
  21. use app\common\model\printer\Printer;
  22. use app\common\model\printer\PrinterConfig;
  23. use think\facade\Db;
  24. class PrinterValidate extends Validate
  25. {
  26. protected $rule = [
  27. 'id' => 'require',
  28. 'config_id' => 'require|checkType',
  29. 'name' => 'require',
  30. 'machine_code' => 'require|unique:printer,machine_code^del^config_id',
  31. 'private_key' => 'require',
  32. 'print_number' => 'require',
  33. ];
  34. protected $message = [
  35. 'id.require' => '请选择打印机',
  36. 'config_id.require' => '请选择打印机类型',
  37. 'name.require' => '请输入打印机名称',
  38. 'machine_code.require' => '请输入终端号',
  39. 'machine_code.unique' => '终端号重复',
  40. 'private_key.require' => '请输入秘钥',
  41. 'print_number.require' => '请输入打印联数',
  42. ];
  43. public function sceneAdd()
  44. {
  45. return $this->remove('id', true);
  46. }
  47. public function sceneDel()
  48. {
  49. return $this->only(['id']);
  50. }
  51. public function sceneConfig()
  52. {
  53. return $this->only(['id'])->append('id', 'checkPrinter');
  54. }
  55. // 验证类型
  56. protected function checkType($value, $rule, $data)
  57. {
  58. $type = PrinterConfig::where(['id' => $value, 'shop_id' => $data['shop_id'], 'del' => 0])->findOrEmpty();
  59. if ($type->isEmpty()) {
  60. return '打印机配置错误';
  61. }
  62. if (empty($type['client_id']) || empty($type['client_secret'])) {
  63. return '请先设置' . $type['name'] . '的配置';
  64. }
  65. return true;
  66. }
  67. // 验证打印机
  68. protected function checkPrinter($value, $rule, $data)
  69. {
  70. $printer = Printer::where(['id' => $value, 'shop_id' => $data['shop_id']])->find();
  71. if (!$printer || !$printer['machine_code']) {
  72. return '打印机配置错误';
  73. }
  74. $type = PrinterConfig::where(['id' => $printer['config_id']])->find();
  75. if (!$type) {
  76. return '打印配置错误';
  77. }
  78. if (!$type['client_id'] || !$type['client_secret']) {
  79. return '请先设置' . $type['name'] . '的配置';
  80. }
  81. return true;
  82. }
  83. }