opt:修改成品出库优先级
This commit is contained in:
@@ -224,5 +224,10 @@ public class SchBasePoint implements Serializable {
|
||||
*/
|
||||
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_name(SecurityUtils.getCurrentNickName());
|
||||
schBasePoint.setCreate_time(new Date());
|
||||
schBasePoint.setPriority("1");
|
||||
this.save(schBasePoint);
|
||||
}
|
||||
|
||||
|
||||
@@ -486,6 +486,7 @@ public class StIvtIostorinvCpOutServiceImpl extends ServiceImpl<StIvtIostorinvCp
|
||||
.task_group_id(IdUtil.getStringId())
|
||||
.point_code1(disDao.getStruct_code())
|
||||
.point_code3(pointDao.getPoint_code())
|
||||
.priority(pointDao.getPriority())
|
||||
.vehicle_code(disDao.getStoragevehicle_code())
|
||||
.product_area("A1") // 暂时写死
|
||||
.callback((Consumer<String>) disDao::setTask_id)
|
||||
@@ -594,6 +595,7 @@ public class StIvtIostorinvCpOutServiceImpl extends ServiceImpl<StIvtIostorinvCp
|
||||
.task_group_id(IdUtil.getStringId())
|
||||
.point_code1(struct_code)
|
||||
.point_code3(dao.getPoint_code())
|
||||
.priority(dao.getPriority())
|
||||
.vehicle_code(disDao.getStoragevehicle_code())
|
||||
.product_area("A1") // 暂时写死
|
||||
.callback((Consumer<String>) disDao::setTask_id)
|
||||
|
||||
Reference in New Issue
Block a user