From be412111689a7f27abfadb1241dfa5b70ac4c170 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期三, 12 十月 2022 16:02:21 +0800 Subject: [PATCH] # --- src/main/java/com/zy/core/model/protocol/SteProtocol.java | 73 +++++++++++++++++++++++++++++++----- 1 files changed, 62 insertions(+), 11 deletions(-) diff --git a/src/main/java/com/zy/core/model/protocol/SteProtocol.java b/src/main/java/com/zy/core/model/protocol/SteProtocol.java index cab04bd..42515cc 100644 --- a/src/main/java/com/zy/core/model/protocol/SteProtocol.java +++ b/src/main/java/com/zy/core/model/protocol/SteProtocol.java @@ -1,15 +1,19 @@ package com.zy.core.model.protocol; import com.core.common.Cools; +import com.core.common.SpringUtils; import com.zy.asrs.entity.BasSte; +import com.zy.asrs.service.BasSteService; import com.zy.core.enums.SteHisTaskStatusType; import com.zy.core.enums.SteLocaType; import com.zy.core.enums.SteStatusType; import lombok.Data; +import lombok.extern.slf4j.Slf4j; /** * Created by vincent on 2020/8/7 */ +@Slf4j @Data public class SteProtocol { @@ -181,6 +185,17 @@ */ public Short crnAllowRun; + /** + * 鍏呯數鐘舵�� 1锛氬湪鍏呯數锛�0锛氫笉鍦ㄥ厖鐢� + */ + private Short chargeStatus; + + // 鍏ュ簱鍙栫┖ + private Boolean inEmpty; + + // 鍑哄簱鍙栫┖ + private Boolean outEmpty; + public void setStatus(Short status){ this.status = status; this.statusType = SteStatusType.get(status); @@ -225,23 +240,40 @@ basSte.setSteErr(alarm.longValue()); } basSte.setWrkNo(taskNo.intValue()); - if (!Cools.isEmpty(row)) { - basSte.setRow(row.intValue()); - } - if (!Cools.isEmpty(bay)) { - basSte.setBay(bay.intValue()); - } - if (!Cools.isEmpty(lev)) { - basSte.setLev(lev.intValue()); - } +// if (basSte.getPakMk().equals("N")) { +// if (!Cools.isEmpty(row)) { +// basSte.setRow(row.intValue()); +// } +// if (!Cools.isEmpty(bay)) { +// basSte.setBay(bay.intValue()); +// } +// if (!Cools.isEmpty(lev)) { +// basSte.setLev(lev.intValue()); +// } +// } return basSte; } // 鏄惁澶勪簬绌洪棽寰呭懡鐘舵�� public Boolean isIdle() { - return this.statusType.equals(SteStatusType.IDLE) + boolean res = this.statusType.equals(SteStatusType.IDLE) && this.pakMk.equals("N") - && !isAlarm(); + && !isAlarm() + && this.chargeStatus == 0 + && isEnable() + ; + if (!res) { + return res; + } else { + // 鐢甸噺 + try { + String chargeLine = SpringUtils.getBean(BasSteService.class).selectById(this.steNo).getChargeLine(); + return charge > Float.parseFloat(chargeLine); + } catch (Exception e) { + log.error("fail", e); + return false; + } + } } // 鏄惁澶勪簬鎶ヨ鐘舵�� @@ -249,4 +281,23 @@ return this.alarm > 1; } + public Boolean isEnable() { + if (Cools.isEmpty(row)) { + if (row == 0) { + return false; + } + } + if (Cools.isEmpty(bay)) { + if (bay == 0) { + return false; + } + } + if (Cools.isEmpty(lev)) { + if (lev == 0) { + return false; + } + } + return true; + } + } -- Gitblit v1.9.1