Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

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

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
salesworkflowpurchaseorder
1 Répondre
4604 Vues
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
Ignorer
Avatar
Cyril Gaspard (GEM)
Meilleure réponse

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
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
Attached documents in CRM not copied to Sales Order Résolu
sales workflow crm
Avatar
Avatar
Avatar
Avatar
3
sept. 25
1133
Sales Order - Planning Module -V 18.1
sales workflow plans
Avatar
0
févr. 25
1691
How can I adjust the invoice status based on the delivery / completion of services?
sales project workflow
Avatar
0
janv. 25
1836
Sales worflow in odoo v12 Résolu
sales workflow 12
Avatar
Avatar
2
oct. 19
3982
Conditional Approval Rules Résolu
configuration sales accounting workflow
Avatar
Avatar
1
oct. 25
683
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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