添加字段

This commit is contained in:
xuzhiheng
2025-06-26 11:55:07 +08:00
parent bb878f6dc8
commit 64adb38fed
3 changed files with 9 additions and 2 deletions

View File

@@ -471,7 +471,7 @@ public class LoopbackCommunicationAdapter
ACTION_STATUS = true;
//下发动作
ExecuteAction.sendCmd(getProcessModel().getName(), getProcessModel().getPosition(), command.getOperation(), getSerialNum());
ExecuteAction.sendCmd(command.getTransportOrder().getName(), getProcessModel().getName(), getProcessModel().getPosition(), command.getOperation(), getSerialNum());
//进入阻塞
while (ACTION_STATUS) {
@@ -871,6 +871,7 @@ public class LoopbackCommunicationAdapter
*/
private void handleActionStatus(AgvActionStatus agvActionStatus) {
if (agvActionStatus.getStatus()) {
// System.out.println("handleActionStatus: ======");
ACTION_STATUS = false;
}
}