Skip to Content
Odoo Menu
  • Log ind
  • Prøv gratis
  • Apps
    Økonomi
    • Bogføring
    • Fakturering
    • Udgifter
    • Regneark (BI)
    • Dokumenter
    • e-Signatur
    Salg
    • CRM
    • Salg
    • POS Butik
    • POS Restaurant
    • Abonnementer
    • Udlejning
    Hjemmeside
    • Hjemmesidebygger
    • e-Handel
    • Blog
    • Forum
    • LiveChat
    • e-Læring
    Forsyningskæde
    • Lagerbeholdning
    • Produktion
    • PLM
    • Indkøb
    • Vedligeholdelse
    • Kvalitet
    HR
    • Medarbejdere
    • Rekruttering
    • Fravær
    • Medarbejdersamtaler
    • Anbefalinger
    • Flåde
    Marketing
    • Markedsføring på sociale medier
    • E-mailmarketing
    • SMS-marketing
    • Arrangementer
    • Automatiseret marketing
    • Spørgeundersøgelser
    Tjenester
    • Projekt
    • Timesedler
    • Udkørende Service
    • Kundeservice
    • Planlægning
    • Aftaler
    Produktivitet
    • Dialog
    • Godkendelser
    • IoT
    • VoIP
    • Vidensdeling
    • WhatsApp
    Tredjepartsapps Odoo Studio Odoo Cloud-platform
  • Brancher
    Detailhandel
    • Boghandel
    • Tøjforretning
    • Møbelforretning
    • Dagligvarebutik
    • Byggemarked
    • Legetøjsforretning
    Mad og værtsskab
    • Bar og pub
    • Restaurant
    • Fastfood
    • Gæstehus
    • Drikkevareforhandler
    • Hotel
    Ejendom
    • Ejendomsmægler
    • Arkitektfirma
    • Byggeri
    • Ejendomsadministration
    • Havearbejde
    • Boligejerforening
    Rådgivning
    • Regnskabsfirma
    • Odoo-partner
    • Marketingbureau
    • Advokatfirma
    • Rekruttering
    • Audit & certificering
    Produktion
    • Tekstil
    • Metal
    • Møbler
    • Fødevareproduktion
    • Bryggeri
    • Firmagave
    Heldbred & Fitness
    • Sportsklub
    • Optiker
    • Fitnesscenter
    • Kosmetolog
    • Apotek
    • Frisør
    Håndværk
    • Handyman
    • IT-hardware og support
    • Solenergisystemer
    • Skomager
    • Rengøringsservicer
    • VVS- og ventilationsservice
    Andet
    • Nonprofitorganisation
    • Miljøagentur
    • Udlejning af billboards
    • Fotografi
    • Cykeludlejning
    • Softwareforhandler
    Gennemse alle brancher
  • Community
    Få mere at vide
    • Tutorials
    • Dokumentation
    • Certificeringer
    • Oplæring
    • Blog
    • Podcast
    Bliv klogere
    • Udannelselsesprogram
    • Scale Up!-virksomhedsspillet
    • Besøg Odoo
    Få softwaren
    • Download
    • Sammenlign versioner
    • Udgaver
    Samarbejde
    • Github
    • Forum
    • Arrangementer
    • Oversættelser
    • Bliv partner
    • Tjenester til partnere
    • Registrér dit regnskabsfirma
    Modtag tjenester
    • Find en partner
    • Find en bogholder
    • Kontakt en rådgiver
    • Implementeringstjenester
    • Kundereferencer
    • Support
    • Opgraderinger
    Github Youtube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Få en demo
  • Prissætning
  • Hjælp

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

  • CRM
  • e-Commerce
  • Bogføring
  • Lager
  • PoS
  • Projekt
  • MRP
All apps
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Hjælp

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

Tilmeld

Få besked, når der er aktivitet på dette indlæg

Dette spørgsmål er blevet anmeldt
salesworkflowpurchaseorder
1 Svar
4567 Visninger
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
Kassér
Avatar
Cyril Gaspard (GEM)
Bedste svar

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
Kassér
Enjoying the discussion? Don't just read, join in!

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

Tilmeld dig
Related Posts Besvarelser Visninger Aktivitet
Attached documents in CRM not copied to Sales Order Løst
sales workflow crm
Avatar
Avatar
Avatar
Avatar
3
sep. 25
1085
Sales Order - Planning Module -V 18.1
sales workflow plans
Avatar
0
feb. 25
1666
How can I adjust the invoice status based on the delivery / completion of services?
sales project workflow
Avatar
0
jan. 25
1805
Sales worflow in odoo v12 Løst
sales workflow 12
Avatar
Avatar
2
okt. 19
3971
Conditional Approval Rules Løst
configuration sales accounting workflow
Avatar
Avatar
1
okt. 25
675
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Oversættelser
Tjenester
  • Odoo.sh-hosting
  • Support
  • Opgradere
  • Individuelt tilpasset udvikling
  • Uddannelse
  • Find en bogholder
  • Find en partner
  • Bliv partner
Om os
  • Vores virksomhed
  • Brandaktiver
  • Kontakt os
  • Stillinger
  • Arrangementer
  • Podcast
  • Blog
  • Kunder
  • Juridiske dokumenter • Privatlivspolitik
  • Sikkerhedspolitik
الْعَرَبيّة 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 er en samling open source-forretningsapps, der dækker alle dine virksomhedsbehov – lige fra CRM, e-handel og bogføring til lagerstyring, POS, projektledelse og meget mere.

Det unikke ved Odoo er, at systemet både er brugervenligt og fuldt integreret.

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