diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 17:14:58 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 17:14:58 +0700 |
| commit | 1ca3b3df3421961caec3b747a364071c80f5c7da (patch) | |
| tree | 6778a1f0f3f9b4c6e26d6d87ccde16e24da6c9d6 /custom_indoteknik/views/menu_items.xml | |
| parent | b57188be371d36d96caac4b8d65a40745c0e972c (diff) | |
initial commit
Diffstat (limited to 'custom_indoteknik/views/menu_items.xml')
| -rw-r--r-- | custom_indoteknik/views/menu_items.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/custom_indoteknik/views/menu_items.xml b/custom_indoteknik/views/menu_items.xml new file mode 100644 index 0000000..68873ff --- /dev/null +++ b/custom_indoteknik/views/menu_items.xml @@ -0,0 +1,22 @@ +<odoo> + <data> + + <record id="account_period_action" model="ir.actions.act_window"> + <field name="name">Periods</field> + <field name="res_model">account.period</field> + <field name="view_mode">tree,form</field> + <field name="help" type="html"> + <p class="oe_view_nocontent_create"> + Click to Add New Data + </p> + </field> + </record> + + <menuitem id="menu_account_period" + name="Accounting Periods" + action="account_period_action" + parent="account.menu_finance_configuration" + sequence="0"/> + + </data> +</odoo>
\ No newline at end of file |
