ITWhgenlegService.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. package com.ruoyi.reportManagement.service;
  2. import com.ruoyi.reportManagement.domain.SingleAnalysisExcel;
  3. import com.ruoyi.reportManagement.domain.SingleAnalysisFeesExcel;
  4. import com.ruoyi.reportManagement.domain.TWhgenleg;
  5. import com.ruoyi.reportManagement.dto.TWarehousebill;
  6. import com.ruoyi.reportManagement.excel.Whgenleg;
  7. import java.util.List;
  8. import java.util.Map;
  9. /**
  10. * 库存总账Service接口
  11. *
  12. * @author ruoyi
  13. * @date 2020-12-11
  14. */
  15. public interface ITWhgenlegService {
  16. /**
  17. * 查询库存总账
  18. *
  19. * @param fId 库存总账ID
  20. * @return 库存总账
  21. */
  22. public Map<String, Object> selectTWhgenlegById(Long fId);
  23. /**
  24. * 查询库存总账列表
  25. *
  26. * @param tWhgenleg 库存总账
  27. * @return 库存总账集合
  28. */
  29. public List<TWhgenleg> selectTWhgenlegList(TWhgenleg tWhgenleg);
  30. /**
  31. * 出库、调拨、货转查询库存总账列表
  32. *
  33. * @param tWhgenleg 库存总账
  34. * @return 库存总账集合
  35. */
  36. List<Map<String, Object>> selectInventoryList(TWhgenleg tWhgenleg);
  37. /**
  38. * 查询库存总账列表
  39. *
  40. * @param tWhgenleg 库存总账
  41. * @return 库存总账集合
  42. */
  43. List<Map<String, Object>> selectInventoryMapList(TWhgenleg tWhgenleg);
  44. /**
  45. * 新增库存总账
  46. *
  47. * @param tWhgenleg 库存总账
  48. * @return 结果
  49. */
  50. public int insertTWhgenleg(TWhgenleg tWhgenleg);
  51. /**
  52. * 修改库存总账
  53. *
  54. * @param tWhgenleg 库存总账
  55. * @return 结果
  56. */
  57. public int updateTWhgenleg(TWhgenleg tWhgenleg);
  58. /**
  59. * 批量删除库存总账
  60. *
  61. * @param fAccyears 需要删除的库存总账ID
  62. * @return 结果
  63. */
  64. public int deleteTWhgenlegByIds(Long[] fAccyears);
  65. /**
  66. * 删除库存总账信息
  67. *
  68. * @param fAccyear 库存总账ID
  69. * @return 结果
  70. */
  71. public int deleteTWhgenlegById(Long fAccyear);
  72. /**
  73. * 商品 库存总量
  74. * @return
  75. */
  76. Map<String, Object> selectGoodsList(Long fId);
  77. /**
  78. * 仓库 库存总量
  79. * @return
  80. */
  81. List<Map<String, Object>> selectWareHouseList();
  82. List<Map<String, Object>> selectWareHouseLists();
  83. /**
  84. * 客户 库存总量
  85. * @return
  86. */
  87. Map<String, Object> selectCorpsList(Long fId);
  88. /**
  89. * 一周库存总量
  90. * @return
  91. */
  92. List<Map<String, Object>> selectDateFQtyblcListList();
  93. List<Map<String, Object>> selectWhgenlegList(TWhgenleg tWhgenleg);
  94. public List<Whgenleg> whgenlegExport(TWhgenleg tWhgenleg) throws Exception;
  95. List<Map<String, Object>> selectdetailedList(TWarehousebill tWarehousebill);
  96. /**
  97. * 查询单票分析信息
  98. * @param singleAnalysisExcel
  99. * @return
  100. */
  101. public List<SingleAnalysisExcel> selectSingleAnalysis(SingleAnalysisExcel singleAnalysisExcel);
  102. /**
  103. * 查询单票分析费用信息
  104. * @param singleAnalysisExcel
  105. * @return
  106. */
  107. public List<SingleAnalysisFeesExcel> selectSingleAnalysisFees(SingleAnalysisExcel singleAnalysisExcel);
  108. }