Subversion Repositories SmartDukaan

Rev

Rev 33525 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33507 tejus.loha 1
package com.spice.profitmandi.dao.service.loiForm;
2
 
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
4
import com.spice.profitmandi.dao.entity.auth.AuthUser;
5
import com.spice.profitmandi.dao.entity.brandFee.BrandFeeCollection;
6
import com.spice.profitmandi.dao.entity.fofo.PartnerOnBoardingPanel;
7
import com.spice.profitmandi.dao.entity.onBoarding.LoiForm;
8
import com.spice.profitmandi.dao.entity.onBoarding.LoiFormData;
9
import com.spice.profitmandi.dao.model.GstAddressModel;
10
import com.spice.profitmandi.dao.model.LoiFormModel;
11
import com.spice.profitmandi.dao.service.LoiDocModel;
12
import com.spice.profitmandi.service.integrations.gstpro.entity.GstDetails;
13
import org.springframework.stereotype.Service;
14
 
15
import java.util.List;
16
 
17
@Service
18
public interface LoiFormService {
19
    LoiForm updateLoiForm(LoiFormData pofd, int formId) throws ProfitMandiBusinessException;
20
 
21
    boolean createLoiForm(LoiFormData LoiFormFormData) throws Exception;
22
 
23
    List<AuthUser> getSalesAuthList();
24
 
25
    List<AuthUser> techAuthUsers();
26
 
27
    List<LoiFormModel> pendingFormList(String emailId) throws ProfitMandiBusinessException;
28
 
29
    List<GstAddressModel> createAddressModelList(List<GstDetails.Pradr> adadr);
30
 
31
    LoiFormModel getmodelbyId(int id) throws ProfitMandiBusinessException;
32
 
33
    void sendSignedLoiPdfToPartner(LoiForm pod1) throws Exception;
34
 
35
    void setDocs(LoiForm pod, List<LoiDocModel> partnerDocuments) throws Exception;
36
 
37
    void sentMailToPaymentApprover(BrandFeeCollection feeCollection) throws Exception;
38
 
39
    PartnerOnBoardingPanel createPartnerOnboardingPanel(int loiId, int authId) throws ProfitMandiBusinessException;
40
}