Subversion Repositories SmartDukaan

Rev

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

Rev 7199 Rev 7210
Line 105... Line 105...
105
	}
105
	}
106
 
106
 
107
	public List<Scan> getScansForOrderAndItem(Long orderId, Long itemId) {
107
	public List<Scan> getScansForOrderAndItem(Long orderId, Long itemId) {
108
		return scanMapper.getScansForOrderAndItem(orderId, itemId);
108
		return scanMapper.getScansForOrderAndItem(orderId, itemId);
109
	}
109
	}
-
 
110
 
-
 
111
	public List<DetailedPurchaseScan> getPurchaseScansByGrnDate(long startDate,
-
 
112
			long endDate) {
-
 
113
		return scanMapper.getPurchaseScansByGrnDate(new Date(startDate), new Date(endDate));
-
 
114
	}
110
}
115
}