示例#1
0
        private static ConfigObject GetConfigObjectFromXmlNode(XmlNode nodeItem)
        {
            ConfigObject cfgObj = new ConfigObject();

            cfgObj.Type             = GetNodeAttribute(nodeItem, "Type");
            cfgObj.Name             = GetNodeAttribute(nodeItem, "Name");
            cfgObj.Text             = GetNodeAttribute(nodeItem, "Text");
            cfgObj.TemplateFileName = GetNodeAttribute(nodeItem, "TemplateFileName");
            XmlNodeList nodeFieldList = nodeItem.SelectNodes("FieldList/Field");

            if (nodeFieldList == null)
            {
                return(null);
            }
            cfgObj.FieldList = new List <ConfigField>();
            for (int n = 0; n < nodeFieldList.Count; n++)
            {
                XmlNode nodeField = nodeFieldList[n];
                cfgObj.FieldList.Add(GetConfigFieldFromXmlNode(nodeField));
            }
            nodeFieldList = nodeItem.SelectNodes("DefaultFieldList/Field");
            if (nodeFieldList != null)
            {
                cfgObj.DefaultFieldList = new List <ConfigField>();
                for (int n = 0; n < nodeFieldList.Count; n++)
                {
                    XmlNode nodeField = nodeFieldList[n];
                    cfgObj.DefaultFieldList.Add(GetConfigFieldFromXmlNode(nodeField));
                }
            }
            return(cfgObj);
        }
示例#2
0
        private bool RowDataExist      = false;                 // 标示记录是否已存在,在CheckUniqueGroup中赋值

        /// <summary>
        /// 导入一行数据,前提:rowData已经是真实数据(不是空行),结果:将数据插入数据库,由外部调用者进行事务控制
        /// </summary>
        /// <param name="importType"></param>
        /// <param name="rowHeader"></param>
        /// <param name="rowData"></param>
        /// <returns></returns>
        public string ImportRow(string importType, string[] rowHeader, string[] rowData)
        {
            if (listConfigObj == null)
            {
                return("$CS_CONFIG_NOT_EXIST");
            }
            ConfigObject cfgObj = null;

            for (int i = 0; i < listConfigObj.Count; i++)
            {
                if (listConfigObj[i].Name == importType)
                {
                    cfgObj = listConfigObj[i];
                    break;
                }
            }
            if (cfgObj == null)
            {
                return("$CS_CONFIG_NOT_EXIST");
            }

            try
            {
                object objIns = CreateObjectInstance(cfgObj);
                AssignData(objIns, cfgObj, rowHeader, rowData);
                CheckEntityTotal(ref objIns, cfgObj);
                InsertData(objIns, cfgObj, rowHeader, rowData);
            }
            catch (Exception ex)
            {
                return(ex.Message);
            }

            return("");
        }
示例#3
0
文件: FMain.cs 项目: windygu/.net-wms
        private void FMain_Load(object sender, EventArgs e)
        {
            ApplicationService.LoginUserCode = "ImportTool";

            ConfigObject.LoadConfig(ApplicationService.ConfigFile, out configObjList, out configMatchType);

            InitTreeView();
        }
