add: 变动开发
This commit is contained in:
@@ -57,6 +57,12 @@
|
|||||||
<artifactId>org.openscada.jinterop.deps</artifactId>
|
<artifactId>org.openscada.jinterop.deps</artifactId>
|
||||||
<version>1.5.0</version>
|
<version>1.5.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.bouncycastle</groupId>
|
||||||
|
<artifactId>bcprov-jdk15on</artifactId>
|
||||||
|
<version>1.54</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.openscada.utgard</groupId>
|
<groupId>org.openscada.utgard</groupId>
|
||||||
<artifactId>org.openscada.opc.dcom</artifactId>
|
<artifactId>org.openscada.opc.dcom</artifactId>
|
||||||
@@ -415,7 +421,33 @@
|
|||||||
<artifactId>ik-analyzer</artifactId>
|
<artifactId>ik-analyzer</artifactId>
|
||||||
<version>${lucene.version}</version>
|
<version>${lucene.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>commons-io</groupId>
|
||||||
|
<artifactId>commons-io</artifactId>
|
||||||
|
<version>2.8.0</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.openscada.jinterop</groupId>
|
||||||
|
<artifactId>org.openscada.jinterop.core</artifactId>
|
||||||
|
<version>2.1.8</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bouncycastle</groupId>
|
||||||
|
<artifactId>bcprov-jdk15on</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.openscada.jinterop</groupId>
|
||||||
|
<artifactId>org.openscada.jinterop.deps</artifactId>
|
||||||
|
<version>1.5.0</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bouncycastle</groupId>
|
||||||
|
<artifactId>bcprov-jdk15on</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
<!--支持中文分词 -->
|
<!--支持中文分词 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.lucene</groupId>
|
<groupId>org.apache.lucene</groupId>
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
package org.nl.acs.agv.server;
|
package org.nl.acs.agv.server;
|
||||||
|
|
||||||
|
import cn.hutool.core.map.MapUtil;
|
||||||
import cn.hutool.core.util.ObjectUtil;
|
import cn.hutool.core.util.ObjectUtil;
|
||||||
import cn.hutool.core.util.StrUtil;
|
import cn.hutool.core.util.StrUtil;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
@@ -14,6 +15,7 @@ import org.nl.acs.opc.Device;
|
|||||||
import org.nl.acs.opc.DeviceAppService;
|
import org.nl.acs.opc.DeviceAppService;
|
||||||
import org.nl.acs.task.service.dto.TaskDto;
|
import org.nl.acs.task.service.dto.TaskDto;
|
||||||
import org.nl.modules.common.exception.BadRequestException;
|
import org.nl.modules.common.exception.BadRequestException;
|
||||||
|
import org.nl.modules.wql.core.bean.WQLObject;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -127,6 +129,7 @@ public class AgvWaitUtil {
|
|||||||
AgvConveyorDeviceDriver driver = (AgvConveyorDeviceDriver) executeDevice.getDeviceDriver();
|
AgvConveyorDeviceDriver driver = (AgvConveyorDeviceDriver) executeDevice.getDeviceDriver();
|
||||||
if ("down".equals(task.getExecute_message())) {
|
if ("down".equals(task.getExecute_message())) {
|
||||||
driver.writing("to_down_finished", 1);
|
driver.writing("to_down_finished", 1);
|
||||||
|
this.deviceExecuteLogService.deviceExecuteLog(deviceCode, "", "", "下料完成");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -308,6 +311,16 @@ public class AgvWaitUtil {
|
|||||||
// 普通站点驱动
|
// 普通站点驱动
|
||||||
String message = "允许AGV放货后离开。";
|
String message = "允许AGV放货后离开。";
|
||||||
this.deviceExecuteLogService.deviceExecuteLog(deviceCode, "", "", message);
|
this.deviceExecuteLogService.deviceExecuteLog(deviceCode, "", "", message);
|
||||||
|
//人工放货位到缓存区需要将货位信息写入缓存区
|
||||||
|
if (task.getStart_device_code().startsWith("R_")&& deviceCode.endsWith("CH_")){
|
||||||
|
WQLObject wo = WQLObject.getWQLObject("acs_device_runpoint");
|
||||||
|
JSONObject json = wo.query("device_code ='" + task.getStart_device_code() + "'").uniqueResult(0);
|
||||||
|
if (MapUtil.isNotEmpty(json)) {
|
||||||
|
JSONObject rpUpdate = new JSONObject();
|
||||||
|
rpUpdate.put("material_type", json.get("material_type"));
|
||||||
|
WQLObject.getWQLObject("acs_device_runpoint").update(rpUpdate, "device_code = '" + deviceCode + "'");
|
||||||
|
}
|
||||||
|
}
|
||||||
// agv上料完成后写信号
|
// agv上料完成后写信号
|
||||||
String executeCode = task.getExecute_code();
|
String executeCode = task.getExecute_code();
|
||||||
if (StrUtil.isNotEmpty(executeCode)) {
|
if (StrUtil.isNotEmpty(executeCode)) {
|
||||||
@@ -316,9 +329,10 @@ public class AgvWaitUtil {
|
|||||||
AgvConveyorDeviceDriver driver = (AgvConveyorDeviceDriver) executeDevice.getDeviceDriver();
|
AgvConveyorDeviceDriver driver = (AgvConveyorDeviceDriver) executeDevice.getDeviceDriver();
|
||||||
if ("up".equals(task.getExecute_message())) {
|
if ("up".equals(task.getExecute_message())) {
|
||||||
driver.writing("to_up_finished", 1);
|
driver.writing("to_up_finished", 1);
|
||||||
|
this.deviceExecuteLogService.deviceExecuteLog(deviceCode, "", "", "上料完成");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
flag = true;
|
flag = true;
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -71,11 +71,14 @@ public class AgvConveyorDeviceDriver extends AbstractOpcDeviceDriver implements
|
|||||||
int heartbeat = 0;
|
int heartbeat = 0;
|
||||||
int error = 0;
|
int error = 0;
|
||||||
int task = 0;
|
int task = 0;
|
||||||
String on_off_site;
|
int on_off_site;
|
||||||
String tray_Information;
|
int tray_Information;
|
||||||
int down_request;
|
int down_request;
|
||||||
int up_request;
|
int up_request;
|
||||||
|
|
||||||
|
String on_off_site_str;
|
||||||
|
String tray_Information_str;
|
||||||
|
|
||||||
Boolean isonline = true;
|
Boolean isonline = true;
|
||||||
|
|
||||||
Boolean iserror = false;
|
Boolean iserror = false;
|
||||||
@@ -99,12 +102,12 @@ public class AgvConveyorDeviceDriver extends AbstractOpcDeviceDriver implements
|
|||||||
String message = null;
|
String message = null;
|
||||||
|
|
||||||
device_code = this.getDeviceCode();
|
device_code = this.getDeviceCode();
|
||||||
heartbeat = this.itemProtocol.getItem_heartbeat();
|
|
||||||
on_off_site = this.itemProtocol.getItem_on_off_site();
|
on_off_site = this.itemProtocol.getItem_on_off_site();
|
||||||
tray_Information = this.itemProtocol.getItem_tray_Information();
|
tray_Information = this.itemProtocol.getItem_tray_Information();
|
||||||
down_request = this.itemProtocol.getItem_down_request();
|
down_request = this.itemProtocol.getItem_down_request();
|
||||||
up_request = this.itemProtocol.getItem_up_request();
|
up_request = this.itemProtocol.getItem_up_request();
|
||||||
|
on_off_site_str = String.valueOf(on_off_site);
|
||||||
|
tray_Information_str = String.valueOf(tray_Information);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -116,10 +119,12 @@ public class AgvConveyorDeviceDriver extends AbstractOpcDeviceDriver implements
|
|||||||
this.setIsonline(false);
|
this.setIsonline(false);
|
||||||
this.setIserror(true);
|
this.setIserror(true);
|
||||||
//未联机
|
//未联机
|
||||||
|
logServer.deviceExecuteLog(this.device_code, "", "", "未联机");
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
this.setIsonline(true);
|
this.setIsonline(true);
|
||||||
this.setIserror(false);
|
this.setIserror(false);
|
||||||
if ((down_request == 1 || up_request == 1) && StringUtils.isNoneEmpty(on_off_site)){
|
if ((down_request == 1 || up_request == 1) && StringUtils.isNoneEmpty(on_off_site_str)){
|
||||||
task_apply();
|
task_apply();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -135,42 +140,88 @@ public class AgvConveyorDeviceDriver extends AbstractOpcDeviceDriver implements
|
|||||||
} else {
|
} else {
|
||||||
this.instruction_require_time = date;
|
this.instruction_require_time = date;
|
||||||
WQLObject wo = WQLObject.getWQLObject("acs_device_runpoint");
|
WQLObject wo = WQLObject.getWQLObject("acs_device_runpoint");
|
||||||
JSONObject json = wo.query("device_code ='" + on_off_site + "'").uniqueResult(0);
|
//上料设备
|
||||||
if (MapUtil.isNotEmpty(json) && "0".equals(json.get("hasgoods"))){
|
List<String> putDeviceCodeList = this.getExtraDeviceCodes("put_device_code");
|
||||||
logServer.deviceExecuteLog(this.device_code, "", "", on_off_site + "无上下料货物");
|
//下料设备
|
||||||
return false;
|
List<String> getDeviceCodeList = this.getExtraDeviceCodes("get_device_code");
|
||||||
}
|
|
||||||
//请求下料
|
//请求下料
|
||||||
if (down_request == 1){
|
if (down_request == 1){
|
||||||
List<RouteLineDto> routeLineDtos = routeLineService.getsByCode(on_off_site,"normal");
|
String nextCode = null;
|
||||||
if (CollUtil.isEmpty(routeLineDtos) || routeLineDtos.size() < 1) {
|
//下料点要有货,终点要无货
|
||||||
logServer.deviceExecuteLog(this.device_code, "", "", "没有"+ on_off_site + "的路由");
|
JSONObject json = wo.query("device_code ='" + on_off_site_str + "'").uniqueResult(0);
|
||||||
|
if (MapUtil.isNotEmpty(json) && "0".equals(json.get("hasgoods"))){
|
||||||
|
logServer.deviceExecuteLog(this.device_code, "", "", on_off_site_str + "下料点无货物");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
RouteLineDto routeLineDto = routeLineDtos.get(0);
|
if (CollUtil.isNotEmpty(getDeviceCodeList)){
|
||||||
|
//查找无货的防货点
|
||||||
|
for (String deviceCode : getDeviceCodeList) {
|
||||||
|
JSONObject jsonEnd = wo.query("device_code ='" + deviceCode + "'").uniqueResult(0);
|
||||||
|
if (MapUtil.isNotEmpty(jsonEnd) && "0".equals(jsonEnd.get("hasgoods"))){
|
||||||
|
nextCode = deviceCode;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (nextCode == null){
|
||||||
|
logServer.deviceExecuteLog(this.device_code, "", "", "终点货物占满");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
List<TaskDto> taskDtos = taskserver.queryTaskByDeviceCodeAndStatus(on_off_site_str);
|
||||||
|
if (CollUtil.isNotEmpty(taskDtos)){
|
||||||
|
logServer.deviceExecuteLog(this.device_code, "", "", "已存在"+on_off_site_str+"为起点就绪或执行的任务");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
TaskDto taskDto = new TaskDto();
|
TaskDto taskDto = new TaskDto();
|
||||||
taskDto.setStart_device_code(on_off_site);
|
taskDto.setStart_device_code(on_off_site_str);
|
||||||
taskDto.setNext_device_code(routeLineDto.getNext_device_code());
|
taskDto.setNext_device_code(nextCode);
|
||||||
taskDto.setStart_point_code(on_off_site);
|
taskDto.setStart_point_code(on_off_site_str);
|
||||||
taskDto.setNext_point_code(routeLineDto.getNext_device_code());
|
taskDto.setNext_point_code(nextCode);
|
||||||
taskDto.setExecute_code(this.device_code);
|
taskDto.setExecute_code(this.device_code);
|
||||||
taskDto.setExecute_message("down");
|
taskDto.setExecute_message("down");
|
||||||
|
taskDto.setTask_type("3");
|
||||||
taskserver.create(taskDto);
|
taskserver.create(taskDto);
|
||||||
}
|
}
|
||||||
//请求上料
|
//请求上料
|
||||||
if (up_request == 1){
|
if (up_request == 1){
|
||||||
List<RouteLineDto> routeLineDtos = routeLineService.getPathLinesByCode(on_off_site,"normal");
|
String startCode = null;
|
||||||
if (CollUtil.isEmpty(routeLineDtos) || routeLineDtos.size() < 1) {
|
//起点要有货,上料点要无货
|
||||||
logServer.deviceExecuteLog(this.device_code, "", "", "没有"+ on_off_site + "的路由");
|
JSONObject json = wo.query("device_code ='" + on_off_site_str + "'").uniqueResult(0);
|
||||||
|
if (MapUtil.isNotEmpty(json) && "1".equals(json.get("hasgoods"))){
|
||||||
|
logServer.deviceExecuteLog(this.device_code, "", "", on_off_site_str + "上料点存在货物");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (CollUtil.isNotEmpty(putDeviceCodeList)){
|
||||||
|
//查找无货的防货点
|
||||||
|
for (String deviceCode : putDeviceCodeList) {
|
||||||
|
JSONObject jsonStar = wo.query("device_code ='" + deviceCode + "'").uniqueResult(0);
|
||||||
|
if (MapUtil.isNotEmpty(jsonStar) && "1".equals(jsonStar.get("hasgoods")) && tray_Information_str.equals(jsonStar.get("material_type"))){
|
||||||
|
startCode = deviceCode;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (startCode == null){
|
||||||
|
logServer.deviceExecuteLog(this.device_code, "", "", "起点无货物可取或者物料类型不匹配");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
List<TaskDto> taskDtos = taskserver.queryTaskByEndDeviceCodeAndStatus(on_off_site_str);
|
||||||
|
if (CollUtil.isNotEmpty(taskDtos)){
|
||||||
|
logServer.deviceExecuteLog(this.device_code, "", "", "已存在"+startCode+"为终点就绪或执行的任务");
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
RouteLineDto routeLineDto = routeLineDtos.get(0);
|
|
||||||
TaskDto taskDto = new TaskDto();
|
TaskDto taskDto = new TaskDto();
|
||||||
taskDto.setStart_device_code(routeLineDto.getDevice_code());
|
taskDto.setStart_device_code(startCode);
|
||||||
taskDto.setNext_device_code(on_off_site);
|
taskDto.setNext_device_code(on_off_site_str);
|
||||||
taskDto.setStart_point_code(routeLineDto.getDevice_code());
|
taskDto.setStart_point_code(startCode);
|
||||||
taskDto.setNext_point_code(on_off_site);
|
taskDto.setNext_point_code(on_off_site_str);
|
||||||
taskDto.setExecute_code(this.device_code);
|
taskDto.setExecute_code(this.device_code);
|
||||||
taskDto.setExecute_message("up");
|
taskDto.setExecute_message("up");
|
||||||
|
taskDto.setTask_type("3");
|
||||||
taskserver.create(taskDto);
|
taskserver.create(taskDto);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -13,12 +13,11 @@ import java.util.List;
|
|||||||
@Setter
|
@Setter
|
||||||
public class ItemProtocol {
|
public class ItemProtocol {
|
||||||
|
|
||||||
public static String item_heartbeat = "heartbeat";
|
|
||||||
public static String item_on_off_site = "on_off_site";
|
public static String item_on_off_site = "on_off_site";
|
||||||
public static String item_tray_Information = "tray_Information";
|
public static String item_tray_Information = "tray_Information";
|
||||||
public static String item_down_request = "down_request";
|
public static String item_down_request = "down_request";
|
||||||
public static String item_up_request = "up_request";
|
public static String item_up_request = "up_request";
|
||||||
public static String item_to_up_finished = "to_up_finished ";
|
public static String item_to_up_finished = "to_up_finished";
|
||||||
public static String item_to_down_finished = "to_down_finished";
|
public static String item_to_down_finished = "to_down_finished";
|
||||||
|
|
||||||
|
|
||||||
@@ -29,16 +28,14 @@ public class ItemProtocol {
|
|||||||
this.driver = driver;
|
this.driver = driver;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getItem_heartbeat() {
|
|
||||||
return this.getOpcIntegerValue(item_heartbeat);
|
|
||||||
|
public int getItem_on_off_site() {
|
||||||
|
return this.getOpcIntegerValue(item_on_off_site);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getItem_on_off_site() {
|
public int getItem_tray_Information() {
|
||||||
return this.getOpcStringValue(item_on_off_site);
|
return this.getOpcIntegerValue(item_tray_Information);
|
||||||
}
|
|
||||||
|
|
||||||
public String getItem_tray_Information() {
|
|
||||||
return this.getOpcStringValue(item_tray_Information);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getItem_down_request() {
|
public int getItem_down_request() {
|
||||||
@@ -75,7 +72,6 @@ public class ItemProtocol {
|
|||||||
|
|
||||||
public static List<ItemDTO> getReadableItemDtos() {
|
public static List<ItemDTO> getReadableItemDtos() {
|
||||||
ArrayList list = new ArrayList();
|
ArrayList list = new ArrayList();
|
||||||
list.add(new ItemDTO(item_heartbeat, "心跳", "VW0"));
|
|
||||||
list.add(new ItemDTO(item_on_off_site, "上下站点", "VW2"));
|
list.add(new ItemDTO(item_on_off_site, "上下站点", "VW2"));
|
||||||
list.add(new ItemDTO(item_tray_Information, "料盘信息", "VW4"));
|
list.add(new ItemDTO(item_tray_Information, "料盘信息", "VW4"));
|
||||||
list.add(new ItemDTO(item_down_request, "下料请求", "VW6"));
|
list.add(new ItemDTO(item_down_request, "下料请求", "VW6"));
|
||||||
|
|||||||
@@ -242,4 +242,11 @@ public interface TaskService {
|
|||||||
*/
|
*/
|
||||||
List<TaskDto> queryTaskByDeviceCodeAndStatus(String device_code);
|
List<TaskDto> queryTaskByDeviceCodeAndStatus(String device_code);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据终点设备号和任务状态查询
|
||||||
|
* @param device_code
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
List<TaskDto> queryTaskByEndDeviceCodeAndStatus(String device_code);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -728,10 +728,10 @@ public class TaskServiceImpl implements TaskService, ApplicationAutoInitial {
|
|||||||
rpUpdate.put("update_time", DateUtil.now());
|
rpUpdate.put("update_time", DateUtil.now());
|
||||||
String device_code3 = "";
|
String device_code3 = "";
|
||||||
String device_code4 = "";
|
String device_code4 = "";
|
||||||
if (device3 != null){
|
if (device3 != null) {
|
||||||
device_code3 = device3.getDevice_code();
|
device_code3 = device3.getDevice_code();
|
||||||
}
|
}
|
||||||
if (device4 != null){
|
if (device4 != null) {
|
||||||
device_code4 = device4.getDevice_code();
|
device_code4 = device4.getDevice_code();
|
||||||
}
|
}
|
||||||
WQLObject.getWQLObject("acs_device_runpoint").update(rpUpdate, "device_code IN ('" + device1.getDevice_code() + "', '" + device2.getDevice_code() + "', '" + device_code3 + "', '" + device_code4 + "')");
|
WQLObject.getWQLObject("acs_device_runpoint").update(rpUpdate, "device_code IN ('" + device1.getDevice_code() + "', '" + device2.getDevice_code() + "', '" + device_code3 + "', '" + device_code4 + "')");
|
||||||
@@ -1226,11 +1226,22 @@ public class TaskServiceImpl implements TaskService, ApplicationAutoInitial {
|
|||||||
Iterator<TaskDto> iterator = tasks.iterator();
|
Iterator<TaskDto> iterator = tasks.iterator();
|
||||||
while (iterator.hasNext()) {
|
while (iterator.hasNext()) {
|
||||||
TaskDto task = iterator.next();
|
TaskDto task = iterator.next();
|
||||||
if (task.getStart_device_code().equals(device_code) && StrUtil.equals(task.getTask_status(), "1")) {
|
if (task.getStart_device_code().equals(device_code) && (StrUtil.equals(task.getTask_status(), "1") || StrUtil.equals(task.getTask_status(), "0"))) {
|
||||||
Instruction instruction = instructionService.findByTaskcodeAndStatus(task.getTask_code());
|
list.add(task);
|
||||||
if (ObjectUtil.isNotEmpty(instruction)) {
|
}
|
||||||
list.add(task);
|
}
|
||||||
}
|
return list;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<TaskDto> queryTaskByEndDeviceCodeAndStatus(String device_code) {
|
||||||
|
List<TaskDto> list = new ArrayList<>();
|
||||||
|
Iterator<TaskDto> iterator = tasks.iterator();
|
||||||
|
while (iterator.hasNext()) {
|
||||||
|
TaskDto task = iterator.next();
|
||||||
|
if (task.getNext_device_code().equals(device_code) && (StrUtil.equals(task.getTask_status(), "1") || StrUtil.equals(task.getTask_status(), "0"))) {
|
||||||
|
list.add(task);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return list;
|
return list;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ window.g = {
|
|||||||
VUE_APP_BASE_API: 'http://127.0.0.1:8010'
|
VUE_APP_BASE_API: 'http://127.0.0.1:8010'
|
||||||
},
|
},
|
||||||
prod: {
|
prod: {
|
||||||
VUE_APP_BASE_API: 'http://10.93.41.198:8010'
|
VUE_APP_BASE_API: 'http://188.188.69.101:8010'
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -67,17 +67,14 @@
|
|||||||
<el-form ref="form" :inline="true" :model="form" :rules="rules" size="small" label-width="78px">
|
<el-form ref="form" :inline="true" :model="form" :rules="rules" size="small" label-width="78px">
|
||||||
|
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="最大数量">
|
<el-col :span="10">
|
||||||
<el-input v-model="form.max_emptypalletnum" />
|
<el-form-item label="下料配置" prop="device_code">
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="关联设备" prop="device_code">
|
|
||||||
<el-select
|
<el-select
|
||||||
v-model="form.link_device_code"
|
v-model="form.get_device_code"
|
||||||
clearable
|
|
||||||
filterable
|
filterable
|
||||||
|
multiple
|
||||||
|
clearable
|
||||||
placeholder="请选择"
|
placeholder="请选择"
|
||||||
>
|
>
|
||||||
<el-option
|
<el-option
|
||||||
@@ -89,11 +86,12 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="10">
|
||||||
<el-form-item label="关联三色灯" prop="device_code" label-width="100px">
|
<el-form-item label="上料配置" prop="device_code">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="form.link_three_lamp"
|
v-model="form.put_device_code"
|
||||||
filterable
|
filterable
|
||||||
|
multiple
|
||||||
clearable
|
clearable
|
||||||
placeholder="请选择"
|
placeholder="请选择"
|
||||||
>
|
>
|
||||||
@@ -107,23 +105,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row>
|
<el-row />
|
||||||
<el-tooltip class="item" effect="dark" content="创建设备点位记录有无货信号" placement="bottom-end">
|
|
||||||
<el-form-item label="站点管理" label-width="150px">
|
|
||||||
<el-switch v-model="form.station_manager" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-tooltip>
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="清除" label-width="80px">
|
|
||||||
<el-switch v-model="form.auto_clean_task" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="是否输入物料" label-width="150px">
|
|
||||||
<el-switch v-model="form.input_material" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</el-form>
|
</el-form>
|
||||||
</el-card>
|
</el-card>
|
||||||
|
|
||||||
@@ -294,7 +276,9 @@ export default {
|
|||||||
manual_create_task: true,
|
manual_create_task: true,
|
||||||
is_pickup: true,
|
is_pickup: true,
|
||||||
is_release: true,
|
is_release: true,
|
||||||
link_device_code: ''
|
link_device_code: '',
|
||||||
|
get_device_code: [],
|
||||||
|
put_device_code: []
|
||||||
},
|
},
|
||||||
rules: {}
|
rules: {}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user