fix:修复前端子卷号重复校验
This commit is contained in:
@@ -136,10 +136,25 @@ public class BstIvtPackageinfoivt extends Model<BstIvtPackageinfoivt> {
|
|||||||
private String plan;
|
private String plan;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 规划
|
* 所属等待点
|
||||||
*/
|
*/
|
||||||
private String wait_point_type;
|
private String wait_point_type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 排
|
||||||
|
*/
|
||||||
|
private String row_num;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 列
|
||||||
|
*/
|
||||||
|
private String col_num;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 深浅位
|
||||||
|
*/
|
||||||
|
private String depth;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取主键值
|
* 获取主键值
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -422,7 +422,7 @@ public class BstIvtPackageinfoivtServiceImpl extends ServiceImpl<BstIvtPackagein
|
|||||||
BstIvtPackageinfoivt dto = bstIvtPackageinfoivtMapper.selectOne(new LambdaQueryWrapper<BstIvtPackageinfoivt>().eq(BstIvtPackageinfoivt::getContainer_name, whereJson.getString("container_name")));
|
BstIvtPackageinfoivt dto = bstIvtPackageinfoivtMapper.selectOne(new LambdaQueryWrapper<BstIvtPackageinfoivt>().eq(BstIvtPackageinfoivt::getContainer_name, whereJson.getString("container_name")));
|
||||||
if (dto == null) {
|
if (dto == null) {
|
||||||
result.put("status", org.springframework.http.HttpStatus.BAD_REQUEST.value());
|
result.put("status", org.springframework.http.HttpStatus.BAD_REQUEST.value());
|
||||||
result.put("message", "不存在该数据!");
|
result.put("message", "子卷号有误,请核对是否存在!");
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
dto.setIvt_status(whereJson.getString("ivt_status"));
|
dto.setIvt_status(whereJson.getString("ivt_status"));
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
>
|
>
|
||||||
<el-table-column type="selection" width="55" />
|
<el-table-column type="selection" width="55" />
|
||||||
<el-table-column prop="box_no" label="木箱号" />
|
<el-table-column prop="box_no" label="木箱号" />
|
||||||
<el-table-column prop="material_code" label="物料编码" />
|
<el-table-column prop="material_code" label="木箱规格" />
|
||||||
<el-table-column prop="material_name" label="物料名称" />
|
<el-table-column prop="material_name" label="物料名称" />
|
||||||
<el-table-column prop="box_length" label="木箱长度" />
|
<el-table-column prop="box_length" label="木箱长度" />
|
||||||
<el-table-column prop="box_width" label="木箱宽度" />
|
<el-table-column prop="box_width" label="木箱宽度" />
|
||||||
|
|||||||
Reference in New Issue
Block a user