|
@@ -11,6 +11,7 @@ import com.ruoyi.common.core.domain.AjaxResult;
|
|
import com.ruoyi.common.core.domain.entity.SysUser;
|
|
import com.ruoyi.common.core.domain.entity.SysUser;
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
import com.ruoyi.common.utils.SecurityUtils;
|
|
import com.ruoyi.common.utils.SecurityUtils;
|
|
|
|
+import com.ruoyi.common.utils.StringUtils;
|
|
import com.ruoyi.system.domain.fgw.FgwDbd;
|
|
import com.ruoyi.system.domain.fgw.FgwDbd;
|
|
import com.ruoyi.system.domain.fgw.FgwFj;
|
|
import com.ruoyi.system.domain.fgw.FgwFj;
|
|
import com.ruoyi.system.domain.fgw.FgwXmsb;
|
|
import com.ruoyi.system.domain.fgw.FgwXmsb;
|
|
@@ -120,7 +121,10 @@ public class FgwXmsbServiceImpl implements IFgwXmsbService {
|
|
if (fjList != null && fjList.size() > 0) {
|
|
if (fjList != null && fjList.size() > 0) {
|
|
//保存新增的
|
|
//保存新增的
|
|
for (FgwFj fgwFj : fjList) {
|
|
for (FgwFj fgwFj : fjList) {
|
|
- fgwFjMapper.insertFgwFj(fgwFj);
|
|
|
|
|
|
+ String isSh = fgwFj.getIsSh();
|
|
|
|
+ if (StringUtils.isBlank(isSh) || ONE.equals(isSh)){
|
|
|
|
+ fgwFjMapper.insertFgwFj(fgwFj);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return fgwXmsbMapper.updateFgwXmsb(fgwXmsb);
|
|
return fgwXmsbMapper.updateFgwXmsb(fgwXmsb);
|