示例#4
0
        /// <summary>
        /// 建立实体对象
        /// </summary>
        /// <returns></returns>
        private object CreateObjectInstance(ConfigObject cfgObj)
        {
            System.Type type   = GetTypeFromDomain(cfgObj.Type);
            object      objIns = DomainObjectUtility.CreateTypeInstance(type);

            // 对配置的默认字段赋值
            if (cfgObj.DefaultFieldList != null)
            {
                for (int i = 0; i < cfgObj.DefaultFieldList.Count; i++)
                {
                    object strValue = null;
                    if (cfgObj.DefaultFieldList[i].DefaultValue != "")
                    {
                        strValue = cfgObj.DefaultFieldList[i].DefaultValue;
                    }
                    string strFieldName = cfgObj.DefaultFieldList[i].Name;
                    string strDataFrom  = cfgObj.DefaultFieldList[i].DataFrom;
                    if (strDataFrom == FieldDataFrom.UserCode)
                    {
                        strValue = userCode;
                    }
                    else if (strDataFrom == FieldDataFrom.Date)
                    {
                        strValue = dbDateTime.DBDate;
                    }
                    else if (strDataFrom == FieldDataFrom.Time)
                    {
                        strValue = dbDateTime.DBTime;
                    }
                    else if (strDataFrom == FieldDataFrom.GUID)
                    {
                        strValue = System.Guid.NewGuid().ToString();
                    }
                    if (strValue != null)
                    {
                        DomainObjectUtility.SetValue(objIns, strFieldName, strValue);
                    }
                }
            }
            // 对默认的三个字段赋值
            if (DomainObjectUtility.GetFieldName(type, "MaintainUser") != null)
            {
                DomainObjectUtility.SetValue(objIns, "MaintainUser", userCode);
            }
            if (DomainObjectUtility.GetFieldName(type, "MaintainDate") != null)
            {
                DomainObjectUtility.SetValue(objIns, "MaintainDate", dbDateTime.DBDate);
            }
            if (DomainObjectUtility.GetFieldName(type, "MaintainTime") != null)
            {
                DomainObjectUtility.SetValue(objIns, "MaintainTime", dbDateTime.DBTime);
            }

            return(objIns);
        }
示例#5
0
        /// <summary>
        /// 对实体赋值
        /// </summary>
        private void AssignData(object objIns, ConfigObject cfgObj, string[] rowHeader, string[] rowData)
        {
            for (int i = 0; i < cfgObj.FieldList.Count; i++)
            {
                ConfigField cfgFld    = cfgObj.FieldList[i];
                string      strHeader = cfgFld.Text;
                string      strValue  = "";
                GetMappingFieldValue(cfgObj, cfgFld, objIns, rowHeader, rowData, i, ref strHeader, ref strValue);

                if (cfgFld.AllowNull == false && strValue == "")
                {
                    throw new Exception("$Error_Input_Empty [" + strHeader + "]");
                }
                CheckData(objIns, cfgFld, strValue, strHeader);      // 检查数据格式

                if (cfgFld.IncludeItem == true)
                {
                    if (objIns is BenQGuru.eMES.Domain.BaseSetting.User
                        &&
                        cfgFld.Name == "UserPassword")
                    {
                        strValue = BenQGuru.eMES.Common.Helper.EncryptionHelper.MD5Encryption(strValue);
                    }

                    //2#条码流水号做特殊处理
                    if (objIns is BenQGuru.eMES.Domain.MOModel.LabelRCard2Seq)
                    {
                        if (cfgFld.Name == "ModelCode")
                        {
                            if (strValue.Length >= 1)
                            {
                                DomainObjectUtility.SetValue(objIns, "Year", strValue.Substring(0, 1));
                            }

                            if (strValue.Length >= 4)
                            {
                                strValue = strValue.Substring(1, 3);
                            }
                        }
                        else if (cfgFld.Name == "Year")
                        {
                            continue;
                        }
                    }
                    DomainObjectUtility.SetValue(objIns, cfgFld.Name, strValue);
                }
            }
        }
