Subversion Repositories SmartDukaan

Rev

Rev 9826 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9826 Rev 9827
Line 116... Line 116...
116
                continue;
116
                continue;
117
            logger.info("Row no. " + row.getRowNum());
117
            logger.info("Row no. " + row.getRowNum());
118
            row.getCell(0).setCellType(Cell.CELL_TYPE_STRING);
118
            row.getCell(0).setCellType(Cell.CELL_TYPE_STRING);
119
            String awb = row.getCell(0).getStringCellValue();
119
            String awb = row.getCell(0).getStringCellValue();
120
            if(awb.length()==0)
120
            if(awb.length()==0)
121
            	break;
121
            	continue;
122
            row.getCell(1).setCellType(Cell.CELL_TYPE_NUMERIC);
122
            row.getCell(1).setCellType(Cell.CELL_TYPE_NUMERIC);
123
            double collectedAmount = row.getCell(1).getNumericCellValue();
123
            double collectedAmount = row.getCell(1).getNumericCellValue();
124
            collectedAmountMap.put(awb, collectedAmount);
124
            collectedAmountMap.put(awb, collectedAmount);
125
        }
125
        }
126
        
126