Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.service.warehouse;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.common.model.DebitNotePdfModel;import com.spice.profitmandi.common.model.GrnModel;import org.springframework.stereotype.Service;import java.util.List;@Servicepublic interface DebitNoteService {DebitNotePdfModel buildDebitNotePdfModel(int debitNoteId) throws ProfitMandiBusinessException;void generateDebitNote(List<GrnModel> grnModels) throws ProfitMandiBusinessException;}