This commit is contained in:
gr
2026-05-18 11:36:21 +08:00
283 changed files with 716 additions and 316 deletions
@@ -14,6 +14,8 @@ class PrescriptionValidate extends BaseValidate
'appointment_id' => 'number',
'dosage_bag_count' => 'integer|between:1,5',
'patient_name' => 'require',
'phone' => 'require|max:20',
'gender' => 'require|in:0,1',
'clinical_diagnosis' => 'require',
'herbs' => 'require|array',
'action' => 'require|in:approve,reject',
@@ -24,6 +26,10 @@ class PrescriptionValidate extends BaseValidate
'dosage_bag_count.integer' => '用量袋数必须为整数',
'dosage_bag_count.between' => '用量袋数必须在1到5袋之间',
'patient_name.require' => '患者姓名不能为空',
'phone.require' => '手机号不能为空',
'phone.max' => '手机号过长',
'gender.require' => '请选择性别',
'gender.in' => '性别无效',
'clinical_diagnosis.require' => '临床诊断不能为空',
'herbs.require' => '请添加中药',
];
@@ -63,6 +69,11 @@ class PrescriptionValidate extends BaseValidate
return $this->only(['id']);
}
public function scenePatchPatient()
{
return $this->only(['id', 'patient_name', 'phone', 'gender']);
}
public function sceneAudit()
{
return $this->only(['id', 'action', 'remark']);