Skip to content

Commit

Permalink
[IMP] project_scrum: black, isort, prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
alan196 committed Sep 29, 2021
1 parent bb214a7 commit bb7d5e0
Show file tree
Hide file tree
Showing 25 changed files with 932 additions and 689 deletions.
62 changes: 31 additions & 31 deletions project_scrum/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
# Copyright <2017> <Tenovar Ltd>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
'name': 'Project Scrum',
'summary': 'Use Scrum Method to manage your project',
'version': '12.0.1.0.0',
'category': 'Project Management',
'author': "Odoo Community Association (OCA)",
'website': 'https://github.com/OCA/project-agile',
'depends': [
'base_setup',
'project',
'project_task_code',
'project_stage_state',
'mail',
'hr_timesheet',
"name": "Project Scrum",
"summary": "Use Scrum Method to manage your project",
"version": "12.0.1.0.0",
"category": "Project Management",
"author": "Odoo Community Association (OCA)",
"website": "https://github.com/OCA/project-agile",
"depends": [
"base_setup",
"project",
"project_task_code",
"project_stage_state",
"mail",
"hr_timesheet",
],
'data': [
'views/mail_template.xml',
'views/project_scrum_us.xml',
'views/project_scrum_meeting.xml',
'views/project_task.xml',
'views/project_scrum_sprint.xml',
'views/project_scrum_test.xml',
'views/project_project.xml',
'views/menu.xml',
'data/sequences_projects.xml',
'data/project_scrum_test_task_view.xml',
'security/ir.model.access.csv',
'security/project_security.xml',
'security/res_groups.xml',
"data": [
"views/mail_template.xml",
"views/project_scrum_us.xml",
"views/project_scrum_meeting.xml",
"views/project_task.xml",
"views/project_scrum_sprint.xml",
"views/project_scrum_test.xml",
"views/project_project.xml",
"views/menu.xml",
"data/sequences_projects.xml",
"data/project_scrum_test_task_view.xml",
"security/ir.model.access.csv",
"security/project_security.xml",
"security/res_groups.xml",
],
'demo': ['demo/project_scrum_demo.xml'],
'installable': True,
'license': 'AGPL-3',
'application': True,
"demo": ["demo/project_scrum_demo.xml"],
"installable": True,
"license": "AGPL-3",
"application": True,
}
8 changes: 4 additions & 4 deletions project_scrum/data/project_scrum_test_task_view.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8" ?>
<odoo>

<record model="ir.actions.server" id="ps_action_server_creat_test_task">
<field name="name">Create Tasks from Test Cases</field>
<field name="model_id" ref="model_project_scrum_sprint"/>
<field name="model_id" ref="model_project_scrum_sprint" />
<field name="state">code</field>
<field name="type">ir.actions.server</field>
<field name="code">self.test_task(cr, uid, object, pool)</field>
<field name="binding_model_id" ref="model_project_scrum_sprint" />
</record>

</odoo>
3 changes: 1 addition & 2 deletions project_scrum/data/sequences_projects.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>

<?xml version="1.0" encoding="utf-8" ?>
<odoo>

<record id="seq_project_task" model="ir.sequence">
Expand Down
Loading

0 comments on commit bb7d5e0

Please sign in to comment.