Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

[workflow] Adding a custom state and transition to Sales Order (Quotation)

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
workflowquotation
5 Risposte
22524 Visualizzazioni
Avatar
Kibong Moon

Dear,

I'm trying to add a new state / activity / transition to quotation workflow.

When created sales order is in "draft" state.

But I want to add a new state e.g., "approved" after "draft" so as to mandate manager's approval on any draft quotation before sending quotation to customer.

How can I do this?

1
Avatar
Abbandona
Avatar
Kibong Moon
Autore Risposta migliore

Dear community members,

I've managed to add a new state and customize workflow. Though it was not difficult to add a new state, extending existing views and workflows with minimum redundancy (i.e., not re-writing the same codes to preserve original behavior linked to other states) was a bit tricky.

I hope that it would help somebody. (because someone like me who are not that familiar to odoo development, it's not easy to fully enjoy the power of odoo. I feel odoo/oca have to provide more/better documentation.)

Let me explain what I did step by step:

1. Create a new class which inherit from "sale_order" (I found quotation is not a class but alias of sale_order - named "sale.order" when it is in certain states.)

file name: sales_extension/sale_order.py

from openerp import fields, models, api

class sale_order(models.Model):
    '''
    extension to existing sale.order model
    '''
    _inherit = 'sale.order'
    
    state = fields.Selection(selection_add=[('quotation_approved', "Quotation Approved")])
    
    @api.one
    def action_quotation_approve(self):
        self.state = 'quotation_approved'

2. Define a form view to show "Approve" button in front of "Send by Email" button. It only appears when the quotation is in draft state. And to prevent sending or printing quotation which is not approved change visibility of original buttons.

file name: sales_extension/sale_order.xml

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
                 
        <record id="my_quotation_form" model="ir.ui.view">
            <field name="name">sale.order.form</field>
            <field name="model">sale.order</field>
            <field name="inherit_id" ref="sale.view_order_form"/>
            <field name="arch" type="xml">
                    <button name="action_quotation_send" position="before">
                        <button name="approve_quotation" string="Approve" states="draft"
                            type="workflow" class="oe_highlight" groups="base.group_user"/>
                    </button>
                    <button name="action_quotation_send" position="attributes">
                        <attribute name="states">quotation_approved,sent,progress,manual</attribute>
                    </button>
                    <button name="print_quotation" position="attributes">
                        <attribute name="states">quotation_approved,sent,progress,manual</attribute>
                    </button>
                    <field name="state" position="attributes">
                        <attribute name="statusbar_visible">draft,quotation_approved,sent,progress,done</attribute>
                    </field>  
            </field>
        </record>
        <record id="my_action_quotations" model="ir.actions.act_window">
            <field name="name">My Quotations</field>
            <field name="type">ir.actions.act_window</field>
            <field name="res_model">sale.order</field>
            <field name="view_type">form</field>
            <field name="view_id" ref="sale.view_quotation_tree"/>
            <field name="view_mode">tree,form,calendar,graph</field>
            <field name="context">{'search_default_my_sale_orders_filter': 1}</field>
            <field name="domain">[('state','in',('draft','quotation_approved', 'sent','cancel'))]</field>
            <field name="search_view_id" ref="sale.view_sales_order_filter"/>
            <field name="help" type="html">
              <p class="oe_view_nocontent_create">
                Click to create a quotation, the first step of a new sale.
              </p><p>
                Odoo will help you handle efficiently the complete sale flow:
                from the quotation to the sales order, the
                delivery, the invoicing and the payment collection.
              </p><p>
                The social feature helps you organize discussions on each sales
                order, and allow your customers to keep track of the evolution
                of the sales order.
              </p>
            </field>
        </record>

        <menuitem action="my_action_quotations"
            name="My Quotation"
            id="menu_my_quotation"
            parent="base.menu_sales"
            sequence="99"/>
        

    </data>
</openerp>

3. Extend the workflow to add a new transition "draft" -> "qutation_approved". I'm not redefining workflow but referencing existing workflow of which the ID: wkf_sale, Name: sale.order.basic. I found it in "sale_workflow.xml" file under "sale" module.

file: sales_extension/sale_order_workflow.xml

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
        <record id="act_quotation_approved" model="workflow.activity">
            <field name="wkf_id" ref="sale.wkf_sale"/>
            <field name="name">Approved</field>
            <field name="kind">function</field>
            <field name="action">action_quotation_approve()</field>
        </record>
        <record id="trans_quotation_draft_to_approved" model="workflow.transition">
            <field name="act_from" ref="sale.act_draft"/>
            <field name="act_to" ref="act_quotation_approved"/>
            <field name="signal">approve_quotation</field>
        </record>
    </data>
</openerp>

4. The last step: manifest file and init file.

file: sales_extension/__openerp__.py

{
    "name": "My Sales",
    "version": "1.0",
    "category": "Sales Management",
    "depends": ['sale'],
    "description": """
    This is for demo extension to sale order
    """,
    'demo': [],
    'data': [
             'sale_order.xml',
             'sale_order_workflow.xml'
    ],
    'test': [],
    'author': "Kibong",
    'installable': True,
    'auto_install': False,
}

 

file: sales_extension/__init__.py

# -*- coding: utf-8 -*-
from openerp import http
import sale_order

=======================

I'm a lazy person so I really hate reinventing wheels. But you can see I had to copy existing  <record id="my_action_quotations" model="ir.actions.act_window"> part from original source and modified it to add behavior linked to new state. Anyone can give idea how to extend not to rewrite it?

3
Avatar
Abbandona
joyanto

Please Tell me Is It's works odoo-11

Avatar
Anand
Risposta migliore

this code tells u how to add a custom  state and transition in purchase order, take a look and modify it for your sale order

<record id="act_design" model="workflow.activity">
        <field name="wkf_id" ref="purchase.purchase_order"/>
        <field name="name">design_approved</field>
        <field name="kind">function</field>
        <field name="action">write({'state':'design_approved'})</field>
        </record>
        <record id="trans_sent_design" model="workflow.transition">
        <field name="act_from" ref="purchase.act_sent"/>
        <field name="act_to" ref="act_design"/>
        <field name="signal">design_confirm</field>
        </record>
        <record id="purchase.trans_sent_confirmed" model="workflow.transition">
        <field name="act_from" ref="act_design"/>
        <field name="act_to" ref="purchase.act_confirmed"/>
        <field name="signal">purchase_confirm</field>
        </record>

Also take a look on this link

2
Avatar
Abbandona
Avatar
jon chow
Risposta migliore

This app is good job for workflow   https://www.odoo.com/apps/modules/10.0/wkf_powerful/

0
Avatar
Abbandona
Avatar
joyanto
Risposta migliore

Is it Works in odoo-11

0
Avatar
Abbandona
Avatar
Adil Akbar
Risposta migliore

Hi, 

You can follow following link for this:

https://youtu.be/2CIzEY2p8G8

Thanks


0
Avatar
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
{#Jetblue #oficial #Number¿Cómo hablo con un humano en JetBlue?
workflow
Avatar
0
dic 25
9
Zero Info on a Huge Issue
workflow
Avatar
Avatar
1
dic 25
578
How to achieve the effect shown in the image? The video is from the official channel:3 Minutes to Understand Odoo
workflow
Avatar
0
nov 25
16
Como crear un canal para PQR
workflow
Avatar
Avatar
2
ott 25
699
Odoo + amazon connector Risolto
workflow
Avatar
Avatar
Avatar
2
set 25
1079
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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