Merge remote-tracking branch 'origin/master'

master
mengjiao 6 months ago
commit 76983c9df4

@ -326,4 +326,15 @@ public class ProOrderWorkorderController extends BaseController {
public List<ProOrderWorkorder> getBatchCode(@PathVariable("workorderId") String workorderId) {
return proOrderWorkorderService.getBatchCode(workorderId);
}
/**
*
*/
@RequiresPermissions("mes:pro:workorder:edit")
@Log(title = "生产工单领料单更新", businessType = BusinessType.UPDATE)
@PostMapping("/updateWorkOrderBom/{workorderCode}")
public AjaxResult updateWorkOrderBom(@PathVariable String workorderCode) {
int m = proOrderWorkorderService.updateWorkOrderBom(workorderCode);
return toAjax(m);
}
}

@ -251,5 +251,10 @@ public interface ProOrderWorkorderMapper {
ProOrderWorkorder getOldVersionUsedInfo(ProOrderWorkorder proOrderWorkorder);
List<ProOrderWorkorder> getPreIdCardListNow(ProOrderWorkorder proOrderWorkorder);
void clearMP(List<String> wcodes);
void clearMPDetail(List<String> wcodes);
List<ProOrderWorkorder> getWorkList(String workorderCode);
}

@ -155,4 +155,6 @@ public interface IProOrderWorkorderService {
List<ProOrderWorkorder> getBatchCode(String workorderId);//获取批次号
List<ProOrderWorkorder> getIdCardListRefresh(ProOrderWorkorder proOrderWorkorder);
int updateWorkOrderBom(String workorderCode);
}

