Accept Merge Request #116: (yonghui -> mark)
Merge Request: 根据skuid 批量关注可售 Created By: @苏尹岚 Accepted By: @苏尹岚 URL: https://rosydev.coding.net/p/jx-callback/d/jx-callback/git/merge/116
This commit is contained in:
@@ -86,6 +86,18 @@ var (
|
||||
OrderTypeAfsOrder: "售后单",
|
||||
}
|
||||
|
||||
ComplaintReasons = map[int]string{
|
||||
ComplaintReasons1: "骑手态度恶劣",
|
||||
ComplaintReasons2: "骑手接单后未取货",
|
||||
ComplaintReasons3: "骑手取货太慢",
|
||||
ComplaintReasons4: "骑手送货太慢",
|
||||
ComplaintReasons5: "货品未送达",
|
||||
ComplaintReasons6: "货品有损坏",
|
||||
ComplaintReasons7: "骑手违规收取顾客其他费用",
|
||||
ComplaintReasons69: "骑手恶意取消订单",
|
||||
ComplaintReasons71: "骑手提前点击取货/送达",
|
||||
}
|
||||
|
||||
MultiStoresVendorMap = map[int]int{
|
||||
VendorIDJD: 1,
|
||||
VendorIDMTWM: 0,
|
||||
@@ -204,6 +216,19 @@ const (
|
||||
LockStatusLocked = 1
|
||||
)
|
||||
|
||||
//投诉原因
|
||||
const (
|
||||
ComplaintReasons1 = 1 //"骑手态度恶劣",
|
||||
ComplaintReasons2 = 2 //"骑手接单后未取货"
|
||||
ComplaintReasons3 = 3 //"骑手取货太慢",
|
||||
ComplaintReasons4 = 4 //"骑手送货太慢",
|
||||
ComplaintReasons5 = 5 //"货品未送达",
|
||||
ComplaintReasons6 = 6 //"货品有损坏",
|
||||
ComplaintReasons7 = 7 //"骑手违规收取顾客其他费用",
|
||||
ComplaintReasons69 = 69 //"骑手恶意取消订单",
|
||||
ComplaintReasons71 = 71 //"骑手提前点击取货/送达",
|
||||
)
|
||||
|
||||
const (
|
||||
WaybillStatusRefuseFailedGetGoods = -70
|
||||
WaybillStatusUnknown = 0
|
||||
|
||||
@@ -343,6 +343,11 @@ type OrderPayRefund struct {
|
||||
OriginalData string `orm:"type(text)" json:"-"`
|
||||
}
|
||||
|
||||
type OrderSupplementFee struct {
|
||||
ModelIDCULD
|
||||
VendorOrderID string `orm:"column(vendor_order_id);index;size(48)" json:"vendorOrderID"`
|
||||
}
|
||||
|
||||
// 判断是否是购买平台自有物流
|
||||
// 对于京东,饿百来说,就是其自有的物流,对于微商城来说,是达达
|
||||
func IsWaybillPlatformOwn(bill *Waybill) bool {
|
||||
|
||||
Reference in New Issue
Block a user