| 22925 |
ashik.ali |
1 |
package com.spice.profitmandi.service.inventory;
|
| 22859 |
ashik.ali |
2 |
|
| 22925 |
ashik.ali |
3 |
import java.util.Map;
|
|
|
4 |
|
| 22859 |
ashik.ali |
5 |
import org.springframework.stereotype.Service;
|
|
|
6 |
|
|
|
7 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
|
|
8 |
import com.spice.profitmandi.common.model.CheckItemQuantityRequest;
|
|
|
9 |
import com.spice.profitmandi.common.model.CheckItemQuantityResponse;
|
|
|
10 |
import com.spice.profitmandi.common.model.ScanNonSerializedRequest;
|
|
|
11 |
import com.spice.profitmandi.common.model.ScanSerializedRequest;
|
| 23075 |
ashik.ali |
12 |
import com.spice.profitmandi.common.model.ShippedOrder;
|
| 26033 |
amit.gupta |
13 |
import com.spice.profitmandi.dao.entity.fofo.PrebookingOrder;
|
| 22859 |
ashik.ali |
14 |
|
|
|
15 |
@Service
|
|
|
16 |
public interface PurchaseService {
|
|
|
17 |
public void scanSerializedItems(ScanSerializedRequest scanSerializedRequest, int fofoId) throws ProfitMandiBusinessException;
|
|
|
18 |
public void scanNonSerializedItems(ScanNonSerializedRequest scanNonSerializedRequest, int fofoId) throws ProfitMandiBusinessException;
|
|
|
19 |
public CheckItemQuantityResponse checkItemQuantity(CheckItemQuantityRequest checkItemQuantityRequest, int fofoId);
|
| 22925 |
ashik.ali |
20 |
public Map<String, Object> purchaseByInvoiceNumber(String airwayBillOrInvoiceNumber, int fofoId) throws ProfitMandiBusinessException;
|
| 23075 |
ashik.ali |
21 |
public ShippedOrder getShippingDetailByOrderId(int orderId, int fofoId) throws ProfitMandiBusinessException;
|
| 26033 |
amit.gupta |
22 |
void sendPrebookingNotifyMessage(PrebookingOrder prebookingOrder) throws ProfitMandiBusinessException;
|
| 22859 |
ashik.ali |
23 |
}
|