Subversion Repositories SmartDukaan

Rev

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

Rev 34994 Rev 34999
Line 1484... Line 1484...
1484
        if (!customerAddressStateCode.equals("")) {
1484
        if (!customerAddressStateCode.equals("")) {
1485
            pdfModel.setCustomerAddressStateCode(customerAddressStateCode);
1485
            pdfModel.setCustomerAddressStateCode(customerAddressStateCode);
1486
        }
1486
        }
1487
        pdfModel.setCancelled(fofoOrder.getCancelledTimestamp() != null);
1487
        pdfModel.setCancelled(fofoOrder.getCancelledTimestamp() != null);
1488
        List<String> tncs = new ArrayList<>();
1488
        List<String> tncs = new ArrayList<>();
1489
        tncs.add("I agree that goods received are in good working condition");
1489
        tncs.add("I agree that goods received are in good working condition.");
1490
        tncs.add("Goods once sold cannot be exchanged or taken back");
1490
        tncs.add("Goods once sold cannot be exchanged or taken back.");
1491
        tncs.add("Warranty for the goods received by me is the responsibility of the manufacturer only.");
1491
        tncs.add("Warranty for the goods received by me is the responsibility of the manufacturer only.");
1492
        tncs.add("Customer needs to activate the handset at the time of delivery to be eligible for the discount");
-
 
1493
        tncs.add(
-
 
1494
                "Customers requesting Tempered Glass Replacement will have to bring the broken tempered glass, either pasted on the phone or along with the phone");
-
 
1495
        tncs.add("Service fee of Rs.20 will be chargeable for each Tempered Glass Replacement");
-
 
1496
        if (pdfModel.getInsurancePolicies() != null && pdfModel.getInsurancePolicies().size() > 0) {
1492
        if (pdfModel.getInsurancePolicies() != null && pdfModel.getInsurancePolicies().size() > 0) {
1497
            tncs.add("Damage protection provided is the responisibility of Protection Provider only");
1493
            tncs.add("Warranty and damage protection issues are to be handled directly by the respective providers.");
1498
        }
1494
        }
1499
        pdfModel.setTncs(tncs);
1495
        pdfModel.setTncs(tncs);
1500
        return pdfModel;
1496
        return pdfModel;
1501
 
1497
 
1502
    }
1498
    }