Subversion Repositories SmartDukaan

Rev

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

Rev 6548 Rev 6630
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.InventoryAge;
-
 
5
import in.shop2020.warehouse.InventoryAvailability;
5
import in.shop2020.warehouse.InvoiceScan;
6
import in.shop2020.warehouse.InvoiceScan;
6
import in.shop2020.warehouse.ScanType;
7
import in.shop2020.warehouse.ScanType;
7
import in.shop2020.warehouse.domain.InventoryItem;
8
import in.shop2020.warehouse.domain.InventoryItem;
8
import in.shop2020.warehouse.domain.Scan;
9
import in.shop2020.warehouse.domain.Scan;
9
import in.shop2020.warehouse.persistence.ScanMapper;
10
import in.shop2020.warehouse.persistence.ScanMapper;
Line 80... Line 81...
80
	}
81
	}
81
 
82
 
82
	public List<in.shop2020.warehouse.InventoryAvailability> getCurrentSerializedInventoryByScans() {
83
	public List<in.shop2020.warehouse.InventoryAvailability> getCurrentSerializedInventoryByScans() {
83
		return scanMapper.getCurrentSerializedInventoryByScans();
84
		return scanMapper.getCurrentSerializedInventoryByScans();
84
	}
85
	}
-
 
86
 
-
 
87
	public List<InventoryAvailability> getCurrentNonSerializedInventoryByScans() {
-
 
88
		return scanMapper.getCurrentNonSerializedInventoryByScans();
-
 
89
	}
85
}
90
}