Please review this at http://codereview.appspot.com/3607042/

Affected files:
  M __init__.py
  A invoice.py


Index: __init__.py
===================================================================
--- a/__init__.py
+++ b/__init__.py
@@ -3,3 +3,4 @@

 from sale import *
 from configuration import *
+from invoice import *
Index: invoice.py
===================================================================
new file mode 100644
--- /dev/null
+++ b/invoice.py
@@ -0,0 +1,21 @@
+#This file is part of Tryton.  The COPYRIGHT file at the top level of
+#this repository contains the full copyright notices and license terms.
+from trytond.model import ModelView, ModelSQL, fields
+
+
+class Invoice(ModelSQL, ModelView):
+    _name = 'account.invoice'
+
+    sales = fields.Many2Many('sale.sale-account.invoice',
+            'invoice', 'sale', 'Sales', readonly=True)
+
+Invoice()
+
+
+class InvoiceLine(ModelSQL, ModelView):
+    _name = 'account.invoice.line'
+
+    sale_lines = fields.Many2Many('sale.line-account.invoice.line',
+            'invoice_line', 'sale_line', 'Sale Lines', readonly=True)
+
+InvoiceLine()



-- 
Cédric Krier

B2CK SPRL
Rue de Rotterdam, 4
4000 Liège
Belgium
Tel: +32 472 54 46 59
Email/Jabber: [email protected]
Website: http://www.b2ck.com/

Attachment: pgprcFNg8hn6q.pgp
Description: PGP signature

Reply via email to