diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2023-08-31 11:51:50 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2023-08-31 11:51:50 +0700 |
| commit | b7dba2d8eed3c2af22dca53a916f12e9b842c2aa (patch) | |
| tree | 3ca984df1c729378f463cedef6f6e7c95ec591da /indoteknik_custom/views/account_move_line.xml | |
| parent | 403b86d1a3cc168680069b0d8fc499048583da8f (diff) | |
coa cost centre
Diffstat (limited to 'indoteknik_custom/views/account_move_line.xml')
| -rw-r--r-- | indoteknik_custom/views/account_move_line.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/indoteknik_custom/views/account_move_line.xml b/indoteknik_custom/views/account_move_line.xml new file mode 100644 index 00000000..f4db8d86 --- /dev/null +++ b/indoteknik_custom/views/account_move_line.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<odoo> + <data> + <record id="view_move_form_inherit" model="ir.ui.view"> + <field name="name">account.move.form.inherit</field> + <field name="model">account.move</field> + <field name="inherit_id" ref="account.view_move_form"/> + <field name="arch" type="xml"> + <xpath expr="//page[@id='aml_tab']/field[@name='line_ids']/tree/field[@name='currency_id']" position="before"> + <field name="is_required" invisible="1"/> + <field name="cost_centre_id" /> + </xpath> + </field> + </record> + </data> +</odoo> |