示例#6
0
        public List <ConfigField> DefaultFieldList = null; // 默认字段列表

        public static void LoadConfig(string xmlFile, out List <ConfigObject> outConfigObjList, out MatchType matchType)
        {
            outConfigObjList = null;
            matchType        = null;
            XmlDocument doc = new XmlDocument();

            doc.Load(xmlFile);
            XmlNode nodeItemRoot = doc.SelectSingleNode("//ItemList");

            if (nodeItemRoot == null)
            {
                return;
            }
            XmlNodeList nodeItemList = nodeItemRoot.SelectNodes("Item");

            if (nodeItemList == null)
            {
                return;
            }
            outConfigObjList = new List <ConfigObject>();
            for (int i = 0; i < nodeItemList.Count; i++)
            {
                XmlNode      nodeItem = nodeItemList[i];
                ConfigObject cfgObj   = GetConfigObjectFromXmlNode(nodeItem);
                if (cfgObj != null)
                {
                    outConfigObjList.Add(cfgObj);
                }
            }
            XmlNode nodeMatchRoot = doc.SelectSingleNode("//MatchList");

            if (nodeMatchRoot != null)
            {
                matchType = new MatchType();
                XmlNodeList nodeMatchList = nodeMatchRoot.SelectNodes("Match");
                for (int i = 0; nodeMatchList != null && i < nodeMatchList.Count; i++)
                {
                    string      strMatchName = GetNodeAttribute(nodeMatchList[i], "Name");
                    XmlNodeList nodeMatchDtl = nodeMatchList[i].SelectNodes("List");
                    for (int n = 0; nodeMatchDtl != null && n < nodeMatchDtl.Count; n++)
                    {
                        matchType.Add(strMatchName, GetNodeAttribute(nodeMatchDtl[n], "Value"), GetNodeAttribute(nodeMatchDtl[n], "Text"));
                    }
                }
            }
            return;
        }
示例#7
0
 /// <summary>
 /// 检查不为空的数据
 /// </summary>
 private void CheckAllowNullField(object objIns, ConfigObject cfgObj)
 {
     for (int i = 0; i < cfgObj.FieldList.Count; i++)
     {
         if (cfgObj.FieldList[i].AllowNull == false)
         {
             if (DomainObjectUtility.GetFieldName(objIns.GetType(), cfgObj.FieldList[i].Name) != null)
             {
                 object objVal = DomainObjectUtility.GetValue(objIns, cfgObj.FieldList[i].Name, null);
                 if (objVal == null || objVal.ToString() == "")
                 {
                     throw new Exception("$Error_Input_Empty [" + cfgObj.FieldList[i].Text + "]");
                 }
             }
         }
     }
 }
示例#8
0
文件: FMain.cs 项目: windygu/.net-wms
        private FImpFormBase CreateImportForm(ConfigObject cfgObj)
        {
            FImpFormBase fImp = null;

            switch (cfgObj.Name)
            {
            case "Operation":
                fImp = new FImpOP();
                break;

            case "Item2Route":
                fImp = new FImpItemRoute();
                break;

            default:
                fImp = new FImpFormBase();
                break;
            }
            return(fImp);
        }
