| 28493 |
tejbeer |
1 |
package com.spice.profitmandi.service.warehouse;
|
|
|
2 |
|
| 32194 |
tejbeer |
3 |
import java.util.List;
|
|
|
4 |
|
| 33239 |
amit.gupta |
5 |
import com.spice.profitmandi.common.model.ItemQtyModel;
|
|
|
6 |
import com.spice.profitmandi.dao.entity.warehouse.WarehouseInventoryItem;
|
|
|
7 |
import com.spice.profitmandi.dao.entity.warehouse.WarehousePurchaseOrder;
|
|
|
8 |
import com.spice.profitmandi.dao.model.transaction.OrderBillingModel;
|
|
|
9 |
import org.springframework.beans.factory.annotation.Autowired;
|
| 32194 |
tejbeer |
10 |
import org.springframework.stereotype.Service;
|
|
|
11 |
|
| 30826 |
amit.gupta |
12 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
| 32194 |
tejbeer |
13 |
import com.spice.profitmandi.common.model.ItemDescriptionModel;
|
| 28493 |
tejbeer |
14 |
import com.spice.profitmandi.dao.entity.transaction.WarehouseAddressMaster;
|
|
|
15 |
import com.spice.profitmandi.dao.enumuration.inventory.InventoryType;
|
|
|
16 |
import com.spice.profitmandi.dao.enumuration.inventory.WarehouseType;
|
|
|
17 |
|
|
|
18 |
@Service
|
|
|
19 |
public interface WarehouseService {
|
|
|
20 |
|
| 32194 |
tejbeer |
21 |
public List<Integer> getAuthWarehouses(String email) throws ProfitMandiBusinessException;
|
| 28493 |
tejbeer |
22 |
|
| 32194 |
tejbeer |
23 |
public void createVendorWarehouse(WarehouseType warehouseType, InventoryType inventoryType, String label, int warehouseId, WarehouseAddressMaster wam, int vendorId);
|
| 30826 |
amit.gupta |
24 |
|
| 32194 |
tejbeer |
25 |
public List<ItemDescriptionModel> getAllPartnerItemStringDescription(int vendorId);
|
| 33239 |
amit.gupta |
26 |
|
|
|
27 |
@Autowired
|
|
|
28 |
void billing(List<OrderBillingModel> orderBillingModels) throws Exception;
|
|
|
29 |
|
|
|
30 |
//TODO - NEED TO Implement
|
|
|
31 |
WarehouseInventoryItem addInventoryItem(int purchaseId, WarehousePurchaseOrder warehousePurchaseOrder, ItemQtyModel itemQtyModel) throws ProfitMandiBusinessException;
|
| 28493 |
tejbeer |
32 |
}
|