Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
4056 มุมมอง

can I change the format of an invoice? can I do it by changing the coding?

อวตาร
ละทิ้ง

Which type of changes you want do ?

ผู้เขียน

I need to add and remove some fields and change the headings.

คำตอบที่ดีที่สุด

Hi,

Add this code in py file in your new module to add new field.

 class account_invoice(osv.osv):

    _inherit = "account.invoice"

    _columns = {

            'test_name' : fields.char('Test name', size='120'),

  }
account_invoice()

Add in xml file in new module to add new field.

    <record id="inherit_invoice_form" model="ir.ui.view">
        <field name="name">account.invoice.form.inherit</field>
        <field name="model">account.invoice</field>
        <field name="inherit_id" ref="account.invoice_supplier_form"/>
        <field name="arch" type="xml">
            <field name="account_id" position="after">
                <field name="test_name"/>
            </field>
        </field>
     </record>

Try this

Thanks

อวตาร
ละทิ้ง
ผู้เขียน

Thanks jack :)