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();
    }
  • 相关阅读:
    一个短信验证码倒计时插件
    记一次图片优化经历
    前端开发中两种常见的图片加载方式
    《javascript面向对象精要》读书笔记
    less hack 兼容
    第一次项目总结
    你总说毕业遥遥无期,可转眼就各奔东西
    【翻译】理念:无冲突的扩展本地DOM原型
    【翻译】jQuery是有害的
    202002280156-《统治世界的10种算法(摘自极客大学堂)》
  • 原文地址:https://www.cnblogs.com/Fandyx/p/2429816.html
Copyright © 2011-2022 走看看