新增礼品卡报表的功能
This commit is contained in:
@@ -19,7 +19,9 @@ public interface DepotItemIService extends BaseIService<DepotItem>
|
||||
void findPriceByType(PageUtil<DepotItem> depotItem, String type,Integer ProjectId, Long MId, String MonthTime,Boolean isPrev)throws JshException;
|
||||
|
||||
void buyOrSale(PageUtil<DepotItem> depotItem, String type, String subType, Long MId, String MonthTime, String sumType)throws JshException;
|
||||
|
||||
|
||||
void findGiftByType(PageUtil<DepotItem> depotItem, String subType,Integer ProjectId, Long MId, String type)throws JshException;
|
||||
|
||||
/**
|
||||
* 导出信息
|
||||
* @return
|
||||
|
||||
@@ -61,6 +61,12 @@ public class DepotItemService extends BaseService<DepotItem> implements DepotIte
|
||||
{
|
||||
depotItemDao.buyOrSale(pageUtil, type, subType, MId, MonthTime, sumType);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void findGiftByType(PageUtil<DepotItem> pageUtil, String subType,Integer ProjectId,Long MId,String type) throws JshException
|
||||
{
|
||||
depotItemDao.findGiftByType(pageUtil, subType, ProjectId, MId, type);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出Excel表格
|
||||
|
||||
Reference in New Issue
Block a user