Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Věda
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

Workflow in XML file

Odebírat

Get notified when there's activity on this post

This question has been flagged
workflow
2 Odpovědi
5446 Zobrazení
Avatar
Selverine

Hi everybody,

I would like to modify the workflow of the sale_order.

My goal is to have a intermediaire state between quotation and sale_order. When I use my function , I have this error:

  • "The value "int" for the field "sale_order.state" is not in the selection

I add this code in the XML file:

   <record id="act_int" model="workflow.activity">
        <field name="wkf_id" ref="wkf_sale"/>
        <field name="name">int</field>
        <field name="kind">function</field>
        <field name="action">write({'state':'int'})</field>
    </record>  

    <record id="trans_int_sent" model="workflow.transition">
        <field name="act_from" ref="act_draft"/>
        <field name="act_to" ref="act_int"/>
        <field name="signal">int_sent</field>
    </record>

Someone have an idea how it works?

Thanks a lot,

Selverine

0
Avatar
Zrušit
Avatar
René Schuster
Nejlepší odpověď

You have not modified the selection field 'states' of the sale_order model.

'state': fields.selection([
        ('draft', 'Draft Quotation'),
        ('sent', 'Quotation Sent'),
        ('cancel', 'Cancelled'),
        ('waiting_date', 'Waiting Schedule'),
        ('progress', 'Sales Order'),
        ('manual', 'Sale to Invoice'),
        ('invoice_except', 'Invoice Exception'),
        ('done', 'Done'),
        ], 'Status', readonly=True, track_visibility='onchange',)

Add

 ('int', 'Intermediate State'),

to the selection.

EDIT: You may also need another transition from int state to sent state.

EDIT2: In detail: Your intermediate state needs two transitions. From "Draft" to "Int", and from "Int" to "Sent".

<record id="trans_draft_int" model="workflow.transition">
        <field name="act_from" ref="act_draft"/>
        <field name="act_to" ref="act_int"/>
</record>

<record id="trans_int_sent" model="workflow.transition">
        <field name="act_from" ref="act_int"/>
        <field name="act_to" ref="act_sent"/>
</record>

But I highly recommend modifing the module by creation your own module and inherit from sale_oder.

0
Avatar
Zrušit
Avatar
Selverine
Autor Nejlepší odpověď

Dear rené,

Thank you for your help. I add the new state into the selection. Now i don't receive any error message, but the state is still lock into the state 'sent'.

Is it normal?

Thank you,

Edit : My code:

        <record id="trans_draft_int" model="workflow.transition">
        <field name="act_from" ref="act_draft"/>
        <field name="act_to" ref="act_int"/>
        <field name="signal">int_sent</field>
    </record>
    <record id="trans_int_sent" model="workflow.transition">
        <field name="act_from" ref="act_int"/>
        <field name="act_to" ref="act_sent"/>
    </record>  


        <record id="act_int" model="workflow.activity">
        <field name="wkf_id" ref="wkf_sale"/>
        <field name="name">int</field>
        <field name="kind">function</field>
        <field name="action">write({'state':'int'})</field>
    </record>  

    def print_BAT(self, cr, uid, ids, context=None):
    '''
    This function prints the sales order and mark it as sent, so that we can see more easily the next step of the workflow
    '''
    for o in self.browse(cr, uid, ids):
        if not o.devis_accept_by_client:
            raise osv.except_osv(_('Error!'),_('The client needs to accept the quotation first'))
    assert len(ids) == 1, 'This option should only be used for a single id at a time'
    wf_service = netsvc.LocalService("workflow")
    wf_service.trg_validate(uid, 'sale.order', ids[0], 'int_sent', cr)
    datas = {
             'model': 'sale.order',
             'ids': ids,
             'form': self.read(cr, uid, ids[0], context=context),
    }
    return {'type': 'ir.actions.report.xml', 'report_name': 'sale.BAT', 'datas': datas, 'nodestroy': True}

        'state': fields.selection([
        ('draft', 'Draft Quotation'),
        ('sent', 'Quotation Sent'),
        ('int', 'Bat Sent'),
        ('cancel', 'Cancelled'),
        ('waiting_date', 'Waiting Schedule'),
        ('progress', 'Sales Order'),
        ('manual', 'Sale to Invoice'),
        ('invoice_except', 'Invoice Exception'),
        ('done', 'Done'),
        ], 'Status', readonly=True, track_visibility='onchange',

Selverine

0
Avatar
Zrušit
René Schuster

I've edited my answer.

As mentioned before: You need two transitions: One to enter the state, and one to leave it. The latter one is missing in your code.

Hope that helps.

Selverine
Autor

Dear René, Thank again for your help. I edit my answer in order to give you more information. It still not works :-(.

René Schuster

The transitions need to be fired.

The signal field of the transition defines which action will start the transition.

You can either use the localservice in a python function to call the transition signal, or use a button in the view.

From what I can see the Int-Sent-Transition does not have any signal, so this state can't be left without changing the state directly.

Enjoying the discussion? Don't just read, join in!

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
Backing up my odoo instance
workflow
Avatar
Avatar
Avatar
2
úno 26
508
{#Jetblue #oficial #Number¿Cómo hablo con un humano en JetBlue?
workflow
Avatar
0
pro 25
9
Zero Info on a Huge Issue
workflow
Avatar
Avatar
1
pro 25
950
How to achieve the effect shown in the image? The video is from the official channel:3 Minutes to Understand Odoo
workflow
Avatar
0
lis 25
16
Como crear un canal para PQR
workflow
Avatar
Avatar
2
říj 25
1158
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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