123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- package com.ruoyi.reportManagement.service;
- import com.ruoyi.common.core.domain.AjaxResult;
- 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 org.springframework.web.bind.annotation.GetMapping;
- 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);
- /**
- * 根据客户id或者提单号查询库存不为0的仓库
- *
- * @param tWhgenleg
- * @return
- */
- public List<Map<String, Object>> getWarehouse(TWhgenleg tWhgenleg);
- /**
- * app查询库存总账
- *
- * @param tWhgenleg
- * @return
- */
- public List<Map<String, Object>> appWhGenLegList(TWhgenleg tWhgenleg, Integer pageNum, Integer pageSize);
- /**
- * 查询库存总帐详细信息
- *
- * @param tWhgenleg
- * @return
- */
- AjaxResult selectWhgenlegDetailsList(TWhgenleg tWhgenleg);
- /**
- * 库龄超过60天的库存列表
- *
- * @return
- */
- public List<Map<String, Object>> stockAfterMonthList();
- /**
- * bi大屏客户概况
- *
- * @return
- */
- public List<Map<String, Object>> biCustomerInfo();
- /**
- * bi库存数量
- *
- * @return
- */
- public Map<String, Object> biStockCount();
- /**
- * bi大屏商品概况
- *
- * @return
- */
- public List<Map<String, Object>> biGoodsInfo();
- /**
- * bi大屏最大库龄
- *
- * @return
- */
- public Map<String, Object> biMaxStockDays();
- /**
- * bi大屏库龄概况
- *
- * @return
- */
- public List<Map<String, Object>> biStockDaysInfo();
- }
|