Subversion Repositories SmartDukaan

Rev

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

Rev 30274 Rev 31205
Line 1... Line 1...
1
package com.spice.profitmandi.service.offers;
1
package com.spice.profitmandi.service.offers;
2
 
2
 
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
4
import com.spice.profitmandi.dao.entity.catalog.Offer;
4
import com.spice.profitmandi.dao.entity.catalog.Offer;
-
 
5
import com.spice.profitmandi.dao.entity.fofo.InventoryItem;
5
import com.spice.profitmandi.dao.model.CreateOfferRequest;
6
import com.spice.profitmandi.dao.model.CreateOfferRequest;
6
import org.springframework.stereotype.Service;
7
import org.springframework.stereotype.Service;
7
 
8
 
8
import java.io.InputStream;
9
import java.io.InputStream;
9
import java.time.LocalDate;
10
import java.time.LocalDate;
Line 28... Line 29...
28
	void createOffers(InputStream inputStream) throws Exception;
29
	void createOffers(InputStream inputStream) throws Exception;
29
 
30
 
30
	Map<Integer, Map<Integer, Long>> getSlabPayoutMap(CreateOfferRequest createOfferRequest);
31
	Map<Integer, Map<Integer, Long>> getSlabPayoutMap(CreateOfferRequest createOfferRequest);
31
 
32
 
32
	CreateOfferRequest getCreateOfferRequest(Offer fromOffer);
33
	CreateOfferRequest getCreateOfferRequest(Offer fromOffer);
-
 
34
 
-
 
35
	void reverseAdditionalSelloutSchemes(int fofoId, List<InventoryItem> inventoryItems) throws ProfitMandiBusinessException;
33
}
36
}