Subversion Repositories SmartDukaan

Rev

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

Rev 4004 Rev 4172
Line 36... Line 36...
36
	private String brand;
36
	private String brand;
37
	private String modelName;
37
	private String modelName;
38
	private String modelNumber;
38
	private String modelNumber;
39
	private String color;
39
	private String color;
40
	private String extraInfo;
40
	private String extraInfo;
-
 
41
	private String dealText;
41
	
42
	
42
	private double totalAmount;
43
	private double totalAmount;
43
	private double totalWeight;
44
	private double totalWeight;
44
	
45
	
45
	private String airwayBillNo;
46
	private String airwayBillNo;
Line 70... Line 71...
70
			long expectedDeliveryTime,
71
			long expectedDeliveryTime,
71
			long promisedDeliveryTime,
72
			long promisedDeliveryTime,
72
			long expectedShippingTime,
73
			long expectedShippingTime,
73
			long status, String statusMessage,
74
			long status, String statusMessage,
74
			long itemId, String productGroup, String brand, String modelName,
75
			long itemId, String productGroup, String brand, String modelName,
75
			String modelNumber, String color, String extraInfo, double totalAmount,
76
			String modelNumber, String color, String extraInfo, String dealText, double totalAmount,
76
			double totalWeight, String airwayBillNo, String billedBy,
77
			double totalWeight, String airwayBillNo, String billedBy,
77
			String invoiceNumber, long jacketNumber, String itemNumber,
78
			String invoiceNumber, long jacketNumber, String itemNumber,
78
			long imeiNumber, long batchNo, long serialNo,
79
			long imeiNumber, long batchNo, long serialNo,
79
			boolean doaFlag, String pickupRequestNo, boolean cod, String delayReason) {
80
			boolean doaFlag, String pickupRequestNo, boolean cod, String delayReason) {
80
		super();
81
		super();
Line 101... Line 102...
101
		this.brand = brand;
102
		this.brand = brand;
102
		this.modelName = modelName;
103
		this.modelName = modelName;
103
		this.modelNumber = modelNumber;
104
		this.modelNumber = modelNumber;
104
		this.color = color;
105
		this.color = color;
105
		this.extraInfo = extraInfo;
106
		this.extraInfo = extraInfo;
-
 
107
		this.dealText = dealText;
106
		this.totalAmount = totalAmount;
108
		this.totalAmount = totalAmount;
107
		this.totalWeight = totalWeight;
109
		this.totalWeight = totalWeight;
108
		this.airwayBillNo = airwayBillNo;
110
		this.airwayBillNo = airwayBillNo;
109
		this.billedBy = billedBy;
111
		this.billedBy = billedBy;
110
		this.invoiceNumber = invoiceNumber;
112
		this.invoiceNumber = invoiceNumber;
Line 448... Line 450...
448
    }
450
    }
449
 
451
 
450
    public Alert getAlert() {
452
    public Alert getAlert() {
451
        return alert;
453
        return alert;
452
    }
454
    }
-
 
455
    
-
 
456
	public String getDealText() {
-
 
457
		return dealText;
-
 
458
	}
-
 
459
 
-
 
460
	public void setDealText(String dealText) {
-
 
461
		this.dealText = dealText;
-
 
462
	}
-
 
463
 
453
}
464
}