Subversion Repositories SmartDukaan

Rev

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

Rev 6548 Rev 6630
Line 3... Line 3...
3
 */
3
 */
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.InvoiceScan;
9
import in.shop2020.warehouse.InvoiceScan;
9
import in.shop2020.warehouse.ScanType;
10
import in.shop2020.warehouse.ScanType;
10
import in.shop2020.warehouse.domain.InventoryItem;
11
import in.shop2020.warehouse.domain.InventoryItem;
11
import in.shop2020.warehouse.domain.Scan;
12
import in.shop2020.warehouse.domain.Scan;
12
 
13
 
Line 60... Line 61...
60
	
61
	
61
    List<Scan> getScansForItem(@Param("itemId") Long itemId, @Param("fromDate") Date fromDate, @Param("toDate") Date toDate);
62
    List<Scan> getScansForItem(@Param("itemId") Long itemId, @Param("fromDate") Date fromDate, @Param("toDate") Date toDate);
62
 
63
 
63
	void genericScan(Scan scan);
64
	void genericScan(Scan scan);
64
 
65
 
65
	List<in.shop2020.warehouse.InventoryAvailability> getCurrentSerializedInventoryByScans();
66
	List<InventoryAvailability> getCurrentSerializedInventoryByScans();
-
 
67
 
-
 
68
	List<InventoryAvailability> getCurrentNonSerializedInventoryByScans();
66
}
69
}