Subversion Repositories SmartDukaan

Rev

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

Rev 6630 Rev 6762
Line 1... Line 1...
1
package in.shop2020.warehouse.handler;
1
package in.shop2020.warehouse.handler;
2
 
2
 
3
import in.shop2020.warehouse.DetailedPurchaseScan;
3
import in.shop2020.warehouse.DetailedPurchaseScan;
4
import in.shop2020.warehouse.InventoryAge;
4
import in.shop2020.warehouse.InventoryAge;
5
import in.shop2020.warehouse.InventoryAvailability;
5
import in.shop2020.warehouse.InventoryAvailability;
-
 
6
import in.shop2020.warehouse.InventoryMovement;
6
import in.shop2020.warehouse.InvoiceScan;
7
import in.shop2020.warehouse.InvoiceScan;
7
import in.shop2020.warehouse.ScanType;
8
import in.shop2020.warehouse.ScanType;
8
import in.shop2020.warehouse.domain.InventoryItem;
9
import in.shop2020.warehouse.domain.InventoryItem;
9
import in.shop2020.warehouse.domain.Scan;
10
import in.shop2020.warehouse.domain.Scan;
10
import in.shop2020.warehouse.persistence.ScanMapper;
11
import in.shop2020.warehouse.persistence.ScanMapper;
Line 85... Line 86...
85
	}
86
	}
86
 
87
 
87
	public List<InventoryAvailability> getCurrentNonSerializedInventoryByScans() {
88
	public List<InventoryAvailability> getCurrentNonSerializedInventoryByScans() {
88
		return scanMapper.getCurrentNonSerializedInventoryByScans();
89
		return scanMapper.getCurrentNonSerializedInventoryByScans();
89
	}
90
	}
-
 
91
	
-
 
92
	public List<in.shop2020.warehouse.InventoryAvailability> getHistoricSerializedInventoryByScans(Date date) {
-
 
93
		return scanMapper.getHistoricSerializedInventoryByScans(date);
-
 
94
	}
-
 
95
 
-
 
96
	public List<InventoryAvailability> getHistoricNonSerializedInventoryByScans(Date date) {
-
 
97
		return scanMapper.getHistoricNonSerializedInventoryByScans(date);
-
 
98
	}
-
 
99
 
-
 
100
	public List<InventoryMovement> getMovementSerializedInventoryByScans(
-
 
101
			Date startDate, Date endDate) {
-
 
102
		return scanMapper.getMovementSerializedInventoryByScans(startDate, endDate);
-
 
103
	}
-
 
104
 
-
 
105
	public List<InventoryMovement> getMovementNonSerializedInventoryByScans(
-
 
106
			Date startDate, Date endDate) {
-
 
107
		return scanMapper.getMovementNonSerializedInventoryByScans(startDate, endDate);
-
 
108
	}
90
}
109
}