master
howell 3 years ago
parent a8bafe5038
commit b57f4c667b

@ -49,6 +49,7 @@ type ShopCartSku struct {
GoodsName string `json:"goods_name,omitempty"` GoodsName string `json:"goods_name,omitempty"`
SalePublish uint `json:"sale_publish"` SalePublish uint `json:"sale_publish"`
PicUrl string `json:"pic_url"` PicUrl string `json:"pic_url"`
GoodsID uint `json:"goods_id"`
} }
type ShopCartEntry struct { type ShopCartEntry struct {
@ -90,6 +91,7 @@ func (o logic) ShopCartEntries(args ArgsEntryReq) (res []ShopCartSku) {
PicUrl: v.PicURL, PicUrl: v.PicURL,
SalePublish: v.GoodsInfo.SalePublish, SalePublish: v.GoodsInfo.SalePublish,
GoodsName: v.GoodsInfo.GoodsName, GoodsName: v.GoodsInfo.GoodsName,
GoodsID: v.GoodsId,
}) })
} }

@ -151,6 +151,7 @@ type ListItem struct {
StoreHouse int `json:"-"` StoreHouse int `json:"-"`
TimeOut int `json:"time_out"` TimeOut int `json:"time_out"`
OrderFiling uint `json:"order_filing"` OrderFiling uint `json:"order_filing"`
MakeUpStatus uint `json:"make_up_status"`
} }
type QueryDownload struct { type QueryDownload struct {
manage.RecookOrderGoodsDetailModel manage.RecookOrderGoodsDetailModel
@ -725,6 +726,7 @@ func (o *orderLogic) Data(where Where, page *bean.Page) (list []ListItem, total
StoreHouse: detail.Storehouse, StoreHouse: detail.Storehouse,
TimeOut: detail.DeliveryTimeOut, TimeOut: detail.DeliveryTimeOut,
OrderFiling: detail.OrderFiling, OrderFiling: detail.OrderFiling,
MakeUpStatus: detail.MakeUpStatus,
}) })
} }
} }

Loading…
Cancel
Save