|
@@ -238,8 +238,8 @@ public class OyeWarehouseServiceImpl implements IOyeWarehouseService {
|
|
|
}
|
|
|
}
|
|
|
// 车号备注
|
|
|
- String truckRemark = (String) (map.get("truckRemark"));
|
|
|
- String place = (String) (map.get("place"));
|
|
|
+ String truckRemark = map.get("truckRemark") == null ? null : map.get("truckRemark").toString();
|
|
|
+ String place = map.get("place") == null ? null : map.get("place").toString();
|
|
|
if (place != null && !"null".equals(place)) {
|
|
|
List<Map<String, Object>> placeIdList = amsSaleOrderMaterialMapper.getPlaceId(place,shippingAddressId);
|
|
|
if (placeIdList == null || placeIdList.size() == 0) {
|