Skip to content

Commit

Permalink
[IMP] sign_oca: Add General settings menu item
Browse files Browse the repository at this point in the history
TT41745
  • Loading branch information
victoralmau committed Oct 11, 2024
1 parent 32d8bde commit 0e02948
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 22 deletions.
2 changes: 1 addition & 1 deletion sign_oca/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"security/security.xml",
"views/menu.xml",
"data/data.xml",
"wizards/res_config_settings_views.xml",
"wizards/sign_oca_template_generate.xml",
"wizards/sign_oca_template_generate_multi.xml",
"views/res_config_settings_views.xml",
"views/res_partner_views.xml",
"views/sign_oca_request_log.xml",
"views/sign_oca_request.xml",
Expand Down
11 changes: 4 additions & 7 deletions sign_oca/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@

/*
:Author: David Goodger ([email protected])
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
Despite the name, some widely supported CSS2 features are used.
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
customize this style sheet.
Expand Down Expand Up @@ -275,7 +274,7 @@
margin-left: 2em ;
margin-right: 2em }

pre.code .ln { color: gray; } /* line numbers */
pre.code .ln { color: grey; } /* line numbers */
pre.code, code { background-color: #eeeeee }
pre.code .comment, code .comment { color: #5C6576 }
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
Expand All @@ -301,7 +300,7 @@
span.pre {
white-space: pre }

span.problematic, pre.problematic {
span.problematic {
color: red }

span.section-subtitle {
Expand Down Expand Up @@ -505,9 +504,7 @@ <h2><a class="toc-backref" href="#toc-entry-13">Contributors</a></h2>
<div class="section" id="maintainers">
<h2><a class="toc-backref" href="#toc-entry-14">Maintainers</a></h2>
<p>This module is maintained by the OCA.</p>
<a class="reference external image-reference" href="https://odoo-community.org">
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
</a>
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.</p>
Expand Down
11 changes: 9 additions & 2 deletions sign_oca/views/menu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,17 @@
sequence="16"
groups="sign_oca.sign_oca_group_user"
/>
<record model="ir.ui.menu" id="sign_oca_settings_menu">
<menuitem
name="Settings"
id="sign_oca_settings_menu"
parent="sign_oca_root_menu"
sequence="90"
groups="sign_oca.sign_oca_group_admin"
/>
<!-- <record model="ir.ui.menu" id="sign_oca_settings_menu">
<field name="name">Settings</field>
<field name="sequence" eval="90" />
<field name="parent_id" ref="sign_oca_root_menu" />
<field name="groups_id" eval="[(6,0,[ref('sign_oca.sign_oca_group_admin')])]" />
</record>
</record> -->
</odoo>
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,19 @@
</xpath>
</field>
</record>
<record id="sign_oca_general_settings_act_window" model="ir.actions.act_window">
<field name="name">General Settings</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">res.config.settings</field>
<field name="view_mode">form</field>
<field name="target">inline</field>
<field name="context">{'module' : 'sign_oca'}</field>
</record>
<menuitem
name="General settings"
id="sign_oca_general_settings_menu"
parent="sign_oca_settings_menu"
sequence="1"
action="sign_oca_general_settings_act_window"
/>
</odoo>
13 changes: 7 additions & 6 deletions sign_oca/views/sign_oca_field.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,11 @@
<field name="domain">[]</field>
<field name="context">{}</field>
</record>
<record model="ir.ui.menu" id="sign_oca_field_menu">
<field name="name">Fields</field>
<field name="parent_id" ref="sign_oca_settings_menu" /> <!-- TODO -->
<field name="action" ref="sign_oca_field_act_window" />
<field name="sequence" eval="16" /> <!-- TODO -->
</record>
<menuitem
name="Fields"
id="sign_oca_field_menu"
parent="sign_oca_settings_menu"
sequence="16"
action="sign_oca_field_act_window"
/>
</odoo>
13 changes: 7 additions & 6 deletions sign_oca/views/sign_oca_role.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,11 @@
<field name="domain">[]</field>
<field name="context">{}</field>
</record>
<record model="ir.ui.menu" id="sign_oca_role_menu">
<field name="name">Roles</field>
<field name="parent_id" ref="sign_oca_settings_menu" />
<field name="action" ref="sign_oca_role_act_window" />
<field name="sequence" eval="16" />
</record>
<menuitem
name="Roles"
id="sign_oca_role_menu"
parent="sign_oca_settings_menu"
sequence="17"
action="sign_oca_role_act_window"
/>
</odoo>

0 comments on commit 0e02948

Please sign in to comment.