Subversion Repositories SmartDukaan

Rev

Rev 10818 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10818 Rev 17494
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 = 1;
14
	private Integer quantity;
15
	private Long itemId;
15
	private Long itemId;
16
	private String orderedOn;
16
	private String orderedOn;
17
	private String promisedDelivery;
17
	private String promisedDelivery;
18
	private String firstDeliveryAttempted;
18
	private String firstDeliveryAttempted;
19
	private String courierUrl;
19
	private String courierUrl;
Line 26... Line 26...
26
	private List<AddressPojo> allAddresses;
26
	private List<AddressPojo> allAddresses;
27
	//private List<AddressPojo> allAddresses;
27
	//private List<AddressPojo> allAddresses;
28
	private Boolean isCancellable = false;
28
	private Boolean isCancellable = false;
29
	private Boolean isAddressChangeAble = false;
29
	private Boolean isAddressChangeAble = false;
30
	private String color;
30
	private String color;
-
 
31
	private String shippingCost;
31
	public void setOrderId(long orderId) {
32
	public void setOrderId(long orderId) {
32
		this.orderId = orderId;
33
		this.orderId = orderId;
33
	}
34
	}
34
	public long getOrderId() {
35
	public long getOrderId() {
35
		return orderId;
36
		return orderId;
Line 167... Line 168...
167
		this.isStorePickup = isStorePickup;
168
		this.isStorePickup = isStorePickup;
168
	}
169
	}
169
	public Boolean getIsStorePickup() {
170
	public Boolean getIsStorePickup() {
170
		return isStorePickup;
171
		return isStorePickup;
171
	}
172
	}
-
 
173
	public String getShippingCost() {
-
 
174
		return shippingCost;
-
 
175
	}
-
 
176
	public void setShippingCost(String shippingCost) {
-
 
177
		this.shippingCost = shippingCost;
-
 
178
	}
172
}
179
}