Skip to content

Commit

Permalink
[FIX] Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Freni-OSI committed Apr 14, 2021
1 parent 6fb2260 commit 30480b8
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion fieldservice_skill/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"name": "Field Service - Skills",
"summary": "Manage your Field Service workers skills",
"version": "13.0.1.0.0",
"version": "14.0.1.0.0",
"category": "Field Service",
"license": "AGPL-3",
"author": "Open Source Integrators, Odoo Community Association (OCA)",
Expand Down
5 changes: 4 additions & 1 deletion fieldservice_skill/models/hr_skill.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@
class HRSkill(models.Model):
_inherit = "hr.skill"

color = fields.Integer(string="Color Index", default=10,)
color = fields.Integer(
string="Color Index",
default=10,
)
4 changes: 1 addition & 3 deletions fieldservice_skill/views/fsm_order.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@
<field name="skill_worker_ids" invisible="1" />
</field>
<field name="person_id" position="attributes">
<attribute name="domain">
[("id", "in", skill_worker_ids)]
</attribute>
<attribute name="domain">[("id", "in", skill_worker_ids)]</attribute>
</field>
</field>
</record>
Expand Down
4 changes: 1 addition & 3 deletions fieldservice_skill/views/fsm_person_skill.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,7 @@
<field name="res_model">fsm.person.skill</field>
<field name="view_mode">graph,pivot</field>
<field name="help" type="html">
<p>
Worker Skills Report
</p>
<p>Worker Skills Report</p>
</field>
</record>
<menuitem
Expand Down
1 change: 1 addition & 0 deletions setup/fieldservice_skill/odoo/addons/fieldservice_skill
6 changes: 6 additions & 0 deletions setup/fieldservice_skill/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

0 comments on commit 30480b8

Please sign in to comment.