Subversion Repositories SmartDukaan

Rev

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

Rev 23595 Rev 23638
Line 8... Line 8...
8
import com.spice.profitmandi.common.enumuration.SearchType;
8
import com.spice.profitmandi.common.enumuration.SearchType;
9
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
9
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
10
import com.spice.profitmandi.common.model.CartFofo;
10
import com.spice.profitmandi.common.model.CartFofo;
11
import com.spice.profitmandi.common.model.CreateOrderRequest;
11
import com.spice.profitmandi.common.model.CreateOrderRequest;
12
import com.spice.profitmandi.common.model.CustomCustomer;
12
import com.spice.profitmandi.common.model.CustomCustomer;
-
 
13
import com.spice.profitmandi.common.model.FoiBadReturnRequest;
13
import com.spice.profitmandi.common.model.PdfModel;
14
import com.spice.profitmandi.common.model.PdfModel;
14
import com.spice.profitmandi.dao.entity.fofo.CustomerAddress;
15
import com.spice.profitmandi.dao.entity.fofo.CustomerAddress;
15
import com.spice.profitmandi.dao.entity.fofo.FofoOrderItem;
16
import com.spice.profitmandi.dao.entity.fofo.FofoOrderItem;
16
 
17
 
17
@Service
18
@Service
Line 25... Line 26...
25
	public List<FofoOrderItem> getByOrderId(int orderId)throws ProfitMandiBusinessException;
26
	public List<FofoOrderItem> getByOrderId(int orderId)throws ProfitMandiBusinessException;
26
	public Map<String, Object> getSaleHistory(int fofoId, SearchType searchType, String searchValue, String startTimeString, String endTimeString, int offset, int limit) throws ProfitMandiBusinessException;
27
	public Map<String, Object> getSaleHistory(int fofoId, SearchType searchType, String searchValue, String startTimeString, String endTimeString, int offset, int limit) throws ProfitMandiBusinessException;
27
	public Map<String, Object> getSaleHistoryPaginated(int fofoId, SearchType searchType, String searchValue, String startTimeString, String endTimeString, int offset, int limit) throws ProfitMandiBusinessException;
28
	public Map<String, Object> getSaleHistoryPaginated(int fofoId, SearchType searchType, String searchValue, String startTimeString, String endTimeString, int offset, int limit) throws ProfitMandiBusinessException;
28
	public int generatePrebookingOrdersOtp(String customerEmailId, String customerMobileNumber, Map<Integer, Float> itemIdAdvanceAmount) throws ProfitMandiBusinessException;
29
	public int generatePrebookingOrdersOtp(String customerEmailId, String customerMobileNumber, Map<Integer, Float> itemIdAdvanceAmount) throws ProfitMandiBusinessException;
29
	public String validateOtp(String customerEmailId, String customerMobileNumber, int otpId, String otp) throws ProfitMandiBusinessException;
30
	public String validateOtp(String customerEmailId, String customerMobileNumber, int otpId, String otp) throws ProfitMandiBusinessException;
-
 
31
	public void badReturn(int fofoId, FoiBadReturnRequest foiBadReturnRequest) throws ProfitMandiBusinessException;
30
}
32
}