zoukankan      html  css  js  c++  java
  • How to: Execute Custom Code when a Report is Persisted 如何:在报表持久化时执行自定义代码

    This topic describes how you can customize the ReportsStorage class. Assume you have a customized the ReportDataV2 class and added the ModifiedBy property that should return the name of the user who last edited the report layout. You need to update this property value each time a report layout is saved. For this purpose, customize the ReportsStorage and register your custom implementation. The steps below demonstrate how to do it.

    本主题介绍如何自定义报表存储类。假设您已自定义了 ReportDataV2 类,并添加了"修改者"属性,该属性应返回上次编辑报表布局的用户的名称。每次保存报表布局时,都需要更新此属性值。为此,请自定义报表存储并注册自定义实现。以下步骤演示如何执行此操作。

    Note 注意
    The approach described in this topic is not supported by the Mobile platform.
    移动平台不支持本主题中描述的方法。
    • Inherit the ReportsStorage class and override its ReportsStorage.SaveReport method.

    • 继承报表存储类并重写其报表存储.保存报表方法。

      using DevExpress.XtraReports.UI;
      using DevExpress.ExpressApp;
      using DevExpress.ExpressApp.ReportsV2;
      using DevExpress.ExpressApp.Security;
      // ...
      public class CustomReportsStorage : ReportsStorage {
          public override void SaveReport(IReportDataV2Writable reportData, XtraReport report) {
              if (reportData is MyReportDataV2) {
                  ISecurityUser currentUser = SecuritySystem.CurrentUser as ISecurityUser;
                  if (currentUser != null) {
                      ((MyReportDataV2)reportData).ModifiedBy = currentUser.UserName;
                  }
              }
              base.SaveReport(reportData, report);
          }
      }
    • Edit the Module.cs (Module.vb) file and override the ModuleBase.Setup method. In this method, assign an instance of the CustomReportsStorage to the static ReportDataProvider.ReportsStorage property.

    • 编辑Module.cs(模块.vb)文件并重写模块Base.安装程序方法。在此方法中,将自定义报表存储的实例分配给静态报表数据提供程序。报告存储属性。

      using DevExpress.ExpressApp.ReportsV2;
      // ...
      public override void Setup(XafApplication application) {
          ReportDataProvider.ReportsStorage = new CustomReportsStorage();
          base.Setup(application);
      }
  • 相关阅读:
    Android Studio AVD和SDK Manager灰色不能点击的问题。
    回溯:最佳调度问题
    回溯:八皇后问题(蒟蒻)
    usaco1.4.3等差数列
    单调队列练习题(oj p1157 p1158 p1159)
    OJP1147括号匹配加强版(栈)与P1153乱头发节(单调栈)
    NOIP2017游记......
    火柴棒等式c++
    潜伏者(noip09年t1)解题报告 C++
    2016noipday1t1玩具迷题结题报告
  • 原文地址:https://www.cnblogs.com/foreachlife/p/How-to-Execute-Custom-Code-when-a-Report-is-Persisted.html
Copyright © 2011-2022 走看看