zoukankan      html  css  js  c++  java
  • crm2011创建货币Money类型的字段

        using System;
        using Microsoft.Xrm.Sdk;
        using Microsoft.Xrm.Sdk.Messages;
        using Microsoft.Xrm.Sdk.Metadata;

        /// <summary>
        /// 创建货币Money类型的字段
        /// </summary>
        public class CreateMoneyAttribute
        {
             private string entityName = "new_class";

             public void Create(IOrganizationService service)
             {
                 CreateAttributeRequest request = new CreateAttributeRequest();
                 //关联的实体名称
                 request.EntityName = entityName;
                 MoneyAttributeMetadata moneyAttr = new MoneyAttributeMetadata();
                 //字段名称
                 moneyAttr.LogicalName = "new_moneyvalue";
                 //架构名称
                 moneyAttr.SchemaName = "new_moneyvalue";
                 //显示中文名称
                 moneyAttr.DisplayName = new Label("Money字段", 2052);
                 //描写叙述
                 moneyAttr.Description = new Label("Money字段", 2052);
                 //需求级别
                 moneyAttr.RequiredLevel = new AttributeRequiredLevelManagedProperty(AttributeRequiredLevel.None);
                 //字段安全性
                 moneyAttr.IsSecured = false;
                 //审核
                 moneyAttr.IsAuditEnabled = new BooleanManagedProperty(false);
                 //最大值
                 moneyAttr.MaxValue = 1000.00;
                 //最小值
                 moneyAttr.MinValue = 0;
                 //IME模式
                 moneyAttr.ImeMode = ImeMode.Auto;
                 //精度            
                 moneyAttr.Precision = 2;
                 moneyAttr.PrecisionSource = 2;

                 request.Attribute = moneyAttr;

                 service.Execute(request);
             }
        }

  • 相关阅读:
    mybatis
    mybatis
    hadoop完全分布式搭建
    用构造器确保初始化
    HashMap的内部结构与hash冲突
    方法重载 与 方法覆盖
    Django后台管理admin或者adminx中使用富文本编辑器
    Celery在Django中的使用介绍
    django.db.utils.InternalError: (1060, "Duplicate column name 'user_id'")迁移报错解决方法
    Django2.0版本以上与pymsql 不匹配问题以及解决方法
  • 原文地址:https://www.cnblogs.com/lcchuguo/p/5364527.html
Copyright © 2011-2022 走看看