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

OrderInvoiceValidate.php 832B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace app\shop\validate\order;
  3. use app\common\basics\Validate;
  4. use app\common\model\order\OrderInvoice;
  5. /**
  6. * 订单发票验证
  7. * Class OrderInvoiceValidate
  8. * @package app\shop\validate\order
  9. */
  10. class OrderInvoiceValidate extends Validate
  11. {
  12. protected $rule = [
  13. 'id' => 'require|checkInvoice',
  14. 'status' => 'require',
  15. 'invoice_number' => 'require',
  16. ];
  17. protected $message = [
  18. 'id.require' => '缺少ID字段',
  19. 'status.require' => '请选择开票状态',
  20. 'invoice_number.require' => '请填写发票编号',
  21. ];
  22. protected function checkInvoice($value, $rule, $data)
  23. {
  24. $invoice = OrderInvoice::findOrEmpty($value);
  25. if ($invoice->isEmpty()) {
  26. return '该发票记录不存在';
  27. }
  28. return true;
  29. }
  30. }