1
This commit is contained in:
@@ -57,7 +57,7 @@ namespace HNJNSH910.GDHNJN.BusinessForm.BusinessPlugIn
|
||||
}
|
||||
|
||||
string text = btnStr;
|
||||
if (!(text == "F_PCMT_IMPORTDATA"))
|
||||
if (text != "F_PCMT_IMPORTDATA")
|
||||
{
|
||||
if (text == "F_PCMT_COVERIMPORTDATA" && IsNotNull())
|
||||
{
|
||||
@@ -97,7 +97,7 @@ namespace HNJNSH910.GDHNJN.BusinessForm.BusinessPlugIn
|
||||
dtexcel = val2.Tables[0];
|
||||
string importIndexStr = GetImportIndexStr();
|
||||
List<string> list = new List<string>();
|
||||
for (int i = 0; i < ((InternalDataCollectionBase)dtexcel.Rows).Count; i++)
|
||||
for (int i = 0; i < dtexcel.Rows.Count; i++)
|
||||
{
|
||||
if (!list.Contains(dtexcel.Rows[i][importIndexStr]))
|
||||
{
|
||||
@@ -951,7 +951,7 @@ namespace HNJNSH910.GDHNJN.BusinessForm.BusinessPlugIn
|
||||
try
|
||||
{
|
||||
string text = btnStr;
|
||||
if (!(text == "F_PCMT_IMPORTDATA"))
|
||||
if (text != "F_PCMT_IMPORTDATA")
|
||||
{
|
||||
if (text == "F_PCMT_COVERIMPORTDATA")
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user