Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

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

Subscriure's

Get notified when there's activity on this post

This question has been flagged
salesworkflowpurchaseorder
1 Respondre
4607 Vistes
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
Descartar
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
Descartar
Enjoying the discussion? Don't just read, join in!

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

Registrar-se
Related Posts Respostes Vistes Activitat
Attached documents in CRM not copied to Sales Order Solved
sales workflow crm
Avatar
Avatar
Avatar
Avatar
3
de set. 25
1137
Sales Order - Planning Module -V 18.1
sales workflow plans
Avatar
0
de febr. 25
1691
How can I adjust the invoice status based on the delivery / completion of services?
sales project workflow
Avatar
0
de gen. 25
1838
Sales worflow in odoo v12 Solved
sales workflow 12
Avatar
Avatar
2
d’oct. 19
3983
Conditional Approval Rules Solved
configuration sales accounting workflow
Avatar
Avatar
1
d’oct. 25
683
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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