Subversion Repositories SmartDukaan

Rev

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

Rev 6467 Rev 6548
Line 72... Line 72...
72
 
72
 
73
	public List<Scan> getScansForItem(Long itemId, Date fromDate, Date toDate) {
73
	public List<Scan> getScansForItem(Long itemId, Date fromDate, Date toDate) {
74
		return scanMapper.getScansForItem(itemId, fromDate, toDate);
74
		return scanMapper.getScansForItem(itemId, fromDate, toDate);
75
	}
75
	}
76
 
76
 
77
	public void scanForPurchaseReturn(Scan scan) {
77
	public void genericScan(Scan scan) {
78
		scanMapper.scanForPurchaseReturn(scan);
78
		scanMapper.genericScan(scan);
79
		
79
		
80
	}
80
	}
-
 
81
 
-
 
82
	public List<in.shop2020.warehouse.InventoryAvailability> getCurrentSerializedInventoryByScans() {
-
 
83
		return scanMapper.getCurrentSerializedInventoryByScans();
-
 
84
	}
81
}
85
}