Subversion Repositories SmartDukaan

Rev

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

Rev 23582 Rev 23595
Line 17... Line 17...
17
@Service
17
@Service
18
public interface OrderService {
18
public interface OrderService {
19
	public int createOrder(CreateOrderRequest createOrderRequest, int fofoId) throws ProfitMandiBusinessException;
19
	public int createOrder(CreateOrderRequest createOrderRequest, int fofoId) throws ProfitMandiBusinessException;
20
	public void updateCustomerDetails(CustomCustomer customCustomer, String invoiceNumber) throws ProfitMandiBusinessException;
20
	public void updateCustomerDetails(CustomCustomer customCustomer, String invoiceNumber) throws ProfitMandiBusinessException;
21
	public PdfModel getInvoicePdfModel(int fofoId, int orderId) throws ProfitMandiBusinessException;
21
	public PdfModel getInvoicePdfModel(int fofoId, int orderId) throws ProfitMandiBusinessException;
-
 
22
	public PdfModel getInvoicePdfModel(int orderId) throws ProfitMandiBusinessException;
22
	public String getBillingAddress(CustomerAddress customerAddress);
23
	public String getBillingAddress(CustomerAddress customerAddress);
23
	public List<CartFofo> cartCheckout(String cartJson) throws ProfitMandiBusinessException;
24
	public List<CartFofo> cartCheckout(String cartJson) throws ProfitMandiBusinessException;
24
	public List<FofoOrderItem> getByOrderId(int orderId)throws ProfitMandiBusinessException;
25
	public List<FofoOrderItem> getByOrderId(int orderId)throws ProfitMandiBusinessException;
25
	public Map<String, Object> getSaleHistory(int fofoId, SearchType searchType, String searchValue, String startTimeString, String endTimeString, int offset, int limit) throws ProfitMandiBusinessException;
26
	public Map<String, Object> getSaleHistory(int fofoId, SearchType searchType, String searchValue, String startTimeString, String endTimeString, int offset, int limit) throws ProfitMandiBusinessException;
26
	public Map<String, Object> getSaleHistoryPaginated(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;