Subversion Repositories SmartDukaan

Rev

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