Subversion Repositories SmartDukaan

Rev

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

Rev 33247 Rev 33384
Line 7... Line 7...
7
import com.spice.profitmandi.dao.entity.warehouse.WarehouseInventoryItem;
7
import com.spice.profitmandi.dao.entity.warehouse.WarehouseInventoryItem;
8
import com.spice.profitmandi.dao.entity.warehouse.WarehousePurchaseOrder;
8
import com.spice.profitmandi.dao.entity.warehouse.WarehousePurchaseOrder;
9
import com.spice.profitmandi.dao.enumuration.inventory.InventoryType;
9
import com.spice.profitmandi.dao.enumuration.inventory.InventoryType;
10
import com.spice.profitmandi.dao.enumuration.inventory.WarehouseType;
10
import com.spice.profitmandi.dao.enumuration.inventory.WarehouseType;
11
import com.spice.profitmandi.dao.model.transaction.OrderBillingModel;
11
import com.spice.profitmandi.dao.model.transaction.OrderBillingModel;
-
 
12
import in.shop2020.warehouse.ScanType;
12
import org.springframework.beans.factory.annotation.Autowired;
13
import org.springframework.beans.factory.annotation.Autowired;
13
import org.springframework.stereotype.Service;
14
import org.springframework.stereotype.Service;
14
 
15
 
15
import java.util.List;
16
import java.util.List;
16
 
17
 
Line 26... Line 27...
26
    @Autowired
27
    @Autowired
27
    void billing(List<OrderBillingModel> orderBillingModels) throws ProfitMandiBusinessException;
28
    void billing(List<OrderBillingModel> orderBillingModels) throws ProfitMandiBusinessException;
28
 
29
 
29
    //TODO - NEED TO Implement
30
    //TODO - NEED TO Implement
30
    WarehouseInventoryItem addInventoryItem(int purchaseId, WarehousePurchaseOrder warehousePurchaseOrder, ItemQtyModel itemQtyModel) throws ProfitMandiBusinessException;
31
    WarehouseInventoryItem addInventoryItem(int purchaseId, WarehousePurchaseOrder warehousePurchaseOrder, ItemQtyModel itemQtyModel) throws ProfitMandiBusinessException;
-
 
32
 
-
 
33
    List<String>  moveToGood(List<String> serialNumbers) throws ProfitMandiBusinessException;
-
 
34
 
-
 
35
    List<String>  moveToBad(List<String> serialNumbers, ScanType badScanType) throws ProfitMandiBusinessException;
31
}
36
}