Subversion Repositories SmartDukaan

Rev

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

Rev 33189 Rev 33729
Line 3... Line 3...
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
4
import com.spice.profitmandi.common.model.ImeiDropSummaryModel;
4
import com.spice.profitmandi.common.model.ImeiDropSummaryModel;
5
import com.spice.profitmandi.dao.entity.fofo.InventoryItem;
5
import com.spice.profitmandi.dao.entity.fofo.InventoryItem;
6
import com.spice.profitmandi.dao.entity.transaction.PriceDrop;
6
import com.spice.profitmandi.dao.entity.transaction.PriceDrop;
7
import com.spice.profitmandi.dao.entity.transaction.PriceDropIMEI;
7
import com.spice.profitmandi.dao.entity.transaction.PriceDropIMEI;
-
 
8
import com.spice.profitmandi.dao.model.VendorDebitNoteModel;
8
import org.springframework.stereotype.Service;
9
import org.springframework.stereotype.Service;
9
 
10
 
-
 
11
import java.io.OutputStream;
10
import java.time.LocalDateTime;
12
import java.time.LocalDateTime;
11
import java.util.List;
13
import java.util.List;
12
import java.util.Optional;
14
import java.util.Optional;
13
 
15
 
14
@Service
16
@Service
Line 26... Line 28...
26
 
28
 
27
	List<PriceDropIMEI> processPriceDrop(int priceDropId, List<String> imeis) throws ProfitMandiBusinessException;
29
	List<PriceDropIMEI> processPriceDrop(int priceDropId, List<String> imeis) throws ProfitMandiBusinessException;
28
 
30
 
29
	void rejectPriceDropsOfApprovedImeis() throws ProfitMandiBusinessException;
31
	void rejectPriceDropsOfApprovedImeis() throws ProfitMandiBusinessException;
30
 
32
 
-
 
33
	public List<VendorDebitNoteModel> selectVendorDebitNoteByDateWithLineItem(LocalDateTime startdate, LocalDateTime enddate);
-
 
34
 
-
 
35
	void writeVendorDebitNoteModels(List<VendorDebitNoteModel> vendorDebitNoteModels, OutputStream outputStream);
31
}
36
}