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
    Restauration & Hôtellerie
    • 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
    • Brasserie
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Commerce
    • Bricoleur
    • Matériel informatique & 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
    Parcourir toutes les 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 pour partenaires
    • 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

when i click the button in wizard many2many field value is automatically clear

S'inscrire

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

Cette question a été signalée
4598 Vues
Avatar
Apoorv Soral

in .py


del_states = fields.Selection([ ('pending','Pending'), ('done','Done'), ('all','All'), ],'States',default = 'all')

sale_id_done = fields.Many2many('sale.order',string = 'Sale Order')# create sale_id for show all saleorder in wizard

sale_id_all = fields.Many2many('sale.order',string = 'Sale Order')

sale_id_pending = fields.Many2many('sale.order',string = 'Sale Order')

cust_id = fields.Many2many('res.partner', string='Customer')

prod_id = fields.Many2many('product.product', string='Product')

state_ids = fields.Many2many('res.country.state', string='State')

sales_person_id = fields.Many2many('res.users', string='Sales Person')

from_date = fields.Date(string = 'From') to_date = fields.Date(string = 'to') states_checkbox = fields.Boolean('States',default = True,readonly=True)

saleorder_checkbox = fields.Boolean('Sale Order')

customer_checkbox = fields.Boolean('Customer')

product_name_cb = fields.Boolean('Product')

state_checkbox = fields.Boolean('State')

sales_person_cb = fields.Boolean('Sales Person')

date_range = fields.Boolean(string = 'Date Range')


in .xml


<group>

<field name = "states_checkbox"/> <field name = "saleorder_checkbox" />

<field name = "customer_checkbox"/> <field name = "product_name_cb" />

<field name = "sales_person_cb"/> <field name = "state_checkbox"/>

<field name = "date_range" /> </group>

<group>

<field name="del_states" widget = "selection" attrs="{'invisible': [('states_checkbox','!=',True)]}"/>

<field name="sale_id_all" widget = "many2many_tags" attrs="{'invisible': ['|',('del_states','!=','all'),('saleorder_checkbox','!=',True)]}" domain = "[('state','not in',('draft','cancel'))]" />

<field name="sale_id_done" widget = "many2many_tags" attrs="{'invisible': ['|',('del_states','!=','done'),('saleorder_checkbox','!=',True)]}" domain = "[('state','=','done')]" />

<field name="sale_id_pending" widget = "many2many_tags" attrs="{'invisible': ['|',('del_states','!=','pending'),('saleorder_checkbox','!=',True)]}" domain = "[('state','not in',('draft','cancel','done'))]" />

<field name="cust_id" widget = "many2many_tags" attrs="{'invisible': [('customer_checkbox','!=',True)]}"/>

<field name="prod_id" widget = "many2many_tags" attrs="{'invisible': [('product_name_cb','!=',True)]}"/>

<field name="sales_person_id" widget = "many2many_tags" attrs="{'invisible': [('sales_person_cb','!=',True)]}"/>

<field name="state_ids" widget = "many2many_tags" attrs="{'invisible': [('state_checkbox','!=',True)]}"/>

<field name = "from_date" attrs="{'invisible': [('date_range','!=',True)]}"/> <field name = "to_date" attrs="{'invisible': [('date_range','!=',True)]}"/>

 <p attrs="{'invisible':['|',('del_states','!=','pending'),('states_checkbox','=',False)]}" class="oe_black" colspan="3"> Only Sales Orders Stages (Quotation Sent,Waiting Schedule,Sales Order,Sale to Invoice,Shipping Exception,Invoice Exception) will be displayed.

</p> <p attrs="{'invisible':['|',('del_states','!=','done'),('states_checkbox','=',False)]}" class="oe_black" colspan="2"> Only Sales Order Stage (Done) will be displayed.

</p> <p attrs="{'invisible':['|',('del_states','!=','all'),('states_checkbox','=',False)]}" colspan="2"> Only Sales Orders Stages (Quotation Sent,Waiting Schedule,Sales Order,Sale to Invoice,Shipping Exception,Invoice Exception,All) will be displayed.

</p>

 <footer> <button name="out_picking" string="Show Delivery List" type="object" class="oe_highlight"/> or <button string="Cancel" class="oe_link" special="cancel"/> </footer> 



when i click the button in wizard many2many field the value is automatically clear in all and pending state.

1
Avatar
Ignorer
Wilbert Tan

Hi Soral, what you are trying to do?

Apoorv Soral
Auteur

i want to change saleorder according to state sale_id_all , done and pending. it's work but problem is when i click on button of wizard saleorder are automatically clear in all and pending state but not in done

it's correctly work in done state.

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
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