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 /account_fiscal_year_period/security/groups.xml | |
| parent | b57188be371d36d96caac4b8d65a40745c0e972c (diff) | |
initial commit
Diffstat (limited to 'account_fiscal_year_period/security/groups.xml')
| -rw-r--r-- | account_fiscal_year_period/security/groups.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/account_fiscal_year_period/security/groups.xml b/account_fiscal_year_period/security/groups.xml new file mode 100644 index 0000000..6628d59 --- /dev/null +++ b/account_fiscal_year_period/security/groups.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<odoo> + <data noupdate="0"> + <record model="ir.module.category" id="module_category_fiscal_year"> + <field name="name">Fiscal Year Period</field> + <field name="description"></field> + <field name="sequence">114</field> + </record> + <record id="group_define_fiscal_year" model="res.groups"> + <field name="name">Allow to define fiscal years of more or less than a year</field> + <field name="category_id" ref="module_category_fiscal_year"/> + </record> + <record id="group_fiscal_year_create" model="res.groups"> + <field name="name">Create Periods</field> + <field name="category_id" ref="module_category_fiscal_year"/> + </record> + <record id="group_fiscal_year_close" model="res.groups"> + <field name="name">Close Period</field> + <field name="category_id" ref="module_category_fiscal_year"/> + </record> + <record id="group_fiscal_year_open_close" model="res.groups"> + <field name="name">Open/Close Month</field> + <field name="category_id" ref="module_category_fiscal_year"/> + </record> + + </data> +</odoo> |
