From 2ec556eb030484ee75e8a1d8290733bba03c294b Mon Sep 17 00:00:00 2001 From: hdm Date: Sun, 13 Feb 2022 23:03:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8F=91=E7=A5=A8bug?= =?UTF-8?q?=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/finance/validate/InvoiceCheck.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 app/finance/validate/InvoiceCheck.php diff --git a/app/finance/validate/InvoiceCheck.php b/app/finance/validate/InvoiceCheck.php new file mode 100644 index 0000000..f125c06 --- /dev/null +++ b/app/finance/validate/InvoiceCheck.php @@ -0,0 +1,26 @@ + 'require|float', + 'invoice_type' => 'require', + 'invoice_subject' => 'require', + 'id' => 'require' + ]; + + protected $message = [ + 'amount.require' => '开票金额不能为空', + 'amount.number' => '开票金额只能为数字', + 'id.require' => '缺少更新条件', + 'invoice_type.require' => '请选择开票类型', + 'invoice_subject.require' => '请选择开票主体', + ]; + + protected $scene = [ + 'add' => ['amount','invoice_type','invoice_subject'], + 'edit' => ['id', 'amount','invoice_type','invoice_subject'] + ]; +} \ No newline at end of file