drb.setPrintBackgroundOnOddRows(true);
drb.setUseFullPageWidth(true);
dr = drb.build();
// Get information from database
BrancheService as = (BrancheService) SpringUtil.getBean("brancheService");
List<Branche> resultList = as.getAllBranches();
// Create Datasource and put it in Dynamic Jasper Format
List data = new ArrayList(resultList.size());
for (Branche obj : resultList) {