Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

From Python, how to link stages to project?

Naroči se

Get notified when there's activity on this post

This question has been flagged
projectstagespythontask
3 Odgovori
8660 Prikazi
Avatar
Kevin Lemaire

For each Project, I have a list of Stages that needs to be created. For each of those Stages, I will also have Tasks... From python, how do I link Stages to Project?


Currently, in a module that inherit from "project.project", I simply do:

self.env['project.task.type'].create({'name': stage_name})

I've seen that stage model have a 'project_ids' field but I don't succeed to append to it from python.
​

Any help will be appreciated

0
Avatar
Opusti
Avatar
Ajeet Yadav (Softprime Consulting Pvt Ltd)
Best Answer

In stage there is project_ids field M2M with project. This is the stages that show in projects's task.

You need to link project in state for link all their tasks.

Below module also usefull for define default stage of each new project-

https://www.odoo.com/apps/modules/12.0/project_task_default_stage/

4
Avatar
Opusti
Avatar
Samo Arko
Best Answer

I have a default field in the project.task.type model to define that the stage is on a new project and normally another many2one field to define the stage usage. 

default_stage = fields.Boolean(string='Stage on new project', default=False)

Then I just extended the project create method to add the default stages to new projects.

@api.model
def create(self, vals):
    ir_values = self.env['ir.values'].get_default('project.config.settings', 'generate_project_alias')
    if ir_values:
         vals['alias_name'] = vals.get('alias_name') or vals.get('name')
         # Prevent double project creation when 'use_tasks' is checked
         self = self.with_context(project_creation_in_progress=True, mail_create_nosubscribe=True)

         default_stages = self.env['project.task.type'].sudo().search([('default_stage', '=', True)])
         stages_list = list()
         for stage in default_stages:
            stages_list.append((4, stage.id))

         if len(stages_list) > 0:
            vals['stage_ids'] = stages_list

         new_project = super(TablaProjectProjectExtension, self).create(vals)
         return new_project 

0
Avatar
Opusti
Avatar
SLIFE AFRICA
Best Answer

Try this code please :)


from odoo import models, api, fields, SUPERUSER_ID, _

class ProjectTaskType(models.Model):
_inherit = 'project.task.type'

# Step specific code to identify it
code = fields.Char('Code')

_sql_constraints = [
('code_uniq', 'unique (code)', "Stage code already exists!"),
]

class Project(models.Model):
_inherit = 'project.project'

@api.model
def _read_group_stage_ids(self, stages, domain, order):
# Call Super Function
response = super(Task, self)._read_group_stage_ids(stages, domain, order)
search_domain = [('id', 'in', response.ids)]
# Append my specifik stages [Stages whose code is equal to todo or inprogress or done or canceled]
search_domain = ['|', ('code', 'in', ['todo', 'inprogress', 'done', 'canceled'])] + search_domain
stage_ids = stages._search(search_domain, order=order, access_rights_uid=SUPERUSER_ID)
return stages.browse(stage_ids)
0
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Allow "Project / Users" creating new task stages (Kanban view) Solved
project stages task groups
Avatar
Avatar
Avatar
2
mar. 25
3150
How to "lock" task at a certain stage. Solved
project stages task odoo10
Avatar
Avatar
2
okt. 24
6700
Why the stages (project_task_type) of project are not reusables?
project stages task type
Avatar
Avatar
1
mar. 17
5401
v16 Tasks visibility
project task
Avatar
Avatar
1
jun. 23
4117
"Stages" menu is not showing in the Project module. Solved
project stages
Avatar
Avatar
Avatar
2
mar. 23
3427
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now