summaryrefslogtreecommitdiff
path: root/account_fiscal_year_period/security/groups.xml
blob: 6628d59e6856680ee13460c917d7245bc5f102d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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>