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

OrderPrintValidate.php 861B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. namespace app\shop\validate\order;
  3. use app\common\basics\Validate;
  4. use app\common\model\printer\Printer;
  5. use app\common\model\printer\PrinterConfig;
  6. class OrderPrintValidate extends Validate
  7. {
  8. protected $rule = [
  9. 'id' => 'require|checkPrint',
  10. ];
  11. protected $message = [
  12. 'id.require' => '缺少ID字段',
  13. ];
  14. protected function checkPrint($value, $rule, $data)
  15. {
  16. $config = PrinterConfig::where(['status' => 1, 'shop_id' => $data['shop_id']])->findOrEmpty();
  17. if ($config->isEmpty()) {
  18. return '请先到小票打印里面配置打印设置';
  19. }
  20. $printer = Printer::where(['config_id' => $config['id'], 'shop_id' => $data['shop_id']])->findOrEmpty();
  21. if ($printer->isEmpty()) {
  22. return '请先添加打印机';
  23. }
  24. return true;
  25. }
  26. }