新接口
This commit is contained in:
@@ -222,3 +222,20 @@ func (c *JxOrderController) SendFailedMatterOrder() {
|
||||
return retVal, "", err
|
||||
})
|
||||
}
|
||||
|
||||
// @Title 根据时间获取进货辅助工具里的商品,用于加入购物车
|
||||
// @Description 根据时间获取进货辅助工具里的商品,用于加入购物车
|
||||
// @Param token header string true "认证token"
|
||||
// @Param fromDate query string false "开始日期(包含),格式(2006-01-02),如果订单号为空此项必须要求"
|
||||
// @Param toDate query string false "结束日期(包含),格式(2006-01-02),如果订单号为空此项必须要求"
|
||||
// @Param fromStoreID query int false "进货门店ID"
|
||||
// @Param storeID query int false "货源门店ID"
|
||||
// @Success 200 {object} controllers.CallResult
|
||||
// @Failure 200 {object} controllers.CallResult
|
||||
// @router /GetSupplySupportStoreSkus [get]
|
||||
func (c *JxOrderController) GetSupplySupportStoreSkus() {
|
||||
c.callGetSupplySupportStoreSkus(func(params *tJxorderGetSupplySupportStoreSkusParams) (retVal interface{}, errCode string, err error) {
|
||||
retVal, err = localjx.GetSupplySupportStoreSkus(params.Ctx, params.FromDate, params.ToDate, params.FromStoreID, params.StoreID)
|
||||
return retVal, "", err
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user