Subversion Repositories SmartDukaan

Rev

Rev 32420 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.service.pricing;

import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
import com.spice.profitmandi.common.model.PriceModel;
import com.spice.profitmandi.dao.entity.dtr.GadgetCopsInsuranceCalc;
import org.springframework.stereotype.Service;

import java.util.List;
import java.util.Map;
import java.util.Set;

@Service
public interface PricingService {
        public Map<Integer, Float> getPrices(Set<Integer> itemIds, int retailerId);

        List<Integer> getMopVoilatedRetailerIds();

    public Map<Integer, PriceModel> getMopPrices(Set<Integer> itemIds, int retailerId) throws ProfitMandiBusinessException;

    public Map<Integer, PriceModel> getPurchasePriceMopPriceNotFound(Set<Integer> itemIds, int retailerId) throws ProfitMandiBusinessException;
        public Map<Float, GadgetCopsInsuranceCalc> getInsurancePrices(Set<Float> prices, String providerName) throws ProfitMandiBusinessException;

    public List<Integer> getTagsIdsByRetailerId(int retailerId) throws ProfitMandiBusinessException;
}