ITWhgenlegService.java 3.7 KB

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