mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 13:52:05 +02:00
Initial commit: OCA Technical packages (595 packages)
This commit is contained in:
commit
2cc02aac6e
24950 changed files with 2318079 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!--
|
||||
Copyright (C) 2019-Today: GRAP (<http://www.grap.coop/>)
|
||||
@author: Sylvain LE GAL (https://twitter.com/legalsylvain)
|
||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
-->
|
||||
<odoo noupdate="1">
|
||||
<record id="parameter_exclude_directories" model="ir.config_parameter">
|
||||
<field name="key">module_analysis.exclude_directories</field>
|
||||
<field name="value">lib,demo,test,tests,doc,description</field>
|
||||
</record>
|
||||
<record id="parameter_exclude_files" model="ir.config_parameter">
|
||||
<field name="key">module_analysis.exclude_files</field>
|
||||
<field name="value">__openerp__.py,__manifest__.py</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!--
|
||||
Copyright (C) 2021-Today: GRAP (<http://www.grap.coop/>)
|
||||
@author: Sylvain LE GAL (https://twitter.com/legalsylvain)
|
||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
-->
|
||||
<odoo noupdate="1">
|
||||
<record id="cron_module_analysis" model="ir.cron">
|
||||
<field name="name">Update Module Analysis</field>
|
||||
<field name="active" eval="False" />
|
||||
<field name="model_id" ref="base.model_ir_module_module" />
|
||||
<field name="state">code</field>
|
||||
<field name="code">model.cron_analyse_code()</field>
|
||||
<field name="interval_number">1</field>
|
||||
<field name="interval_type">days</field>
|
||||
<field name="nextcall" eval="(DateTime.today()).strftime('%Y-%m-%d')" />
|
||||
<field name="numbercall">-1</field>
|
||||
<field name="user_id" ref="base.user_root" />
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!--
|
||||
Copyright (C) 2019-Today: GRAP (<http://www.grap.coop/>)
|
||||
@author: Sylvain LE GAL (https://twitter.com/legalsylvain)
|
||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
-->
|
||||
<odoo>
|
||||
<record id="module_type_odoo" model="ir.module.type">
|
||||
<field name="name">Odoo Core</field>
|
||||
</record>
|
||||
<record id="module_type_oca" model="ir.module.type">
|
||||
<field name="name">OCA</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!--
|
||||
Copyright (C) 2019-Today: GRAP (<http://www.grap.coop/>)
|
||||
@author: Sylvain LE GAL (https://twitter.com/legalsylvain)
|
||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
-->
|
||||
<odoo>
|
||||
<!-- Odoo Rules -->
|
||||
<record id="module_type_rule_odoo_a" model="ir.module.type.rule">
|
||||
<field name="sequence">1</field>
|
||||
<field name="module_domain">[('author_ids', 'ilike', 'Odoo S.A')]</field>
|
||||
<field name="module_type_id" ref="module_type_odoo" />
|
||||
</record>
|
||||
<record id="module_type_rule_odoo_b" model="ir.module.type.rule">
|
||||
<field name="sequence">2</field>
|
||||
<field name="module_domain">[('author_ids', 'ilike', 'OpenERP SA')]</field>
|
||||
<field name="module_type_id" ref="module_type_odoo" />
|
||||
</record>
|
||||
<record id="module_type_rule_odoo_c" model="ir.module.type.rule">
|
||||
<field name="sequence">3</field>
|
||||
<field name="module_domain">[('author_ids', '=', 'Odoo SA')]</field>
|
||||
<field name="module_type_id" ref="module_type_odoo" />
|
||||
</record>
|
||||
<record id="module_type_rule_odoo_d" model="ir.module.type.rule">
|
||||
<field name="sequence">4</field>
|
||||
<field name="module_domain">[('author_ids', '=', 'Odoo')]</field>
|
||||
<field name="module_type_id" ref="module_type_odoo" />
|
||||
</record>
|
||||
<!-- OCA Rules -->
|
||||
<record id="module_type_rule_oca_a" model="ir.module.type.rule">
|
||||
<field name="sequence">100</field>
|
||||
<field
|
||||
name="module_domain"
|
||||
>[('author_ids', '=', 'Odoo Community Association (OCA)')]</field>
|
||||
<field name="module_type_id" ref="module_type_oca" />
|
||||
</record>
|
||||
</odoo>
|
||||
Loading…
Add table
Add a link
Reference in a new issue