Skip to Content
Menu
This question has been flagged
5 Replies
20940 Views

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?

Avatar
Discard
Author Best Answer

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?

Avatar
Discard

Please Tell me Is It's works odoo-11

Best Answer

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

Avatar
Discard
Best Answer

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

Avatar
Discard
Best Answer

Is it Works in odoo-11

Avatar
Discard
Best Answer

Hi, 

You can follow following link for this:

https://youtu.be/2CIzEY2p8G8

Thanks


Avatar
Discard
Related Posts Replies Views Activity
0
Apr 25
92
0
Apr 25
1433
0
Mar 25
321
1
Dec 24
656
0
Jul 24
745