Merge of fix/datagrid_export 修复数据网格的问题 to wrdp See merge request o2oa/o2oa!3016
@@ -1866,7 +1866,11 @@ MWF.xApplication.process.Xform.DatagridPC = new Class(
text = module.node.get("text");
}
- array.push(text || "");
+ if( !text && typeOf(text) !== "number" ){
+ text = "";
+ }
+
+ array.push( text );