-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '16.0' into 16.0-revised-install-modules
- Loading branch information
Showing
7 changed files
with
43 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
17 changes: 17 additions & 0 deletions
17
membership_accessibility_mass_mailing_membership_group/__manifest__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Copyright 2023 Anjeel Haria | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
"name": "Membership Accessibility Mass Mailing Membership Group", | ||
"summary": "Adds options for members to see whether they are on the mailing list of membership groups", | ||
"version": "16.0.1.0.0", | ||
"category": "Membership", | ||
"author": "Onestein", | ||
"website": "https://www.onestein.eu", | ||
"license": "AGPL-3", | ||
"application": False, | ||
"installable": True, | ||
"auto_install": True, | ||
"depends": ["membership_accessibility", "mass_mailing_membership_group"], | ||
"data": ["views/views.xml"], | ||
} |
14 changes: 14 additions & 0 deletions
14
membership_accessibility_mass_mailing_membership_group/views/views.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<odoo> | ||
<record id="res_users_view_form_simple_modif" model="ir.ui.view"> | ||
<field name="name">res.users.preferences.form.simplified.inherit</field> | ||
<field name="model">res.users</field> | ||
<field name="inherit_id" ref="membership_accessibility.res_users_view_form_simple_modif"/> | ||
<field name="arch" type="xml"> | ||
<xpath expr="//field[@name='membership_group_member_ids']//tree/field[@name='group_id']" position="before"> | ||
<field name="on_mailing_list" /> | ||
</xpath> | ||
</field> | ||
</record> | ||
|
||
</odoo> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters