~openerp-commiter/openobject-addons/trunk-extra-addons

« back to all changes in this revision

Viewing changes to invoice_sequence/invoice.py

merging new development from indian accounting

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
from osv import fields, osv
30
30
 
31
31
class account_invoice_line(osv.osv):
32
 
        _inherit = "account.invoice.line"
33
 
        _order = "sequence"
34
 
        _columns = {
35
 
                'sequence': fields.integer('Sequence'),
36
 
                }
 
32
    _inherit = "account.invoice.line"
 
33
    _order = "sequence"
 
34
    _columns = {
 
35
        'sequence': fields.integer('Sequence'),
 
36
        }
37
37
account_invoice_line()
 
38
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
39