Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

how to hide save and discard without edit="false"

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
action
1 Beantwoorden
1239 Weergaven
Avatar
Naved husain shaikh

In odoo 18 we can create custom form so in header side are by default show Save and Cancel button so how to hide for particular form ya module not global?  
this is my code and i do not want to non editable form edit="false" 

so what i do?

<odoo>

    <!-- Main form view -->

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

        <field name="name">theappsherpa.registration.form</field>

        <field name="model">theappsherpa.registration</field>

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

            <form string="Registration" create="false" edit="true" readonly="0">

                <sheet>

                    <notebook>

                        <page string="Existing Registration">

                            <group>

                                <field name="secret_key"/>

                                <field name="project_version"/>

                                <button name="save_registration"

                                        string="Save"

                                        type="object"

                                        class="btn btn-primary"/>

                                <button name="reset_registration"

                                        string="Reset"

                                        type="object"

                                        class="btn btn-secondary"/>

                            </group>

                        </page>

                        <page string="New Registration">

                            <group>

                                <field name="company_name"/>

                                <field name="username"/>

                                <field name="email"/>

                                <field name="password" password="True"/>

                                <field name="confirm_password" password="True"/>

                                <field name="phone"/>

                                <!-- Button dikhaye jab user REGISTER NAHI hua ho -->

                                <button name="submit_new_user_registration"

                                        string="Register"

                                        type="object"

                                        class="btn btn-success"

                                        invisible="is_registered"/>


                                <!-- Button dikhaye jab user REGISTER HO CHUKA ho (readonly) -->

                                <button name="dummy_registered_button"

                                        string="Registered"

                                        type="object"

                                        class="btn btn-secondary"

                                        disabled="1"

                                        invisible="not is_registered"/>

                            </group>

                        </page>

                    </notebook>

                </sheet>

            </form>

        </field>

    </record>


    <!-- Save and Discard button are hide -->


    <!-- Inherited view to remove Save/Discard -->

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

        <field name="name">theappsherpa.registration.form.inherit</field>

        <field name="model">theappsherpa.registration</field>

        <field name="inherit_id" ref="theappsherpa.view_theappsherpa_registration_form"/>

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

            <form position="attributes">

                <attribute name="save_on_edit">false</attribute>

                <!-- <attribute name="edit">false</attribute> -->

            </form>

        </field>

    </record>



    <!-- Action -->

    <record id="action_theappsherpa_registration_server" model="ir.actions.server">

        <field name="name">Open Registration</field>

        <field name="model_id" ref="model_theappsherpa_registration"/>

        <field name="binding_model_id" ref="model_theappsherpa_registration"/>

        <field name="state">code</field>

        <field name="code">action = env['theappsherpa.registration'].get_registration_action()</field>

    </record>


    <!-- Menu -->

    <menuitem id="menu_theappsherpa_registration"

              name="Registration"

              parent="menu_theappsherpa_root"

              action="action_theappsherpa_registration_server"

              sequence="110"/>

</odoo>

0
Avatar
Annuleer
Naved husain shaikh
Auteur

but i want to use form so any other solution are available?

Avatar
Christoph Farnleitner
Beste antwoord

Hiding wouldn't do anything for you due to the auto-save feature.

Consider creating a wizard (transient model with action window). This is closer to the UI you're looking for. In there you could define your own <footer/> overriding the default Sale/Cancel buttons.

As a reference, see for example the process of creating an Invoice from a Sales Order. There you have a action window allowing for user input and button interactions.

0
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
Odoo eLearning app, users cannot access the courses
action
Avatar
Avatar
1
nov. 25
198
tyhujty ryhtrey retye ter erter erter er
action
Avatar
0
nov. 25
10
I use odoo19, Enterprise version When i connect the Social Media in Social Marketing module so i face this issue. Unprocessable Entity. Opgelost
action
Avatar
Avatar
1
nov. 25
205
(!!copair~rápido!!) Cómo puedo hablar con una persona real en Copa?
action
Avatar
0
nov. 25
4
Notification Email Alias – What Emails Are Sent?
action
Avatar
0
nov. 25
5
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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