使用済みおよび残りの「ユニット」の量を計算する、かなり単純なプラグインを構築しようとしています。2つのカスタムエンティティ(親)bc_learninglicencesと(子)bc_llbalanceがあります。プラグインはbc_llbalanceの作成時に起動し、もう1つは更新用です。
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私はCRM2011の開発に不慣れで、数週間/プロジェクトの経験がほとんどありません。
// 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") }
}