package com.steerinfo.dil.service; import java.math.BigDecimal; import java.util.List; import java.util.Map; /** * 查询汽运统计报表 * @ author :TXF * @ time :2021/12/14 15:25 */ public interface IStatisticalReportService { //查询辅料燃料统计报表 List> getRLFLReport(Map map); //查询采购统计报表 (辅料、燃料、内转) List> getAllPurchaseFLRLReport(Map map); //查询销售统计报表 List> getAllSaleReport(Map map); //查询销售统计报表 List> getAllSaleReportNum(Map map); // 查询零星物资统计报表 List> getSporadicSuppliesReportNum1(Map mapValue); // 查询零星物资统计报表 List> getSporadicSuppliesReport1(Map mapValue); // 查询零星物资统计报表 List> getSporadicSuppliesReportNum2(Map mapValue); // 查询零星物资统计报表 List> getSporadicSuppliesReport2(Map mapValue); List> getPurInwardReport(Map mapValue); List> getLXInwardReport( Map mapValue); //查看内转统计报表 List> getInwardReport(Map mapValue); List> getLoading(Map mapValue); List> getUnLoading(Map mapValue); List> getLoaderResult(Map mapValue); List> getCapacityByDefend(Map map); //查看内转拼装车统计报表 List> getInwardReportForAssemble(Map mapValue); List> getLoaderForResultDetail(Map mapValue); //查询该组织机构下的销售统计报表 List> getSaleOrderList(Map mapValue); //查询该组织机构下的采购统计报表 List> getPurchaseOrderList(Map mapValue); //查询该组织机构下的内转统计报表 List> getPurchaseInwardList(Map mapValue); //查看该组织机构下的纯内转统计报表 List> getInwardInFactory(Map map); List> getOutFactoryInwardList(Map mapValue); List> getSaleSteelReport(Map mapValue); List> getInwardSaleSteelReport(Map map); List> getInwardSaleSteelOrder(Map map); Map getSteelReportDetailsBySmId(BigDecimal saleOrderMaterialId); //获取收货地址 String getaddress(BigDecimal addressid); //获取车牌号 String getcapacityNumber(BigDecimal capacitynumber); List> loadingSaleSteelReport(Map map); }