Subversion Repositories SmartDukaan

Rev

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