|
@@ -14,6 +14,7 @@ using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Drawing;
|
|
using System.IO;
|
|
using System.IO;
|
|
|
|
+using System.Linq;
|
|
using System.Net.Mail;
|
|
using System.Net.Mail;
|
|
using System.Windows.Forms;
|
|
using System.Windows.Forms;
|
|
|
|
|
|
@@ -387,7 +388,15 @@ namespace OTSIncAReportApp.OTSTemplateDesigner
|
|
}
|
|
}
|
|
m_OTSReport_Export.m_mbszclass.M_KLLBXX.list_str_kllb_DeleteClass_Serial.Clear();
|
|
m_OTSReport_Export.m_mbszclass.M_KLLBXX.list_str_kllb_DeleteClass_Serial.Clear();
|
|
m_OTSReport_Export.m_mbszclass.M_KLLBXX.list_str_kllb_DeleteClass_Serial = DeleteClass_Serial.Copy();
|
|
m_OTSReport_Export.m_mbszclass.M_KLLBXX.list_str_kllb_DeleteClass_Serial = DeleteClass_Serial.Copy();
|
|
- m_OTSReport_Export.m_mbszclass.M_SY.LOGName = fileName;
|
|
|
|
|
|
+
|
|
|
|
+ m_OTSReport_Export.m_mbszclass.M_KLLBXX.list_str_kllb_DeleteClass.Clear();
|
|
|
|
+ string[] result = delete_Class.Text.Split(',');
|
|
|
|
+ for (int i = 0; i < result.Count(); i++)
|
|
|
|
+ {
|
|
|
|
+ m_OTSReport_Export.m_mbszclass.M_KLLBXX.list_str_kllb_DeleteClass.Add(result[i]);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ m_OTSReport_Export.m_mbszclass.M_SY.LOGName = fileName;
|
|
//首页
|
|
//首页
|
|
m_OTSReport_Export.m_mbszclass.M_SY.str_tb_ZBT = tb_ZBT.Text;
|
|
m_OTSReport_Export.m_mbszclass.M_SY.str_tb_ZBT = tb_ZBT.Text;
|
|
m_OTSReport_Export.m_mbszclass.M_SY.str_tb_FBT = tb_FBT.Text;
|
|
m_OTSReport_Export.m_mbszclass.M_SY.str_tb_FBT = tb_FBT.Text;
|