|
|
@ -20,6 +20,7 @@ import org.nl.wms.sch.service.PointService; |
|
|
|
import org.nl.wms.sch.service.RegionService; |
|
|
|
import org.nl.wms.sch.service.dto.PointDto; |
|
|
|
import org.nl.wms.sch.service.dto.RegionDto; |
|
|
|
import org.nl.wms.sch.task.util.TaskUtils; |
|
|
|
import org.springframework.data.domain.Pageable; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
@ -140,6 +141,8 @@ public class PointServiceImpl implements PointService { |
|
|
|
if (entity == null) { |
|
|
|
throw new BadRequestException("被删除或无权限,操作失败!"); |
|
|
|
} |
|
|
|
String vehicle_code = TaskUtils.formatVehicleCode(dto.getVehicle_code()); |
|
|
|
dto.setVehicle_code(vehicle_code); |
|
|
|
|
|
|
|
WQLObject materialBaseTab = WQLObject.getWQLObject("MD_ME_MaterialBase"); |
|
|
|
WQLObject pointTab = WQLObject.getWQLObject("SCH_BASE_Point"); |
|
|
|