From ab0193f955b64f5ab8636c46b5d1f0f86fde8806 Mon Sep 17 00:00:00 2001 From: zjj <3272660260@qq.com> Date: 星期四, 07 八月 2025 13:41:12 +0800 Subject: [PATCH] # --- src/main/java/com/zy/asrs/service/impl/CommandInfoServiceImpl.java | 75 +++++++++++++++++++++++++++++++++++++ 1 files changed, 75 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/zy/asrs/service/impl/CommandInfoServiceImpl.java b/src/main/java/com/zy/asrs/service/impl/CommandInfoServiceImpl.java index 39fb0ab..f0fa940 100644 --- a/src/main/java/com/zy/asrs/service/impl/CommandInfoServiceImpl.java +++ b/src/main/java/com/zy/asrs/service/impl/CommandInfoServiceImpl.java @@ -1,12 +1,87 @@ package com.zy.asrs.service.impl; +import com.alibaba.fastjson.JSON; +import com.baomidou.mybatisplus.mapper.EntityWrapper; +import com.zy.asrs.entity.CommandInfoLog; +import com.zy.asrs.entity.TaskWrk; import com.zy.asrs.mapper.CommandInfoMapper; import com.zy.asrs.entity.CommandInfo; +import com.zy.asrs.service.CommandInfoLogService; import com.zy.asrs.service.CommandInfoService; import com.baomidou.mybatisplus.service.impl.ServiceImpl; +import com.zy.asrs.service.TaskWrkService; +import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; + +import java.util.List; @Service("commandInfoService") public class CommandInfoServiceImpl extends ServiceImpl<CommandInfoMapper, CommandInfo> implements CommandInfoService { + @Autowired + private CommandInfoLogService commandInfoLogService; + @Autowired + private TaskWrkService taskWrkService; + @Autowired + private CommandInfoService commandInfoService; + + @Override + public List<CommandInfo> selectByTaskNoAndWrkNo(String taskNo, Integer wrkNo) { + return this.baseMapper.selectByTaskNoAndWrkNo(taskNo, wrkNo); + } + + @Override + public List<CommandInfo> selectByWrkNo(Integer wrkNo) { + return this.baseMapper.selectByWrkNo(wrkNo); + } + + @Override + public List<CommandInfo> selectByTaskNo(String taskNo) { + return this.baseMapper.selectByTaskNo(taskNo); + } + + @Override + public int saveToHistory(String taskNo) { + int count = 0; + if (this.selectByTaskNo(taskNo).isEmpty()) { + return count; + } + for (CommandInfo commandInfo : this.baseMapper.selectByTaskNo(taskNo)) { + String jsonString = JSON.toJSONString(commandInfo); + CommandInfoLog commandInfoLog = JSON.parseObject(jsonString, CommandInfoLog.class); + commandInfoLog.setId(null); + if (commandInfoLogService.insert(commandInfoLog)) { + count++; + } + } + return count; + } + + @Override + public boolean saveToHistory(Integer id) { + CommandInfo commandInfo = this.baseMapper.selectById(id); + String jsonString = JSON.toJSONString(commandInfo); + CommandInfoLog commandInfoLog = JSON.parseObject(jsonString, CommandInfoLog.class); + commandInfoLog.setId(null); + boolean result1 = commandInfoLogService.insert(commandInfoLog); + Integer result2 = this.baseMapper.deleteById(id); + return result1 && result2 > 0; + } + + @Override + public List<CommandInfo> selectCompleteManualCommand() { + return this.baseMapper.selectCompleteManualCommand(); + } + + @Override + public void clearCommandInfo() { + int count = taskWrkService.selectCount(new EntityWrapper<TaskWrk>()); + if (count != 0){ + return; + } + int count1 = commandInfoService.selectCount(new EntityWrapper<CommandInfo>()); + if (count1 != 0){ + commandInfoService.delete(new EntityWrapper<>()); + } + } } -- Gitblit v1.9.1