Subversion Repositories SmartDukaan

Rev

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

Rev 7839 Rev 7845
Line 331... Line 331...
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", EstimateController.getDeliveryDateString(line.getEstimate(), DeliveryType.PREPAID));
335
                    itemdetail.put("SHIPPING_TIME", EstimateController.getDeliveryDateString(line.getEstimate(), DeliveryType.PREPAID));
-
 
336
                    itemdetail.put("COD_SHIPPING_TIME", EstimateController.getDeliveryDateString(line.getEstimate(), DeliveryType.COD));
336
					itemdetail.put("BEST_DEAL_TEXT", item.getBestDealText());
337
					itemdetail.put("BEST_DEAL_TEXT", item.getBestDealText());
337
					itemdetail.put("IS_INSURABLE", item.getPreferredInsurer() + "");
338
					itemdetail.put("IS_INSURABLE", item.getPreferredInsurer() + "");
338
					itemdetail.put("IS_INSURED", (line.getInsurer() == 0 ? false : true) + "");
339
					itemdetail.put("IS_INSURED", (line.getInsurer() == 0 ? false : true) + "");
339
					itemdetail.put("INSURANCE_AMOUNT", insuranceAmount + "");
340
					itemdetail.put("INSURANCE_AMOUNT", insuranceAmount + "");
340
 
341