Subversion Repositories SmartDukaan

Rev

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

Rev 33729 Rev 33809
Line 6... Line 6...
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 com.spice.profitmandi.dao.model.VendorDebitNoteModel;
9
import org.springframework.stereotype.Service;
9
import org.springframework.stereotype.Service;
10
 
10
 
11
import java.io.OutputStream;
-
 
12
import java.time.LocalDateTime;
11
import java.time.LocalDateTime;
13
import java.util.List;
12
import java.util.List;
14
import java.util.Optional;
13
import java.util.Optional;
15
 
14
 
16
@Service
15
@Service
Line 30... Line 29...
30
 
29
 
31
	void rejectPriceDropsOfApprovedImeis() throws ProfitMandiBusinessException;
30
	void rejectPriceDropsOfApprovedImeis() throws ProfitMandiBusinessException;
32
 
31
 
33
	public List<VendorDebitNoteModel> selectVendorDebitNoteByDateWithLineItem(LocalDateTime startdate, LocalDateTime enddate);
32
	public List<VendorDebitNoteModel> selectVendorDebitNoteByDateWithLineItem(LocalDateTime startdate, LocalDateTime enddate);
34
 
33
 
35
	void writeVendorDebitNoteModels(List<VendorDebitNoteModel> vendorDebitNoteModels, OutputStream outputStream);
-
 
36
}
34
}