投诉原因
This commit is contained in:
@@ -101,6 +101,7 @@ func InitServiceInfo(version string, buildTime time.Time, gitCommit string) {
|
|||||||
"payStatusName": model.PayStatusName,
|
"payStatusName": model.PayStatusName,
|
||||||
"refundStatusName": model.RefundStatusName,
|
"refundStatusName": model.RefundStatusName,
|
||||||
"autoReplyTypeName": model.AutoReplyTypeName,
|
"autoReplyTypeName": model.AutoReplyTypeName,
|
||||||
|
"complaintReasons": model.ComplaintReasons,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -85,6 +85,18 @@ var (
|
|||||||
OrderTypeAfsOrder: "售后单",
|
OrderTypeAfsOrder: "售后单",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ComplaintReasons = map[int]string{
|
||||||
|
ComplaintReasons1: "骑手态度恶劣",
|
||||||
|
ComplaintReasons2: "骑手接单后未取货",
|
||||||
|
ComplaintReasons3: "骑手取货太慢",
|
||||||
|
ComplaintReasons4: "骑手送货太慢",
|
||||||
|
ComplaintReasons5: "货品未送达",
|
||||||
|
ComplaintReasons6: "货品有损坏",
|
||||||
|
ComplaintReasons7: "骑手违规收取顾客其他费用",
|
||||||
|
ComplaintReasons69: "骑手恶意取消订单",
|
||||||
|
ComplaintReasons71: "骑手提前点击取货/送达",
|
||||||
|
}
|
||||||
|
|
||||||
MultiStoresVendorMap = map[int]int{
|
MultiStoresVendorMap = map[int]int{
|
||||||
VendorIDJD: 1,
|
VendorIDJD: 1,
|
||||||
VendorIDMTWM: 0,
|
VendorIDMTWM: 0,
|
||||||
@@ -201,6 +213,19 @@ const (
|
|||||||
LockStatusLocked = 1
|
LockStatusLocked = 1
|
||||||
)
|
)
|
||||||
|
|
||||||
|
//投诉原因
|
||||||
|
const (
|
||||||
|
ComplaintReasons1 = 1 //"骑手态度恶劣",
|
||||||
|
ComplaintReasons2 = 2 //"骑手接单后未取货"
|
||||||
|
ComplaintReasons3 = 3 //"骑手取货太慢",
|
||||||
|
ComplaintReasons4 = 4 //"骑手送货太慢",
|
||||||
|
ComplaintReasons5 = 5 //"货品未送达",
|
||||||
|
ComplaintReasons6 = 6 //"货品有损坏",
|
||||||
|
ComplaintReasons7 = 7 //"骑手违规收取顾客其他费用",
|
||||||
|
ComplaintReasons69 = 69 //"骑手恶意取消订单",
|
||||||
|
ComplaintReasons71 = 71 //"骑手提前点击取货/送达",
|
||||||
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
WaybillStatusRefuseFailedGetGoods = -70
|
WaybillStatusRefuseFailedGetGoods = -70
|
||||||
WaybillStatusUnknown = 0
|
WaybillStatusUnknown = 0
|
||||||
|
|||||||
Reference in New Issue
Block a user