Subversion Repositories SmartDukaan

Rev

Rev 13146 | Rev 20050 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 13146 Rev 20049
Line 104... Line 104...
104
            String awb ="";
104
            String awb ="";
105
            if(Cell.CELL_TYPE_STRING==row.getCell(0).getCellType()){
105
            if(Cell.CELL_TYPE_STRING==row.getCell(0).getCellType()){
106
            	awb = row.getCell(0).getStringCellValue();
106
            	awb = row.getCell(0).getStringCellValue();
107
            }
107
            }
108
            if(Cell.CELL_TYPE_NUMERIC==row.getCell(0).getCellType()){
108
            if(Cell.CELL_TYPE_NUMERIC==row.getCell(0).getCellType()){
109
            	awb = row.getCell(0).getNumericCellValue()+"";
109
            	awb = (String.valueOf(row.getCell(0).getNumericCellValue()));
110
            }
110
            }
111
            awbs.add(awb);
111
            awbs.add(awb);
112
        }
112
        }
113
        if(checkForErrors())
113
        if(checkForErrors())
114
            return "authsuccess";
114
            return "authsuccess";