Subversion Repositories SmartDukaan

Rev

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

Rev 24264 Rev 24271
Line 1... Line 1...
1
package com.spice.profitmandi.service.order;
1
package com.spice.profitmandi.service.order;
2
 
2
 
-
 
3
import java.time.LocalDate;
3
import java.time.LocalDateTime;
4
import java.time.LocalDateTime;
4
import java.util.List;
5
import java.util.List;
5
import java.util.Map;
6
import java.util.Map;
6
 
7
 
7
import org.springframework.stereotype.Service;
8
import org.springframework.stereotype.Service;
Line 30... Line 31...
30
	public Map<String, Object> getSaleHistory(int fofoId, SearchType searchType, String searchValue, LocalDateTime startDate, LocalDateTime endDate, int offset, int limit) throws ProfitMandiBusinessException;
31
	public Map<String, Object> getSaleHistory(int fofoId, SearchType searchType, String searchValue, LocalDateTime startDate, LocalDateTime endDate, int offset, int limit) throws ProfitMandiBusinessException;
31
	public Map<String, Object> getSaleHistoryPaginated(int fofoId, SearchType searchType, String searchValue, LocalDateTime startDate, LocalDateTime endDate, int offset, int limit) throws ProfitMandiBusinessException;
32
	public Map<String, Object> getSaleHistoryPaginated(int fofoId, SearchType searchType, String searchValue, LocalDateTime startDate, LocalDateTime endDate, int offset, int limit) throws ProfitMandiBusinessException;
32
	public CustomerCreditNote badReturn(int fofoId, FoiBadReturnRequest foiBadReturnRequest) throws ProfitMandiBusinessException;
33
	public CustomerCreditNote badReturn(int fofoId, FoiBadReturnRequest foiBadReturnRequest) throws ProfitMandiBusinessException;
33
	public CreditNotePdfModel getCreditNotePdfModel(int customerCreditNoteId) throws ProfitMandiBusinessException;
34
	public CreditNotePdfModel getCreditNotePdfModel(int customerCreditNoteId) throws ProfitMandiBusinessException;
34
	public void cancelOrder(List<String> invoiceNumbers)throws Exception;
35
	public void cancelOrder(List<String> invoiceNumbers)throws Exception;
-
 
36
	public float getSales(int fofoId, LocalDateTime startDate, LocalDateTime endDate);
-
 
37
	public float getSales(int fofoId, LocalDate onDate);
-
 
38
	public float getSales(LocalDateTime onDate);
-
 
39
	public float getSales(LocalDateTime startDate, LocalDateTime endDate);
35
}
40
}