Subversion Repositories SmartDukaan

Rev

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

Rev 7422 Rev 8717
Line 65... Line 65...
65
	private String pickFromWarehouse;
65
	private String pickFromWarehouse;
66
	private boolean hasItemNumber;
66
	private boolean hasItemNumber;
67
	private long fulfilmentWarehouseId;
67
	private long fulfilmentWarehouseId;
68
	private boolean serialized;
68
	private boolean serialized;
69
	private OrderAlert alert;
69
	private OrderAlert alert;
70
	
-
 
-
 
70
	private long productCondition; 
71
	private String source;
71
	private String source;
72
	
72
	
73
	@SuppressWarnings("unused")
73
	@SuppressWarnings("unused")
74
	private Order(){}
74
	private Order(){}
75
 
75
 
Line 87... Line 87...
87
			String modelNumber, String color, String extraInfo, String dealText, double quantity,
87
			String modelNumber, String color, String extraInfo, String dealText, double quantity,
88
			double totalAmount,	double totalWeight, String airwayBillNo, String billedBy,
88
			double totalAmount,	double totalWeight, String airwayBillNo, String billedBy,
89
			String invoiceNumber, long jacketNumber, String itemNumber,
89
			String invoiceNumber, long jacketNumber, String itemNumber,
90
			String serialNumber, long batchNo, long serialNo,
90
			String serialNumber, long batchNo, long serialNo,
91
			boolean doaFlag, String pickupRequestNo, boolean cod, String delayReason,
91
			boolean doaFlag, String pickupRequestNo, boolean cod, String delayReason,
92
			String pickFromWarehouse, boolean serialized, boolean hasItemNumber, long fulfilmentWarehouseId, long pickupStoreId, long freebieItemId, String source) {
92
			String pickFromWarehouse, boolean serialized, boolean hasItemNumber, long fulfilmentWarehouseId, long pickupStoreId, long freebieItemId, String source, long productCondition) {
93
		super();
93
		super();
94
		this.orderId = orderId;
94
		this.orderId = orderId;
95
		this.customerId = customerId;
95
		this.customerId = customerId;
96
		this.customerName = customerName;
96
		this.customerName = customerName;
97
		this.customerMobileNumber = customerMobileNumber;
97
		this.customerMobileNumber = customerMobileNumber;
Line 139... Line 139...
139
		this.hasItemNumber = hasItemNumber;
139
		this.hasItemNumber = hasItemNumber;
140
		this.fulfilmentWarehouseId = fulfilmentWarehouseId;
140
		this.fulfilmentWarehouseId = fulfilmentWarehouseId;
141
		this.setPickupStoreId(pickupStoreId);
141
		this.setPickupStoreId(pickupStoreId);
142
		this.freebieItemId = freebieItemId;
142
		this.freebieItemId = freebieItemId;
143
		this.source = source;
143
		this.source = source;
-
 
144
		this.productCondition = productCondition;
144
		checkForAlerts();
145
		checkForAlerts();
145
	}
146
	}
146
 
147
 
147
	private void checkForAlerts(){
148
	private void checkForAlerts(){
148
	    this.alert = OrderAlert.NONE;
149
	    this.alert = OrderAlert.NONE;
Line 556... Line 557...
556
	}
557
	}
557
 
558
 
558
	public String getSource(){
559
	public String getSource(){
559
		return this.source;
560
		return this.source;
560
	}
561
	}
-
 
562
 
-
 
563
	public long getProductCondition() {
-
 
564
		return productCondition;
-
 
565
	}
-
 
566
 
-
 
567
	public void setProductCondition(long productCondition) {
-
 
568
		this.productCondition = productCondition;
-
 
569
	}
561
	
570
	
562
}
571
}