Subversion Repositories SmartDukaan

Rev

Rev 24564 | Rev 26332 | 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
 
25652 amit.gupta 8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
24433 amit.gupta 9
import com.spice.profitmandi.common.model.ImeiDropSummaryModel;
23983 amit.gupta 10
import com.spice.profitmandi.dao.entity.fofo.InventoryItem;
23819 govind 11
import com.spice.profitmandi.dao.entity.transaction.PriceDrop;
24564 amit.gupta 12
import com.spice.profitmandi.dao.entity.transaction.PriceDropIMEI;
23819 govind 13
 
23110 ashik.ali 14
@Service
15
public interface PriceDropService {
23983 amit.gupta 16
	void addPriceDropAmountToWallet();
25652 amit.gupta 17
 
18
	List<InventoryItem> getInventoryForPriceDrop(List<PriceDropIMEI> priceDropImeis, PriceDrop priceDrop)
19
			throws Exception;
20
 
24431 amit.gupta 21
	void priceDropStatus(int priceDropId) throws Exception;
25652 amit.gupta 22
 
24433 amit.gupta 23
	List<ImeiDropSummaryModel> getAllSerialNumbersByAffectedDate(LocalDateTime affectedOn, Integer catalogItemId)
24
			throws Exception;
23819 govind 25
 
25652 amit.gupta 26
	void rollbackPriceDrop(InventoryItem inventoryItem, String debitNoteNumber) throws ProfitMandiBusinessException;
27
 
23110 ashik.ali 28
}