opt:修改成品出库优先级
This commit is contained in:
@@ -224,5 +224,10 @@ public class SchBasePoint implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private String control_point;
|
private String control_point;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 点位优先级默认1
|
||||||
|
*/
|
||||||
|
private String priority;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -138,6 +138,7 @@ public class SchBasePointServiceImpl extends ServiceImpl<SchBasePointMapper, Sch
|
|||||||
schBasePoint.setCreate_id(SecurityUtils.getCurrentUserId());
|
schBasePoint.setCreate_id(SecurityUtils.getCurrentUserId());
|
||||||
schBasePoint.setCreate_name(SecurityUtils.getCurrentNickName());
|
schBasePoint.setCreate_name(SecurityUtils.getCurrentNickName());
|
||||||
schBasePoint.setCreate_time(new Date());
|
schBasePoint.setCreate_time(new Date());
|
||||||
|
schBasePoint.setPriority("1");
|
||||||
this.save(schBasePoint);
|
this.save(schBasePoint);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -486,6 +486,7 @@ public class StIvtIostorinvCpOutServiceImpl extends ServiceImpl<StIvtIostorinvCp
|
|||||||
.task_group_id(IdUtil.getStringId())
|
.task_group_id(IdUtil.getStringId())
|
||||||
.point_code1(disDao.getStruct_code())
|
.point_code1(disDao.getStruct_code())
|
||||||
.point_code3(pointDao.getPoint_code())
|
.point_code3(pointDao.getPoint_code())
|
||||||
|
.priority(pointDao.getPriority())
|
||||||
.vehicle_code(disDao.getStoragevehicle_code())
|
.vehicle_code(disDao.getStoragevehicle_code())
|
||||||
.product_area("A1") // 暂时写死
|
.product_area("A1") // 暂时写死
|
||||||
.callback((Consumer<String>) disDao::setTask_id)
|
.callback((Consumer<String>) disDao::setTask_id)
|
||||||
@@ -594,6 +595,7 @@ public class StIvtIostorinvCpOutServiceImpl extends ServiceImpl<StIvtIostorinvCp
|
|||||||
.task_group_id(IdUtil.getStringId())
|
.task_group_id(IdUtil.getStringId())
|
||||||
.point_code1(struct_code)
|
.point_code1(struct_code)
|
||||||
.point_code3(dao.getPoint_code())
|
.point_code3(dao.getPoint_code())
|
||||||
|
.priority(dao.getPriority())
|
||||||
.vehicle_code(disDao.getStoragevehicle_code())
|
.vehicle_code(disDao.getStoragevehicle_code())
|
||||||
.product_area("A1") // 暂时写死
|
.product_area("A1") // 暂时写死
|
||||||
.callback((Consumer<String>) disDao::setTask_id)
|
.callback((Consumer<String>) disDao::setTask_id)
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<div class="login" :style="'background-image:url('+ Background +');'">
|
<div class="login" :style="'background-image:url('+ Background +');'">
|
||||||
<el-form ref="loginForm" :model="loginForm" :rules="loginRules" label-position="left" label-width="0px" class="login-form">
|
<el-form ref="loginForm" :model="loginForm" :rules="loginRules" label-position="left" label-width="0px" class="login-form">
|
||||||
<h3 class="title">
|
<h3 class="title">
|
||||||
海亮lms系统
|
海亮LMS系统
|
||||||
</h3>
|
</h3>
|
||||||
<el-form-item prop="username">
|
<el-form-item prop="username">
|
||||||
<el-input v-model="loginForm.username" type="text" auto-complete="off" placeholder="账号">
|
<el-input v-model="loginForm.username" type="text" auto-complete="off" placeholder="账号">
|
||||||
|
|||||||
Reference in New Issue
Block a user