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

Manually create workflow

Abonare

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

Această întrebare a fost marcată
workflow9.0
5 Răspunsuri
9165 Vizualizări
Imagine profil
Mathieu Laflamme

Hey anyone was able to manually instantiate a new workflow in Odoo 9.0???

Where do I put the code to create the workflow instance? I tried the code below. The workitem and instance get created, and I compared it that what's created when on_create is True, and it seems the same... I don't see what I do wrong... it just doesn't register it correctly... By the way, when I use on_create = True, there is no problem... I just want to have a specific workflow for my specific item.

Any idea what I do wrong?

Thanks


@api.model    
def create(self, vals):
    res = super(SaleOrder, self).create(vals)
    
    if res.is_print:
        res.create_workflow()
    
    return res
0
Imagine profil
Abandonează
Imagine profil
RCS - Richter Computer Systemhaus GmbH, Heiko Dietrich
Cel mai bun răspuns

You can do this:

from openerp.workflow.instance import WorkflowInstance
from openerp.workflow.helpers import Record, Session
wkf_id = self.env.ref('your_model.your_workflow_id').id
WorkflowInstance.create(Session(self.env.cr, self.env.uid), Record(self._name, res.id), wkf_id)
0
Imagine profil
Abandonează
Imagine profil
Akhil P Sivan
Cel mai bun răspuns

Hi,

Workflows can be managed in two ways:

1. Define a state field in your model with the required states. Then the state changes can be managed by python methods in your model. For eg: by executing those methods on button click and the record state changes.

2. Create a real workflow instance, by defining a state field as usual and then create a yourmodule_workflow.xml. In that file, add the workflow instance, activities & transitions, as you need. Then you can trigger the transitions from either buttons (create button with type="workflow") or python methods (using signal_workflow())

You may refer this for more details:

https://www.odoo.com/documentation/9.0/howtos/backend.html#workflows

0
Imagine profil
Abandonează
Mathieu Laflamme
Autor

Again "Where do I put the code to create the workflow instance?"... I mean where to I call create_workflow() MANUALLY (I know how to create the workflow definition!). I don't want a workflow for all the records in the database, that's why I want to manage it myself.

Akhil P Sivan

Did you check the Odoo official link above? It clearly explains how to create workflow for a newly created model. I just summarized the whole idea and gave that link for you to check more details or an example. If you refer that you will surely come to know, where to put the code to create a new workflow in Odoo 9. What does this create_workflow() in your code do?

Mathieu Laflamme
Autor

Yeah I checked it out... nowhere they are starting the workflow manually. The method create_workflow() is part of the BaseModel class of Odoo and it creates the workflow instance. I can see it in the instance and in the Workitem data... but somehow the instantiated workflow is ignored. Creating an instance of workflow doesn't seem to be supported very well!

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
What's the equivalent in V9 of "purchase.act_draft" (V8) ? Rezolvat
workflow transition 9.0
Imagine profil
Imagine profil
3
mar. 16
2094
[representante de expedia]¿Cómo hablar Expedia en español?
workflow
Imagine profil
0
oct. 25
3
¿Cómo hablar con una persona viva en Copa? (‘_’) Hablar con el agente
workflow
Imagine profil
0
oct. 25
563
Como crear un canal para PQR
workflow
Imagine profil
Imagine profil
2
oct. 25
567
Odoo + amazon connector Rezolvat
workflow
Imagine profil
Imagine profil
Imagine profil
2
sept. 25
918
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