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 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.InvoiceScan;
5
import in.shop2020.warehouse.InvoiceScan;
5
import in.shop2020.warehouse.ScanType;
6
import in.shop2020.warehouse.ScanType;
6
import in.shop2020.warehouse.domain.Scan;
7
import in.shop2020.warehouse.domain.Scan;
7
import in.shop2020.warehouse.persistence.ScanMapper;
8
import in.shop2020.warehouse.persistence.ScanMapper;
8
 
9
 
Line 58... Line 59...
58
     * @return
59
     * @return
59
     */
60
     */
60
    public List<InvoiceScan> fetchMismatchScansPerInvoiceNumber(long date) {
61
    public List<InvoiceScan> fetchMismatchScansPerInvoiceNumber(long date) {
61
        return scanMapper.fetchMismatchScansPerInvoiceNumber(new Date(date));
62
        return scanMapper.fetchMismatchScansPerInvoiceNumber(new Date(date));
62
    }
63
    }
-
 
64
 
-
 
65
    /**
-
 
66
     * @return
-
 
67
     */
-
 
68
    public List<InventoryAge> getInventoryAge() {
-
 
69
        return scanMapper.getInventoryAge();
-
 
70
    }
63
}
71
}