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 4... Line 4...
4
package in.shop2020.warehouse.persistence;
4
package in.shop2020.warehouse.persistence;
5
 
5
 
6
import in.shop2020.warehouse.DetailedPurchaseScan;
6
import in.shop2020.warehouse.DetailedPurchaseScan;
7
import in.shop2020.warehouse.InventoryAge;
7
import in.shop2020.warehouse.InventoryAge;
8
import in.shop2020.warehouse.InventoryAvailability;
8
import in.shop2020.warehouse.InventoryAvailability;
-
 
9
import in.shop2020.warehouse.InventoryMovement;
9
import in.shop2020.warehouse.InvoiceScan;
10
import in.shop2020.warehouse.InvoiceScan;
10
import in.shop2020.warehouse.ScanType;
11
import in.shop2020.warehouse.ScanType;
11
import in.shop2020.warehouse.domain.InventoryItem;
12
import in.shop2020.warehouse.domain.InventoryItem;
12
import in.shop2020.warehouse.domain.Scan;
13
import in.shop2020.warehouse.domain.Scan;
13
 
14
 
Line 64... Line 65...
64
	void genericScan(Scan scan);
65
	void genericScan(Scan scan);
65
 
66
 
66
	List<InventoryAvailability> getCurrentSerializedInventoryByScans();
67
	List<InventoryAvailability> getCurrentSerializedInventoryByScans();
67
 
68
 
68
	List<InventoryAvailability> getCurrentNonSerializedInventoryByScans();
69
	List<InventoryAvailability> getCurrentNonSerializedInventoryByScans();
-
 
70
 
-
 
71
	List<InventoryAvailability> getHistoricSerializedInventoryByScans(Date date);
-
 
72
 
-
 
73
	List<InventoryAvailability> getHistoricNonSerializedInventoryByScans(Date date);
-
 
74
 
-
 
75
	List<InventoryMovement> getMovementSerializedInventoryByScans(
-
 
76
			@Param("startDate") Date startDate, @Param("endDate") Date endDate);
-
 
77
 
-
 
78
	List<InventoryMovement> getMovementNonSerializedInventoryByScans(
-
 
79
			@Param("startDate") Date startDate, @Param("endDate") Date endDate);
69
}
80
}