kanban

Git working strategy - many features, very frequent releases

牧云@^-^@ 提交于 2019-12-13 12:05:29
问题 here's the description of my everyday work: Two developers working in many small features or fixes, let's say 3-4 per day for each developer. I need to be able to work on features A - B - C at the same time, while my coworker works on feature D and E. Monday : Feature A is pushed to a staging server for client review. Feature B is pushed to the same staging server for client review. Feature D is pushed to the same staging server for client review. Tuesday : We receive approval from the client

Rally Kanban - hiding Epic Stories

北慕城南 提交于 2019-12-12 20:23:42
问题 Is there a way to hide epic stories (i.e. stories with children) from Rally's kanban board app (presumably by customizing the kanban "catalog app" code to be a custom app)? I found the part of the kanban javascript app code where it sets up a query depending on whether stories "allocated to a release" are hidden (and I'd added another checkbox into the settings to control the showing / hiding of epic stories), but haven't had any success modifying the query to exclude stories that have

VSTS backlog items - adding tasks without a project and cross project views

一世执手 提交于 2019-12-11 16:08:54
问题 Still new to VSTS. Sometimes work or requests come in and our team needs a way of sorting these into areas that will become projects, but not immediately. Can I create a task without first creating a new team project? Also, is there a way to see different projects at a higher level than the tasks in one view on a kanban board? Ive seen some delp docs on dashboards etc, but everything including tasks are all scoped to a team project. While this makes sense to have these things for a project,

Is it possible to show an One2many field in a kanban view in Odoo?

╄→гoц情女王★ 提交于 2019-12-11 02:02:03
问题 I would like to know if it's possible to show a One2many field in a kanban view in Odoo (note that I'm not talking about Qweb in templates or reports, only about Qweb in kanban views). I have a model which has a One2many field named other_contact_ids . I want to show the name of each contact in the kanban view: <t t-foreach="record.other_contact_ids.raw_value" t-as="contact"> <p> <t t-esc="contact.name"/> </p> </t> I'm getting an error, because the t-as is storing only the ID of the objects

Empty groups in Kanban view of Odoo10

…衆ロ難τιáo~ 提交于 2019-12-10 11:16:35
问题 Is it possible to show groups (columns) without any items in Kanban view of Odoo10? I found an article how to do that in Odoo8, but the way that is described there doesn't seem to work anymore. 回答1: In odoo 10 group_by_default is replaced by group_expand and it takes list of all your stages. for e.g your columns are stage and you want to show all empty stages. @api.model def _read_group_stage_ids(self,stages,domain,order): stage_ids = self.env['stage.stage'].search([]) return stage_ids stage

How to add columns in sprint board TFS (not backlog board)

与世无争的帅哥 提交于 2019-12-08 11:58:38
问题 In the newer versions I can customize the product backlog board by adding columns and set states. I want to do the same in the sprint board but I can't find that functionality. I've change the way you can work with Bugs but it still don't give me the options I want. Pls Help 回答1: Not possible for Visual Studio Team Services(VSO) but for on-premise it is and is the same process since at least TFS 2012. You will need to alter your process template for the Team Project to include the additional

Empty groups in Kanban view of Odoo10

匆匆过客 提交于 2019-12-06 04:46:34
Is it possible to show groups (columns) without any items in Kanban view of Odoo10? I found an article how to do that in Odoo8, but the way that is described there doesn't seem to work anymore. In odoo 10 group_by_default is replaced by group_expand and it takes list of all your stages. for e.g your columns are stage and you want to show all empty stages. @api.model def _read_group_stage_ids(self,stages,domain,order): stage_ids = self.env['stage.stage'].search([]) return stage_ids stage = fields.Many2one('stage.stage', group_expand='_read_group_stage_ids') " _read_group_stage_ids " method

Kanban VS Scrum:哪个是最好的敏捷项目管理框架

余生长醉 提交于 2019-12-04 15:12:02
“我们使用敏捷开发。”在与软件开发团队交流时,你会听到很多这样的说法。根据统计,2018年全球约有90%的开发人员在使用敏捷开发。Choerodon猪齿鱼团队也是其中之一。 但是,敏捷并不统一。作为组织工作流程的一般方法,敏捷软件开发设定了共同的价值观和原则,旨在精简开发流程,敏捷有效地响应变化。这些价值观和原则可以在敏捷宣言中找到,当中就提供了一些建立开发流程的建议。 在实际应用中,几种软件开发框架已经体现了这些敏捷原则。其中Kanban 和 Scrum是最受欢迎和经常使用的。这两种方法都有一个共同的目标,即创建一个有效的工作流程。今天这篇文将围绕他们之间的差异进行讨论。 Scrum和Kanban的基础知识 在深入研究Scrum和Kanban之间的差异之前,先看一下两个框架的主要概念,以便之后可以更轻松地进行Kanban与Scrum的比较。虽然它们都旨在建立一个自组织团队的流动,但是有些方法不同。 ▌Scrum是什么? Scrum的名字来自橄榄球术语,表示“争球”的动作。在软件开发中,Scrum是指采取组织团队合作的方法,以便更高效地开发复杂的软件产品。 Scrum基于开发团队在开始时不知道项目的结果这个假设,他们会随着工作的进展不断学习和适应。Scrum旨在通过每次迭代开始时重置优先级来简化这种适应,这在Scrum术语中称为“Sprint”。 在这里

Is anyone using Kanban? [closed]

喜欢而已 提交于 2019-12-04 11:23:04
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . Is anyone using Kanban (or scrumban) for the agile management practices? What is your experience with Kanban? How does it work in

A completely free agile software process tool [closed]

会有一股神秘感。 提交于 2019-12-04 07:30:45
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I know slightly close questions have been asked before but this question is a bit different. We are a start-up company with a very limited budget and we are looking for a completely free Agile software development process tool without any limitation on the number of users. We don't want to have a limitation for