| Line 7... |
Line 7... |
| 7 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
7 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
| 8 |
import com.spice.profitmandi.common.model.CheckItemQuantityRequest;
|
8 |
import com.spice.profitmandi.common.model.CheckItemQuantityRequest;
|
| 9 |
import com.spice.profitmandi.common.model.CheckItemQuantityResponse;
|
9 |
import com.spice.profitmandi.common.model.CheckItemQuantityResponse;
|
| 10 |
import com.spice.profitmandi.common.model.ScanNonSerializedRequest;
|
10 |
import com.spice.profitmandi.common.model.ScanNonSerializedRequest;
|
| 11 |
import com.spice.profitmandi.common.model.ScanSerializedRequest;
|
11 |
import com.spice.profitmandi.common.model.ScanSerializedRequest;
|
| - |
|
12 |
import com.spice.profitmandi.common.model.ShippedOrder;
|
| 12 |
|
13 |
|
| 13 |
@Service
|
14 |
@Service
|
| 14 |
public interface PurchaseService {
|
15 |
public interface PurchaseService {
|
| 15 |
public void scanSerializedItems(ScanSerializedRequest scanSerializedRequest, int fofoId) throws ProfitMandiBusinessException;
|
16 |
public void scanSerializedItems(ScanSerializedRequest scanSerializedRequest, int fofoId) throws ProfitMandiBusinessException;
|
| 16 |
public void scanNonSerializedItems(ScanNonSerializedRequest scanNonSerializedRequest, int fofoId) throws ProfitMandiBusinessException;
|
17 |
public void scanNonSerializedItems(ScanNonSerializedRequest scanNonSerializedRequest, int fofoId) throws ProfitMandiBusinessException;
|
| 17 |
public CheckItemQuantityResponse checkItemQuantity(CheckItemQuantityRequest checkItemQuantityRequest, int fofoId);
|
18 |
public CheckItemQuantityResponse checkItemQuantity(CheckItemQuantityRequest checkItemQuantityRequest, int fofoId);
|
| 18 |
public Map<String, Object> purchaseByInvoiceNumber(String airwayBillOrInvoiceNumber, int fofoId) throws ProfitMandiBusinessException;
|
19 |
public Map<String, Object> purchaseByInvoiceNumber(String airwayBillOrInvoiceNumber, int fofoId) throws ProfitMandiBusinessException;
|
| - |
|
20 |
public ShippedOrder getShippingDetailByOrderId(int orderId, int fofoId) throws ProfitMandiBusinessException;
|
| 19 |
}
|
21 |
}
|