我有一个我需要处理的具体情况。我有一个插件,可以在创建或更新发票明细时刷新发票上的特定汇总字段。 现在,我需要在删除发票明细时刷新该字段。
分析这个问题,我意识到我无法在预操作时刷新汇总字段,因为发票明细记录尚未删除,而在后期操作中,我无法从该特定记录中检索发票Guid,因为它已消失。
这里处理创建/更新时的汇总刷新代码:
Entity invoiceDetail = service.Retrieve("invoicedetail", targetId, new ColumnSet(true));
Guid invoiceID = ((EntityReference)invoiceDetail["invoiceid"]).Id;
if (targetEntity.Attributes.Contains("extendedamount"))
{
Entity myEntity = service.Retrieve("invoice", invoiceID, new ColumnSet(true));
CalculateRollupFieldRequest rollupRequest = new CalculateRollupFieldRequest
{
Target = new EntityReference("invoice", invoiceID),
FieldName = "detailamount"
};
CalculateRollupFieldResponse response = (CalculateRollupFieldResponse)service.Execute(rollupRequest);
myEntity = response.Entity;
service.Update(myEntity);
}
你有什么建议吗?我为此疯狂,想不出任何事......
答案 0 :(得分:4)
您可以获取事件前的指导,并将其传递给事后 - MSDN documentation
来自MSDN的示例代码:
using System; // Microsoft Dynamics CRM namespace(s) using Microsoft.Xrm.Sdk; namespace Microsoft.Crm.Sdk.Samples { /// <summary> /// A plug-in that sends data to another plug-in through the SharedVariables /// property of IPluginExecutionContext. /// </summary> /// <remarks>Register the PreEventPlugin for a pre-operation stage and the /// PostEventPlugin plug-in on a post-operation stage. /// </remarks> public class PreEventPlugin : IPlugin { public void Execute(IServiceProvider serviceProvider) { // Obtain the execution context from the service provider. Microsoft.Xrm.Sdk.IPluginExecutionContext context = (Microsoft.Xrm.Sdk.IPluginExecutionContext) serviceProvider.GetService(typeof(Microsoft.Xrm.Sdk.IPluginExecutionContext)); // Create or retrieve some data that will be needed by the post event // plug-in. You could run a query, create an entity, or perform a calculation. //In this sample, the data to be passed to the post plug-in is // represented by a GUID. Guid contact = new Guid("{74882D5C-381A-4863-A5B9-B8604615C2D0}"); // Pass the data to the post event plug-in in an execution context shared // variable named PrimaryContact. context.SharedVariables.Add("PrimaryContact", (Object)contact.ToString()); } } public class PostEventPlugin : IPlugin { public void Execute(IServiceProvider serviceProvider) { // Obtain the execution context from the service provider. Microsoft.Xrm.Sdk.IPluginExecutionContext context = (Microsoft.Xrm.Sdk.IPluginExecutionContext) serviceProvider.GetService(typeof(Microsoft.Xrm.Sdk.IPluginExecutionContext)); // Obtain the contact from the execution context shared variables. if (context.SharedVariables.Contains("PrimaryContact")) { Guid contact = new Guid((string)context.SharedVariables["PrimaryContact"]); // Do something with the contact. } } } }