Subversion Repositories SmartDukaan

Rev

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

Rev 24433 Rev 24564
Line 5... Line 5...
5
 
5
 
6
import org.springframework.stereotype.Service;
6
import org.springframework.stereotype.Service;
7
 
7
 
8
import com.spice.profitmandi.common.model.ImeiDropSummaryModel;
8
import com.spice.profitmandi.common.model.ImeiDropSummaryModel;
9
import com.spice.profitmandi.dao.entity.fofo.InventoryItem;
9
import com.spice.profitmandi.dao.entity.fofo.InventoryItem;
10
import com.spice.profitmandi.dao.entity.transaction.LineItemImei;
-
 
11
import com.spice.profitmandi.dao.entity.transaction.PriceDrop;
10
import com.spice.profitmandi.dao.entity.transaction.PriceDrop;
-
 
11
import com.spice.profitmandi.dao.entity.transaction.PriceDropIMEI;
12
 
12
 
13
@Service
13
@Service
14
public interface PriceDropService {
14
public interface PriceDropService {
15
	void addPriceDropAmountToWallet();
15
	void addPriceDropAmountToWallet();
16
	List<InventoryItem> getInventoryForPriceDrop (List<LineItemImei> lineItemImeis, PriceDrop priceDrop) throws Exception;
16
	List<InventoryItem> getInventoryForPriceDrop (List<PriceDropIMEI> priceDropImeis, PriceDrop priceDrop) throws Exception;
17
	void priceDropStatus(int priceDropId) throws Exception;
17
	void priceDropStatus(int priceDropId) throws Exception;
18
	List<ImeiDropSummaryModel> getAllSerialNumbersByAffectedDate(LocalDateTime affectedOn, Integer catalogItemId)
18
	List<ImeiDropSummaryModel> getAllSerialNumbersByAffectedDate(LocalDateTime affectedOn, Integer catalogItemId)
19
			throws Exception;
19
			throws Exception;
20
 
20
 
21
}
21
}