-
-
Notifications
You must be signed in to change notification settings - Fork 70
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
[MIG] project scrum: 13.0 #25
base: 13.0
Are you sure you want to change the base?
Conversation
…pecific scrum form
<field name="name">Sprint</field> | ||
<field name="model_id" ref="model_project_scrum_sprint" /> | ||
<field name="global" eval="True" /> | ||
<field name="domain_force">['|', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
['|',('company_id','=',False),('company_id','in',company_ids)]
"website": "https://github.com/OCA/project-agile", | ||
"depends": [ | ||
"base_setup", | ||
"project", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add file oca_dependencies.txt in the repo:
project https://github.com/OCA/project 13.0
a705256
to
017e084
Compare
<field name="privacy_visibility">employees</field> | ||
<field name="user_id" ref="base.user_demo" /> | ||
<field name="description">Model for Testing Scrum using in projects</field> | ||
<field name="alias_model">project.task</field> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggest change:
field name="alias_model_id" ref="model_project_task"
inverse_name="project_id", | ||
string="Test Cases", | ||
) | ||
sprint_count = fields.Integer( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
string="Sprints count"
compute="_compute_sprint_count", string="Sprints", index=True, | ||
) | ||
user_story_count = fields.Integer( | ||
compute="_compute_user_story_count", string="User Stories", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
string="User Stories count"
user_story_count = fields.Integer( | ||
compute="_compute_user_story_count", string="User Stories", | ||
) | ||
meeting_count = fields.Integer(compute="_compute_meeting_count", string="Meetings",) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
string="Meetings count"
@flachica Can change the line 19 of project_scrum/demo/project_scrum_demo.xml?. The name of field now is alias_model_id, then the line is: field name="alias_model_id" ref="model_project_task", if you can rebase travis run ok. |
No description provided.