1
2
3
4
5
6
7
8
9
10
11
12
|
# -*- encoding: utf-8 -*-
from osv import fields, osv
class purchase_order_line(osv.osv):
_inherit = 'purchase.order.line'
_order = 'sequence'
_columns = {
'sequence': fields.integer('Sequence', help="Sequence for order in view and print report"),
}
purchase_order_line()
|