Subversion Repositories SmartDukaan

Rev

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

Rev 24917 Rev 25083
Line 15... Line 15...
15
import com.spice.profitmandi.common.model.CustomCustomer;
15
import com.spice.profitmandi.common.model.CustomCustomer;
16
import com.spice.profitmandi.common.model.FoiBadReturnRequest;
16
import com.spice.profitmandi.common.model.FoiBadReturnRequest;
17
import com.spice.profitmandi.common.model.PdfModel;
17
import com.spice.profitmandi.common.model.PdfModel;
18
import com.spice.profitmandi.dao.entity.fofo.CustomerAddress;
18
import com.spice.profitmandi.dao.entity.fofo.CustomerAddress;
19
import com.spice.profitmandi.dao.entity.fofo.CustomerCreditNote;
19
import com.spice.profitmandi.dao.entity.fofo.CustomerCreditNote;
-
 
20
import com.spice.profitmandi.dao.entity.fofo.FofoOrder;
20
import com.spice.profitmandi.dao.entity.fofo.FofoOrderItem;
21
import com.spice.profitmandi.dao.entity.fofo.FofoOrderItem;
21
 
22
 
22
@Service
23
@Service
23
public interface OrderService {
24
public interface OrderService {
24
	public int createOrder(CreateOrderRequest createOrderRequest, int fofoId, boolean accessoriesDeals) throws ProfitMandiBusinessException;
25
	public int createOrder(CreateOrderRequest createOrderRequest, int fofoId, boolean accessoriesDeals) throws ProfitMandiBusinessException;
Line 37... Line 38...
37
	public float getSales(int fofoId, LocalDate onDate);
38
	public float getSales(int fofoId, LocalDate onDate);
38
	public float getSales(LocalDateTime onDate);
39
	public float getSales(LocalDateTime onDate);
39
	public float getSales(LocalDateTime startDate, LocalDateTime endDate);
40
	public float getSales(LocalDateTime startDate, LocalDateTime endDate);
40
	String getInvoiceNumber(int fofoId, String fofoStoreCode);
41
	String getInvoiceNumber(int fofoId, String fofoStoreCode);
41
	public boolean notifyColorChange(int orderId, int itemId) throws ProfitMandiBusinessException;
42
	public boolean notifyColorChange(int orderId, int itemId) throws ProfitMandiBusinessException;
-
 
43
	public FofoOrder getOrderByInventoryItemId(int inventoryItemId) throws Exception;
42
}
44
}