| Line 554... |
Line 554... |
| 554 |
logger.info("Flipkart Warehouse Id " + flipkartItem.getWarehouseId());
|
554 |
logger.info("Flipkart Warehouse Id " + flipkartItem.getWarehouseId());
|
| 555 |
fulfillmentWarehouse = inventoryClient.getWarehouse(flipkartItem.getWarehouseId());
|
555 |
fulfillmentWarehouse = inventoryClient.getWarehouse(flipkartItem.getWarehouseId());
|
| 556 |
logger.info("fulfillmentWarehouse is " + fulfillmentWarehouse.getId() + " " + fulfillmentWarehouse.getDisplayName() );
|
556 |
logger.info("fulfillmentWarehouse is " + fulfillmentWarehouse.getId() + " " + fulfillmentWarehouse.getDisplayName() );
|
| 557 |
|
557 |
|
| 558 |
} else {
|
558 |
} else {
|
| 559 |
List<Long> itemAvailability = inventoryClient.getItemAvailabilityAtLocation(sku, 1);
|
559 |
List<Long> itemAvailability = inventoryClient.getItemAvailabilityAtLocation(sku, 1, -1);
|
| 560 |
fulfillmentWarehouse = inventoryClient.getWarehouse(itemAvailability.get(0));
|
560 |
fulfillmentWarehouse = inventoryClient.getWarehouse(itemAvailability.get(0));
|
| 561 |
if(fulfillmentWarehouse.getStateId()!=0){
|
561 |
if(fulfillmentWarehouse.getStateId()!=0){
|
| 562 |
fulfillmentWarehouse = inventoryClient.getWarehouse(7);
|
562 |
fulfillmentWarehouse = inventoryClient.getWarehouse(7);
|
| 563 |
}
|
563 |
}
|
| 564 |
}
|
564 |
}
|