修改接口完成

master
wanghao 5 months ago
parent 26e38e002f
commit 83015c3e60

@ -187,7 +187,7 @@ public class ApiController {
@PostMapping("/inspection/skipTask") @PostMapping("/inspection/skipTask")
public AjaxResult inspectionSubmit(long tableId, String remark) { public AjaxResult inspectionSubmit(long tableId, String remark) {
apiService.updataInspectionTaskByObjid(tableId,remark,"跳过"); apiService.updataInspectionTaskByObjid(tableId, remark, "跳过");
return success(); return success();
} }
@ -199,7 +199,7 @@ public class ApiController {
apiService.deleteInspectionInfo(locationCode, inspectionId); apiService.deleteInspectionInfo(locationCode, inspectionId);
apiService.insertInspectionInfo(list, inspectionId); apiService.insertInspectionInfo(list, inspectionId);
//修改task状态 //修改task状态
apiService.updataInspectionTaskByObjid(tableId,null,"已完成"); apiService.updataInspectionTaskByObjid(tableId, null, "已完成");
//存储图片,插库 //存储图片,插库
String filePath = RuoYiConfig.getUploadPath() + "/inspection"; String filePath = RuoYiConfig.getUploadPath() + "/inspection";
@ -287,18 +287,17 @@ public class ApiController {
* @return * @return
*/ */
@PostMapping("/bf/submit") @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 recordInvalidated = new RecordInvalidated();
recordInvalidated.setReason(reason);
recordInvalidated.setEpc(epc); recordInvalidated.setEpc(epc);
recordInvalidated.setCreateBy(user); recordInvalidated.setCreateBy(user);
recordInvalidated.setRemark(remark); recordInvalidated.setRemark(remark);
recordInvalidated.setTypeName(Long.valueOf(type));
recordInvalidatedService.insertRecordInvalidated(recordInvalidated); recordInvalidatedService.insertRecordInvalidated(recordInvalidated);
//
//修改台账 //修改台账
apiService.updataLedgerForBf(epc, "2"); apiService.updataLedgerForBf(epc, type+"");
//存储图片,插库 //存储图片,插库
String filePath = RuoYiConfig.getUploadPath() + "/inspection"; String filePath = RuoYiConfig.getUploadPath() + "/inspection";
if (files != null && files.size() > 0) { if (files != null && files.size() > 0) {

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

@ -23,7 +23,7 @@ import com.ruoyi.common.core.page.TableDataInfo;
* Controller * Controller
* *
* @author wangh * @author wangh
* @date 2024-01-26 * @date 2024-11-08
*/ */
@Controller @Controller
@RequestMapping("/manage/record_invalidated") @RequestMapping("/manage/record_invalidated")

@ -9,7 +9,7 @@ import com.ruoyi.common.core.domain.BaseEntity;
* record_invalidated * record_invalidated
* *
* @author wangh * @author wangh
* @date 2024-01-26 * @date 2024-11-08
*/ */
public class RecordInvalidated extends BaseEntity public class RecordInvalidated extends BaseEntity
{ {
@ -22,18 +22,15 @@ public class RecordInvalidated extends BaseEntity
@Excel(name = "RFID") @Excel(name = "RFID")
private String epc; private String epc;
private String reason; /** 异常类型 */
@Excel(name = "异常类型")
private Long typeName;
public String getReason() {
return reason;
}
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; this.objid = objid;
} }
@ -51,12 +48,33 @@ public class RecordInvalidated extends BaseEntity
{ {
return epc; 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 @Override
public String toString() { public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("objid", getObjid()) .append("objid", getObjid())
.append("epc", getEpc()) .append("epc", getEpc())
.append("typeName", getTypeName())
.append("reason", getReason())
.append("remark", getRemark())
.append("createBy", getCreateBy()) .append("createBy", getCreateBy())
.append("createTime", getCreateTime()) .append("createTime", getCreateTime())
.toString(); .toString();

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

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

@ -16,7 +16,7 @@ import com.ruoyi.common.core.text.Convert;
* Service * Service
* *
* @author wangh * @author wangh
* @date 2024-01-26 * @date 2024-11-08
*/ */
@Service @Service
public class RecordInvalidatedServiceImpl implements IRecordInvalidatedService { public class RecordInvalidatedServiceImpl implements IRecordInvalidatedService {
@ -53,6 +53,10 @@ public class RecordInvalidatedServiceImpl implements IRecordInvalidatedService {
*/ */
@Override @Override
public int insertRecordInvalidated(RecordInvalidated recordInvalidated) { public int insertRecordInvalidated(RecordInvalidated recordInvalidated) {
// if (recordInvalidated.getCreateBy()==null){
// recordInvalidated.setCreateBy(ShiroUtils.getLoginName());
// }
recordInvalidated.setCreateTime(DateUtils.getNowDate()); recordInvalidated.setCreateTime(DateUtils.getNowDate());
return recordInvalidatedMapper.insertRecordInvalidated(recordInvalidated); return recordInvalidatedMapper.insertRecordInvalidated(recordInvalidated);
} }

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

@ -12,6 +12,26 @@
<input name="epc" class="form-control" type="text"> <input name="epc" class="form-control" type="text">
</div> </div>
</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> </form>
</div> </div>
<th:block th:include="include :: footer" /> <th:block th:include="include :: footer" />

@ -13,6 +13,26 @@
<input name="epc" th:field="*{epc}" class="form-control" type="text"> <input name="epc" th:field="*{epc}" class="form-control" type="text">
</div> </div>
</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> </form>
</div> </div>
<th:block th:include="include :: footer" /> <th:block th:include="include :: footer" />

@ -1,87 +1,84 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro"> <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head> <head>
<th:block th:include="include :: header('轮挡报废记录列表')"/> <th:block th:include="include :: header('轮挡报废记录列表')" />
</head> </head>
<body class="gray-bg"> <body class="gray-bg">
<div class="container-div"> <div class="container-div">
<div class="row"> <div class="row">
<div class="col-sm-12 search-collapse"> <div class="col-sm-12 search-collapse">
<form id="formId"> <form id="formId">
<div class="select-list"> <div class="select-list">
<ul> <ul>
<li> <li>
<label>RFID</label> <label>RFID</label>
<input type="text" name="epc"/> <input type="text" name="epc"/>
</li> </li>
<li> <li>
<label>操作人:</label> <label>异常类型:</label>
<input type="text" name="createBy"/> <select name="typeName" th:with="type=${@dict.getType('bf_y_n')}">
</li> <option value="">所有</option>
<li class="select-time"> <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
<label>报废时间:</label> </select>
<input type="text" class="time-input" id="startTime" placeholder="开始时间" </li>
name="params[beginCreateTime]"/> <li class="select-time">
<span>-</span> <label>提交时间:</label>
<input type="text" class="time-input" id="endTime" placeholder="结束时间" <input type="text" class="time-input" id="startTime" placeholder="开始时间" name="params[beginCreateTime]"/>
name="params[endCreateTime]"/> <span>-</span>
</li> <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 <li>
class="fa fa-search"></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 <a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
class="fa fa-refresh"></i>&nbsp;重置</a> </li>
</li> </ul>
</ul> </div>
</div> </form>
</form> </div>
</div>
<div class="btn-group-sm" id="toolbar" role="group"> <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> 添加 <i class="fa fa-plus"></i> 添加
</a> </a>
<a class="btn btn-primary single disabled" onclick="$.operate.edit()" <a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="manage:record_invalidated:edit">
shiro:hasPermission="manage:record_invalidated:edit"> <i class="fa fa-edit"></i> 修改
<i class="fa fa-edit"></i> 修改 </a>
</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()" <i class="fa fa-remove"></i> 删除
shiro:hasPermission="manage:record_invalidated:remove"> </a>
<i class="fa fa-remove"></i> 删除 <a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="manage:record_invalidated:export">
</a>--> <i class="fa fa-download"></i> 导出
<a class="btn btn-warning" onclick="$.table.exportExcel()" </a>
shiro:hasPermission="manage:record_invalidated:export"> </div>
<i class="fa fa-download"></i> 导出 <div class="col-sm-12 select-table table-striped">
</a> <table id="bootstrap-table"></table>
</div> </div>
<div class="col-sm-12 select-table table-striped">
<table id="bootstrap-table"></table>
</div> </div>
</div> </div>
</div> <th:block th:include="include :: footer" />
<th:block th:include="include :: footer"/> <script th:inline="javascript">
<script th:inline="javascript"> var editFlag = [[${@permission.hasPermi('manage:record_invalidated:edit')}]];
var editFlag = [[${@permission.hasPermi('manage:record_invalidated:edit')}]]; var removeFlag = [[${@permission.hasPermi('manage:record_invalidated:remove')}]];
var removeFlag = [[${@permission.hasPermi('manage:record_invalidated:remove')}]]; var typeNameDatas = [[${@dict.getType('bf_y_n')}]];
var prefix = ctx + "manage/record_invalidated"; var prefix = ctx + "manage/record_invalidated";
$(function () { $(function() {
var options = { var options = {
url: prefix + "/list", url: prefix + "/list",
createUrl: prefix + "/add", createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}", updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove", removeUrl: prefix + "/remove",
exportUrl: prefix + "/export", exportUrl: prefix + "/export",
modalName: "轮挡报废记录", modalName: "轮挡报废记录",
sortOrder: "desc", sortOrder: "desc",
sortName: "createTime", sortName: "createTime",
detailView: true, detailView: true,
onExpandRow: function (index, row, $detail) { onExpandRow: function (index, row, $detail) {
initinspectionTable(index, row, $detail); initinspectionTable(index, row, $detail);
}, },
columns: [{ columns: [{
checkbox: true checkbox: true
}, },
{ {
field: 'objid', field: 'objid',
title: '主键', title: '主键',
@ -91,75 +88,79 @@
field: 'epc', field: 'epc',
title: 'RFID' title: 'RFID'
}, },
{
field: 'typeName',
title: '异常类型',
formatter: function(value, row, index) {
return $.table.selectDictLabel(typeNameDatas, value);
}
},
{ {
field: 'reason', field: 'reason',
title: '报废原因' title: '原因'
}, },
{ {
field: 'remark', field: 'remark',
title: '其他说明' title: '其他说明'
}, },
{ {
field: 'createBy', field: 'createBy',
title: '操作人' title: '操作人'
}, },
{ {
field: 'createTime', field: 'createTime',
title: '报废时间' title: '提交时间'
}, },
{ {
title: '操作', title: '操作',
align: 'center', align: 'center',
formatter: function (value, row, index) { formatter: function(value, row, index) {
var actions = []; 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-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>'); 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>');
return actions.join(''); return actions.join('');
} }
}] }]
}; };
$.table.init(options); $.table.init(options);
}); });
initinspectionTable = function (index, row, $detail) {
var childTable = $detail.html('<table style="table-layout:fixed"></table>').find('table');
initinspectionTable = function (index, row, $detail) {
var childTable = $detail.html('<table style="table-layout:fixed"></table>').find('table');
$(childTable).bootstrapTable({ $(childTable).bootstrapTable({
url: ctx + "manage/record_invalidated_img/list", url: ctx + "manage/record_invalidated_img/list",
method: 'post', method: 'post',
sidePagination: "server", sidePagination: "server",
contentType: "application/x-www-form-urlencoded", contentType: "application/x-www-form-urlencoded",
queryParams: { queryParams: {
invalidatedId: row.objid invalidatedId: row.objid
},
columns: [
{
title: '序号',
formatter: function (value, row, index) {
return index+1
}
}, },
{ columns: [
field: 'epc', {
title: 'RFID' title: '序号',
}, formatter: function (value, row, index) {
{ return index+1
field: 'imgPath', }
title: '图片', },
formatter: function (value, row, index) { {
return $.table.imageView(value, 818, 460, null); field: 'epc',
title: 'RFID'
},
{
field: 'imgPath',
title: '图片',
formatter: function (value, row, index) {
return $.table.imageView(value, 818, 460, null);
} }
}, },
{ {
field: 'createBy', field: 'createBy',
title: '创建人' title: '创建人'
}, },
] ]
}); });
}; };
</script> </script>
</body> </body>
</html> </html>
Loading…
Cancel
Save