Subversion Repositories SmartDukaan

Rev

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

Rev 9404 Rev 9534
Line 9... Line 9...
9
	long availability;
9
	long availability;
10
	long reserve;
10
	long reserve;
11
	long heldForSource;
11
	long heldForSource;
12
	long holdInventory;
12
	long holdInventory;
13
	long defaultInventory;
13
	long defaultInventory;
-
 
14
	long totalHeldInventory;
14
	boolean isRisky;
15
	boolean isRisky;
15
	status Status;
16
	status Status;
16
	
17
	
-
 
18
	
17
	public SnapdealItemForInventory(long id,long availability,long reserve, long heldForSource, long holdInventory,long defaultInventory,boolean isRisky,status Status){
19
	public SnapdealItemForInventory(long id,long availability,long reserve, long heldForSource, long holdInventory,long defaultInventory,long totalHeldInventory,boolean isRisky,status Status){
18
		this.id=id;
20
		this.id=id;
19
		this.availability=availability;
21
		this.availability=availability;
20
		this.reserve=reserve;
22
		this.reserve=reserve;
21
		this.heldForSource = heldForSource;
23
		this.heldForSource = heldForSource;
22
		this.holdInventory=holdInventory;
24
		this.holdInventory=holdInventory;
23
		this.defaultInventory=defaultInventory;
25
		this.defaultInventory=defaultInventory;
-
 
26
		this.totalHeldInventory=totalHeldInventory;
24
		this.isRisky=isRisky;
27
		this.isRisky=isRisky;
25
		this.Status=Status;
28
		this.Status=Status;
26
	}
29
	}
27
 
30
 
28
	public long getId() {
31
	public long getId() {
Line 86... Line 89...
86
	}
89
	}
87
 
90
 
88
	public void setStatus(status status) {
91
	public void setStatus(status status) {
89
		Status = status;
92
		Status = status;
90
	}
93
	}
-
 
94
 
-
 
95
	public long getTotalHeldInventory() {
-
 
96
		return totalHeldInventory;
-
 
97
	}
-
 
98
 
-
 
99
	public void setTotalHeldInventory(long totalHeldInventory) {
-
 
100
		this.totalHeldInventory = totalHeldInventory;
-
 
101
	}
-
 
102
 
-
 
103
	public boolean isRisky() {
-
 
104
		return isRisky;
-
 
105
	}
91
	
106
	
92
}
107
}