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
    • Intelligence artificielle
    • 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
    • Supermarché
    • 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
    • Homme à tout faire
    • 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
    • Devenir 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
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

Filtering data from one menu to another menu in v10

S'inscrire

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

Cette question a été signalée
xmlpython2.7odoo10.0
1 Répondre
5666 Vues
Avatar
Aravind

I have a checkbox in Manufacturing module-> Products form (Named "Raw Materials")


If I select the checkbox and save the data it should not get saved in the products form but else it should be saved in a separate menu called Raw materials which I created manually in Manufacturing module.


How to achieve this in Odoo v10?


This is my xml file......


    <record id="raw_materials" model="ir.ui.view">

                <field name="name">raw.form.inherit.button</field>

                <field name="model">product.template</field>

                <field name="inherit_id" ref="product.product_template_only_form_view"/>

                <field name="arch" type="xml" >

                <xpath expr="//field[@name='name']" position="after">

                         <div name="options" groups="base.group_user">

                                <div>

                                    <field name="raw"/>

                                    <label for="raw"/>

                                </div>

                          </div>    

                                                   

                 </xpath>

                 </field>

    </record>

    

    

    

    <record id="product_template_view" model="ir.ui.view">

            <field name="name">product.template.search</field>

            <field name="model">product.template</field>

            <field name="arch" type="xml">

                <search string="Product">

                    <separator/>

                    <filter string="Raw Materials" name="filter_to_raw" domain="[('raw','=',True)]"/>

                    <separator/>

                </search>

            </field>

    </record>

            

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

                <field name="name">Raw Materials</field>

                <field name="type">ir.actions.act_window</field>

                <field name="res_model">product.template</field>

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

                <field name="view_type">form</field>

                <field name="context">{"search_default_filter_to_raw":1}</field>

                <field name="view_id" ref="product.product_template_kanban_view"/>

                <field name="search_view_id" ref="product.product_template_search_view"/>

                <field name="help" type="html">

                  <p class="oe_view_nocontent_create">

                    Click to define a new product.

                  </p><p>

                    You must define a product for everything you sell, whether it's

                    a physical product, a consumable or a service you offer to

                    customers.

                  </p><p>

                    The product form contains information to simplify the Raw Materials: price, notes in the quotation, accounting data,

                    procurement methods, etc.

                  </p>

                </field>

            </record>

    

    

        

           <menuitem id="menu_mrp_product_form" name="Raw Materials" action="mrp.product_template_action"

                     parent="mrp.menu_mrp_bom" sequence="8"/>


   


Thanks in advance

0
Avatar
Ignorer
Avatar
Aravind
Auteur Meilleure réponse

This is the code for the question which I raised above.



<record id="raw_materials" model="ir.ui.view">

            <field name="name">raw.form.inherit.button</field>

            <field name="model">product.template</field>

            <field name="inherit_id" ref="product.product_template_only_form_view"/>

            <field name="arch" type="xml" >

                

                <xpath expr="//field[@name='name']" position="after">

                     

                        <div name="options" groups="base.group_user">

                            <div>

                                <field name="raw"/>

                                <label for="raw"/>

                            </div>

                        </div>    

                                               

                </xpath>

                

            </field>

        </record>

        <record id="raw_search_view" model="ir.ui.view">

        <field name="name">raw.product.search</field>

        <field name="model">product.template</field>

        <field name="inherit_id" ref="product.product_template_search_view"/>

        <field name="arch" type="xml">

            <xpath expr="//filter[@name='consumable']" position="after">

                <seperator/>

                <filter string="Raw Materials" name="filter_to_raw" domain="[('raw','=',True)]"/>

            </xpath>

        </field>

        </record>

        

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

            <field name="name">Raw Materials</field>

            <field name="type">ir.actions.act_window</field>

            <field name="res_model">product.template</field>

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

            <field name="view_type">form</field>

            <field name="context">{"search_default_filter_to_raw":True}</field>

            <field name="domain">[('raw','=',True)]</field>

            <field name="view_id" ref="product.product_template_kanban_view"/>

            <field name="search_view_id" ref="product.product_template_search_view"/>

            <field name="help" type="html">

              <p class="oe_view_nocontent_create">

                Click to define a new product.

              </p><p>

                You must define a product for everything you sell, whether it's

                a physical product, a consumable or a service you offer to

                customers.

              </p><p>

                The product form contains information to simplify the Raw Materials: price, notes in the quotation, accounting data,

                procurement methods, etc.

              </p>

            </field>

        </record>

0
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é
Hiding Attachments button on a specific model's form view in odoo 10.
xml python2.7 odoo10.0
Avatar
0
août 22
3918
How to trigger the 'readonly' when boolean value 'True' in odoo 10
xml python2.7 odoo10.0
Avatar
Avatar
4
oct. 17
12603
Applying function on button
xml python2.7 odoo10 odoo10.0
Avatar
0
juil. 19
6312
Hiding and showing trash icon on one2many field based on a condition in odoo 10. Résolu
python2.7 odoo10.0
Avatar
Avatar
2
juin 24
3507
Assigning/sending/copying long text field value to another text field in odoo 10 by a xmlrpc webservice.
python2.7 odoo10.0
Avatar
Avatar
1
déc. 23
3160
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
  • Devenir 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 Svenska ภาษาไทย 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