Skip to content

Commit

Permalink
travis
Browse files Browse the repository at this point in the history
  • Loading branch information
LoisRForgeFlow committed Jul 26, 2017
1 parent e04a821 commit b504480
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions quality_control_issue/data/qc_stage_data.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<odoo>

<data noupdate="0">
<record model="qc.stage" id="qc_team_main">
<record model="qc.stage" id="qc_stage_new">
<field name="name">New</field>
<field name="sequence">1</field>
<field name="fold">False</field>
</record>
</data>

<data noupdate="0">
<record model="qc.stage" id="qc_team_main">
<record model="qc.stage" id="qc_stage_done">
<field name="name">Done</field>
<field name="sequence">100</field>
<field name="fold">True</field>
Expand Down
2 changes: 1 addition & 1 deletion quality_control_issue/models/qc_problem.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from openerp import api, fields, models, SUPERUSER_ID
from openerp import api, fields, models

AVAILABLE_PRIORITIES = [
('0', 'Normal'),
Expand Down
2 changes: 1 addition & 1 deletion quality_control_issue/models/qc_problem_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from openerp import api, fields, models
from openerp import fields, models


class QcProblemGroup(models.Model):
Expand Down

0 comments on commit b504480

Please sign in to comment.