Subversion Repositories SmartDukaan

Rev

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

Rev 7410 Rev 7676
Line 76... Line 76...
76
	public void genericScan(Scan scan) {
76
	public void genericScan(Scan scan) {
77
		scanMapper.genericScan(scan);
77
		scanMapper.genericScan(scan);
78
		
78
		
79
	}
79
	}
80
 
80
 
81
	public List<in.shop2020.warehouse.InventoryAvailability> getCurrentSerializedInventoryByScans() {
81
	public List<in.shop2020.warehouse.InventoryAvailability> getCurrentSerializedInventoryByScans(Long physicalWarehouseId) {
82
		return scanMapper.getCurrentSerializedInventoryByScans();
82
		return scanMapper.getCurrentSerializedInventoryByScans(physicalWarehouseId);
83
	}
83
	}
84
 
84
 
85
	public List<InventoryAvailability> getCurrentNonSerializedInventoryByScans() {
85
	public List<InventoryAvailability> getCurrentNonSerializedInventoryByScans(Long physicalWarehouseId) {
86
		return scanMapper.getCurrentNonSerializedInventoryByScans();
86
		return scanMapper.getCurrentNonSerializedInventoryByScans(physicalWarehouseId);
87
	}
87
	}
88
	
88
	
89
	public List<in.shop2020.warehouse.InventoryAvailability> getHistoricSerializedInventoryByScans(Date date) {
89
	public List<in.shop2020.warehouse.InventoryAvailability> getHistoricSerializedInventoryByScans(Date date) {
90
		return scanMapper.getHistoricSerializedInventoryByScans(date);
90
		return scanMapper.getHistoricSerializedInventoryByScans(date);
91
	}
91
	}