I want to create extra fields in acounting-> customer invoice.....i want to create two fields below fiscal positon field and three fields below Amount field....plese some body help me
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Boekhouding
- Voorraad
- PoS
- Project
- MRP
Deze vraag is gerapporteerd
1
Beantwoorden
3471
Weergaven
You should create a new module, which inherits the new fields (account_invoice__new_fields.py):
class account_invoice(osv.osv):
_columns = {
'field1': fields.char('Field1', size=128, help='Field 1 test'),
'field2': fields.char('Field2', size=128, help='Field 2 test'),
}
And then in view put them in right position(account_invoice_new_fields_view.xml):
<?xml version="1.0"?>
<openerp>
<data>
<record model="ir.ui.view" id="account_invoice_new_view"
<field name="name">account.invoice.new.form</field>
<field name="model">account.invoice</field>
<field name="inherit_id" ref="account.invoice_form"/>
<field name="arch" ref="xml">
<field name="fiscal_position" position="after">
<field name="field1"/>
</field>
</record>
</data>
</openerp>
That should work for you (add also some __init__.py and __openerp__.py
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!
Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!
Aanmelden