示例#9
0
        /// <summary>
        /// 检查唯一键
        /// </summary>
        /// <returns></returns>
        private void CheckUniqueGroup(ref object objIns, ConfigObject cfgObj)
        {
            RowDataExist = false;
            Dictionary <string, List <string> > listUniqueGroup = new Dictionary <string, List <string> >();

            for (int i = 0; i < cfgObj.FieldList.Count; i++)
            {
                if (cfgObj.FieldList[i].UniqueGroup != "")
                {
                    List <string> listGroup = null;
                    if (listUniqueGroup.ContainsKey(cfgObj.FieldList[i].UniqueGroup) == true)
                    {
                        listGroup = listUniqueGroup[cfgObj.FieldList[i].UniqueGroup];
                    }
                    else
                    {
                        listGroup = new List <string>();
                        listUniqueGroup.Add(cfgObj.FieldList[i].UniqueGroup, listGroup);
                    }
                    listGroup.Add(cfgObj.FieldList[i].Name);
                }
            }
            foreach (List <string> listGroup in listUniqueGroup.Values)
            {
                string[] strFieldName = new string[listGroup.Count];
                listGroup.CopyTo(strFieldName);
                object[] objFieldValue = new object[strFieldName.Length];
                for (int i = 0; i < strFieldName.Length; i++)
                {
                    objFieldValue[i] = DomainObjectUtility.GetValue(objIns, strFieldName[i], null);
                }
                object[] objsTmp = this.dataProvider.CustomSearch(objIns.GetType(), strFieldName, objFieldValue);
                if (objsTmp != null && objsTmp.Length > 0)
                {
                    if (this.UpdateRepeatData == DataRepeatDeal.Update)  // 如果允许更新记录,则不用报错
                    {
                        object objDB = objsTmp[0];

                        this.RowDataExist = true;
                        //用Excel中的数据更新数据库中的数据
                        for (int i = 0; i < cfgObj.FieldList.Count; i++)
                        {
                            ConfigField cfgFld = cfgObj.FieldList[i];

                            if (cfgFld.IncludeItem == true)
                            {
                                object v = DomainObjectUtility.GetValue(objIns, cfgFld.Name, null);

                                //产品的ROHS字段为空时不更新
                                if (objIns is BenQGuru.eMES.Domain.MOModel.Item && cfgFld.Name == "ROHS" && v.ToString().Trim() == string.Empty)
                                {
                                    continue;
                                }

                                //产品的ROHS字段为空时不更新
                                if (objIns is BenQGuru.eMES.Domain.MOModel.Item && v != null && v.ToString().Trim() == string.Empty)
                                {
                                    continue;
                                }

                                if (objIns is BenQGuru.eMES.Domain.MOModel.Item && v != null
                                    &&
                                    (v is int || v is decimal || v is double)
                                    &&
                                    v.ToString().Trim() == "0")
                                {
                                    continue;
                                }

                                if (objIns is BenQGuru.eMES.Domain.MOModel.ItemRoute2OP && cfgFld.Name == "OPControl")
                                {
                                    int    seq = (int)BenQGuru.eMES.BaseSetting.OperationList.ComponentLoading;
                                    string con = v.ToString();

                                    string v_old = DomainObjectUtility.GetValue(objDB, cfgFld.Name, null).ToString();

                                    System.Text.StringBuilder sb = new StringBuilder(v_old);
                                    sb[seq] = con[0];

                                    v = sb.ToString();
                                }
                                DomainObjectUtility.SetValue(objDB, cfgFld.Name, v);
                            }
                        }
                        objIns = objDB;
                    }
                    else if (this.UpdateRepeatData == DataRepeatDeal.Ignore)
                    {
                        throw new Exception("$Import_Unique_Data_Exist");
                    }
                    else
                    {
                        throw new Exception("$DATA_REPEAT_CANCEL");
                    }
                }
            }
        }
示例#10
0
 /// <summary>
 /// 检查整体数据
 /// </summary>
 /// <param name="objIns"></param>
 /// <param name="cfgObj"></param>
 private void CheckEntityTotal(ref object objIns, ConfigObject cfgObj)
 {
     CheckAllowNullField(objIns, cfgObj);
     CheckUniqueGroup(ref objIns, cfgObj);
 }
