Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IMP] fieldservice_skill: remove missing field, add missing view #16

Closed
Closed
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: 1 addition & 0 deletions fieldservice_skill/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
* Wolfgang Hall <whall@opensourceintegrators.com>
* Maxime Chambreuil <mchambreuil@opensourceintegrators.com>
* Steve Campbell <scampbell@opensourceintegrators.com>
* Raphael Lee <rlee@opensourceintegrators.com>
* Serpent Consulting Services Pvt. Ltd. <support@serpentcs.com>
* Brian McMaster <brian@mcmpest.com>
6 changes: 1 addition & 5 deletions fieldservice_skill/views/fsm_order.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@
<field name="inherit_id" ref="fieldservice.fsm_order_form" />
<field name="arch" type="xml">
<field name="category_ids" position="after">
<field
name="skill_ids"
widget="many2many_tags"
options="{'color_field': 'color'}"
/>
<field name="skill_ids" widget="many2many_tags" />
</field>
</field>
</record>
Expand Down
6 changes: 1 addition & 5 deletions fieldservice_skill/views/fsm_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@
<field name="inherit_id" ref="fieldservice.fsm_template_form_view" />
<field name="arch" type="xml">
<field name="category_ids" position="after">
<field
name="skill_ids"
widget="many2many_tags"
options="{'color_field': 'color'}"
/>
<field name="skill_ids" widget="many2many_tags" />
</field>
</field>
</record>
Expand Down
7 changes: 6 additions & 1 deletion fieldservice_skill/views/hr_skill.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="open_view_skill_form" model="ir.actions.act_window">
<field name="name">Skills</field>
<field name="res_model">hr.skill</field>
<field name="view_mode">tree,form</field>
</record>
<menuitem
id="menu_hr_skill"
name="Skills"
action="hr_skills.hr_skill_type_action"
action="open_view_skill_form"
parent="fieldservice.menu_fsm_config_person"
sequence="80"
/>
Expand Down