[FIX] use add_payment for order from the web frontend
[odoo/odoo.git] / addons / l10n_lu / wizard / pdf_ext.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 """ Copyright (c) 2003-2007 LOGILAB S.A. (Paris, FRANCE).
23  http://www.logilab.fr/ -- mailto:contact@logilab.fr
24
25 manipulate pdf and fdf files. pdftk recommended.
26
27 Notes regarding pdftk, pdf forms and fdf files (form definition file)
28 fields names can be extracted with:
29     pdftk orig.pdf generate_fdf output truc.fdf
30 to merge fdf and pdf:
31     pdftk orig.pdf fill_form test.fdf output result.pdf [flatten]
32 without flatten, one could further edit the resulting form.
33 with flatten, everything is turned into text.
34 """
35
36 import os
37 import tools
38
39 HEAD="""%FDF-1.2
40 %\xE2\xE3\xCF\xD3
41 1 0 obj
42 <<
43 /FDF
44 <<
45 /Fields [
46 """
47
48 TAIL="""]
49 >>
50 >>
51 endobj
52 trailer
53
54 <<
55 /Root 1 0 R
56 >>
57 %%EOF
58 """
59
60 def output_field( f ):
61     return "\xfe\xff" + "".join( [ "\x00"+c for c in f ] )
62
63 def extract_keys(lines):
64     keys = []
65     for line in lines:
66         if line.startswith('/V'):
67             pass
68         elif line.startswith('/T'):
69             key = line[7:-2]
70             key = ''.join(key.split('\x00'))
71             keys.append( key )
72     return keys
73
74 def write_field(out, key, value):
75     out.write("<<\n")
76     if value:
77         out.write("/V (%s)\n" %value)
78     else:
79         out.write("/V /\n")
80     out.write("/T (%s)\n" % output_field(key) )
81     out.write(">> \n")
82
83 def write_fields(out, fields):
84     out.write(HEAD)
85     for key in fields:
86             value = fields[key]
87             write_field(out, key, value)
88     out.write(TAIL)
89
90 def extract_keys_from_pdf(filename):
91     # what about using 'pdftk filename dump_data_fields' and parsing the output ?
92     os.system('pdftk %s generate_fdf output /tmp/toto.fdf' % filename)
93     lines = file('/tmp/toto.fdf').readlines()
94     return extract_keys(lines)
95
96
97 def fill_pdf(infile, outfile, fields):
98     write_fields(file('/tmp/toto.fdf', 'w'), fields)
99     os.system('pdftk %s fill_form /tmp/toto.fdf output %s flatten' % (infile, outfile))
100
101 def testfill_pdf(infile, outfile):
102     keys = extract_keys_from_pdf(infile)
103     fields = []
104     for key in keys:
105         fields.append( (key, key, '') )
106     fill_pdf(infile, outfile, fields)
107
108
109 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
110