[FIX]account_invoice:add measing feature reorder lines

bzr revid: pna@tinyerp.com-20130402083730-qukgx3918bkhrtig
This commit is contained in:
Pinakin Nayi (OpenERP) 2013-04-02 14:07:30 +05:30
parent 252bcc802f
commit 20c9ba132f
2 changed files with 3 additions and 1 deletions

View File

@ -1404,7 +1404,7 @@ class account_invoice_line(osv.osv):
else:
prop = self.pool.get('ir.property').get(cr, uid, 'property_account_expense_categ', 'product.category', context=context)
return prop and prop.id or False
_order = 'sequence'
_defaults = {
'quantity': 1,
'discount': 0.0,

View File

@ -191,6 +191,7 @@
<page string="Invoice">
<field context="{'partner_id': partner_id, 'price_type': context.get('price_type') or False, 'type': type}" name="invoice_line">
<tree string="Invoice lines" editable="bottom">
<field name="sequence" widget="handle"/>
<field name="product_id"
on_change="product_id_change(product_id, uos_id, quantity, name, parent.type, parent.partner_id, parent.fiscal_position, price_unit, parent.currency_id, context, parent.company_id)"/>
<field name="name"/>
@ -346,6 +347,7 @@
<page string="Invoice Lines">
<field name="invoice_line" nolabel="1" widget="one2many_list" context="{'type': type}">
<tree string="Invoice Lines" editable="bottom">
<field name="sequence" widget="handle"/>
<field name="product_id"
on_change="product_id_change(product_id, uos_id, quantity, name, parent.type, parent.partner_id, parent.fiscal_position, price_unit, parent.currency_id, context, parent.company_id)"/>
<field name="name"/>