diff --git a/ruoyi-api/src/main/java/com/ruoyi/api/controller/ApiController.java b/ruoyi-api/src/main/java/com/ruoyi/api/controller/ApiController.java index bc5715c..52bd975 100644 --- a/ruoyi-api/src/main/java/com/ruoyi/api/controller/ApiController.java +++ b/ruoyi-api/src/main/java/com/ruoyi/api/controller/ApiController.java @@ -187,7 +187,7 @@ public class ApiController { @PostMapping("/inspection/skipTask") public AjaxResult inspectionSubmit(long tableId, String remark) { - apiService.updataInspectionTaskByObjid(tableId,remark,"跳过"); + apiService.updataInspectionTaskByObjid(tableId, remark, "跳过"); return success(); } @@ -199,7 +199,7 @@ public class ApiController { apiService.deleteInspectionInfo(locationCode, inspectionId); apiService.insertInspectionInfo(list, inspectionId); //修改task状态 - apiService.updataInspectionTaskByObjid(tableId,null,"已完成"); + apiService.updataInspectionTaskByObjid(tableId, null, "已完成"); //存储图片,插库 String filePath = RuoYiConfig.getUploadPath() + "/inspection"; @@ -287,18 +287,17 @@ public class ApiController { * @return */ @PostMapping("/bf/submit") - public AjaxResult bfSubmit(String epc, String reason, String user, String remark, List files) { + public AjaxResult bfSubmit(String epc, String reason, String user, int type, String remark, List files) { //插入记录 RecordInvalidated recordInvalidated = new RecordInvalidated(); + recordInvalidated.setReason(reason); recordInvalidated.setEpc(epc); recordInvalidated.setCreateBy(user); recordInvalidated.setRemark(remark); + recordInvalidated.setTypeName(Long.valueOf(type)); recordInvalidatedService.insertRecordInvalidated(recordInvalidated); - // - //修改台账 - apiService.updataLedgerForBf(epc, "2"); - + apiService.updataLedgerForBf(epc, type+""); //存储图片,插库 String filePath = RuoYiConfig.getUploadPath() + "/inspection"; if (files != null && files.size() > 0) { diff --git a/ruoyi-api/src/main/resources/mapper/ApiMapper.xml b/ruoyi-api/src/main/resources/mapper/ApiMapper.xml index a7dcec5..687fa1d 100644 --- a/ruoyi-api/src/main/resources/mapper/ApiMapper.xml +++ b/ruoyi-api/src/main/resources/mapper/ApiMapper.xml @@ -5,7 +5,7 @@ @@ -59,6 +59,7 @@ SET location_type = '2', location_code = #{outStoreDto.areaCode}, + is_scrap =1, update_time = now() WHERE rifd_code =#{epc} diff --git a/ruoyi-manage/src/main/java/com/ruoyi/manage/controller/RecordInvalidatedController.java b/ruoyi-manage/src/main/java/com/ruoyi/manage/controller/RecordInvalidatedController.java index 696a2f0..b5486c0 100644 --- a/ruoyi-manage/src/main/java/com/ruoyi/manage/controller/RecordInvalidatedController.java +++ b/ruoyi-manage/src/main/java/com/ruoyi/manage/controller/RecordInvalidatedController.java @@ -23,7 +23,7 @@ import com.ruoyi.common.core.page.TableDataInfo; * 轮挡报废记录Controller * * @author wangh - * @date 2024-01-26 + * @date 2024-11-08 */ @Controller @RequestMapping("/manage/record_invalidated") diff --git a/ruoyi-manage/src/main/java/com/ruoyi/manage/domain/RecordInvalidated.java b/ruoyi-manage/src/main/java/com/ruoyi/manage/domain/RecordInvalidated.java index c7ee98b..6b627e0 100644 --- a/ruoyi-manage/src/main/java/com/ruoyi/manage/domain/RecordInvalidated.java +++ b/ruoyi-manage/src/main/java/com/ruoyi/manage/domain/RecordInvalidated.java @@ -9,7 +9,7 @@ import com.ruoyi.common.core.domain.BaseEntity; * 轮挡报废记录对象 record_invalidated * * @author wangh - * @date 2024-01-26 + * @date 2024-11-08 */ public class RecordInvalidated extends BaseEntity { @@ -22,18 +22,15 @@ public class RecordInvalidated extends BaseEntity @Excel(name = "RFID") private String epc; - private String reason; - - - public String getReason() { - return reason; - } + /** 异常类型 */ + @Excel(name = "异常类型") + private Long typeName; - public void setReason(String reason) { - this.reason = reason; - } + /** 原因 */ + @Excel(name = "原因") + private String reason; - public void setObjid(Long objid) + public void setObjid(Long objid) { this.objid = objid; } @@ -51,12 +48,33 @@ public class RecordInvalidated extends BaseEntity { return epc; } + public void setTypeName(Long typeName) + { + this.typeName = typeName; + } + + public Long getTypeName() + { + return typeName; + } + public void setReason(String reason) + { + this.reason = reason; + } + + public String getReason() + { + return reason; + } @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) .append("objid", getObjid()) .append("epc", getEpc()) + .append("typeName", getTypeName()) + .append("reason", getReason()) + .append("remark", getRemark()) .append("createBy", getCreateBy()) .append("createTime", getCreateTime()) .toString(); diff --git a/ruoyi-manage/src/main/java/com/ruoyi/manage/mapper/RecordInvalidatedMapper.java b/ruoyi-manage/src/main/java/com/ruoyi/manage/mapper/RecordInvalidatedMapper.java index 0b1f8b3..90d350c 100644 --- a/ruoyi-manage/src/main/java/com/ruoyi/manage/mapper/RecordInvalidatedMapper.java +++ b/ruoyi-manage/src/main/java/com/ruoyi/manage/mapper/RecordInvalidatedMapper.java @@ -7,7 +7,7 @@ import org.springframework.stereotype.Repository; * 轮挡报废记录Mapper接口 * * @author wangh - * @date 2024-01-26 + * @date 2024-11-08 */ @Repository public interface RecordInvalidatedMapper diff --git a/ruoyi-manage/src/main/java/com/ruoyi/manage/service/IRecordInvalidatedService.java b/ruoyi-manage/src/main/java/com/ruoyi/manage/service/IRecordInvalidatedService.java index 81af1c4..0b2b14c 100644 --- a/ruoyi-manage/src/main/java/com/ruoyi/manage/service/IRecordInvalidatedService.java +++ b/ruoyi-manage/src/main/java/com/ruoyi/manage/service/IRecordInvalidatedService.java @@ -7,7 +7,7 @@ import com.ruoyi.manage.domain.RecordInvalidated; * 轮挡报废记录Service接口 * * @author wangh - * @date 2024-01-26 + * @date 2024-11-08 */ public interface IRecordInvalidatedService { diff --git a/ruoyi-manage/src/main/java/com/ruoyi/manage/service/impl/RecordInvalidatedServiceImpl.java b/ruoyi-manage/src/main/java/com/ruoyi/manage/service/impl/RecordInvalidatedServiceImpl.java index 9bbcb1a..dccc481 100644 --- a/ruoyi-manage/src/main/java/com/ruoyi/manage/service/impl/RecordInvalidatedServiceImpl.java +++ b/ruoyi-manage/src/main/java/com/ruoyi/manage/service/impl/RecordInvalidatedServiceImpl.java @@ -16,7 +16,7 @@ import com.ruoyi.common.core.text.Convert; * 轮挡报废记录Service业务层处理 * * @author wangh - * @date 2024-01-26 + * @date 2024-11-08 */ @Service public class RecordInvalidatedServiceImpl implements IRecordInvalidatedService { @@ -53,6 +53,10 @@ public class RecordInvalidatedServiceImpl implements IRecordInvalidatedService { */ @Override public int insertRecordInvalidated(RecordInvalidated recordInvalidated) { + + // if (recordInvalidated.getCreateBy()==null){ + // recordInvalidated.setCreateBy(ShiroUtils.getLoginName()); + // } recordInvalidated.setCreateTime(DateUtils.getNowDate()); return recordInvalidatedMapper.insertRecordInvalidated(recordInvalidated); } diff --git a/ruoyi-manage/src/main/resources/mapper/manage/RecordInvalidatedMapper.xml b/ruoyi-manage/src/main/resources/mapper/manage/RecordInvalidatedMapper.xml index 8723136..f70f9ef 100644 --- a/ruoyi-manage/src/main/resources/mapper/manage/RecordInvalidatedMapper.xml +++ b/ruoyi-manage/src/main/resources/mapper/manage/RecordInvalidatedMapper.xml @@ -7,21 +7,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - - + + + - select objid, epc, create_by, create_time,reason,remark from record_invalidated + select objid, epc, type_name, reason, remark, create_by, create_time from record_invalidated @@ -35,15 +36,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" insert into record_invalidated epc, + type_name, + reason, + remark, create_by, create_time, - remark, #{epc}, + #{typeName}, + #{reason}, + #{remark}, #{createBy}, #{createTime}, - #{remark }, @@ -51,6 +56,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" update record_invalidated epc = #{epc}, + type_name = #{typeName}, + reason = #{reason}, + remark = #{remark}, create_by = #{createBy}, create_time = #{createTime}, diff --git a/ruoyi-manage/src/main/resources/templates/manage/record_invalidated/add.html b/ruoyi-manage/src/main/resources/templates/manage/record_invalidated/add.html index 393e61f..c3d5aef 100644 --- a/ruoyi-manage/src/main/resources/templates/manage/record_invalidated/add.html +++ b/ruoyi-manage/src/main/resources/templates/manage/record_invalidated/add.html @@ -12,6 +12,26 @@ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
diff --git a/ruoyi-manage/src/main/resources/templates/manage/record_invalidated/edit.html b/ruoyi-manage/src/main/resources/templates/manage/record_invalidated/edit.html index 2ae2e49..4d5cb2c 100644 --- a/ruoyi-manage/src/main/resources/templates/manage/record_invalidated/edit.html +++ b/ruoyi-manage/src/main/resources/templates/manage/record_invalidated/edit.html @@ -13,6 +13,26 @@ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
diff --git a/ruoyi-manage/src/main/resources/templates/manage/record_invalidated/record_invalidated.html b/ruoyi-manage/src/main/resources/templates/manage/record_invalidated/record_invalidated.html index a8c58ac..e3e1e38 100644 --- a/ruoyi-manage/src/main/resources/templates/manage/record_invalidated/record_invalidated.html +++ b/ruoyi-manage/src/main/resources/templates/manage/record_invalidated/record_invalidated.html @@ -1,87 +1,84 @@ - + -
-
-
-
-
-
    -
  • - - -
  • -
  • - - -
  • -
  • - - - - - -
  • -
  • -  搜索 -  重置 -
  • -
-
-
-
+
+
+
+
+
+
    +
  • + + +
  • +
  • + + +
  • +
  • + + + - + +
  • +
  • +  搜索 +  重置 +
  • +
+
+
+
- -
-
- - + } + }, + { + field: 'createBy', + title: '创建人' + }, + ] + }); + }; + \ No newline at end of file