Printing Receipt from Django Web Application

I see two ways to accomplish it:

First method - Configure your browser

Notes

Good solution if you have one printer for every client (because you can use the default printer only). Keep in mind that you can remove your print server (useful for very resource limited devices) making a script that the browser should automatically execute for open your file. You can use something like this:

#!/bin/bash
printer="/dev/usb/lp0"
encoding_needed=true #false

if $encoding_needed; then
    iconv -c -t 437 $1 > $printer
else
    cat $1 > $printer
fi

Firefox

  • Manual setup:
    1. Open about:config
    2. Create a new boolean value called print.always_print_silent and set it to True
    3. Create a new boolean value called print.show_print_progress and set it to False
  • Use an extension, like: https://addons.mozilla.org/en-us/firefox/addon/attendprint/

Keep in mind that there are other extensions for making kiosks, for example:

  • https://addons.mozilla.org/en-us/firefox/addon/r-kiosk/
  • https://addons.mozilla.org/en-us/firefox/addon/mkiosk/

Chrome

You can start it with those options: --kiosk --kiosk-printing

Internet Explorer

For kiosk mode see: http://support.microsoft.com/kb/154780

Second method - Server handles every printer

Notes

Good solution if:

  1. You have more clients than printers (few money or faulty printers)
  2. More printers than clients (different printers or paper colors for different needs)
  3. Clients that can't print directly (PDA/smartphones)
  4. You want to know the printer status

How to do

  1. Connect printers (to the clients and/or to the server)
  2. Share printers connected to clients over the network
  3. Manage every printer from your Django server

Two options here: print an html page or provide a PDF file.

Note: it was not clear initially that prints should be automatic, which means the answer is not directly useful to OP.

HTML + "Print Me"

Show the receipt as an html page, then create a media="print" CSS stylesheet which the browser will use when printing the receipt. There's a lot to say about CSS print style sheets, but what's important is that you should remove all navigation elements and images that are going to be expensive to print.

When you do this, the user will simply have to print the page himself. You can also add a "Print Me" button which is going to show your user a printer dialog. This is done via JavaScript:

<a href="javascript:window.print()">Print this page</a>

(This is a bit obstrusive for your clients who don't have JS, check this tutorial about JS printing for a better way.)

PDF

Generate a PDF in Django, and show it to the user. He will be free to print it or save it on his computer later. Most web sites do this since it's far easier to control the layout of a PDF file, and it will be easier to make it look like a real receipt.

  • XSL-FO can help you do this (it translates an XML to a PDF with a "stylesheet").
  • A more Pythonic way seems to be explained in the Django docs
  • The above pages lists alternatives such as xhtml2pdf (Pisa) which seems to be used a lot on StackOverflow

If using raw/esc/p try jzebra on google code.