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();
    }
  • 相关阅读:
    mybatis映射器${}和#{}的区别
    在list里循环放入map,每次map里的值都不一样,可是放入后再取出来就变成一样的
    tomcat 配置 编码方式后,重新启动 配置还原
    三级联动探索
    Excel导入导出的实现
    Servlet实现文件上传下载
    Java数据类型转换汇总
    mysql8.0.13安装
    cmd中命令能用,vs中不能用解决方案
    yii2获取模块、控制器、方法名
  • 原文地址:https://www.cnblogs.com/Fandyx/p/2429816.html
Copyright © 2011-2022 走看看