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

OpenERP Workflow (ver 7)

S'inscrire

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

Cette question a été signalée
workflowpythonxmlbutton
1 Répondre
9987 Vues
Avatar
priyankahdp

I go through openerp doc for create work flow to my model.its worked correctly in first 3 stages. ex : 'new','assigned','negotiation' but not worked for 'won','lost' levels.

here is my relevant codes in model class.i added state column to here as additionally.

class bpl_work_update(osv.osv): def mymod_new(self, cr, uid, ids):#trigger when save work update self.write(cr, uid, ids, {'state': 'new'}) return True

def mymod_assigned(self, cr, uid, ids):
    self.write(cr, uid, ids, {'state': 'assigned'})
    return True

def mymod_negotiation(self, cr, uid, ids):
    self.write(cr, uid, ids, {'state': 'negotiation'})
    return True

def mymod_won(self, cr, uid, ids):
    self.write(cr, uid, ids, {'state': 'won'})
    return True

def mymod_lost(self, cr, uid, ids):
    self.write(cr, uid, ids, {'state': 'lost'})
    return True


_name = "bpl.work.update"
_description = "BPL Work Update"
_columns = {
    'bpl_company_id':fields.many2one('res.company', 'Company', help='Company'),
    'bpl_estate_id':fields.many2one('bpl.estate.n.registration', 'Estate', help='Estate', domain="[('company_id','=',bpl_company_id)]", required=True),
    'bpl_division_id':fields.many2one('bpl.division.n.registration', 'Division', help='Division', domain="[('estate_id','=',bpl_estate_id)]", required=True),
    'ref_no': fields.char('Reference No', size=10,),
    'offered_date': fields.date('Offered Date'),
    'work_offers_id':fields.many2one('bpl.work.offer', 'Work Offer', domain="['&',('bpl_company_id','=',bpl_company_id),('bpl_estate_id','=',bpl_estate_id),'&',('bpl_division_id','=',bpl_division_id),'|',('gang_no','=',gang_no),('date_of_offer','=',offered_date)]"),
    'gang_no': fields.char('Gang No', size=10, required=True),
    'selected_tea_workers_update_line_ids': fields.one2many('bpl.selected.tea.workers.update.line', 'work_id', 'Tea Work Offers', ondelete="cascade"),
    'selected_rubber_workers_update_line_ids': fields.one2many('bpl.selected.rubber.workers.update.line', 'work_id', 'Rubber Offers', ondelete="cascade"),
    'selected_sundry_workers_update_line_ids': fields.one2many('bpl.selected.sundry.workers.update.line', 'work_id', 'Sundry Offers', ondelete="cascade"),
    'selected_other_workers_update_line_ids': fields.one2many('bpl.selected.other.workers.update.line', 'work_id', 'Sundry Offers', ondelete="cascade"),
    'casual_eligible': fields.boolean('Casual Eligible', help="Casual Eligible"),
    'state': fields.selection([('new', 'New'), ('assigned', 'Assigned'), ('negotiation', 'Negotiation'), ('won', 'Approved'), ('lost', 'Refused')], 'Workflow', readonly=True),

 }
_defaults = {
             'bpl_company_id':_default_company,
             'offered_date':fields.date.context_today,
             }

bpl_work_update()

here is relevant part of my view xml & seems here is the issue.because first 3 buttons visible correctly at the stages. but won/lost buttons are not shows there.

<header>
    <button name="mymod_assigned" string="Assigned" states="new"
        class="oe_highlight" type="workflow" />
    <button name="mymod_negotiation" string="In Negotiation"
        states="assigned" class="oe_highlight" type="workflow" />
    <button name="mymod_won" string="Approved" states="negotiating"
        class="oe_highlight" type="workflow" />
    <button name="mymod_lost" string="Refused" states="negotiating"
        class="oe_highlight" type="workflow" />

    <field name="state" widget="statusbar"
        statusbar_visible="new,assigned,negotiation,won,lost"
        statusbar_colors='{"new":"blue","assigned":"blue","negotiation":"blue","won":"red","lost":"red"}' />
</header>

here is my work_flow xml.i just copy & paste here from openerp documentation and changed only <field name="osv">bpl.work.update</field>

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