示例#11
0
        /// <summary>
        /// 插入数据库
        /// </summary>
        private void InsertData(object objIns, ConfigObject cfgObj, string[] rowHeader, string[] rowData)
        {
            // 插入主记录
            if (this.RowDataExist == true)                                 // 数据已存在
            {
                if (this.UpdateRepeatData == DataRepeatDeal.Update)        // 更新
                {
                    if (objIns is BenQGuru.eMES.Domain.Package.PKRuleStep) //包装规则做特殊检查 joe song 20080220
                    {
                        BenQGuru.eMES.Package.PackageFacade pf = new BenQGuru.eMES.Package.PackageFacade(this.dataProvider);
                        pf.UpdatePKRuleStep(objIns as BenQGuru.eMES.Domain.Package.PKRuleStep);
                    }
                    else
                    {
                        this.dataProvider.Update(objIns);
                    }
                }

                else if (this.UpdateRepeatData == DataRepeatDeal.Ignore)    // 忽略
                {
                    throw new Exception("$Import_Unique_Data_Exist");
                }
                else if (this.UpdateRepeatData == DataRepeatDeal.Cancel)    // 终止
                {
                    throw new Exception("$DATA_REPEAT_CANCEL");
                }
            }
            else                                                   // 数据不存在,则Insert
            if (objIns is BenQGuru.eMES.Domain.Package.PKRuleStep) //包装规则做特殊检查 joe song 20080220
            {
                BenQGuru.eMES.Package.PackageFacade pf = new BenQGuru.eMES.Package.PackageFacade(this.dataProvider);
                pf.AddPKRuleStep(objIns as BenQGuru.eMES.Domain.Package.PKRuleStep);
            }
            else
            {
                this.dataProvider.Insert(objIns);
            }

            // 插入外部记录
            for (int i = 0; i < cfgObj.FieldList.Count; i++)
            {
                if (cfgObj.FieldList[i].ForeignItem == true)
                {
                    if (cfgObj.FieldList[i].IgnoreForeignWhenNull == true)      // 数据为空则忽略子项
                    {
                        int dataIndex = -1;
                        if (ImportDataMapping == DataMappingType.ByIndex)
                        {
                            if (i < rowHeader.Length)
                            {
                                dataIndex = i;
                            }
                        }
                        else
                        {
                            for (int n = 0; n < rowHeader.Length; n++)
                            {
                                if (rowHeader[n] == cfgObj.FieldList[i].Text ||
                                    UserControl.MutiLanguages.ParserMessage(cfgObj.FieldList[i].Name) == rowHeader[n])
                                {
                                    dataIndex = n;
                                    break;
                                }
                            }
                        }
                        if (dataIndex == -1)
                        {
                            return;
                        }
                        string strValue = rowData[dataIndex].Trim().ToUpper();
                        if (strValue == "")
                        {
                            break;
                        }
                    }

                    ConfigObject foreignCfgObj = cfgObj.FieldList[i].ForeignObject;
                    object       objForeignIns = CreateObjectInstance(foreignCfgObj);
                    AssignDataSubItem(objForeignIns, foreignCfgObj, rowHeader, rowData, objIns, cfgObj);
                    CheckEntityTotal(ref objForeignIns, foreignCfgObj);

                    if (this.RowDataExist == true)                          // 数据已存在
                    {
                        if (this.UpdateRepeatData == DataRepeatDeal.Update) // 更新
                        {
                            //针对用户默认组织
                            if (foreignCfgObj.Type == typeof(BenQGuru.eMES.Domain.BaseSetting.User2Org).ToString())
                            {
                                UpdateUser2Org(objForeignIns);
                            }
                            else
                            {
                                this.dataProvider.Update(objForeignIns);
                            }
                        }
                        else if (this.UpdateRepeatData == DataRepeatDeal.Ignore)    // 忽略
                        {
                            return;
                        }
                        else if (this.UpdateRepeatData == DataRepeatDeal.Cancel)    // 终止
                        {
                            throw new Exception("DATA_REPEAT");
                        }
                    }
                    else    // 数据不存在,则Insert
                    {
                        this.dataProvider.Insert(objForeignIns);
                    }
                }
            }
        }
