Exemplo n.º 1
0
 /*
  * This method gets reportTypeVO for BudgetCumulativeNonPersonnel by setting
  * parameters data to reportType
  */
 private ReportTypeVO getReportTypeVOForBudgetCumulativeNonPersonnel(
     BudgetLineItem budgetLineItem) {
   ReportTypeVO reportTypeVO = new ReportTypeVO();
   reportTypeVO.setBudgetCategoryDesc(budgetLineItem.getBudgetCategory().getDescription());
   reportTypeVO.setCostElementDesc(getCostElementDescription(budgetLineItem));
   reportTypeVO.setCalculatedCost(budgetLineItem.getLineItemCost());
   return reportTypeVO;
 }