Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion auth_supplier/security/auth_supplier_security.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<record id="group_auth_supplier" model="res.groups">
<field name="name">Supplier Portal</field>
<field name="category_id" ref="base.module_category_extra"/>
<field name="is_portal" eval="True"/>
</record>

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why this change?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is generates a warning because the module doesn't depend on portal. Looking at the code, it seems it doesn't need to depend on portal, which would be the other fix. Or am I missing something?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK, thanks for the explanation


</odoo>
1 change: 1 addition & 0 deletions letsencrypt/__openerp__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"data": [
"data/ir_config_parameter.xml",
"data/ir_cron.xml",
"demo/ir_cron.xml",
],
"post_init_hook": 'post_init_hook',
"installable": True,
Expand Down
8 changes: 8 additions & 0 deletions letsencrypt/demo/ir_cron.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data>
<record id="cronjob" model="ir.cron">
<field name="active" eval="False" />
</record>
</data>
</openerp>