获取患者订单支付数据接口新增服务包订单支付数据获取。

This commit is contained in:
2024-04-11 14:43:51 +08:00
parent a1d496dd51
commit d7338c495b
4 changed files with 103 additions and 11 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ class PatientOrderRequest extends FormRequest
'family_id',// 家庭成员id(就诊用户)
],
'getPatientOrderPayInfo' => [ // 获取患者订单支付数据
"order_type", // 订单类型(1问诊订单 2药品订单 3检测订单)
"order_type", // 订单类型(1:问诊订单 2:药品订单 3:检测订单 4:随访包订单 5:健康包订单
"order_no"// 订单编号
],
'addPatientOrderPay' => [ // 模拟支付成功-金额为0时使用
@@ -75,7 +75,7 @@ class PatientOrderRequest extends FormRequest
'inquiry_status' => 'required|integer|min:0|max:4',
'order_type' => 'required|integer|min:1|max:3',
'order_type' => 'required|integer|min:1|max:5',
'order_no' => 'required',
'order_prescription_id' => 'required',