| Line 59... |
Line 59... |
| 59 |
TimeZone zone= TimeZone.getTimeZone("GMT");
|
59 |
TimeZone zone= TimeZone.getTimeZone("GMT");
|
| 60 |
istFormatter.setTimeZone(zone);
|
60 |
istFormatter.setTimeZone(zone);
|
| 61 |
Date date = istFormatter.parse(nextLine[2]);
|
61 |
Date date = istFormatter.parse(nextLine[2]);
|
| 62 |
SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy");
|
62 |
SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy");
|
| 63 |
Date date_key = dateFormat.parse(dateFormat.format(date));
|
63 |
Date date_key = dateFormat.parse(dateFormat.format(date));
|
| 64 |
if(date_key.equals(dateFormat.parse("02/01/2014")) && nextLine[11]=="13465"){
|
64 |
if(date_key.equals(dateFormat.parse("02/01/2014")) && nextLine[11].equals("13465")){
|
| 65 |
System.out.println("Order Details " + nextLine[0]+" "+date_key+" "+ nextLine[11] +" " + nextLine[14] + " " + nextLine[4] + " " + nextLine[13] );
|
65 |
System.out.println("Order Details " + nextLine[0]+" "+date_key+" "+ nextLine[11] +" " + nextLine[14] + " " + nextLine[4] + " " + nextLine[13] );
|
| 66 |
}
|
66 |
}
|
| 67 |
Long itemid = Long.parseLong(nextLine[11].replaceAll("FBA",""));
|
67 |
Long itemid = Long.parseLong(nextLine[11].replaceAll("FBA",""));
|
| 68 |
Integer qty=0;
|
68 |
Integer qty=0;
|
| 69 |
if(nextLine[14].length()!=0){
|
69 |
if(nextLine[14].length()!=0){
|