| 12345678910111213141516 |
- <% if @sale.present? %>
- window.location = "<%= new_sale_path %>";
- $("#notice").html("<%= flash[:notice] %>");
- $.ajax({
- type: "get",
- url: '<%= print_receipt_path(@sale.id) %>',
- dataType: 'script'
- });
- <% elsif @products_return.present? %>
- window.location = "<%= products_returns_path %>";
- $("#notice").html("<%= flash[:notice] %>");
- var ticket_window = window.open("<%= print_return_receipt_path(@products_return.id, format: 'pdf') %>", 'New tab', '' );
- ticket_window.print();
- <% end %>
|