zoukankan      html  css  js  c++  java
  • How to fix to report is empty issue

    AOT\SysReportRun\run

    // VAR Changed on 06 Feb 2012 at 14:14:30 by JXie7519
    void run(boolean onlyReport = false)
    {
        // If this report is a webReport the run a webReport.
        if (webSession() && runBaseReport)
        {
            runBaseReport.runWebReport();
        }
        else
        {
            // When running the report and onlyReport = true then run the report.
            if (!onlyReport && runBaseReport)
            {
                if (runBaseReport.prompt())
                {
                    runBaseReport.run();
                }
                // If the prompt returns false the do not run the report.
                
    // The RunBaseReport.Run method calls the ReportRun.run method with the parm onlyReport = true.
                return;
            }
        }

        this.buildPrintGrandTotal();
        this.buildPrintOnlyTotals();

        // VAR Changed on 06 Feb 2012 at 14:14:30 by JXie7519 Begin
        if(this.printJobSettings().clientPrintJobSettings())
        {
            this.printJobSettings().clientPrintJobSettings().suppressScalingMessage(true);
            this.suppressReportIsEmptyMessage(true);
        }
        else
        {
            this.printJobSettings().suppressScalingMessage(true);
            this.suppressReportIsEmptyMessage(true);
        }
        // VAR Changed on 06 Feb 2012 at 14:14:30 by JXie7519 End

        super();
    }
  • 相关阅读:
    Go基础结构与类型06---房贷计算器
    Go基础结构与类型05---程序运算
    Go基础结构与类型04---基本数据类型
    Go基础结构与类型03---标准输入与输出
    Go基础结构与类型02---使用iota定义常量组
    Go基础结构与类型01---常量变量表达式
    java===IO=file
    java===IO=properties
    java===IO基本规律,各大常用IO流介绍练习
    java===IO字节流、字符流
  • 原文地址:https://www.cnblogs.com/Fandyx/p/2429816.html
Copyright © 2011-2022 走看看