commit
2a61e52c5e
@ -0,0 +1,150 @@
|
||||
package supplier
|
||||
|
||||
import (
|
||||
"git.oa00.com/supply-chain/service/client"
|
||||
"git.oa00.com/supply-chain/service/lib/bean"
|
||||
"github.com/shopspring/decimal"
|
||||
"golang.org/x/net/context"
|
||||
)
|
||||
|
||||
type afs struct {
|
||||
}
|
||||
|
||||
type ArgsAfsLists struct {
|
||||
Search AfsSearch
|
||||
Page bean.Page
|
||||
}
|
||||
|
||||
type AfsSearch struct {
|
||||
Status uint
|
||||
AfsSn string
|
||||
OrderSubSn string
|
||||
CreatedStartDate string
|
||||
CreatedEndDate string
|
||||
}
|
||||
|
||||
type ReplyAfsLists struct {
|
||||
Lists []AfsItem
|
||||
Total int64
|
||||
}
|
||||
|
||||
type AfsItem struct {
|
||||
Id uint `json:"id"`
|
||||
AfsSn string `json:"afsSn"`
|
||||
OrderSubSn string `json:"orderSubSn"`
|
||||
SkuName string `json:"skuName"`
|
||||
Quantity uint `json:"quantity"`
|
||||
Status uint `json:"status"`
|
||||
Result string `json:"result"`
|
||||
CreatedAt int64 `json:"createdAt"`
|
||||
UpdatedAt int64 `json:"updatedAt"`
|
||||
ReturnAddress []ReturnAddressItem `json:"returnAddress"`
|
||||
}
|
||||
|
||||
// Lists @Title 售后列表
|
||||
func (a *afs) Lists(ctx context.Context, args ArgsAfsLists) (reply ReplyAfsLists, err error) {
|
||||
xClient, err := client.GetClient(a)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
err = xClient.Call(ctx, "Lists", args, &reply)
|
||||
return
|
||||
}
|
||||
|
||||
type ArgsAfsReject struct {
|
||||
AfsSn string `json:"afsSn"`
|
||||
Notes string `json:"notes"`
|
||||
}
|
||||
|
||||
// Reject @Title 审核驳回
|
||||
func (a *afs) Reject(ctx context.Context, args ArgsAfsReject) (err error) {
|
||||
xClient, err := client.GetClient(a)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
reply := 0
|
||||
err = xClient.Call(ctx, "Reject", args, &reply)
|
||||
return
|
||||
}
|
||||
|
||||
type ArgsAfsDeliver struct {
|
||||
AfsSn string `json:"afsSn"`
|
||||
ReturnAddressId uint `json:"returnAddressId"`
|
||||
Notes string `json:"notes"`
|
||||
}
|
||||
|
||||
// Deliver @Title 待客户发货
|
||||
func (a *afs) Deliver(ctx context.Context, args ArgsAfsDeliver) (err error) {
|
||||
xClient, err := client.GetClient(a)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
reply := 0
|
||||
err = xClient.Call(ctx, "Deliver", args, &reply)
|
||||
return
|
||||
}
|
||||
|
||||
type ArgsAfsRefund struct {
|
||||
AfsSn string `json:"afsSn"`
|
||||
Notes string `json:"notes"`
|
||||
}
|
||||
|
||||
// Refund @Title 退款
|
||||
func (a *afs) Refund(ctx context.Context, args ArgsAfsRefund) (err error) {
|
||||
xClient, err := client.GetClient(a)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
reply := 0
|
||||
err = xClient.Call(ctx, "Refund", args, &reply)
|
||||
return
|
||||
}
|
||||
|
||||
type ArgsAfsCompensate struct {
|
||||
AfsSn string `json:"afsSn"`
|
||||
RefundFee decimal.Decimal `json:"refundFee"`
|
||||
Notes string `json:"notes"`
|
||||
}
|
||||
|
||||
// Compensate @Title 订单赔偿
|
||||
func (a *afs) Compensate(ctx context.Context, args ArgsAfsCompensate) (err error) {
|
||||
xClient, err := client.GetClient(a)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
reply := 0
|
||||
err = xClient.Call(ctx, "Compensate", args, &reply)
|
||||
return
|
||||
}
|
||||
|
||||
type ArgsAfsCompensateSku struct {
|
||||
AfsSn string `json:"afsSn"`
|
||||
Notes string `json:"notes"`
|
||||
}
|
||||
|
||||
// CompensateSku @Title 直赔商品
|
||||
func (a *afs) CompensateSku(ctx context.Context, args ArgsAfsCompensateSku) (err error) {
|
||||
xClient, err := client.GetClient(a)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
reply := 0
|
||||
err = xClient.Call(ctx, "CompensateSku", args, &reply)
|
||||
return
|
||||
}
|
||||
|
||||
type ArgsAfsReissue struct {
|
||||
AfsSn string `json:"afsSn"`
|
||||
Notes string `json:"notes"`
|
||||
}
|
||||
|
||||
// Reissue @Title 补发商品
|
||||
func (a *afs) Reissue(ctx context.Context, args ArgsAfsReissue) (err error) {
|
||||
xClient, err := client.GetClient(a)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
reply := 0
|
||||
err = xClient.Call(ctx, "Reissue", args, &reply)
|
||||
return
|
||||
}
|
Loading…
Reference in new issue