Subversion Repositories SmartDukaan

Rev

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

Rev 5496 Rev 5711
Line 2... Line 2...
2
 * 
2
 * 
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.InvoiceScan;
8
import in.shop2020.warehouse.InvoiceScan;
8
import in.shop2020.warehouse.ScanType;
9
import in.shop2020.warehouse.ScanType;
9
import in.shop2020.warehouse.domain.Scan;
10
import in.shop2020.warehouse.domain.Scan;
10
 
11
 
11
import java.util.Date;
12
import java.util.Date;
Line 47... Line 48...
47
    /**
48
    /**
48
     * @param date
49
     * @param date
49
     * @return
50
     * @return
50
     */
51
     */
51
    List<InvoiceScan> fetchMismatchScansPerInvoiceNumber(Date date);
52
    List<InvoiceScan> fetchMismatchScansPerInvoiceNumber(Date date);
-
 
53
 
-
 
54
    /**
-
 
55
     * @return
-
 
56
     */
-
 
57
    List<InventoryAge> getInventoryAge();
52
}
58
}