Subversion Repositories SmartDukaan

Rev

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

Rev 5372 Rev 5496
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.InvoiceScan;
7
import in.shop2020.warehouse.ScanType;
8
import in.shop2020.warehouse.ScanType;
8
import in.shop2020.warehouse.domain.Scan;
9
import in.shop2020.warehouse.domain.Scan;
9
 
10
 
10
import java.util.Date;
11
import java.util.Date;
11
import java.util.List;
12
import java.util.List;
Line 40... Line 41...
40
     * @param startDate
41
     * @param startDate
41
     * @param endDate
42
     * @param endDate
42
     * @return
43
     * @return
43
     */
44
     */
44
    List<DetailedPurchaseScan> getPurchaseScans(@Param("startDate")Date startDate, @Param("endDate")Date endDate);
45
    List<DetailedPurchaseScan> getPurchaseScans(@Param("startDate")Date startDate, @Param("endDate")Date endDate);
-
 
46
 
-
 
47
    /**
-
 
48
     * @param date
-
 
49
     * @return
-
 
50
     */
-
 
51
    List<InvoiceScan> fetchMismatchScansPerInvoiceNumber(Date date);
45
}
52
}