- fixed bug in updateStoreSkusWithoutSync

This commit is contained in:
gazebo
2018-10-25 08:42:49 +08:00
parent f525d659f8
commit 62ea34eb70
4 changed files with 15 additions and 6 deletions

View File

@@ -53,6 +53,10 @@ type IOrderManager interface {
LoadWaybill(vendorWaybillID string, waybillVendorID int) (bill *model.Waybill, err error)
}
// purchase handler中
// 所有SyncRefresh开头的函数都必须自己清理sync_status标记
// 所有非以SyncRefresh开头的函数不用自己清理sync_status标记VendorSync统一处理
type IPurchasePlatformHandler interface {
GetStatusFromVendorStatus(vendorStatus string) int
GetOrder(vendorOrderID string) (order *model.GoodsOrder, err error)