Subversion Repositories SmartDukaan

Rev

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

Rev 32194 Rev 33239
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;
3
import java.util.List;
4
 
4
 
-
 
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;
5
import org.springframework.stereotype.Service;
10
import org.springframework.stereotype.Service;
6
 
11
 
7
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
12
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
8
import com.spice.profitmandi.common.model.ItemDescriptionModel;
13
import com.spice.profitmandi.common.model.ItemDescriptionModel;
9
import com.spice.profitmandi.dao.entity.transaction.WarehouseAddressMaster;
14
import com.spice.profitmandi.dao.entity.transaction.WarehouseAddressMaster;
Line 16... Line 21...
16
    public List<Integer> getAuthWarehouses(String email) throws ProfitMandiBusinessException;
21
    public List<Integer> getAuthWarehouses(String email) throws ProfitMandiBusinessException;
17
 
22
 
18
    public void createVendorWarehouse(WarehouseType warehouseType, InventoryType inventoryType, String label, int warehouseId, WarehouseAddressMaster wam, int vendorId);
23
    public void createVendorWarehouse(WarehouseType warehouseType, InventoryType inventoryType, String label, int warehouseId, WarehouseAddressMaster wam, int vendorId);
19
 
24
 
20
    public List<ItemDescriptionModel> getAllPartnerItemStringDescription(int vendorId);
25
    public List<ItemDescriptionModel> getAllPartnerItemStringDescription(int vendorId);
-
 
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;
21
}
32
}