| Line 229... |
Line 229... |
| 229 |
itemdetail.put("ITEM_QUANTITY", ((int)line.getQuantity())+"");
|
229 |
itemdetail.put("ITEM_QUANTITY", ((int)line.getQuantity())+"");
|
| 230 |
itemdetail.put("MRP", formattingUtils.formatPrice(item.getMrp()));
|
230 |
itemdetail.put("MRP", formattingUtils.formatPrice(item.getMrp()));
|
| 231 |
itemdetail.put("SELLING_PRICE", formattingUtils.formatPrice(item.getSellingPrice()));
|
231 |
itemdetail.put("SELLING_PRICE", formattingUtils.formatPrice(item.getSellingPrice()));
|
| 232 |
itemdetail.put("TOTAL_PRICE", formattingUtils.formatPrice((item.getSellingPrice()*line.getQuantity())));
|
232 |
itemdetail.put("TOTAL_PRICE", formattingUtils.formatPrice((item.getSellingPrice()*line.getQuantity())));
|
| 233 |
itemdetail.put("SHIPPING_TIME", line.getEstimate()+"");
|
233 |
itemdetail.put("SHIPPING_TIME", line.getEstimate()+"");
|
| - |
|
234 |
itemdetail.put("BEST_DEAL_TEXT", item.getBestDealText());
|
| 234 |
items.add(itemdetail);
|
235 |
items.add(itemdetail);
|
| 235 |
}
|
236 |
}
|
| 236 |
}
|
237 |
}
|
| 237 |
totalamount = cart.getTotalPrice();
|
238 |
totalamount = cart.getTotalPrice();
|
| 238 |
addresses = userClient.getAllAddressesForUser(cart.getUserId());
|
239 |
addresses = userClient.getAllAddressesForUser(cart.getUserId());
|