Subversion Repositories SmartDukaan

Rev

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

Rev 6921 Rev 7791
Line 330... Line 330...
330
                    itemdetail.put("CATALOG_ID", item.getCatalogItemId() + "");
330
                    itemdetail.put("CATALOG_ID", item.getCatalogItemId() + "");
331
                    itemdetail.put("ITEM_QUANTITY", ((int)line.getQuantity()) + "");
331
                    itemdetail.put("ITEM_QUANTITY", ((int)line.getQuantity()) + "");
332
                    itemdetail.put("MRP", formattingUtils.formatPrice(item.getMrp()));
332
                    itemdetail.put("MRP", formattingUtils.formatPrice(item.getMrp()));
333
                    itemdetail.put("SELLING_PRICE", formattingUtils.formatPrice(item.getSellingPrice()));
333
                    itemdetail.put("SELLING_PRICE", formattingUtils.formatPrice(item.getSellingPrice()));
334
                    itemdetail.put("TOTAL_PRICE", formattingUtils.formatPrice(((item.getSellingPrice() * line.getQuantity()))));
334
                    itemdetail.put("TOTAL_PRICE", formattingUtils.formatPrice(((item.getSellingPrice() * line.getQuantity()))));
335
                    itemdetail.put("SHIPPING_TIME", line.getEstimate() + "");
335
                    itemdetail.put("SHIPPING_TIME", EstimateController.checkValidDeliveryEstimate(line.getEstimate()));
336
					itemdetail.put("BEST_DEAL_TEXT", item.getBestDealText());
336
					itemdetail.put("BEST_DEAL_TEXT", item.getBestDealText());
337
					itemdetail.put("IS_INSURABLE", item.getPreferredInsurer() + "");
337
					itemdetail.put("IS_INSURABLE", item.getPreferredInsurer() + "");
338
					itemdetail.put("IS_INSURED", (line.getInsurer() == 0 ? false : true) + "");
338
					itemdetail.put("IS_INSURED", (line.getInsurer() == 0 ? false : true) + "");
339
					itemdetail.put("INSURANCE_AMOUNT", insuranceAmount + "");
339
					itemdetail.put("INSURANCE_AMOUNT", insuranceAmount + "");
340
 
340