forked from yoone/API
1
0
Fork 0

Improvement: add status enum in order

This commit is contained in:
黄珑 2025-10-10 18:14:17 +08:00
parent 9a26c32ae0
commit 3e3f22fcc1
2 changed files with 5 additions and 1 deletions

View File

@ -17,7 +17,7 @@ export default {
default: {
host: 'localhost',
username: 'root',
password: '123456',
password: '12345678',
},
},
},

View File

@ -54,6 +54,10 @@ export enum ErpOrderStatus {
AFTER_SALE_PROCESSING = 'after_sale_pending', // 售后处理中
PENDING_RESHIPMENT = 'pending_reshipment', // 待补发
PENDING_REFUND = 'pending_refund', // 待退款
REFUND_REQUESTED = 'refund_requested', // 已申请退款
REFUND_APPROVED = 'refund_approved', // 退款申请已通过
REFUND_CANCELLED = 'refund_cancelled', // 已取消退款
}
export enum ShipmentType {