|
|
|
@ -2,7 +2,6 @@ package org.dromara.mes.service.impl;
|
|
|
|
|
|
|
|
|
|
import org.dromara.common.constant.DatabaseConstants;
|
|
|
|
|
import org.dromara.common.core.exception.ServiceException;
|
|
|
|
|
import org.dromara.common.core.utils.DateUtils;
|
|
|
|
|
import org.dromara.common.core.utils.MapstructUtils;
|
|
|
|
|
import org.dromara.common.core.utils.StringUtils;
|
|
|
|
|
import org.dromara.common.core.utils.uuid.Seq;
|
|
|
|
@ -37,7 +36,7 @@ public class ProdPlanInfoServiceImpl implements IProdPlanInfoService {
|
|
|
|
|
|
|
|
|
|
private final ProdPlanInfoMapper baseMapper;
|
|
|
|
|
|
|
|
|
|
private final DynamicBaseSqlMapper dynamicBaseSqlMapper;
|
|
|
|
|
private final DynamicBaseSqlMapper<ProdPlanInfo> dynamicBaseSqlMapper;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询生产工单信息
|
|
|
|
@ -60,13 +59,7 @@ public class ProdPlanInfoServiceImpl implements IProdPlanInfoService {
|
|
|
|
|
@Override
|
|
|
|
|
public TableDataInfo<ProdPlanInfoVo> queryPageList(ProdPlanInfoBo bo, PageQuery pageQuery) {
|
|
|
|
|
MPJLambdaWrapper<ProdPlanInfo> lqw = buildQueryWrapper(bo);
|
|
|
|
|
Long workshopId = bo.getWorkshopId();
|
|
|
|
|
String tableName = null;
|
|
|
|
|
if (StringUtils.isNull(workshopId)){
|
|
|
|
|
tableName = DatabaseConstants.TABLE_NAME_PROD_PLAN_INFO_PREFIX;
|
|
|
|
|
} else {
|
|
|
|
|
tableName = DatabaseConstants.TABLE_NAME_PROD_PLAN_INFO_PREFIX + "_" + workshopId;
|
|
|
|
|
}
|
|
|
|
|
String tableName = getPlanInfoTableName(bo.getWorkshopId());
|
|
|
|
|
Page<ProdPlanInfoVo> result = baseMapper.selectProdPlanInfoList(pageQuery.build(), tableName, lqw);
|
|
|
|
|
return TableDataInfo.build(result);
|
|
|
|
|
}
|
|
|
|
@ -81,7 +74,8 @@ public class ProdPlanInfoServiceImpl implements IProdPlanInfoService {
|
|
|
|
|
@Override
|
|
|
|
|
public List<ProdPlanInfoVo> queryList(ProdPlanInfoBo bo) {
|
|
|
|
|
MPJLambdaWrapper<ProdPlanInfo> lqw = buildQueryWrapper(bo);
|
|
|
|
|
return baseMapper.selectVoList(lqw);
|
|
|
|
|
String tableName = getPlanInfoTableName(bo.getWorkshopId());
|
|
|
|
|
return baseMapper.selectProdPlanInfoList(tableName, lqw);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private MPJLambdaWrapper<ProdPlanInfo> buildQueryWrapper(ProdPlanInfoBo bo) {
|
|
|
|
@ -119,6 +113,7 @@ public class ProdPlanInfoServiceImpl implements IProdPlanInfoService {
|
|
|
|
|
.eq(bo.getShiftId() != null, ProdPlanInfo::getShiftId, bo.getShiftId())
|
|
|
|
|
.eq(bo.getClassTeamId() != null, ProdPlanInfo::getClassTeamId, bo.getClassTeamId())
|
|
|
|
|
.eq(StringUtils.isNotBlank(bo.getModelCode()), ProdPlanInfo::getModelCode, bo.getModelCode())
|
|
|
|
|
.in(StringUtils.isNotNull(bo.getPlanIds()), ProdPlanInfo::getPlanId, bo.getPlanIds())
|
|
|
|
|
.orderByDesc(ProdPlanInfo::getCreateTime);
|
|
|
|
|
return lqw;
|
|
|
|
|
}
|
|
|
|
@ -136,8 +131,8 @@ public class ProdPlanInfoServiceImpl implements IProdPlanInfoService {
|
|
|
|
|
}
|
|
|
|
|
ProdPlanInfo add = MapstructUtils.convert(bo, ProdPlanInfo.class);
|
|
|
|
|
validEntityBeforeSave(add);
|
|
|
|
|
String tableName = DatabaseConstants.TABLE_NAME_PROD_PLAN_INFO_PREFIX + "_" + bo.getWorkshopId();
|
|
|
|
|
boolean flag = dynamicBaseSqlMapper.dynamicInsert(tableName, DatabaseConstants.TABLE_NAME_PROD_PLAN_INFO_PREFIX, add) >0;
|
|
|
|
|
String tableName = getPlanInfoTableName(bo.getWorkshopId());
|
|
|
|
|
boolean flag = dynamicBaseSqlMapper.dynamicInsert(tableName, DatabaseConstants.TABLE_NAME_PROD_PLAN_INFO_PREFIX, add) > 0;
|
|
|
|
|
// boolean flag = baseMapper.insert(add) > 0;
|
|
|
|
|
// if (flag) {
|
|
|
|
|
// bo.setPlanId(add.getPlanId());
|
|
|
|
@ -155,7 +150,8 @@ public class ProdPlanInfoServiceImpl implements IProdPlanInfoService {
|
|
|
|
|
public Boolean updateByBo(ProdPlanInfoBo bo) {
|
|
|
|
|
ProdPlanInfo update = MapstructUtils.convert(bo, ProdPlanInfo.class);
|
|
|
|
|
validEntityBeforeSave(update);
|
|
|
|
|
return baseMapper.updateById(update) > 0;
|
|
|
|
|
String tableName = getPlanInfoTableName(bo.getWorkshopId());
|
|
|
|
|
return dynamicBaseSqlMapper.dynamicUpdate(tableName, DatabaseConstants.TABLE_NAME_PROD_PLAN_INFO_PREFIX, update) > 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -201,6 +197,20 @@ public class ProdPlanInfoServiceImpl implements IProdPlanInfoService {
|
|
|
|
|
return baseMapper.selectProdPlanInfoJoinProcessList(bo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取生产计划数据库表名
|
|
|
|
|
* @param workshopId 车间ID
|
|
|
|
|
* @return 生产计划数据库表名
|
|
|
|
|
*/
|
|
|
|
|
public String getPlanInfoTableName(Long workshopId){
|
|
|
|
|
String tableName = null;
|
|
|
|
|
if (StringUtils.isNull(workshopId)){
|
|
|
|
|
tableName = DatabaseConstants.TABLE_NAME_PROD_PLAN_INFO_PREFIX;
|
|
|
|
|
} else {
|
|
|
|
|
tableName = DatabaseConstants.TABLE_NAME_PROD_PLAN_INFO_PREFIX + "_" + workshopId;
|
|
|
|
|
}
|
|
|
|
|
return tableName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 生产工单新增生产派工List
|
|
|
|
@ -243,5 +253,32 @@ public class ProdPlanInfoServiceImpl implements IProdPlanInfoService {
|
|
|
|
|
return successCount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 下发选中计划
|
|
|
|
|
*
|
|
|
|
|
* @param workshopId
|
|
|
|
|
* @param planIds
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
|
public Boolean issuePlanByPlanIds(Long workshopId, List<Long> planIds) {
|
|
|
|
|
ProdPlanInfoBo bo = new ProdPlanInfoBo();
|
|
|
|
|
bo.setWorkshopId(workshopId);
|
|
|
|
|
bo.setPlanIds(planIds);
|
|
|
|
|
List<ProdPlanInfoVo> prodPlanInfoVoList = queryList(bo);
|
|
|
|
|
//校验计划状态是否可下达计划
|
|
|
|
|
for (ProdPlanInfoVo planInfoVo : prodPlanInfoVoList) {
|
|
|
|
|
ProdPlanInfoBo prodPlanInfoBo = new ProdPlanInfoBo();
|
|
|
|
|
if (!planInfoVo.getPlanStatus().equals("0")){
|
|
|
|
|
throw new ServiceException(planInfoVo.getPlanCode() + "计划状态不是未派工!");
|
|
|
|
|
}
|
|
|
|
|
prodPlanInfoBo.setWorkshopId(workshopId);
|
|
|
|
|
prodPlanInfoBo.setPlanId(planInfoVo.getPlanId());
|
|
|
|
|
prodPlanInfoBo.setPlanStatus("1");
|
|
|
|
|
this.updateByBo(prodPlanInfoBo);
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|