@ -451,57 +451,57 @@ public class ProOrderWorkorderServiceImpl implements IProOrderWorkorderService {
logger.info("获取sap领料单" + sapWorkOrders.get(m) + "开始");
List<SapMaterialPreparation> sapMaterialPreparationList = remoteSapService.materialPreparation(sapWorkOrders.get(m)).getData();
if (CollectionUtils.isEmpty(sapMaterialPreparationList)) {
System.out.println("sap无领料单数据");
}
//取出各领料单
String orderCode = sapWorkOrders.get(m);
logger.info("sap工单码" + orderCode);
/**mes_prepare**/
String mesPrepareId = IdUtils.fastSimpleUUID();
MesPrepareDTO mesPrepare0 = new MesPrepareDTO();
mesPrepare0.setPrepareId(mesPrepareId);
mesPrepare0.setWorkorderCode(workOrders.get(m));
mesPrepare0.setWorkorderName(orderCode);//工单(子)
mesPrepare0.setCreateTime(createDate);
mesPrepare0.setCreateBy(SecurityUtils.getUsername());
mesPrepare0.setStatus("L0");//默认待确认
proOrderWorkorderMapper.insertMesPrepare(mesPrepare0);
/**mes_prepare_detail**/
List<MesPrepareDetailDTO> details = new ArrayList<>();
MesPrepareDetailDTO detail = null;
for (SapMaterialPreparation sap : sapMaterialPreparationList) {
detail = new MesPrepareDetailDTO();
detail.setPrepareId(mesPrepareId);
detail.setRecordId(IdUtils.fastSimpleUUID());
detail.setAttr1(sap.getRSPOS());//预留/相关需求的项目编号
detail.setMaterialCode(sap.getMATNR());//物料号
detail.setMaterailName(sap.getMAKTX());//物料描述(短文本)
detail.setFactoryCode(sap.getWERKS());//工厂
detail.setLocator(sap.getLGORT());//库存地点
detail.setNeedDate(sap.getBDTER());//组件的需求日期
detail.setQuantity(sap.getBDMNG());////需求量
detail.setFundQuanlity(sap.getZQLSL());//欠料数量
detail.setUnit(sap.getMEINS());//基本计量单位
detail.setRecoil(sap.getRGEKZ());//反冲标识
detail.setBuyFlag(sap.getDBSKZ());//直接采购标识
detail.setCreateBy(SecurityUtils.getUsername());
detail.setCreateTime(createDate);
detail.setParentWorkOrder(workOrders.get(0));
detail.setErfmg(sap.getERFMG());//以输入单位计的数量
detail.setErfme(sap.getERFME());//条目单位
details.add(detail);
logger.info("领料单内容detail" + sap.getRSPOS() + "," + sap.getMATNR() + "," +
sap.getMAKTX() + "," + sap.getWERKS() + "," + sap.getLGORT() + "," +
sap.getBDTER() + "," + sap.getBDMNG() + "," + sap.getZQLSL() + "," +
sap.getMEINS() + "," + sap.getRGEKZ() + "," + sap.getDBSKZ()+ "," +
sap.getERFMG() + "," + sap.getERFME()
);
}
if (!CollectionUtils.isEmpty(details)) {
proOrderWorkorderMapper.insertMesPrepareDetails(details);
logger.info("sap无领料单数据");
}else{
//取出各领料单
String orderCode = sapWorkOrders.get(m);
logger.info("sap工单码" + orderCode);
/**mes_prepare**/
String mesPrepareId = IdUtils.fastSimpleUUID();
MesPrepareDTO mesPrepare0 = new MesPrepareDTO();
mesPrepare0.setPrepareId(mesPrepareId);
mesPrepare0.setWorkorderCode(workOrders.get(m));
mesPrepare0.setWorkorderName(orderCode);//工单(子)
mesPrepare0.setCreateTime(createDate);
mesPrepare0.setCreateBy(SecurityUtils.getUsername());
mesPrepare0.setStatus("L0");//默认待确认
proOrderWorkorderMapper.insertMesPrepare(mesPrepare0);
/**mes_prepare_detail**/
List<MesPrepareDetailDTO> details = new ArrayList<>();
MesPrepareDetailDTO detail = null;
for (SapMaterialPreparation sap : sapMaterialPreparationList) {
detail = new MesPrepareDetailDTO();
detail.setPrepareId(mesPrepareId);
detail.setRecordId(IdUtils.fastSimpleUUID());
detail.setAttr1(sap.getRSPOS());//预留/相关需求的项目编号
detail.setMaterialCode(sap.getMATNR());//物料号
detail.setMaterailName(sap.getMAKTX());//物料描述(短文本)
detail.setFactoryCode(sap.getWERKS());//工厂
detail.setLocator(sap.getLGORT());//库存地点
detail.setNeedDate(sap.getBDTER());//组件的需求日期
detail.setQuantity(sap.getBDMNG());////需求量
detail.setFundQuanlity(sap.getZQLSL());//欠料数量
detail.setUnit(sap.getMEINS());//基本计量单位
detail.setRecoil(sap.getRGEKZ());//反冲标识
detail.setBuyFlag(sap.getDBSKZ());//直接采购标识
detail.setCreateBy(SecurityUtils.getUsername());
detail.setCreateTime(createDate);
detail.setParentWorkOrder(workOrders.get(0));
detail.setErfmg(sap.getERFMG());//以输入单位计的数量
detail.setErfme(sap.getERFME());//条目单位
details.add(detail);
logger.info("领料单内容detail" + sap.getRSPOS() + "," + sap.getMATNR() + "," +
sap.getMAKTX() + "," + sap.getWERKS() + "," + sap.getLGORT() + "," +
sap.getBDTER() + "," + sap.getBDMNG() + "," + sap.getZQLSL() + "," +
sap.getMEINS() + "," + sap.getRGEKZ() + "," + sap.getDBSKZ()+ "," +
sap.getERFMG() + "," + sap.getERFME()
);
}
if (!CollectionUtils.isEmpty(details)) {
proOrderWorkorderMapper.insertMesPrepareDetails(details);
}
}
logger.info("获取sap领料单" + sapWorkOrders.get(m) + "结束");
}
}
@ -1455,6 +1455,32 @@ public class ProOrderWorkorderServiceImpl implements IProOrderWorkorderService {
return dtos;
}
@Override
@DS("#header.poolName")
public int updateWorkOrderBom(String workorderCode) {
List<ProOrderWorkorder> proOrders = proOrderWorkorderMapper.getWorkList(workorderCode);
if(CollectionUtils.isEmpty(proOrders)){
return 0;
}
/**
*sapCodes:
* wcodes
**/
List<String> sapCodes = new ArrayList<>();
List<String> wcodes = new ArrayList<>();
for(ProOrderWorkorder pow:proOrders){
sapCodes.add(pow.getWorkorderCodeSap());
wcodes.add(pow.getWorkorderCode());
}
//清理---mes_prepare_detail、mes_prepare
proOrderWorkorderMapper.clearMP(wcodes);
proOrderWorkorderMapper.clearMPDetail(wcodes);
this.getMesPrepare(sapCodes, wcodes);
return 1;
}
/**
*
* 湿

@ -890,6 +890,13 @@
where pow.workorder_code = #{workorderCode} and pow.del_flag = '0' and powbp.del_flag = '0'
order by CAST(powbp.pallet_num AS INT)
</select>
<select id="getWorkList" resultType="com.op.plan.domain.ProOrderWorkorder">
select workorder_code workorderCode,
workorder_code_sap workorderCodeSap
from pro_order_workorder
where belong_work_order = #{workorderCode} and del_flag = '0'
order by workorder_code_sap desc
</select>
<insert id="addBatchPallet">
INSERT INTO pro_order_workorder_batch_pallet (
@ -1033,6 +1040,24 @@
select workorder_code_sap from pro_order_workorder where workorder_code = #{workorderCode}
) and add_flag = '0' and attr1 = '0'
</delete>
<delete id="clearMP">
update mes_prepare
set del_flag = '1',
update_time = GETDATE()
where workorder_code in
<foreach item="workCode" collection="list" open="(" separator="," close=")">
#{workCode}
</foreach>
</delete>
<delete id="clearMPDetail">
update mes_prepare_detail
set del_flag = '1',
update_time = GETDATE()
where parent_work_order in
<foreach item="workCode" collection="list" open="(" separator="," close=")">
#{workCode}
</foreach>
</delete>
<update id="updateCheckTaskBatch" parameterType="com.op.plan.domain.dto.CheckTaskBatchDTO">
update qc_check_task set income_batch_no = #{newIncomeBatchNo}
where income_batch_no = #{incomeBatchNo} and order_no = #{orderNo}

@ -44,13 +44,14 @@ public class QcCheckTaskProduce extends BaseEntity {
public void setIncomeBatchNo(String incomeBatchNo) {
this.incomeBatchNo = incomeBatchNo;
}
private String cpkType;
/**
*
*/
@Excel(name = "订单号")
private String workorderCodeSap;
@Excel(name = "工单号")
private String orderNo;
/**
*
*/
@ -209,6 +210,22 @@ public class QcCheckTaskProduce extends BaseEntity {
private String shiftId;
private String bz;//备注
public String getCpkType() {
return cpkType;
}
public void setCpkType(String cpkType) {
this.cpkType = cpkType;
}
public String getWorkorderCodeSap() {
return workorderCodeSap;
}
public void setWorkorderCodeSap(String workorderCodeSap) {
this.workorderCodeSap = workorderCodeSap;
}
public String getStandardNo() {
return standardNo;
}

@ -40,6 +40,8 @@ public class QcCheckTaskWarehousing extends BaseEntity {
*
*/
@Excel(name = "订单号")
private String workorderCodeSap;
@Excel(name = "工单号")
private String orderNo;
/**
@ -181,6 +183,14 @@ public class QcCheckTaskWarehousing extends BaseEntity {
private String checkLevel;
private String sampleCode;
public String getWorkorderCodeSap() {
return workorderCodeSap;
}
public void setWorkorderCodeSap(String workorderCodeSap) {
this.workorderCodeSap = workorderCodeSap;
}
public String getSampleCode() {
return sampleCode;
}

@ -428,11 +428,11 @@ public class QcCheckTaskProduceServiceImpl implements IQcCheckTaskProduceService
new LinkedBlockingQueue<Runnable>());
try {
dateSources.forEach(dateSource -> {
if("ds_1000".equals(dateSource.get("poolName"))){
//if("ds_1000".equals(dateSource.get("poolName"))){
logger.info("++++++++++++" + dateSource.get("poolName") + "++++过程检验巡检开始++++++++++");
Runnable run = () -> createProduceXJFunc(dateSource.get("poolName"));
executorService.execute(run);
}
//}
});
} catch (Exception e) {
logger.error("service == createProduceXJTask == exception", e);

@ -100,7 +100,7 @@
qct.check_time, qct.check_result, qct.status, qct.check_type, qct.attr1, qct.attr2, qct.attr3, qct.attr4,
qct.create_by, qct.create_time, qct.update_by, qct.update_time,
qct.factory_code, qct.del_flag,qct.reason,qct.product_type,qct.order_type,qct.jgy,qct.pgy,qct.cxzz,
ISNULL(bp.mvgr5, '成品蚊香【物料组】') standardNo
ISNULL(bp.mvgr5, '09JS08S-048B') standardNo
from qc_check_task qct
left join base_product bp on bp.product_code = qct.material_code
where qct.record_id = #{recordId}

@ -44,6 +44,9 @@
<result property="confirmManName" column="confirm_man_name"/>
<result property="confirmRemark" column="confirm_remark"/>
<result property="confirmTime" column="confirm_time"/>
<result property="workorderCodeSap" column="workorderCodeSap"/>
<result property="cpkType" column="cpk_type"/>
</resultMap>
<resultMap type="QcCheckReportIncome" id="QcCheckReportIncomeResult">
@ -103,14 +106,17 @@
qct.supplier_code, qct.supplier_name, qct.income_time, qct.check_loc, qct.check_status,
qct.check_man_code, qct.check_man_name,qct.check_time, qct.check_result, qct.status,
qct.create_by,qct.create_time, qct.update_by, qct.update_time,
qct.check_type,qct.sample_quality,qct.noOk_quality,
q.type_code,q.check_name
qct.check_type,qct.sample_quality,qct.noOk_quality,bpa.cpk_type,
q.type_code,q.check_name,SUBSTRING(pow.workorder_code_sap, 4, 12) workorderCodeSap
from qc_check_task qct
left join qc_check_type q on q.id = qct.check_type
left join pro_order_workorder pow on pow.workorder_code = qct.order_no
left join base_product_attached bpa on concat('0000000',bpa.product_code) = qct.material_code
<where>
<if test="checkNo != null and checkNo != ''">and qct.check_no = #{checkNo}</if>
<if test="incomeBatchNo != null and incomeBatchNo != ''">and qct.income_batch_no = #{incomeBatchNo}</if>
<if test="orderNo != null and orderNo != ''">and qct.order_no = #{orderNo}</if>
<if test="workorderCodeSap != null and workorderCodeSap != ''">and pow.workorder_code_sap like concat('%',#{workorderCodeSap}, '%')</if>
<if test="materialCode != null and materialCode != ''">and qct.material_code like concat('%',
#{materialCode}, '%')</if>
<if test="materialName != null and materialName != ''">and qct.material_name like concat('%',
@ -137,6 +143,7 @@
<if test="checkTimeEnd != null ">and #{checkTimeEnd} > CONVERT(varchar(30),qct.check_time, 120)</if>
<if test="checkType != null ">and qct.check_type = #{checkType}</if>
<if test="typeCode != null ">and q.type_code = #{typeCode}</if>
and pow.del_flag = '0'
</where>
order by qct.create_time desc
</select>

@ -36,7 +36,7 @@
<result property="checkType" column="check_type"/>
<result property="sampleQuality" column="sample_quality"/>
<result property="checkName" column="checkName"/>
<result property="workorderCodeSap" column="workorderCodeSap"/>
</resultMap>
<sql id="selectQcCheckTaskWarehousingVo">
@ -55,13 +55,15 @@
qct.supplier_code, qct.supplier_name, qct.income_time, qct.check_loc, qct.check_status,
qct.check_man_code, qct.check_man_name,qct.check_time, qct.check_result, qct.status,
qct.create_by,qct.create_time, qct.update_by, qct.update_time,qct.check_type, qct.sample_quality,
qct.noOk_quality, q.type_code ,q.check_name checkName
qct.noOk_quality, q.type_code ,q.check_name checkName,SUBSTRING(pow.workorder_code_sap, 4, 12) workorderCodeSap
from qc_check_task qct
left join qc_check_type q on q.id = qct.check_type
left join pro_order_workorder pow on pow.workorder_code = qct.order_no
<where>
<if test="checkNo != null and checkNo != ''">and qct.check_no = #{checkNo}</if>
<if test="incomeBatchNo != null and incomeBatchNo != ''">and qct.income_batch_no = #{incomeBatchNo}</if>
<if test="orderNo != null and orderNo != ''">and qct.order_no = #{orderNo}</if>
<if test="workorderCodeSap != null and workorderCodeSap != ''">and pow.workorder_code_sap like concat('%',#{workorderCodeSap}, '%')</if>
<if test="materialCode != null and materialCode != ''">and qct.material_code = #{materialCode}</if>
<if test="materialName != null and materialName != ''">and qct.material_name like concat('%',
#{materialName}, '%')
@ -87,6 +89,7 @@
<if test="checkTimeEnd != null ">and #{checkTimeEnd} > CONVERT(varchar(30),qct.check_time, 120)</if>
<if test="checkType != null ">and qct.check_type = #{checkType}</if>
<if test="typeCode != null ">and q.type_code = #{typeCode}</if>
and pow.del_flag = '0'
</where>
</select>

@ -549,7 +549,8 @@ public class SysUserServiceImpl implements ISysUserService {
Date maxTime = calendar.getTime();
String ymd = DateFormatUtils.format(maxTime, "yyyy-MM-dd");//yyyy-MM-dd
log.info("更新人力-参数:"+ ymd);
AjaxResult hrR = remoteOpenService.GetHrUserInfo(ymd);
//AjaxResult hrR = remoteOpenService.GetHrUserInfo(ymd);
AjaxResult hrR = remoteOpenService.GetHrUserInfo("2024-09-01");
List<HRInfo> infoList = new ArrayList<>();
if((int)hrR.get("code")==200 && hrR.get("data")!=null){
@ -593,7 +594,6 @@ public class SysUserServiceImpl implements ISysUserService {
dto.setDeptId(Long.parseLong(dto.getOucod()));
}
int n = 0;
//sap返回的编码
List<String> codes = dtos.stream().map(HRInfo::getUserName).collect(Collectors.toList());
//sap返回的工作中心编码-本地已存在
@ -607,21 +607,23 @@ public class SysUserServiceImpl implements ISysUserService {
if(!CollectionUtils.isEmpty(updates)){
int allsize = updates.size();
int inserttimes = allsize/150+1;
int inserttimes = allsize/100+1;
for(int m=0;m<inserttimes;m++){
List<HRInfo> everyList;
if(m<(inserttimes-1)){
everyList = updates.subList(m*150,(m+1)*150);
everyList = updates.subList(m*100,(m+1)*100);
}else{
everyList = updates.subList(m*150,allsize);
everyList = updates.subList(m*100,allsize);
}
if(everyList.size()>0){
m = userMapper.updateUserBatchs(everyList);
System.out.println("人员新增成功条数:"+ m);
int snum = userMapper.updateUserBatchs(everyList);
if(snum == 1){
log.info("人员编辑成功条数:"+ everyList.size());
}else{
log.info("人员编辑失败条数:"+ everyList.size());
}
}
}
int m = userMapper.updateUserBatchs(updates);
System.out.println("人员更新成功条数:"+m);
}
List<HRInfo> adds = dtos.stream()
.filter(item -> noExsitCodes.contains(item.getUserName()))
@ -629,22 +631,22 @@ public class SysUserServiceImpl implements ISysUserService {
if(!CollectionUtils.isEmpty(adds)){
int allsize = adds.size();
int inserttimes = allsize/150+1;
int inserttimes = allsize/100+1;
for(int m=0;m<inserttimes;m++){
List<HRInfo> everyList;
if(m<(inserttimes-1)){
everyList = adds.subList(m*150,(m+1)*160);
everyList = adds.subList(m*100,(m+1)*100);
}else{
everyList = adds.subList(m*150,allsize);
everyList = adds.subList(m*100,allsize);
}
if(everyList.size()>0){
n = userMapper.addUserBatchs(everyList);
System.out.println("人员新增成功条数:"+ n);
int nnum = userMapper.addUserBatchs(everyList);
log.info("人员新增成功条数:"+ nnum);
}
}
}
return n;
return 1;
}
}

Loading…
Cancel
Save