SVN-Revision: r851
This commit is contained in:
wyf
2025-07-10 02:41:50 +00:00
parent 280cc36dea
commit 388af6eb42
2 changed files with 19 additions and 9 deletions
+9 -2
View File
@@ -289,7 +289,7 @@ namespace Lskj.PubBomImport
this.Close();
}
}
else if (Model.ShowType.Equals("1"))//新增多个其它文件
else if (Model.ShowType.Equals("1") || Model.ShowType.Equals("11"))//新增多个其它文件
{
BomImpRtnModel bomImpRtnModel = new BomImpRtnModel()
{
@@ -332,7 +332,14 @@ namespace Lskj.PubBomImport
frmProgress.ImportTimer.Tick += (ts, te) =>
{
frmProgress.ImportTimer.Enabled = false;
frmProgress.StartImportInOtherFiles(selectRows);
if (Model.ShowType.Equals("1"))
{
frmProgress.StartImportInOtherFiles(selectRows);
}
else if (Model.ShowType.Equals("11"))
{
frmProgress.StartImportInOtherFiles(selectRows, false);
}
};
frmProgress.ImportTimer.Enabled = true;
DialogResult dialogResult = frmProgress.ShowDialog();