Browse Source

多选

master
gengby 2 years ago
parent
commit
858e82a2c7
  1. 20
      hd/nladmin-system/src/main/java/org/nl/modules/quartz/task/AutoCreateInst.java
  2. 7
      qd/src/views/acs/route/routeLine/index.vue

20
hd/nladmin-system/src/main/java/org/nl/modules/quartz/task/AutoCreateInst.java

@ -102,18 +102,18 @@ public class AutoCreateInst {
String startDriverCode = startdevice.getDeviceDriverDefination().getDriverCode(); String startDriverCode = startdevice.getDeviceDriverDefination().getDriverCode();
String nextDriverCode = nextdevice.getDeviceDriverDefination().getDriverCode(); String nextDriverCode = nextdevice.getDeviceDriverDefination().getDriverCode();
if (StrUtil.isNotEmpty(startDriverCode)){ if (StrUtil.isNotEmpty(startDriverCode)){
DriverDeviceService deviceService = applicationContext.getBean(startDriverCode, DriverDeviceService.class); // DriverDeviceService deviceService = applicationContext.getBean(startDriverCode, DriverDeviceService.class);
Boolean checkStartPoint = deviceService.createInstCheckStartPoint(startdevice, acsTask); // Boolean checkStartPoint = deviceService.createInstCheckStartPoint(startdevice, acsTask);
if (!checkStartPoint){ // if (!checkStartPoint){
continue; // continue;
} // }
} }
if (StrUtil.isNotEmpty(nextDriverCode)){ if (StrUtil.isNotEmpty(nextDriverCode)){
DriverDeviceService deviceService = applicationContext.getBean(nextDriverCode, DriverDeviceService.class); // DriverDeviceService deviceService = applicationContext.getBean(nextDriverCode, DriverDeviceService.class);
Boolean checkNextPoint = deviceService.createInstCheckNextPoint(nextdevice, acsTask); // Boolean checkNextPoint = deviceService.createInstCheckNextPoint(nextdevice, acsTask);
if (!checkNextPoint){ // if (!checkNextPoint){
continue; // continue;
} // }
} }
Instruction instdto = new Instruction(); Instruction instdto = new Instruction();
instdto.setInstruction_type(acsTask.getTask_type()); instdto.setInstruction_type(acsTask.getTask_type());

7
qd/src/views/acs/route/routeLine/index.vue

@ -310,6 +310,11 @@ export default {
[CRUD.HOOK.beforeRefresh]() { [CRUD.HOOK.beforeRefresh]() {
return true return true
}, },
[CRUD.HOOK.beforeToEdit](data) {
this.form.device_code = Array.of(data.form.device_code.split('').join(''))
this.form.next_device_code = Array.of(data.form.next_device_code.split('').join(''))
return true
},
// //
changeEnabled(data) { changeEnabled(data) {
var msg = '停用' var msg = '停用'
@ -337,7 +342,7 @@ export default {
}).catch(err => { }).catch(err => {
console.log(err.response.data.message) console.log(err.response.data.message)
}) })
}, }
} }
} }
</script> </script>

Loading…
Cancel
Save