Subversion Repositories SmartDukaan

Rev

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

Rev 6762 Rev 6765
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.InventoryMovement;
7
import in.shop2020.warehouse.InvoiceScan;
7
import in.shop2020.warehouse.InvoiceScan;
8
import in.shop2020.warehouse.ScanType;
8
import in.shop2020.warehouse.ScanType;
9
import in.shop2020.warehouse.domain.InventoryItem;
9
import in.shop2020.warehouse.domain.InventoryItem;
10
import in.shop2020.warehouse.domain.Scan;
10
import in.shop2020.warehouse.domain.Scan;
11
import in.shop2020.warehouse.persistence.ScanMapper;
11
import in.shop2020.warehouse.persistence.ScanMapper;
Line 95... Line 95...
95
 
95
 
96
	public List<InventoryAvailability> getHistoricNonSerializedInventoryByScans(Date date) {
96
	public List<InventoryAvailability> getHistoricNonSerializedInventoryByScans(Date date) {
97
		return scanMapper.getHistoricNonSerializedInventoryByScans(date);
97
		return scanMapper.getHistoricNonSerializedInventoryByScans(date);
98
	}
98
	}
99
 
99
 
100
	public List<InventoryMovement> getMovementSerializedInventoryByScans(
100
	/*public List<InventoryMovement> getMovementSerializedInventoryByScans(
101
			Date startDate, Date endDate) {
101
			Date startDate, Date endDate) {
102
		return scanMapper.getMovementSerializedInventoryByScans(startDate, endDate);
102
		return scanMapper.getMovementSerializedInventoryByScans(startDate, endDate);
103
	}
103
	}
104
 
104
 
105
	public List<InventoryMovement> getMovementNonSerializedInventoryByScans(
105
	public List<InventoryMovement> getMovementNonSerializedInventoryByScans(
106
			Date startDate, Date endDate) {
106
			Date startDate, Date endDate) {
107
		return scanMapper.getMovementNonSerializedInventoryByScans(startDate, endDate);
107
		return scanMapper.getMovementNonSerializedInventoryByScans(startDate, endDate);
108
	}
108
	}*/
109
}
109
}