示例#12
0
        private void GetMappingFieldValue(ConfigObject cfgObj, ConfigField cfgFld, object objIns, string[] rowHeader, string[] rowData, int fieldIndex, ref string strHeader, ref string strValue)
        {
            strHeader = cfgFld.Text;
            if (cfgFld.DataFrom == FieldDataFrom.Query)
            {
                string strQuerySql = cfgFld.DataQuerySql;

                string[]      strParamFieldList = cfgFld.DataQueryParam.Split(',');
                List <string> paramList         = new List <string>();
                for (int i = 0; i < strParamFieldList.Length; i++)
                {
                    if (strParamFieldList[i].Trim() != "")
                    {
                        paramList.Add(strParamFieldList[i].Trim());
                    }
                }
                if (paramList.Count > 0)
                {
                    object[] objsParam = new object[paramList.Count];
                    for (int i = 0; i < paramList.Count; i++)
                    {
                        //objsParam[i] = DomainObjectUtility.GetValue(objIns, paramList[i], null);
                        int iParamFieldIndex = -1;
                        for (int n = 0; n < cfgObj.FieldList.Count; n++)
                        {
                            if (cfgObj.FieldList[n].Name == paramList[i])
                            {
                                iParamFieldIndex = n;
                                break;
                            }
                        }
                        int dataIndex = -1;
                        if (ImportDataMapping == DataMappingType.ByIndex)
                        {
                            if (iParamFieldIndex < rowHeader.Length)
                            {
                                dataIndex = iParamFieldIndex;
                            }
                        }
                        else
                        {
                            for (int n = 0; n < rowHeader.Length; n++)
                            {
                                if (rowHeader[n] == cfgObj.FieldList[iParamFieldIndex].Text ||
                                    UserControl.MutiLanguages.ParserMessage(cfgObj.FieldList[iParamFieldIndex - 1].Name) == rowHeader[n])
                                {
                                    dataIndex = n;
                                    break;
                                }
                            }
                        }
                        if (dataIndex != -1)
                        {
                            objsParam[i] = rowData[dataIndex].Trim().ToUpper();
                        }
                    }
                    strQuerySql = string.Format(strQuerySql, objsParam);
                }
                DataSet ds = ((BenQGuru.eMES.Common.DomainDataProvider.SQLDomainDataProvider) this.dataProvider).PersistBroker.Query(strQuerySql);
                if (ds.Tables[0].Rows.Count > 0)
                {
                    if (ds.Tables[0].Rows[0][0] != System.DBNull.Value)
                    {
                        strValue = ds.Tables[0].Rows[0][0].ToString();
                    }
                }
            }
            else if (cfgFld.DataFrom == "")
            {
                int dataIndex = -1;
                if (ImportDataMapping == DataMappingType.ByIndex)
                {
                    if (fieldIndex < rowHeader.Length)
                    {
                        dataIndex = fieldIndex;
                    }
                }
                else
                {
                    for (int n = 0; n < rowHeader.Length; n++)
                    {
                        if (rowHeader[n] == cfgFld.Text ||
                            UserControl.MutiLanguages.ParserMessage(cfgFld.Name) == rowHeader[n])
                        {
                            dataIndex = n;
                            break;
                        }
                    }
                }
                if (dataIndex == -1)
                {
                    return;
                }
                strValue  = rowData[dataIndex].Trim().ToUpper();
                strHeader = rowHeader[dataIndex];
            }
            if (cfgFld.MatchType != "")
            {
                strValue = matchType.GetValue(cfgFld.MatchType, strValue);
            }

            if (strValue == "" && cfgFld.DefaultValue != "")
            {
                strValue = cfgFld.DefaultValue;
            }
        }
示例#13
0
        private void AssignDataSubItem(object objIns, ConfigObject cfgObj, string[] rowHeader, string[] rowData, object parentObj, ConfigObject parentCfgObj)
        {
            for (int i = 0; i < cfgObj.FieldList.Count; i++)
            {
                ConfigField cfgFld    = cfgObj.FieldList[i];
                string      strValue  = "";
                string      strHeader = "";
                if (cfgFld.DataFrom == FieldDataFrom.ParentItem)
                {
                    if (DomainObjectUtility.GetFieldName(parentObj.GetType(), cfgFld.ParentNodeField) != null)
                    {
                        object objValueTmp = DomainObjectUtility.GetValue(parentObj, cfgFld.ParentNodeField, null);
                        if (objValueTmp != null)
                        {
                            strValue = objValueTmp.ToString();
                        }
                        else
                        {
                            strValue = "";
                        }
                    }
                    strHeader = cfgFld.Text;
                }
                else if (cfgFld.DataFrom == FieldDataFrom.ParentNode)
                {
                    ConfigField cfgParentFld = null;
                    for (int n = 0; n < parentCfgObj.FieldList.Count; n++)
                    {
                        if (parentCfgObj.FieldList[n].Name == cfgFld.ParentNodeField)
                        {
                            cfgParentFld = parentCfgObj.FieldList[n];
                            break;
                        }
                    }
                    if (cfgParentFld != null)
                    {
                        int dataIndex = -1;
                        if (ImportDataMapping == DataMappingType.ByIndex)
                        {
                            dataIndex = parentCfgObj.FieldList.IndexOf(cfgParentFld);
                        }
                        else
                        {
                            for (int n = 0; n < rowHeader.Length; n++)
                            {
                                if (rowHeader[n] == cfgFld.Text ||
                                    UserControl.MutiLanguages.ParserMessage(cfgFld.Name) == rowHeader[n])
                                {
                                    dataIndex = n;
                                    break;
                                }
                            }
                        }
                        if (dataIndex == -1)
                        {
                            return;
                        }
                        strValue = rowData[dataIndex].Trim().ToUpper();
                        if (cfgFld.MatchType != "")
                        {
                            strValue = matchType.GetValue(cfgFld.MatchType, strValue);
                        }
                        strHeader = rowHeader[dataIndex];
                    }
                }

                if (strValue == "" && cfgFld.DefaultValue != "")
                {
                    strValue = cfgFld.DefaultValue;
                }
                if (cfgFld.AllowNull == false && strValue == "")
                {
                    throw new Exception("$Error_Input_Empty [" + strHeader + "]");
                }
                if (strValue == "" && cfgFld.DataFrom != null)
                {
                    strValue = cfgFld.DataFrom.ToString();
                }
                CheckData(objIns, cfgFld, strValue, strHeader);      // 检查数据格式

                if (cfgFld.IncludeItem == true)
                {
                    DomainObjectUtility.SetValue(objIns, cfgFld.Name, strValue);
                }
            }
        }
