This commit is contained in:
Your Name
2026-06-04 09:25:00 +08:00
parent 6b528c34c8
commit 5ab3be1fdd
7 changed files with 361 additions and 64 deletions
+2 -2
View File
@@ -487,8 +487,8 @@ export function prescriptionOrderComplete(params: { id: number; fulfillment_stat
return request.post({ url: '/tcm.prescriptionOrder/complete', params })
}
/** 业务订单退款(须填写原因;关联收款单标记已退款、已付总额清零 */
export function prescriptionOrderRefund(params: { id: number; reason: string }) {
/** 业务订单退款(须填写原因;refund_amount 可选,不传则退满可退上限 */
export function prescriptionOrderRefund(params: { id: number; reason: string; refund_amount?: number }) {
return request.post({ url: '/tcm.prescriptionOrder/refund', params })
}