# FastReportService **Repository Path**: yhsee_admin/fast-report-service ## Basic Information - **Project Name**: FastReportService - **Description**: 本地web打印服务,带有日志,html示例,支持远程打印,报表编辑 - **Primary Language**: Pascal - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 14 - **Forks**: 14 - **Created**: 2021-05-27 - **Last Updated**: 2025-06-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # FastReportService #### 介绍 本地 web 打印服务,带有日志,html 示例,支持远程打印,报表编辑 #### 软件架构 软件架构说明 浏览器直接通过 AJAX POST 报表信息与数据进行本地打印。 示例代码 ``` $.get("data.json", function (data) { var printData = { tables: data, params: { reportTitle: "送货单", reportFile: "http://127.0.0.1:9521/demo/test.fr3", reportContent: "", //fastreport xml reportMode: 1, } } $.ajax({ type: "POST", url: "/", contentType: "application/json", dataType: "json", data: JSON.stringify(printData), success: function (result) { console.log(result) } }) }); ``` #### 安装教程 1. 直接使用的话可以通过 output 目录下的安装程序进行安装使用。 2. 源码在 Delphi XE 3 下进行编译。 3. 第三方控件:Indy 10.5.9.0, Fast Report 5.4.6 #### 使用说明 1. 打印调用地址: http://127.0.0.1:9521/ 2. 调用的 JSON 数据格式如下 ![数据格式](https://images.gitee.com/uploads/images/2021/0527/162435_839f75f1_81850.png "屏幕截图.png") params 为打印报表相关参数 reportMode 为打印模式 0:不提示直接打印 1:会有预览窗口弹出 2:不提示直接输出成PDF PDF访问地址: http://127.0.0.1:9521/export/[reportTitle].pdf reportFile 为报表文件,可以是本地绝对路径,也可以是url报表下载地址。 reportContent 为报表的XML内容 他与 reportFile 只能设置一个。 tables 为表格数据 表名称需要与报表内数据库名一致 3. 尽量多参考测试例子 访问地址 http://127.0.0.1:9521/demo/index.html #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request #### 特技 1. 使用 Readme_XXX.md 来支持不同的语言,例如 Readme_en.md, Readme_zh.md 2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)