示例#14
0
文件: FMain.cs 项目: windygu/.net-wms
        private void trvMain_DoubleClick(object sender, EventArgs e)
        {
            TreeNode selectedNode = trvMain.SelectedNode;

            if (selectedNode == null)
            {
                return;
            }
            XmlNode nodeCfg = (XmlNode)selectedNode.Tag;

            if (nodeCfg == null)
            {
                return;
            }
            if (nodeCfg.Attributes["ImportItemName"] == null)
            {
                return;
            }

            string strImportName = nodeCfg.Attributes["ImportItemName"].FirstChild.Value;

            if (strImportName == "")
            {
                return;
            }
            ConfigObject cfgObj = null;

            for (int i = 0; i < this.configObjList.Count; i++)
            {
                if (this.configObjList[i].Name == strImportName)
                {
                    cfgObj = this.configObjList[i];
                    break;
                }
            }
            if (cfgObj == null)
            {
                return;
            }

            this.Cursor = Cursors.WaitCursor;
            for (int i = 0; i < this.panelMain.Controls.Count; i++)
            {
                if (this.panelMain.Controls[i] is FImpFormBase)
                {
                    ((FImpFormBase)this.panelMain.Controls[i]).Close();
                }
            }

            string strFile = ApplicationService.TemplateFolder + cfgObj.TemplateFileName;

            //2#条码的导入做特殊处理
            if (nodeCfg.Attributes["ImportItemName"].Value == "No2Seq")
            {
                string path = nodeCfg.Attributes["FromFile"].Value;
                if (path != null && path != string.Empty)
                {
                    try
                    {
                        System.IO.File.Copy(path, strFile, true);
                    }
                    catch { }
                }
            }

            FImpFormBase fImp = null;

            if (this.panelMain.Controls.Count > 0 && this.panelMain.Controls[0] is FImpFormBase)
            {
                fImp = (FImpFormBase)this.panelMain.Controls[0];
                //fImp.CloseExcelWorkbook();

                this.panelMain.Controls.Clear();
                Application.DoEvents();
                fImp          = CreateImportForm(cfgObj);
                fImp.MainForm = this;
                fImp.TopLevel = false;
                fImp.Dock     = DockStyle.Fill;
                this.panelMain.Controls.Add(fImp);
            }
            else
            {
                this.panelMain.Controls.Clear();
                fImp          = CreateImportForm(cfgObj);
                fImp.MainForm = this;
                fImp.TopLevel = false;
                fImp.Dock     = DockStyle.Fill;
                this.panelMain.Controls.Add(fImp);
            }
            fImp.CurrentImportName = cfgObj.Name;
            fImp.configMatchType   = this.configMatchType;
            fImp.configObjList     = this.configObjList;

            fImp.ShowExcel(strFile);
            fImp.Visible = true;

            this.Cursor = Cursors.Default;

            this.Activate();
        }