修改机械合同

This commit is contained in:
zzz
2025-12-12 11:24:17 +08:00
parent e3b6c3d8d6
commit 509683386f

View File

@ -311,6 +311,17 @@ public class XzdMachineryContractAlterationServiceImpl extends ServiceImpl<XzdMa
}); });
iXzdContractAdvanceInfoService.saveBatch(yskx); iXzdContractAdvanceInfoService.saveBatch(yskx);
} }
//印章信息
xzdBusinessChangeService.getBaseMapper().delete(new LambdaQueryWrapper<XzdBusinessChange>().eq(XzdBusinessChange::getContractChangeId, bo.getId()));
if (bo.getSealInfo() != null && !bo.getSealInfo().isEmpty()){
for (XzdBusinessChange sealInfo : bo.getSealInfo()) {
sealInfo.setContractChangeId(bo.getId());
sealInfo.setType("14");
}
xzdBusinessChangeService.saveBatch(bo.getSealInfo());
}
/** /**
* 扣款与奖励项 * 扣款与奖励项
*/ */