Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

From Python, how to link stages to project?

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
projectstagespythontask
3 Răspunsuri
8699 Vizualizări
Imagine profil
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
Imagine profil
Abandonează
Imagine profil
Ajeet Yadav (Softprime Consulting Pvt Ltd)
Cel mai bun răspuns

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
Imagine profil
Abandonează
Imagine profil
Samo Arko
Cel mai bun răspuns

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
Imagine profil
Abandonează
Imagine profil
SLIFE AFRICA
Cel mai bun răspuns

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
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Allow "Project / Users" creating new task stages (Kanban view) Rezolvat
project stages task groups
Imagine profil
Imagine profil
Imagine profil
2
mar. 25
3211
How to "lock" task at a certain stage. Rezolvat
project stages task odoo10
Imagine profil
Imagine profil
2
oct. 24
6716
Why the stages (project_task_type) of project are not reusables?
project stages task type
Imagine profil
Imagine profil
1
mar. 17
5410
v16 Tasks visibility
project task
Imagine profil
Imagine profil
1
iun. 23
4133
"Stages" menu is not showing in the Project module. Rezolvat
project stages
Imagine profil
Imagine profil
Imagine profil
2
mar. 23
3449
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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