Subversion Repositories SmartDukaan

Rev

Rev 21870 | Rev 22101 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21790 ashik.ali 1
package com.spice.profitmandi.service.pricing;
2
 
21926 ashik.ali 3
import java.util.Map;
21870 ashik.ali 4
import java.util.Set;
5
 
21790 ashik.ali 6
public interface PricingService {
7
	//will list all active tags only
21801 ashik.ali 8
	/*List<Tag> listTags();
21790 ashik.ali 9
 
10
	//will list all active tags only
11
	List<Tag> listAllTags();
12
 
13
	//will list skus that are active and latest
14
	List<TagListing> getTagListing(int tagId);
15
 
16
	List<TagListing> getTagListingHistoryForItem(int itemId);
17
 
18
	//Get tags from retailer will utilize  
19
	List<Tag> getTags(Retailer retailer);
20
 
21
	//it will add or update tags
22
	void addPincodeTags(int tagId, String pinCode);
23
 
24
 
25
	Map<Integer, Float> getPriceForFofo(int fofoId, String pinCode, List<Integer> itemIds);
26
	float getPriceForFofo(int fofoId, String pinCode, int itemId) throws Exception;
27
	Map<Integer, Float> getPriceForPinCode(String pinCode, List<Integer> itemIds);
21801 ashik.ali 28
	float getPriceForPinCode(String pinCode, int itemId) throws Exception;*/
21790 ashik.ali 29
 
21926 ashik.ali 30
	public Map<Integer, Float> getPrice(Set<Integer> itemIds, int retailerId);
21790 ashik.ali 31
}