我正在寻找构建一个相当简单的插件来计算使用和剩余的“单位”数量。我有两个自定义实体(父)bc_learninglicences 和(子)bc_llbalance,插件在创建 bc_llbalance 时触发,另一个用于更新。
bc_llbalance:包含
bc_learninglicense(在父实体 bc_learninglicences / bc_name 上查找字段)
bc_units(此记录使用的单位)
bc_learninglicences:包含
bc_name
bc_unitsquantity(设置为单位的总数量)
bc_unitsused(这需要继承“bc_llbalance”上的“bc_units”)
bc_unitsremaining(简单的 bc_unitsquantity - bc_unitsused)
好的,所以我已经包含了我刚刚试图弄清楚如何让 bc_unitsused 继承总和的代码......
ps 我是 CRM 2011 开发新手,只有几周/几个项目经验。
// Obtain the execution context from the service provider.
Microsoft.Xrm.Sdk.IPluginExecutionContext context (Microsoft.Xrm.Sdk.IPluginExecutionContext) serviceProvider.GetService(typeof(Microsoft.Xrm.Sdk.IPluginExecutionContext));
//Extract the tracing service for use in debugging sandboxed plug-ins.
ITracingService tracingService =(ITracingService)serviceProvider.GetService(typeof(ITracingService));
if (context.InputParameters.Contains("Target") && context.InputParameters["Target"] is Entity)
{
// Obtain the target entity from the input parmameters.
Entity entity = (Entity)context.InputParameters["Target"];
IOrganizationServiceFactory serviceFactory =(IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));
IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId);
EntityReference a = (EntityReference)entity.Attributes["bc_learninglicense"];// ((EntityReference)targetEntity.Attributes["bc_learninglicense"]).Id;
if (entity.LogicalName == "bc_llbalance")
{
//fetchxml to get the sum total of estimatedvalue
string value_sum = string.Format(@"<fetch distinct='false' mapping='logical'
aggregate='true'><entity name='bc_llbalance'><attribute name='bc_units'
alias='units_sum' aggregate='sum' /><filter type='and'><condition
attribute='bc_learninglicense' operator='eq' value='{0}' uiname=''</filter></entity>
</fetch>", a.Id);
FetchExpression fetch = new FetchExpression(value_sum);
EntityCollection value_sum_result = service.RetrieveMultiple(fetch);
decimal TotalValue = 0;
// decimal TotalValue = 0;
foreach (var c in value_sum_result.Entities)
{
TotalValue = ((Decimal)((AliasedValue)c["value_sum"]).Value);
}
Entity llc = new Entity("bc_learninglicences");
llc.Id = a.Id;
llc.Attributes["bc_unitsused"] = TotalValue;
service.Update(llc);
}
}
所以我认为问题在于与父
实体“bc_learninglicences”的连接,“bc_learninglicense”是子实体“bc_llbalance”的查找字段
。
希望这是有道理的:基本上它不起作用
我从 crm 得到这个错误
Unhandled Exception: System.ServiceModel.FaultException`1[[Microsoft.Xrm.Sdk.OrganizationServiceFault, Microsoft.Xrm.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]: Unexpected exception from plug-in (Execute): LearningLicenses.LearningLicenses: System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.Detail:
<OrganizationServiceFault xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/xrm/2011/Contracts">
<ErrorCode>-2147220956</ErrorCode>
<ErrorDetails xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Collections.Generic" />
<Message>Unexpected exception from plug-in (Execute): LearningLicenses.LearningLicenses: System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.</Message>
<Timestamp>2013-01-24T13:11:51.2373399Z</Timestamp>
<InnerFault i:nil="true" />
<TraceText>
[LearningLicenses: LearningLicenses.LearningLicenses]
[c1b35170-c563-e211-8c6d-b499bafd5e5b: LearningLicenses.LearningLicenses: Create of bc_llbalance]
</TraceText>
</OrganizationServiceFault>
对此解决方案的任何建议或帮助将不胜感激。
感谢您花时间帮助我解决这个问题!
我在加载父表单时也有一些jscritp,它计算子实体的子网格的总和:这只是为了澄清我需要实现的目标......这还不够,因为父表单仅在加载时更新插件 bc_learninglicences 将在创建 bc_llbalance 时更新。
function timeout(){
setTimeout(calcUnitTotal, 3000);
}
function calcUnitTotal(){
var grid = document.getElementById('Lines').control;
var ids = gridControl.get_allRecordIds();
var sum = 0;
var cellValue;
for(i = 0; i < ids.length; i++) {
var cellValue = grid.get_selectedRecords('bc_units')[i].value;
var number = Number(cellValue.replace(/[^0-9\.]+/g,""));
sum = sum + number;
}
Xrm.Page.data.entity.attributes.get('bc_unitsused').setValue(sum);
var val1 = Xrm.Page.getAttribute('bc_unitsquantity').getValue();
if(val1 != null && sum != null )
{
var result = val1 - sum;
Xrm.Page.data.entity.attributes.get('bc_unitsremaining').setValue(result);
}
else { alert(val1 + sum + "error: Values not passed for Remaining") }
}