Subversion Repositories SmartDukaan

Rev

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

Rev 10359 Rev 10405
Line 19... Line 19...
19
	private String orderUrl;
19
	private String orderUrl;
20
	private String status;
20
	private String status;
21
	private String courierName;
21
	private String courierName;
22
	private String awbNumber;
22
	private String awbNumber;
23
	private AddressPojo shippingAddress;
23
	private AddressPojo shippingAddress;
24
	private List<AddressPojo> allAddresses;
24
	//private List<AddressPojo> allAddresses;
25
	private Boolean isCancellable = false;
25
	private Boolean isCancellable = false;
-
 
26
	private Boolean isAddressChangeAble = false;
26
	private String color;
27
	private String color;
27
	public void setOrderId(long orderId) {
28
	public void setOrderId(long orderId) {
28
		this.orderId = orderId;
29
		this.orderId = orderId;
29
	}
30
	}
30
	public long getOrderId() {
31
	public long getOrderId() {
Line 145... Line 146...
145
		this.isCancellable = isCancellable;
146
		this.isCancellable = isCancellable;
146
	}
147
	}
147
	public Boolean getIsCancellable() {
148
	public Boolean getIsCancellable() {
148
		return isCancellable;
149
		return isCancellable;
149
	}
150
	}
-
 
151
	public void setIsAddressChangeAble(Boolean isAddressChangeAble) {
-
 
152
		this.isAddressChangeAble = isAddressChangeAble;
-
 
153
	}
-
 
154
	public Boolean getIsAddressChangeAble() {
-
 
155
		return isAddressChangeAble;
-
 
156
	}
150
}
157
}