Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

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

Odebírat

Get notified when there's activity on this post

This question has been flagged
action
1 Odpovědět
1233 Zobrazení
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
Zrušit
Naved husain shaikh
Autor

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

Avatar
Christoph Farnleitner
Nejlepší odpověď

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
Zrušit
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
Odoo eLearning app, users cannot access the courses
action
Avatar
Avatar
1
lis 25
186
tyhujty ryhtrey retye ter erter erter er
action
Avatar
0
lis 25
10
I use odoo19, Enterprise version When i connect the Social Media in Social Marketing module so i face this issue. Unprocessable Entity. Vyřešeno
action
Avatar
Avatar
1
lis 25
190
(!!copair~rápido!!) Cómo puedo hablar con una persona real en Copa?
action
Avatar
0
lis 25
4
Notification Email Alias – What Emails Are Sent?
action
Avatar
0
lis 25
5
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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