Subversion Repositories SmartDukaan

Rev

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

Rev 6322 Rev 6467
Line 2... Line 2...
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.InventoryAge;
5
import in.shop2020.warehouse.InvoiceScan;
5
import in.shop2020.warehouse.InvoiceScan;
6
import in.shop2020.warehouse.ScanType;
6
import in.shop2020.warehouse.ScanType;
-
 
7
import in.shop2020.warehouse.domain.InventoryItem;
7
import in.shop2020.warehouse.domain.Scan;
8
import in.shop2020.warehouse.domain.Scan;
8
import in.shop2020.warehouse.persistence.ScanMapper;
9
import in.shop2020.warehouse.persistence.ScanMapper;
9
 
10
 
10
import java.util.Date;
11
import java.util.Date;
11
import java.util.HashMap;
12
import java.util.HashMap;
Line 70... Line 71...
70
    }
71
    }
71
 
72
 
72
	public List<Scan> getScansForItem(Long itemId, Date fromDate, Date toDate) {
73
	public List<Scan> getScansForItem(Long itemId, Date fromDate, Date toDate) {
73
		return scanMapper.getScansForItem(itemId, fromDate, toDate);
74
		return scanMapper.getScansForItem(itemId, fromDate, toDate);
74
	}
75
	}
-
 
76
 
-
 
77
	public void scanForPurchaseReturn(Scan scan) {
-
 
78
		scanMapper.scanForPurchaseReturn(scan);
-
 
79
		
-
 
80
	}
75
}
81
}