|
|
|
@ -2185,8 +2185,10 @@ const onLoad = async (idsArr = []) => {
|
|
|
|
|
details.query.shipperId = data.shipperClientId || ''; |
|
|
|
|
details.query.consigneeId = data.consigneeClientId || ''; |
|
|
|
|
|
|
|
|
|
details.query.destination = data.destinationArray || []; |
|
|
|
|
details.query.departure = data.departureArray || []; |
|
|
|
|
details.query.destination = |
|
|
|
|
getObjType(data.destinationArray) === 'array' ? data.destinationArray : []; |
|
|
|
|
details.query.departure = |
|
|
|
|
getObjType(data.departureArray) === 'array' ? data.departureArray : []; |
|
|
|
|
details.query.queryDestinationWarehouseName = data.destinationWarehouseName || ''; |
|
|
|
|
// 是否提货 |
|
|
|
|
details.query.isPickUp = details.query.isPickUp ? details.query.isPickUp : 0; |
|
|
|
|