Subversion Repositories SmartDukaan

Rev

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

Rev 30826 Rev 32194
Line 1... Line 1...
1
package com.spice.profitmandi.service.warehouse;
1
package com.spice.profitmandi.service.warehouse;
2
 
2
 
-
 
3
import java.util.List;
-
 
4
 
-
 
5
import org.springframework.stereotype.Service;
-
 
6
 
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
7
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
-
 
8
import com.spice.profitmandi.common.model.ItemDescriptionModel;
4
import com.spice.profitmandi.dao.entity.transaction.WarehouseAddressMaster;
9
import com.spice.profitmandi.dao.entity.transaction.WarehouseAddressMaster;
5
import com.spice.profitmandi.dao.enumuration.inventory.InventoryType;
10
import com.spice.profitmandi.dao.enumuration.inventory.InventoryType;
6
import com.spice.profitmandi.dao.enumuration.inventory.WarehouseType;
11
import com.spice.profitmandi.dao.enumuration.inventory.WarehouseType;
7
import org.springframework.stereotype.Service;
-
 
8
 
-
 
9
import java.util.List;
-
 
10
 
12
 
11
@Service
13
@Service
12
public interface WarehouseService {
14
public interface WarehouseService {
13
 
15
 
14
	public List<Integer> getAuthWarehouses(String email) throws ProfitMandiBusinessException;
16
    public List<Integer> getAuthWarehouses(String email) throws ProfitMandiBusinessException;
15
 
17
 
16
	public void createVendorWarehouse(WarehouseType warehouseType, InventoryType inventoryType, String label, int warehouseId, WarehouseAddressMaster wam, int vendorId);
18
    public void createVendorWarehouse(WarehouseType warehouseType, InventoryType inventoryType, String label, int warehouseId, WarehouseAddressMaster wam, int vendorId);
17
 
19
 
-
 
20
    public List<ItemDescriptionModel> getAllPartnerItemStringDescription(int vendorId);
18
}
21
}