| Line 9... |
Line 9... |
| 9 |
|
9 |
|
| 10 |
import org.apache.ibatis.annotations.MapKey;
|
10 |
import org.apache.ibatis.annotations.MapKey;
|
| 11 |
import org.apache.ibatis.annotations.Param;
|
11 |
import org.apache.ibatis.annotations.Param;
|
| 12 |
|
12 |
|
| 13 |
import in.shop2020.warehouse.TransferLotStatus;
|
13 |
import in.shop2020.warehouse.TransferLotStatus;
|
| - |
|
14 |
import in.shop2020.warehouse.domain.RemovalStockShipmentReference;
|
| 14 |
import in.shop2020.warehouse.domain.TransferLot;
|
15 |
import in.shop2020.warehouse.domain.TransferLot;
|
| 15 |
|
16 |
|
| 16 |
/**
|
17 |
/**
|
| 17 |
* @author amar
|
18 |
* @author amar
|
| 18 |
*
|
19 |
*
|
| Line 33... |
Line 34... |
| 33 |
List<Long> getAllowedDestinationWarehousesForTransfer(long originWarehouseId);
|
34 |
List<Long> getAllowedDestinationWarehousesForTransfer(long originWarehouseId);
|
| 34 |
|
35 |
|
| 35 |
void updateTransferLotStatus(@Param("id")long id, @Param("status")TransferLotStatus status);
|
36 |
void updateTransferLotStatus(@Param("id")long id, @Param("status")TransferLotStatus status);
|
| 36 |
|
37 |
|
| 37 |
void markTransferLotAsReceivedPartial(@Param("id")long id, @Param("remoteTransferRefNumber")String remoteTransferRefNumber);
|
38 |
void markTransferLotAsReceivedPartial(@Param("id")long id, @Param("remoteTransferRefNumber")String remoteTransferRefNumber);
|
| - |
|
39 |
|
| - |
|
40 |
RemovalStockShipmentReference getRemovalStockShipmentReferenceByTrackingId(@Param("trackingId")String trackingId);
|
| 38 |
|
41 |
|
| - |
|
42 |
void createRemovalStockShipmentReference(RemovalStockShipmentReference removalStockShipmentReference);
|
| - |
|
43 |
|
| - |
|
44 |
void updateStockShipment(@Param("lineItemQuantity")long lineItemQuantity, @Param("id")long id);
|
| - |
|
45 |
|
| - |
|
46 |
void markStockShipmentComplete(@Param("id")long id);
|
| - |
|
47 |
|
| - |
|
48 |
RemovalStockShipmentReference getRemovalStockShipmentReferenceById(@Param("id")long id);
|
| - |
|
49 |
|
| - |
|
50 |
List<RemovalStockShipmentReference> getAllUnCompletedStockShipments(@Param("source") String source);
|
| - |
|
51 |
|
| - |
|
52 |
void updateShipmentReferenceTransferLot(@Param("id")long id, @Param("shipmentReference")long shipmentReference);
|
| - |
|
53 |
|
| - |
|
54 |
|
| 39 |
}
|
55 |
}
|