Merge pull request !216 from dxfeng/feature/dxf
This commit is contained in:
dxfeng 2022-08-29 09:08:08 +00:00 committed by Gitee
commit 6dd3a8a8e6
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 3 additions and 3 deletions

View File

@ -29,8 +29,8 @@
<select id="browserDatas" resultType="java.util.Map">
select
fid as `id`,
fname as `name`
fid as id,
fname as name
from jcl_org_itemclass
where fid IN
<foreach collection="ids" open="(" item="id" separator="," close=")">

View File

@ -82,7 +82,7 @@ public class CusFieldDataTrigger {
}
// field100002更新
if (null != sourceField100002 && !sourceField100002.equals(directionData.getField100002())) {
if (StringUtils.isNotBlank(sourceField100002) && !sourceField100002.equals(directionData.getField100002())) {
directionData.setField100002(sourceField100002);
Long gwId = Long.parseLong(sourceField100002);
JobPO jobById = MapperProxyFactory.getProxy(JobMapper.class).getJobById(gwId);