获取新增在 系统参数上的字段信息

栏目:云星空知识作者:金蝶来源:金蝶云社区发布:2024-09-16浏览:1

获取新增在 系统参数上的字段信息

方法一:通过系统参数帮助类

SystemParameterServiceHelper.GetParamter(this.Context, this.Context.CurrentOrganizationInfo.ID, 0, "对应系统参数的表单标识", "对应字段").ToString();

方法二:部分参数在数据库内是通过xml格式存储,也可以通过数据库查询后经xml转换获取

数据库查询结果为:<K2e2de1f8><FDelMatch>True</FDelMatch><FStrength>2</FStrength><FPoint>1</FPoint><InnerAccountType>1</InnerAccountType><FBillIsPost>1</FBillIsPost><FProSalesRecBillAuto>True</FProSalesRecBillAuto><FCashPurPayBillAuto>True</FCashPurPayBillAuto><FMobSalesCreatRecBillStatues>0</FMobSalesCreatRecBillStatues><MobileFundVersion>2</MobileFundVersion><FIsCheckPermission>True</FIsCheckPermission><FBankAcntAutoStateCbx>0</FBankAcntAutoStateCbx><F_RZCN_CBSUrl></F_RZCN_CBSUrl></K2e2de1f8>

     string sql = string.Format(@"select FPARAMETERS from T_BAS_SYSPARAMETER where FPARAMETEROBJID='CN_SystemParameter'  and FORGID='{0}'", FORGID);
            DynamicObjectCollection doc = DBUtils.ExecuteDynamicObject(ctx, sql, null, null, CommandType.Text, null);
            if (doc.Count() > 0)
            {
                string xURL = Convert.ToString(doc.First()["FPARAMETERS"]);
                StringBuilder sb = new StringBuilder();
                sb.Append(xURL);
                XmlDocument Xmldoc = new XmlDocument();
                Xmldoc.LoadXml(sb.ToString());
                XmlNode xn = Xmldoc.SelectSingleNode("/K2e2de1f8");
                string F_RZCN_CBSUrl = xn["F_RZCN_CBSUrl"].InnerText;
            }


获取新增在 系统参数上的字段信息

方法一:通过系统参数帮助类SystemParameterServiceHelper.GetParamter(this.Context, this.Context.CurrentOrganizationInfo.ID, 0, "对应...
点击下载文档
确认删除?
回到顶部
客服QQ
  • 客服QQ点击这里给我发消息