Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
23110 ashik.ali 1
package com.spice.profitmandi.service.pricing;
2
 
24433 amit.gupta 3
import java.time.LocalDateTime;
23819 govind 4
import java.util.List;
5
 
23110 ashik.ali 6
import org.springframework.stereotype.Service;
7
 
24433 amit.gupta 8
import com.spice.profitmandi.common.model.ImeiDropSummaryModel;
23983 amit.gupta 9
import com.spice.profitmandi.dao.entity.fofo.InventoryItem;
23819 govind 10
import com.spice.profitmandi.dao.entity.transaction.PriceDrop;
24564 amit.gupta 11
import com.spice.profitmandi.dao.entity.transaction.PriceDropIMEI;
23819 govind 12
 
23110 ashik.ali 13
@Service
14
public interface PriceDropService {
23983 amit.gupta 15
	void addPriceDropAmountToWallet();
24564 amit.gupta 16
	List<InventoryItem> getInventoryForPriceDrop (List<PriceDropIMEI> priceDropImeis, PriceDrop priceDrop) throws Exception;
24431 amit.gupta 17
	void priceDropStatus(int priceDropId) throws Exception;
24433 amit.gupta 18
	List<ImeiDropSummaryModel> getAllSerialNumbersByAffectedDate(LocalDateTime affectedOn, Integer catalogItemId)
19
			throws Exception;
23819 govind 20
 
23110 ashik.ali 21
}