增加价格排序

This commit is contained in:
qiyunfanbo126.com 2024-08-02 09:53:46 +08:00
parent 9e299504b1
commit 6770536966
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 {
return errorcode.NotFound
}
if order.State != common.ORDER_STATUS_FINISH {
if order.State != common.ORDER_STATUS_FAIL {
return errorcode.OrderNOTAuthREFUND
}
code, response := YouChuOrderRefund(order)