1\
This commit is contained in:
@@ -503,6 +503,8 @@ func (c *OrderController) GetStoresOrderSaleInfo() {
|
||||
// @Param brandIds query string false "品牌id"
|
||||
// @Param vendorIds query string false "平台id"
|
||||
// @Param storeID query int false "门店id"
|
||||
// @Param operatorNumber query string false "门店负责人"
|
||||
// @Param brandOperator query string false "美团负责人"
|
||||
// @Success 200 {object} controllers.CallResult
|
||||
// @Failure 200 {object} controllers.CallResult
|
||||
// @router /StaleIndexInfo [get]
|
||||
@@ -553,7 +555,7 @@ func (c *OrderController) StaleIndexInfo() {
|
||||
return retVal, "", fmt.Errorf("于该用户%s,暂无门店信息", ctx.GetUserName())
|
||||
}
|
||||
|
||||
retVal, err = orderman.FixedOrderManager.GetStoresOrderSaleInfo2(params.Ctx, timeList[0], timeList[1], params.StoreID, brandIds, vendors, dataList)
|
||||
retVal, err = orderman.FixedOrderManager.GetStoresOrderSaleInfo2(timeList[0], timeList[1], params.StoreID, brandIds, vendors, dataList, params.BrandOperator, params.OperatorNumber)
|
||||
return retVal, "", err
|
||||
})
|
||||
}
|
||||
|
||||
@@ -794,3 +794,19 @@ func (c *LaKaLaController) WithdrawalList() {
|
||||
return
|
||||
})
|
||||
}
|
||||
|
||||
// GetCardBin 卡BIN查询
|
||||
// @Title 卡BIN查询
|
||||
// @Description 卡BIN查询
|
||||
// @Param token header string true "认证token"
|
||||
// @Param orgCode query string true "机构号"
|
||||
// @Param cardNo query string true "卡号"
|
||||
// @Success 200 {object} controllers.CallResult
|
||||
// @Failure 200 {object} controllers.CallResult
|
||||
// @router /GetCardBin [get]
|
||||
func (c *LaKaLaController) GetCardBin() {
|
||||
c.callGetCardBin(func(params *tLakalaGetCardBinParams) (retVal interface{}, errCode string, err error) {
|
||||
retVal, err = lakalaServer.GetCardBin(params.OrgCode, params.CardNo)
|
||||
return
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user