修改接口完成

master
wanghao 5 months ago
parent 26e38e002f
commit 83015c3e60

@ -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<MultipartFile> files) {
public AjaxResult bfSubmit(String epc, String reason, String user, int type, String remark, List<MultipartFile> 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) {

@ -5,7 +5,7 @@
<select id="selectLedgerbyEpcForOutStore" resultType="string">
select rifd_code from ledger_rfid where rifd_code = #{epc}
and is_scrap = 1
and is_scrap in (1,4)
and location_type = '1'
limit 1
</select>
@ -59,6 +59,7 @@
SET
location_type = '2',
location_code = #{outStoreDto.areaCode},
is_scrap =1,
update_time = now()
WHERE rifd_code =#{epc}
</update>

@ -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")

@ -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,16 +22,13 @@ 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)
{
@ -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();

@ -7,7 +7,7 @@ import org.springframework.stereotype.Repository;
* Mapper
*
* @author wangh
* @date 2024-01-26
* @date 2024-11-08
*/
@Repository
public interface RecordInvalidatedMapper

@ -7,7 +7,7 @@ import com.ruoyi.manage.domain.RecordInvalidated;
* Service
*
* @author wangh
* @date 2024-01-26
* @date 2024-11-08
*/
public interface IRecordInvalidatedService
{

@ -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);
}

@ -7,21 +7,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<resultMap type="RecordInvalidated" id="RecordInvalidatedResult">
<result property="objid" column="objid" />
<result property="epc" column="epc" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="typeName" column="type_name" />
<result property="reason" column="reason" />
<result property="remark" column="remark" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
</resultMap>
<sql id="selectRecordInvalidatedVo">
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
</sql>
<select id="selectRecordInvalidatedList" parameterType="RecordInvalidated" resultMap="RecordInvalidatedResult">
<include refid="selectRecordInvalidatedVo"/>
<where>
<if test="epc != null and epc != ''"> and epc = #{epc}</if>
<if test="createBy != null and createBy != ''"> and create_by = #{createBy}</if>
<if test="typeName != null "> and type_name = #{typeName}</if>
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
</where>
</select>
@ -35,15 +36,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
insert into record_invalidated
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="epc != null">epc,</if>
<if test="typeName != null">type_name,</if>
<if test="reason != null">reason,</if>
<if test="remark != null">remark,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="remark != null">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="epc != null">#{epc},</if>
<if test="typeName != null">#{typeName},</if>
<if test="reason != null">#{reason},</if>
<if test="remark != null">#{remark},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="remark != null">#{remark },</if>
</trim>
</insert>
@ -51,6 +56,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
update record_invalidated
<trim prefix="SET" suffixOverrides=",">
<if test="epc != null">epc = #{epc},</if>
<if test="typeName != null">type_name = #{typeName},</if>
<if test="reason != null">reason = #{reason},</if>
<if test="remark != null">remark = #{remark},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
</trim>

@ -12,6 +12,26 @@
<input name="epc" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">异常类型:</label>
<div class="col-sm-8">
<select name="typeName" class="form-control m-b" th:with="type=${@dict.getType('bf_y_n')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">原因:</label>
<div class="col-sm-8">
<input name="reason" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">其他说明:</label>
<div class="col-sm-8">
<input name="remark" class="form-control" type="text">
</div>
</div>
</form>
</div>
<th:block th:include="include :: footer" />

@ -13,6 +13,26 @@
<input name="epc" th:field="*{epc}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">异常类型:</label>
<div class="col-sm-8">
<select name="typeName" class="form-control m-b" th:with="type=${@dict.getType('bf_y_n')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{typeName}"></option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">原因:</label>
<div class="col-sm-8">
<input name="reason" th:field="*{reason}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">其他说明:</label>
<div class="col-sm-8">
<input name="remark" th:field="*{remark}" class="form-control" type="text">
</div>
</div>
</form>
</div>
<th:block th:include="include :: footer" />

@ -1,10 +1,10 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head>
<th:block th:include="include :: header('轮挡报废记录列表')"/>
<th:block th:include="include :: header('轮挡报废记录列表')" />
</head>
<body class="gray-bg">
<div class="container-div">
<div class="container-div">
<div class="row">
<div class="col-sm-12 search-collapse">
<form id="formId">
@ -15,22 +15,21 @@
<input type="text" name="epc"/>
</li>
<li>
<label>操作人:</label>
<input type="text" name="createBy"/>
<label>异常类型:</label>
<select name="typeName" th:with="type=${@dict.getType('bf_y_n')}">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</li>
<li class="select-time">
<label>报废时间:</label>
<input type="text" class="time-input" id="startTime" placeholder="开始时间"
name="params[beginCreateTime]"/>
<label>提交时间:</label>
<input type="text" class="time-input" id="startTime" placeholder="开始时间" name="params[beginCreateTime]"/>
<span>-</span>
<input type="text" class="time-input" id="endTime" placeholder="结束时间"
name="params[endCreateTime]"/>
<input type="text" class="time-input" id="endTime" placeholder="结束时间" name="params[endCreateTime]"/>
</li>
<li>
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i
class="fa fa-search"></i>&nbsp;搜索</a>
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i
class="fa fa-refresh"></i>&nbsp;重置</a>
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
</li>
</ul>
</div>
@ -38,19 +37,16 @@
</div>
<div class="btn-group-sm" id="toolbar" role="group">
<!-- <a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="manage:record_invalidated:add">
<a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="manage:record_invalidated:add">
<i class="fa fa-plus"></i> 添加
</a>
<a class="btn btn-primary single disabled" onclick="$.operate.edit()"
shiro:hasPermission="manage:record_invalidated:edit">
<a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="manage:record_invalidated:edit">
<i class="fa fa-edit"></i> 修改
</a>
<a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()"
shiro:hasPermission="manage:record_invalidated:remove">
<a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="manage:record_invalidated:remove">
<i class="fa fa-remove"></i> 删除
</a>-->
<a class="btn btn-warning" onclick="$.table.exportExcel()"
shiro:hasPermission="manage:record_invalidated:export">
</a>
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="manage:record_invalidated:export">
<i class="fa fa-download"></i> 导出
</a>
</div>
@ -58,14 +54,15 @@
<table id="bootstrap-table"></table>
</div>
</div>
</div>
<th:block th:include="include :: footer"/>
<script th:inline="javascript">
</div>
<th:block th:include="include :: footer" />
<script th:inline="javascript">
var editFlag = [[${@permission.hasPermi('manage:record_invalidated:edit')}]];
var removeFlag = [[${@permission.hasPermi('manage:record_invalidated:remove')}]];
var typeNameDatas = [[${@dict.getType('bf_y_n')}]];
var prefix = ctx + "manage/record_invalidated";
$(function () {
$(function() {
var options = {
url: prefix + "/list",
createUrl: prefix + "/add",
@ -91,27 +88,33 @@
field: 'epc',
title: 'RFID'
},
{
field: 'typeName',
title: '异常类型',
formatter: function(value, row, index) {
return $.table.selectDictLabel(typeNameDatas, value);
}
},
{
field: 'reason',
title: '报废原因'
title: '原因'
},
{
field: 'remark',
title: '其他说明'
},
{
field: 'createBy',
title: '操作人'
},
{
field: 'createTime',
title: '报废时间'
title: '提交时间'
},
{
title: '操作',
align: 'center',
formatter: function (value, row, index) {
formatter: function(value, row, index) {
var actions = [];
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.objid + '\')"><i class="fa fa-edit"></i>编辑</a> ');
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.objid + '\')"><i class="fa fa-remove"></i>删除</a>');
@ -121,8 +124,6 @@
};
$.table.init(options);
});
initinspectionTable = function (index, row, $detail) {
var childTable = $detail.html('<table style="table-layout:fixed"></table>').find('table');
@ -160,6 +161,6 @@
]
});
};
</script>
</script>
</body>
</html>
Loading…
Cancel
Save