Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
35716 amit 1
package com.spice.profitmandi.service.warehouse;
2
 
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
4
import com.spice.profitmandi.common.model.DebitNotePdfModel;
5
import com.spice.profitmandi.common.model.GrnModel;
6
import org.springframework.stereotype.Service;
7
 
8
import java.util.List;
9
 
10
@Service
11
public interface DebitNoteService {
12
 
13
    DebitNotePdfModel buildDebitNotePdfModel(int debitNoteId) throws ProfitMandiBusinessException;
14
 
15
    void generateDebitNote(List<GrnModel> grnModels) throws ProfitMandiBusinessException;
16
}