This commit is contained in:
Your Name
2026-06-03 14:48:57 +08:00
parent 37df208706
commit 2138626519
3 changed files with 5 additions and 5 deletions
@@ -2652,8 +2652,8 @@ class PrescriptionOrderLogic
return false;
}
$curFs = (int) $order->fulfillment_status;
if (!in_array($curFs, [3, 5, 6], true)) {
self::$error = '仅「已发货」「已签收」「已完成」状态可退款';
if (!in_array($curFs, [3, 5, 6, 9], true)) {
self::$error = '仅「已发货」「已签收」「已完成」或「拒收」状态可退款';
return false;
}