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
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
1
Trả lời
3211
Lượt xem
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
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng ký