- financial/GetStoreBills
This commit is contained in:
@@ -41,3 +41,17 @@ func (c *FinancialController) SendFilesToStores() {
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
// @Title 查询门店账单
|
||||
// @Description 查询门店账单
|
||||
// @Param token header string true "认证token"
|
||||
// @Param storeID query int true "门店ID"
|
||||
// @Success 200 {object} controllers.CallResult
|
||||
// @Failure 200 {object} controllers.CallResult
|
||||
// @router /GetStoreBills [get]
|
||||
func (c *FinancialController) GetStoreBills() {
|
||||
c.callGetStoreBills(func(params *tFinancialGetStoreBillsParams) (retVal interface{}, errCode string, err error) {
|
||||
retVal, err = financial.GetStoreBills(params.Ctx, params.StoreID)
|
||||
return retVal, "", err
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user