|
@@ -565,7 +565,10 @@ public class FormulaServiceImpl extends BaseServiceImpl<FormulaMapper, Formula>
|
|
|
String[] tfa=tf.split(",");
|
|
|
for(String code:tfa){
|
|
|
code=code.replace("E['","").replace("']","");
|
|
|
- target.add(this.formDataMap.get(code));
|
|
|
+ FormData fdt=this.formDataMap.get(code);
|
|
|
+ if(fdt!=null){
|
|
|
+ target.add(fdt);
|
|
|
+ }
|
|
|
}
|
|
|
if(Func.isNotEmpty(target)){
|
|
|
Object data=null;
|