RoR渲染PDF并自动打印

时间:2014-10-21 14:45:20

标签: javascript ruby-on-rails wicked-pdf kiosk-mode

我正在使用wicked_pdf呈现PDF文件。 Web应用程序使用kiosk-mode(--kiosk --kiosk-printing)以chrome运行。问题是我必须在渲染PDF时打开打印对话框,以便通过自助服务终端自动打印PDF。

我在 PDF- / HTML-Template 中使用Javascript-function window.print();尝试了此操作。但是没有执行该功能,也没有打开打印对话框。

这是我的控制器方法( materials_stocks_controller.rb ):

def create
@material = Manufacturer::MaterialsStock.new(params[:manufacturer_materials_stock])

respond_to do |wants|
  if @material.save
    @materials    = Manufacturer::MaterialsStock.ordered_collection
    wants.js { render :layout => false }
    wants.pdf {

      render :pdf => "Material-Barcode",
             :template => 'manufacturer/material_info',
             :show_as_html => !params[:debug].blank?,
             :page_height => 62,
             :page_width  => 110,
             :margin => {
                 :top     => 3,
                 :bottom  => 3,
                 :left    => 0,
                 :right   => 3
             },
             :use_xserver => false,
             :print_media_type => true,
             "load-error-handling"=> "ignore"
    }
  else
    raise "Unable to create material in stock"
  end
end
end

视图(material_info.pdf.erb):

<html>
  <head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <script>
    function printing_dialog() {
      window.print();
    }
  </script>

</head>
<body onload="printing_dialog()">

  <!-- stuff ... -->

</body>
</html>

有谁知道如何打开打印对话框?

谢谢! :)


更新

我用wicked_pdf-Docu中的page-number-JS-Code完全替换了模板代码,JS运行不正常:

material_info.pdf.erb中的新代码(用于测试):

<html>

<head>
  <script>
      function number_pages() {
          var vars={};
          var x=document.location.search.substring(1).split('&');
          for(var i in x) {var z=x[i].split('=',2);vars[z[0]] = unescape(z[1]);}
          var x=['frompage','topage','page','webpage','section','subsection','subsubsection'];
          for(var i in x) {
              var y = document.getElementsByClassName(x[i]);
              for(var j=0; j<y.length; ++j) y[j].textContent = vars[x[i]];
          }
      }
  </script>
</head>
<body onload="number_pages()">
Page <span class="page"></span> of <span class="topage"></span>
</body>
</html>

2 个答案:

答案 0 :(得分:2)

所以这是我的解决方案:

一个新的纯HTML-File(create.html.erb),其代码如下:

<html>
<head>

  <%= javascript_include_tag "http://code.jquery.com/jquery-1.10.0.min.js" %>
  <%= javascript_include_tag "http://code.jquery.com/ui/1.10.3/jquery-ui.min.js" %>

  <script>
      $(document).ready(function() {
          pdf = document.getElementById('pdf_source');
          pdf.focus();

          setTimeout(function(){
              pdf.contentWindow.print();
          }, 3000);

      });
  </script>

</head>
<body>


<% url = "#{request.protocol}#{request.host_with_port}/admin/printing_manufacturer_materials_stock?file=#{@file_name}" %>
<iframe id ="pdf_source" src="<%=url %>" style="width:700px;height:500px;"></iframe>


</body>
</html>

在控制器中我创建了PDF并保存了它。打印方法根据param:file发送保存的文件(send_file)。

答案 1 :(得分:0)

window.print();会工作

但是浏览器应该支持pdf文件。