hello everyone, please i have to add a static element named unity with type char like this :
http://imgur.com/iy1AiRt
just help me of what should i do first and i will continue the rest thanks.
best regards
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
hello everyone, please i have to add a static element named unity with type char like this :
http://imgur.com/iy1AiRt
just help me of what should i do first and i will continue the rest thanks.
best regards
Hello Medmars,
In py
class AccountInvoiceLine(models.Model):
_inherit = 'account.invoice.line'
unity = fields.Char('Unity')
In Xml
<record id="account_invoice_line_tree_view_inherit" model="ir.ui.view">
<field name="name">account.invoice.line.view.inherit</field>
<field name="model">account.invoice</field>
<field name="inherit_id" ref="account.invoice_form"/>
<field name="arch" type="xml">
<xpath expr="/form/sheet/notebook/page[1]/field[@name='invoice_line_ids']/tree/field[@name='quantity']" position="after">
<field name="unity"/>
</xpath>
</field>
</record>
Hope it will works for you.
Thanks,
is there any method to do it from the developer mode ( odoo 9 )
Nope. This is only the possible way to add fields.
This works perfectly. Thanks, mate
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
1
Sep 24
|
233 | ||
|
2
Aug 24
|
350 | ||
|
3
Jul 24
|
2380 | ||
|
1
Jul 24
|
361 | ||
|
2
Jun 24
|
447 |