增加价格排序

This commit is contained in:
qiyunfanbo126.com 2024-07-31 16:12:54 +08:00
parent a0b817d701
commit b1b5d943a5
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ func OrderRefundService(userId int, orderId int) (code int) {
if err != nil || !has { if err != nil || !has {
return errorcode.NotFound return errorcode.NotFound
} }
if order.State != common.ORDER_STATUS_PAY { if order.State != common.ORDER_STATUS_FINISH {
return errorcode.OrderNOTAuthREFUND return errorcode.OrderNOTAuthREFUND
} }
code, response := YouChuOrderRefund(order) code, response := YouChuOrderRefund(order)