<!-- workflow -->

<record model="workflow" id="wkf_mymod">
    <field name="name">mymod.wkf</field>
    <field name="osv">bpl.work.update</field>
    <field name="on_create" eval='True' />
</record>

<!-- workflow activity -->

<record model="workflow.activity" id="act_new">
    <field name="wkf_id" ref="wkf_mymod" />
    <field name="flow_start" eval='True' />
    <field name="name">new</field>
    <field name="kind">function</field>
    <field name="action">mymod_new()</field>
</record>

<record model="workflow.activity" id="act_assigned">
    <field name="wkf_id" ref="wkf_mymod" />
    <field name="name">assigned</field>
    <field name="kind">function</field>
    <field name="action">mymod_assigned()</field>
</record>

<record model="workflow.activity" id="act_negotiation">
    <field name="wkf_id" ref="wkf_mymod" />
    <field name="name">negotiation</field>
    <field name="kind">function</field>
    <field name="action">mymod_negotiation()</field>
</record>

<record model="workflow.activity" id="act_won">
    <field name="wkf_id" ref="wkf_mymod" />
    <field name="name">won</field>
    <field name="kind">function</field>
    <field name="action">mymod_won()</field>
    <field name="flow_stop" eval='True' />
</record>

<record model="workflow.activity" id="act_lost">
    <field name="wkf_id" ref="wkf_mymod" />
    <field name="name">lost</field>
    <field name="kind">function</field>
    <field name="action">mymod_lost()</field>
    <field name="flow_stop" eval='True' />
</record>

<!-- workflow transition -->

<record model="workflow.transition" id="t1">
    <field name="act_from" ref="act_new" />
    <field name="act_to" ref="act_assigned" />
    <field name="signal">mymod_assigned</field>
    <field name="group_id" ref="group_checkroll_user" />
</record>

<record model="workflow.transition" id="t2">
    <field name="act_from" ref="act_assigned" />
    <field name="act_to" ref="act_negotiation" />
    <field name="signal">mymod_negotiation</field>
    <field name="group_id" ref="group_checkroll_manager" />
</record>

<record model="workflow.transition" id="t3">
    <field name="act_from" ref="act_negotiation" />
    <field name="act_to" ref="act_won" />
    <field name="signal">mymod_won</field>
    <field name="group_id" ref="group_checkroll_manager" />
</record>
'won','lost'
<record model="workflow.transition" id="t4">
    <field name="act_from" ref="act_negotiation" />
    <field name="act_to" ref="act_lost" />
    <field name="signal">mymod_lost</field>
    <field name="group_id" ref="group_checkroll_manager" />
</record>


</data>
</openerp>

please help me to sort out this issue.
thanks

for your easiness i attached photo here.see that its only done 3 stages.unable to cancel or approved (won & lost)

2
Avatar
Ignorer
Avatar
DNTQ
Meilleure réponse

'state': fields.selection([('new', 'New'), ('assigned', 'Assigned'), ('negotiation', 'Negotiation'), ('won', 'Approved'), ('lost', 'Refused')], 'Workflow', readonly=True),

Your code: state='negotiating'

<button name="mymod_won" string="Approved" **states="negotiating" **="" class="oe_highlight" type="workflow"/> <button name="mymod_lost" string="Refused" **states="negotiating" **="" class="oe_highlight" type="workflow"/> You must change states="negotiation"

2
Avatar
Ignorer
priyankahdp
Auteur

thanks DNT.its worked :-)

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é
How to get state value when workflow tagged in Openerp?
workflow python xml
Avatar
0
mars 15
4685
HR Module 'Regularised Attendances' & 'Leave Requests' Appprval flow Issue..
hr workflow python xml
Avatar
0
déc. 17
6501
How to add approval workflow OpenERP 7
security workflow python xml
Avatar
Avatar
1
mars 15
10518
How to hide view.xml fields group in Account module with attr
python xml
Avatar
Avatar
Avatar
2
déc. 23
14055
how to remove first empty element from fields.selection Résolu
python xml
Avatar
Avatar
Avatar
3
juil. 22
24486
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