Subversion Repositories SmartDukaan

Rev

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

Rev 5110 Rev 5387
Line 38... Line 38...
38
	private String modelName;
38
	private String modelName;
39
	private String modelNumber;
39
	private String modelNumber;
40
	private String color;
40
	private String color;
41
	private String extraInfo;
41
	private String extraInfo;
42
	private String dealText;
42
	private String dealText;
-
 
43
	private double quantity;
43
	
44
	
44
	private double totalAmount;
45
	private double totalAmount;
45
	private double totalWeight;
46
	private double totalWeight;
46
	
47
	
47
	private String airwayBillNo;
48
	private String airwayBillNo;
Line 75... Line 76...
75
			long promisedDeliveryTime,
76
			long promisedDeliveryTime,
76
			long expectedShippingTime,
77
			long expectedShippingTime,
77
			long promisedShippingTime,
78
			long promisedShippingTime,
78
			long status, String statusMessage,
79
			long status, String statusMessage,
79
			long itemId, String productGroup, String brand, String modelName,
80
			long itemId, String productGroup, String brand, String modelName,
80
			String modelNumber, String color, String extraInfo, String dealText, double totalAmount,
81
			String modelNumber, String color, String extraInfo, String dealText, double quantity,
81
			double totalWeight, String airwayBillNo, String billedBy,
82
			double totalAmount,	double totalWeight, String airwayBillNo, String billedBy,
82
			String invoiceNumber, long jacketNumber, String itemNumber,
83
			String invoiceNumber, long jacketNumber, String itemNumber,
83
			String serialNumber, long batchNo, long serialNo,
84
			String serialNumber, long batchNo, long serialNo,
84
			boolean doaFlag, String pickupRequestNo, boolean cod, String delayReason,
85
			boolean doaFlag, String pickupRequestNo, boolean cod, String delayReason,
85
			String pickFromWarehouse, boolean serialized, long fulfilmentWarehouseId) {
86
			String pickFromWarehouse, boolean serialized, long fulfilmentWarehouseId) {
86
		super();
87
		super();
Line 109... Line 110...
109
		this.modelName = modelName;
110
		this.modelName = modelName;
110
		this.modelNumber = modelNumber;
111
		this.modelNumber = modelNumber;
111
		this.color = color;
112
		this.color = color;
112
		this.extraInfo = extraInfo;
113
		this.extraInfo = extraInfo;
113
		this.dealText = dealText;
114
		this.dealText = dealText;
-
 
115
		this.setQuantity(quantity);
114
		this.totalAmount = totalAmount;
116
		this.totalAmount = totalAmount;
115
		this.totalWeight = totalWeight;
117
		this.totalWeight = totalWeight;
116
		this.airwayBillNo = airwayBillNo;
118
		this.airwayBillNo = airwayBillNo;
117
		this.billedBy = billedBy;
119
		this.billedBy = billedBy;
118
		this.invoiceNumber = invoiceNumber;
120
		this.invoiceNumber = invoiceNumber;
Line 500... Line 502...
500
 
502
 
501
    public void setFulfilmentWarehouseId(long fulfilmentWarehouseId) {
503
    public void setFulfilmentWarehouseId(long fulfilmentWarehouseId) {
502
        this.fulfilmentWarehouseId = fulfilmentWarehouseId;
504
        this.fulfilmentWarehouseId = fulfilmentWarehouseId;
503
    }
505
    }
504
 
506
 
-
 
507
	public void setQuantity(double quantity) {
-
 
508
		this.quantity = quantity;
-
 
509
	}
-
 
510
 
-
 
511
	public double getQuantity() {
-
 
512
		return quantity;
-
 
513
	}
-
 
514
 
505
}
515
}