Subversion Repositories SmartDukaan

Rev

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

Rev 5769 Rev 7190
Line 32... Line 32...
32
	private long status;
32
	private long status;
33
	private String statusMessage;
33
	private String statusMessage;
34
	
34
	
35
	private String orderType;
35
	private String orderType;
36
	private long itemId;
36
	private long itemId;
-
 
37
	private long freebieItemId;
37
	private String productGroup;
38
	private String productGroup;
38
	private String brand;
39
	private String brand;
39
	private String modelName;
40
	private String modelName;
40
	private String modelNumber;
41
	private String modelNumber;
41
	private String color;
42
	private String color;
Line 84... Line 85...
84
			String modelNumber, String color, String extraInfo, String dealText, double quantity,
85
			String modelNumber, String color, String extraInfo, String dealText, double quantity,
85
			double totalAmount,	double totalWeight, String airwayBillNo, String billedBy,
86
			double totalAmount,	double totalWeight, String airwayBillNo, String billedBy,
86
			String invoiceNumber, long jacketNumber, String itemNumber,
87
			String invoiceNumber, long jacketNumber, String itemNumber,
87
			String serialNumber, long batchNo, long serialNo,
88
			String serialNumber, long batchNo, long serialNo,
88
			boolean doaFlag, String pickupRequestNo, boolean cod, String delayReason,
89
			boolean doaFlag, String pickupRequestNo, boolean cod, String delayReason,
89
			String pickFromWarehouse, boolean serialized, boolean hasItemNumber, long fulfilmentWarehouseId, long pickupStoreId) {
90
			String pickFromWarehouse, boolean serialized, boolean hasItemNumber, long fulfilmentWarehouseId, long pickupStoreId, long freebieItemId) {
90
		super();
91
		super();
91
		this.orderId = orderId;
92
		this.orderId = orderId;
92
		this.customerId = customerId;
93
		this.customerId = customerId;
93
		this.customerName = customerName;
94
		this.customerName = customerName;
94
		this.customerMobileNumber = customerMobileNumber;
95
		this.customerMobileNumber = customerMobileNumber;
Line 134... Line 135...
134
		this.pickFromWarehouse = pickFromWarehouse;
135
		this.pickFromWarehouse = pickFromWarehouse;
135
		this.serialized = serialized;
136
		this.serialized = serialized;
136
		this.hasItemNumber = hasItemNumber;
137
		this.hasItemNumber = hasItemNumber;
137
		this.fulfilmentWarehouseId = fulfilmentWarehouseId;
138
		this.fulfilmentWarehouseId = fulfilmentWarehouseId;
138
		this.setPickupStoreId(pickupStoreId);
139
		this.setPickupStoreId(pickupStoreId);
-
 
140
		this.freebieItemId = freebieItemId;
139
		checkForAlerts();
141
		checkForAlerts();
140
	}
142
	}
141
 
143
 
142
	private void checkForAlerts(){
144
	private void checkForAlerts(){
143
	    this.alert = OrderAlert.NONE;
145
	    this.alert = OrderAlert.NONE;
Line 540... Line 542...
540
 
542
 
541
	public long getPickupStoreId() {
543
	public long getPickupStoreId() {
542
		return pickupStoreId;
544
		return pickupStoreId;
543
	}
545
	}
544
 
546
 
-
 
547
	public long getFreebieItemId() {
-
 
548
		return freebieItemId;
-
 
549
	}
-
 
550
 
-
 
551
	public void setFreebieItemId(long freebieItemId) {
-
 
552
		this.freebieItemId = freebieItemId;
-
 
553
	}
-
 
554
 
545
}
555
}