Subversion Repositories SmartDukaan

Rev

Rev 23365 | Rev 23582 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
23365 ashik.ali 1
package com.spice.profitmandi.service.order;
22859 ashik.ali 2
 
3
import java.util.List;
23202 ashik.ali 4
import java.util.Map;
22859 ashik.ali 5
 
6
import org.springframework.stereotype.Service;
7
 
23202 ashik.ali 8
import com.spice.profitmandi.common.enumuration.SearchType;
22859 ashik.ali 9
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
10
import com.spice.profitmandi.common.model.CartFofo;
11
import com.spice.profitmandi.common.model.CreateOrderRequest;
12
import com.spice.profitmandi.common.model.PdfModel;
13
import com.spice.profitmandi.dao.entity.fofo.CustomerAddress;
22925 ashik.ali 14
import com.spice.profitmandi.dao.entity.fofo.FofoOrderItem;
22859 ashik.ali 15
 
16
@Service
17
public interface OrderService {
18
	public int createOrder(CreateOrderRequest createOrderRequest, int fofoId) throws ProfitMandiBusinessException;
19
	public PdfModel getInvoicePdfModel(int fofoId, int orderId) throws ProfitMandiBusinessException;
20
	public String getBillingAddress(CustomerAddress customerAddress);
21
	public List<CartFofo> cartCheckout(String cartJson) throws ProfitMandiBusinessException;
22925 ashik.ali 22
	public List<FofoOrderItem> getByOrderId(int orderId)throws ProfitMandiBusinessException;
23202 ashik.ali 23
	public Map<String, Object> getSaleHistory(int fofoId, SearchType searchType, String searchValue, String startTimeString, String endTimeString, int offset, int limit) throws ProfitMandiBusinessException;
24
	public Map<String, Object> getSaleHistoryPaginated(int fofoId, SearchType searchType, String searchValue, String startTimeString, String endTimeString, int offset, int limit) throws ProfitMandiBusinessException;
23418 ashik.ali 25
	public int generatePrebookingOrdersOtp(String customerEmailId, String customerMobileNumber, Map<Integer, Float> itemIdAdvanceAmount) throws ProfitMandiBusinessException;
26
	public String validateOtp(String customerEmailId, String customerMobileNumber, int otpId, String otp) throws ProfitMandiBusinessException;
22859 ashik.ali 27
}