Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

[purchase_double_validation]How to add sale_double_validation in sale order like existing purchase_double_validation module?

Odoberať

Get notified when there's activity on this post

This question has been flagged
salesworkflowpurchaseorder
1 Odpoveď
4584 Zobrazenia
Avatar
ABU K

Hi all,

I want to change sale_double validation workflow like existing purchase_double_validation.Need a help..... 

I make the change like below---------------------

*************************
I got an Error from this 'sale_double_validation_workflow.xml'  file other codes are working perfectly except this one ,this is the error stack--I got an Error  from this existing workflow xml file also i am not sure about the remaining workflow xml file How to change my workflow xml ?

raise ValueError('External ID not found in the system: %s' % (xmlid))

ParseError: "External ID not found in the system: sale.sale_order" while parsing /home/ubuntu-libu/odoo/addons/sale_double_validation/sale_double_validation_workflow.xml:5, near

<record id="act_double_wait" model="workflow.activity">

            <field name="wkf_id" ref="sale.sale_order"/>

            <field name="name">WaitForApproval</field>

            <field name="kind">dummy</field>

        </record>

******************************************************************



sale_double_validation_installer.py file==========================


from openerp.osv import fields, osv

class sale_config_settings(osv.osv_memory):

_inherit = 'sale.config.settings'

_columns = {

'limit_amount': fields.integer('limit to require a second approval',required=True,

help="Amount after which validation of Sale is required."),

}

_defaults = {

'limit_amount': 8000,

}

def get_default_limit_amount(self, cr, uid, fields, context=None):

ir_model_data = self.pool.get('ir.model.data')

transition = ir_model_data.get_object(cr, uid, 'sale_double_validation', 'trans_confirmed_double_lt')

field, value = transition.condition.split('<', 1)

return {'limit_amount': int(value)}

def set_limit_amount(self, cr, uid, ids, context=None):

ir_model_data = self.pool.get('ir.model.data')

config = self.browse(cr, uid, ids[0], context)

waiting = ir_model_data.get_object(cr, uid, 'sale_double_validation', 'trans_confirmed_double_gt')

waiting.write({'condition': 'amount_total >= %s' % config.limit_amount})

confirm = ir_model_data.get_object(cr, uid, 'sale_double_validation', 'trans_confirmed_double_lt')

confirm.write({'condition': 'amount_total < %s' % config.limit_amount})

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

sale_double_validation_installer.xml


<openerp>

<data>

<record id="view_double_sale_configuration" model="ir.ui.view">

<field name="name">Sale Application</field>

<field name="model">sale.config.settings</field>

<field name="inherit_id" ref="sale.view_sales_config"/>

<field name="arch" type="xml">

<div name="Sale Features" position="inside">

<span class="oe_separate-from-text">

<label for="limit_amount"/>

<field name="limit_amount" attrs="{'required': [('module_sale_double_validation','=',True)]}" class="oe_inline"/>

</span>

</div>

</field>

</record>

</data>

</openerp>

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

sale_double_validation_view.xml


<?xml version="1.0"?>

<openerp>

<data>

<record model="ir.ui.view" id="sale_order_search_inherit">

<field name="name">sale.order.list.select.inherit</field>

<field name="model">sale.order</field>

<field name="inherit_id" ref="sale.view_sales_order_filter"/>

<field name="arch" type="xml">

<xpath expr="//filter[@name='message_unread']" position="after">

<filter icon="terp-gtk-jump-to-ltr" name="to_approve" string="To Approve" domain="[('state','in',('wait','confirmed'))]" help="Purchase orders which are not approved yet."/>

</xpath>

</field>

</record>

</data>

</openerp>

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

,I got an Error  from this existing workflow xml file ,this is the error stack---

****************************************************************

/home/ubuntu-libu/odoo/openerp/addons/base/ir/ir_model.py", line 921, in xmlid_lookup

raise ValueError('External ID not found in the system: %s' % (xmlid))

ParseError: "External ID not found in the system: sale.sale_order" while parsing /home/ubuntu-libu/odoo/addons/sale_double_validation/sale_double_validation_workflow.xml:5, near

***********************************************************************************


sale_double_validation_workflow.xml

<record id="act_double_wait" model="workflow.activity">

<field name="wkf_id" ref="sale.sale_order"/>

<field name="name">WaitForApproval</field>

<field name="kind">dummy</field>

</record>


<?xml version="1.0" encoding="utf-8"?>

<openerp>

<data>

<record id="act_double_wait" model="workflow.activity">

<field name="wkf_id" ref="sale.sale_order"/>

<field name="name">WaitForApproval</field>

<field name="kind">dummy</field>

</record>

<record id="act_double_check" model="workflow.activity">

<field name="wkf_id" ref="sale.sale_order"/>

<field name="name">CheckForApproval</field>

<field name="split_mode">OR</field>

<field name="kind">dummy</field>

</record>

<record id="trans_confirmed_double_check" model="workflow.transition">

<field name="act_from" ref="sale.act_confirmed"/>

<field name="act_to" ref="act_double_check"/>

</record>

<record id="trans_confirmed_double_gt" model="workflow.transition">

<field name="act_from" ref="act_double_check"/>

<field name="act_to" ref="act_double_wait"/>

<field name="condition">amount_untaxed >= 5000</field>

<field name="signal">purchase_approve</field>

<field name="group_id" ref="sale.group_sale_manager"/>

</record>

<record id="trans_confirmed_double_lt" model="workflow.transition">

<field name="act_from" ref="act_double_check"/>

<field name="act_to" ref="act_double_wait"/>

<field name="condition">amount_untaxed < 5000</field>

</record>

<record id="trans_double_app_conf" model="workflow.transition">

<field name="act_from" ref="act_double_wait"/>

<field name="act_to" ref="sale.act_router"/>

</record>

</data>

</openerp>

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


When I click on Configuration-> Sale I got below error

File "/home/ubuntu-libu/odoo/openerp/addons/base/ir/ir_model.py", line 921, in xmlid_lookup

raise ValueError('External ID not found in the system: %s' % (xmlid))

ValueError: External ID not found in the system: sale_double_validation.trans_confirmed_double_lt

1
Avatar
Zrušiť
Avatar
Cyril Gaspard (GEM)
Best Answer

module exists for v7 :


https://www.odoo.com/apps/7.0/sale_double_validation/

pictures description :


http://www.zbeanztech.com/blog/sale-order-double-validation

1
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
Attached documents in CRM not copied to Sales Order Solved
sales workflow crm
Avatar
Avatar
Avatar
Avatar
3
sep 25
1097
Sales Order - Planning Module -V 18.1
sales workflow plans
Avatar
0
feb 25
1673
How can I adjust the invoice status based on the delivery / completion of services?
sales project workflow
Avatar
0
jan 25
1810
Sales worflow in odoo v12 Solved
sales workflow 12
Avatar
Avatar
2
okt 19
3975
Conditional Approval Rules Solved
configuration sales accounting workflow
Avatar
Avatar
1
okt 25
678
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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