123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- package com.ruoyi.reportManagement.service;
- import com.ruoyi.reportManagement.domain.SingleAnalysisExcel;
- import com.ruoyi.reportManagement.domain.SingleAnalysisFeesExcel;
- import com.ruoyi.reportManagement.domain.TWhgenleg;
- import com.ruoyi.reportManagement.dto.TWarehousebill;
- import com.ruoyi.reportManagement.excel.Whgenleg;
- import java.util.List;
- import java.util.Map;
- /**
- * 库存总账Service接口
- *
- * @author ruoyi
- * @date 2020-12-11
- */
- public interface ITWhgenlegService {
- /**
- * 查询库存总账
- *
- * @param fId 库存总账ID
- * @return 库存总账
- */
- public Map<String, Object> selectTWhgenlegById(Long fId);
- /**
- * 查询库存总账列表
- *
- * @param tWhgenleg 库存总账
- * @return 库存总账集合
- */
- public List<TWhgenleg> selectTWhgenlegList(TWhgenleg tWhgenleg);
- /**
- * 出库、调拨、货转查询库存总账列表
- *
- * @param tWhgenleg 库存总账
- * @return 库存总账集合
- */
- List<Map<String, Object>> selectInventoryList(TWhgenleg tWhgenleg);
- /**
- * 查询库存总账列表
- *
- * @param tWhgenleg 库存总账
- * @return 库存总账集合
- */
- List<Map<String, Object>> selectInventoryMapList(TWhgenleg tWhgenleg);
- /**
- * 新增库存总账
- *
- * @param tWhgenleg 库存总账
- * @return 结果
- */
- public int insertTWhgenleg(TWhgenleg tWhgenleg);
- /**
- * 修改库存总账
- *
- * @param tWhgenleg 库存总账
- * @return 结果
- */
- public int updateTWhgenleg(TWhgenleg tWhgenleg);
- /**
- * 批量删除库存总账
- *
- * @param fAccyears 需要删除的库存总账ID
- * @return 结果
- */
- public int deleteTWhgenlegByIds(Long[] fAccyears);
- /**
- * 删除库存总账信息
- *
- * @param fAccyear 库存总账ID
- * @return 结果
- */
- public int deleteTWhgenlegById(Long fAccyear);
- /**
- * 商品 库存总量
- * @return
- */
- Map<String, Object> selectGoodsList(Long fId);
- /**
- * 仓库 库存总量
- * @return
- */
- List<Map<String, Object>> selectWareHouseList();
- List<Map<String, Object>> selectWareHouseLists();
- /**
- * 客户 库存总量
- * @return
- */
- Map<String, Object> selectCorpsList(Long fId);
- /**
- * 一周库存总量
- * @return
- */
- List<Map<String, Object>> selectDateFQtyblcListList();
- List<Map<String, Object>> selectWhgenlegList(TWhgenleg tWhgenleg);
- public List<Whgenleg> whgenlegExport(TWhgenleg tWhgenleg) throws Exception;
- List<Map<String, Object>> selectdetailedList(TWarehousebill tWarehousebill);
- /**
- * 查询单票分析信息
- * @param singleAnalysisExcel
- * @return
- */
- public List<SingleAnalysisExcel> selectSingleAnalysis(SingleAnalysisExcel singleAnalysisExcel);
- /**
- * 查询单票分析费用信息
- * @param singleAnalysisExcel
- * @return
- */
- public List<SingleAnalysisFeesExcel> selectSingleAnalysisFees(SingleAnalysisExcel singleAnalysisExcel);
- }
|