Subversion Repositories SmartDukaan

Rev

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

Rev 9833 Rev 10047
Line 9... Line 9...
9
	private String totalAmount;
9
	private String totalAmount;
10
	private String gvAmount;
10
	private String gvAmount;
11
	private String dataProtectionAmount;
11
	private String dataProtectionAmount;
12
	private String insuranceAmount;
12
	private String insuranceAmount;
13
	private String itemName;
13
	private String itemName;
14
	private Integer quantity;
14
	private Integer quantity = 1;
15
	private String orderedOn;
15
	private String orderedOn;
16
	private String promisedDelivery;
16
	private String promisedDelivery;
17
	private String firstDeliveryAttempted;
17
	private String firstDeliveryAttempted;
18
	private String courierUrl;
18
	private String courierUrl;
19
	private String orderUrl;
19
	private String orderUrl;
Line 22... Line 22...
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 initiateCancellable;
25
	private Boolean initiateCancellable;
26
	private Boolean requestCancellable;
26
	private Boolean requestCancellable;
-
 
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() {
31
		return orderId;
32
		return orderId;
Line 145... Line 146...
145
		this.allAddresses = allAddresses;
146
		this.allAddresses = allAddresses;
146
	}
147
	}
147
	public List<AddressPojo> getAllAddresses() {
148
	public List<AddressPojo> getAllAddresses() {
148
		return allAddresses;
149
		return allAddresses;
149
	}
150
	}
-
 
151
	public void setColor(String color) {
-
 
152
		this.color = color;
-
 
153
	}
-
 
154
	public String getColor() {
-
 
155
		return color;
-
 
156
	}
150
}
157
}