Skip to content

Commit

Permalink
KRACOEUS-8807:fixed budget form when no description is entered for eq…
Browse files Browse the repository at this point in the history
…uipment
  • Loading branch information
Joe Williams committed Feb 9, 2015
1 parent 11d82fd commit a25cd9e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1585,7 +1585,9 @@ protected List<EquipmentDto> getEquipment(BudgetPeriodContract budgetPeriod, Bud
equipCostInfo.setCostSharing(equipCostInfo.getCostSharing().add(lineItem.getCostSharingAmount()));
}
}
costInfoMap.put(key, equipCostInfo);
if (StringUtils.isNotEmpty(lineItem.getLineItemDescription())) {
costInfoMap.put(key, equipCostInfo);
}
costInfos.add(equipCostInfo);
}
}
Expand Down

0 comments on commit a25cd9e

Please sign in to comment.