售后错误处理

finance
杨赟 2 years ago
parent 99098f84ca
commit b8e902a685

@ -18,6 +18,7 @@ const (
ErrorOrderUnPay Error = 11012 // 订单未支付 ErrorOrderUnPay Error = 11012 // 订单未支付
ErrorOrderInvalid Error = 11013 // 订单失效 ErrorOrderInvalid Error = 11013 // 订单失效
ErrorOrderSkuInvalid Error = 11014 // 订单商品错误 ErrorOrderSkuInvalid Error = 11014 // 订单商品错误
ErrorAfterServiceTypeError Error = 11015 // 售后类型错误
) )
var ErrorCodes = map[Error]string{ var ErrorCodes = map[Error]string{
@ -35,6 +36,7 @@ var ErrorCodes = map[Error]string{
ErrorOrderUnPay: "订单未支付", ErrorOrderUnPay: "订单未支付",
ErrorOrderInvalid: "订单失效", ErrorOrderInvalid: "订单失效",
ErrorOrderSkuInvalid: "订单商品错误", ErrorOrderSkuInvalid: "订单商品错误",
ErrorAfterServiceTypeError: "售后类型错误",
} }
func (e Error) Error() string { func (e Error) Error() string {

@ -5,15 +5,18 @@ import (
) )
const ( const (
AfterServiceCanApplyFalse = 1 // 不可申请 AfterServiceCanApplyTrue = 1 // 可申请
AfterServiceCanApplyTrue = 2 // 可申请 AfterServiceCanApplyFalse = 2 // 不可申请
AfterServiceNeedPictureTrue = 1 // 需要上传
AfterServiceNeedPictureFalse = 2 // 不需要上传
) )
type AfterServiceInterface interface { type AfterServiceInterface interface {
// Can 获取是否可发起售后 // Can 获取是否可发起售后
Can(ctx context.Context, args ArgsAfterServiceCan, reply *ReplyAfterServiceCan) error Can(ctx context.Context, args ArgsAfterServiceCan, reply *ReplyAfterServiceCan) error
// Reason 获取售后原因 // Reason 获取售后原因
Reason(ctx context.Context, args ArgsAfterServiceReason, reply *ReplyAfterServiceReason) error Reason(ctx context.Context, args ArgsAfterServiceReason, reply *[]ReplyAfterServiceReason) error
// Apply @Title 发起售后 // Apply @Title 发起售后
Apply(ctx context.Context, args ArgsAfterServiceApply, reply *ReplyAfterServiceApply) error Apply(ctx context.Context, args ArgsAfterServiceApply, reply *ReplyAfterServiceApply) error
// LogisticsAddress @Title 寄回地址 // LogisticsAddress @Title 寄回地址
@ -28,7 +31,7 @@ type ArgsAfterServiceCan struct {
SkuId string // skuId SkuId string // skuId
} }
type ReplyAfterServiceCan struct { type ReplyAfterServiceCan struct {
CanApply uint `json:"canApply"` // 是否可申请售后 0=不可申请 1=可申请 CanApply uint `json:"canApply"` // 是否可申请售后 1=可申请 2=不可申请
SkuId string `json:"skuId"` // skuId SkuId string `json:"skuId"` // skuId
AppliedNum uint `json:"appliedNum"` // 已申请售后商品数量 AppliedNum uint `json:"appliedNum"` // 已申请售后商品数量
CannotApplyTip string `json:"cannotApplyTip"` // 不可申请原因 CannotApplyTip string `json:"cannotApplyTip"` // 不可申请原因

Loading…
Cancel
Save