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

How to pass values in lead to sales through action Button?

S'inscrire

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

Cette question a été signalée
actionbuttonodoo10
7 Réponses
24829 Vues
Avatar
MUHAMMED ASLAM

models

class Lead(models.Model):

    _inherit = 'crm.lead'

    service_id = fields.Many2one('lmc.service', required=True, string="Service")

class SaleOrder(models.Model):

    _inherit = "sale.order"

   service_id = fields.Many2one('lmc.service', required=True, string="Service")

Notes

I want to pass service_id of lead to sale order when the New Quotation button(action) button is clicked.I worked in similar situation, but sometimes I pass values from one module to another using object button.please help me how it is possible through action button

Reference

This is the button in lead 

<button string="New Quotation" name="%(sale_action_quotations_new)d" type="action" class="oe_highlight"

                        context="{'search_default_partner_id': partner_id,

                                  'default_partner_id': partner_id,

                                  'default_team_id': team_id}"/>

that id used in sale order and defined like this


<record id="sale_action_quotations_new" model="ir.actions.act_window">

        <field name="name">Quotation</field>

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

        <field name="view_mode">form,tree,graph</field>

        <field name="domain">[('opportunity_id', '=', active_id)]</field>

        <field name="context">{'search_default_opportunity_id': active_id, 'default_opportunity_id': active_id}</field>

    </record>

How to pass values through this button.Thanks in advance

0
Avatar
Ignorer
Avatar
Denis Baranov
Meilleure réponse

Hello,

just add to/ redefine the context in a button required parameter with 'default_' prefix. E.g.:

<button string="New Quotation" name="%(sale_action_quotations_new)d" type="action" class="oe_highlight"
                        context="{
        'default_service_id': service_id,
       'search_default_partner_id': partner_id,
        'default_partner_id': partner_id,
        'default_team_id': team_id}"/>



4
Avatar
Ignorer
MUHAMMED ASLAM
Auteur

Thanks IT Libertas for the answer.

MUHAMMED ASLAM
Auteur

I try to hide New Quotation button like this

<xpath expr="//button[@name='%(sale_action_quotations_new)d']" position="attributes">

<attribute name="invisible">1</attribute>

But there is an error external id not found.is possible to hide action button like object button

Avatar
Marcel Savegnago
Meilleure réponse

I did not create a new button. However, I had to overwrite the context of the original button and in fact I would just like to increment the context of the button without having to overwrite.

<record id="workshop_vehicle_crm_opportunity_form_view_inherit" model="ir.ui.view">
<field name="name">workshop.vehicle.crm.opportunity.form.inherit</field>
<field name="model">crm.lead</field>
<field name="inherit_id" ref="crm.crm_case_form_view_oppor"/>
<field name="arch" type="xml">

<button name='%(sale_crm.sale_action_quotations_new)d' position='attributes'>
<attribute name="context">{
'search_default_partner_id': partner_id,
'default_partner_id': partner_id,
'default_team_id': team_id,
'default_campaign_id': campaign_id,
'default_medium_id': medium_id,
'default_source_id': source_id,
'default_vehicle_id': vehicle_id,
}
</attribute>
</button>

<xpath expr="//field[@name='partner_id']" position="after">
<field name="vehicle_id" string="Vehicle"/>
</xpath>
</field>
</record>
0
Avatar
Ignorer
Avatar
Annadurai
Meilleure réponse

Hello Muhammed. for Your action button hiding query -->  You may replace it with attributes="replace" . eg:   <xpath expr="//button[@name='%(sale.action_quotations_salesteams)d']" position="replace"/>
I have not seen action hiding button in the base code itself. 

0
Avatar
Ignorer
MUHAMMED ASLAM
Auteur

Thanks Annadurai

Annadurai

welcome :)

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é
action button is disabled in the list view Résolu
action button
Avatar
1
mars 21
5417
Error using a button
button odoo10
Avatar
Avatar
2
juil. 18
4083
How set STATE=DONE? (Action & Button)
action button
Avatar
Avatar
Avatar
3
mars 15
10927
how to add more then one default filter?
action filter odoo10
Avatar
Avatar
2
avr. 24
5603
How to change string of the button without altering its action
action button string
Avatar
Avatar
Avatar
2
févr. 23
4161
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