新增4张统计报表

This commit is contained in:
季圣华
2017-08-13 21:09:21 +08:00
parent 966c9c1258
commit 61d615d129
10 changed files with 1411 additions and 8 deletions

View File

@@ -14,4 +14,8 @@ public interface DepotHeadIService extends BaseIService<DepotHead>
void find(PageUtil<DepotHead> depotHead,String maxid)throws JshException;
void findAllMoney(PageUtil<DepotHead> depotHead, Integer supplierId, String type, String subType, String mode)throws JshException;
public void findInDetail(PageUtil pageUtil,String beginTime,String endTime, String type, Long pid,String dids)throws JshException;
public void findInOutMaterialCount(PageUtil pageUtil,String beginTime,String endTime, String type, Long pid,String dids)throws JshException;
}

View File

@@ -33,4 +33,12 @@ public class DepotHeadService extends BaseService<DepotHead> implements DepotHea
{
depotHeadDao.findAllMoney(pageUtil, supplierId, type, subType, mode);
}
public void findInDetail(PageUtil pageUtil,String beginTime,String endTime,String type,Long pid,String dids) throws JshException {
depotHeadDao.findInDetail(pageUtil,beginTime,endTime,type,pid,dids);
}
public void findInOutMaterialCount(PageUtil pageUtil,String beginTime,String endTime,String type,Long pid,String dids) throws JshException {
depotHeadDao.findInOutMaterialCount(pageUtil,beginTime,endTime,type,pid,dids);
}
}