Skip to Content
Odoo Menu
  • Log ind
  • Prøv gratis
  • Apps
    Økonomi
    • Bogføring
    • Fakturering
    • Udgifter
    • Regneark (BI)
    • Dokumenter
    • e-Signatur
    Salg
    • CRM
    • Salg
    • POS Butik
    • POS Restaurant
    • Abonnementer
    • Udlejning
    Hjemmeside
    • Hjemmesidebygger
    • e-Handel
    • Blog
    • Forum
    • LiveChat
    • e-Læring
    Forsyningskæde
    • Lagerbeholdning
    • Produktion
    • PLM
    • Indkøb
    • Vedligeholdelse
    • Kvalitet
    HR
    • Medarbejdere
    • Rekruttering
    • Fravær
    • Medarbejdersamtaler
    • Anbefalinger
    • Flåde
    Marketing
    • Markedsføring på sociale medier
    • E-mailmarketing
    • SMS-marketing
    • Arrangementer
    • Automatiseret marketing
    • Spørgeundersøgelser
    Tjenester
    • Projekt
    • Timesedler
    • Udkørende Service
    • Kundeservice
    • Planlægning
    • Aftaler
    Produktivitet
    • Dialog
    • Godkendelser
    • IoT
    • VoIP
    • Vidensdeling
    • WhatsApp
    Tredjepartsapps Odoo Studio Odoo Cloud-platform
  • Brancher
    Detailhandel
    • Boghandel
    • Tøjforretning
    • Møbelforretning
    • Dagligvarebutik
    • Byggemarked
    • Legetøjsforretning
    Mad og værtsskab
    • Bar og pub
    • Restaurant
    • Fastfood
    • Gæstehus
    • Drikkevareforhandler
    • Hotel
    Ejendom
    • Ejendomsmægler
    • Arkitektfirma
    • Byggeri
    • Ejendomsadministration
    • Havearbejde
    • Boligejerforening
    Rådgivning
    • Regnskabsfirma
    • Odoo-partner
    • Marketingbureau
    • Advokatfirma
    • Rekruttering
    • Audit & certificering
    Produktion
    • Tekstil
    • Metal
    • Møbler
    • Fødevareproduktion
    • Bryggeri
    • Firmagave
    Heldbred & Fitness
    • Sportsklub
    • Optiker
    • Fitnesscenter
    • Kosmetolog
    • Apotek
    • Frisør
    Håndværk
    • Handyman
    • IT-hardware og support
    • Solenergisystemer
    • Skomager
    • Rengøringsservicer
    • VVS- og ventilationsservice
    Andet
    • Nonprofitorganisation
    • Miljøagentur
    • Udlejning af billboards
    • Fotografi
    • Cykeludlejning
    • Softwareforhandler
    Gennemse alle brancher
  • Community
    Få mere at vide
    • Tutorials
    • Dokumentation
    • Certificeringer
    • Oplæring
    • Blog
    • Podcast
    Bliv klogere
    • Udannelselsesprogram
    • Scale Up!-virksomhedsspillet
    • Besøg Odoo
    Få softwaren
    • Download
    • Sammenlign versioner
    • Udgaver
    Samarbejde
    • Github
    • Forum
    • Arrangementer
    • Oversættelser
    • Bliv partner
    • Tjenester til partnere
    • Registrér dit regnskabsfirma
    Modtag tjenester
    • Find en partner
    • Find en bogholder
    • Kontakt en rådgiver
    • Implementeringstjenester
    • Kundereferencer
    • Support
    • Opgraderinger
    Github Youtube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Få en demo
  • Prissætning
  • Hjælp

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

  • CRM
  • e-Commerce
  • Bogføring
  • Lager
  • PoS
  • Projekt
  • MRP
All apps
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Hjælp

Trouble getting correct button reference in custom module

Tilmeld

Få besked, når der er aktivitet på dette indlæg

Dette spørgsmål er blevet anmeldt
inheritancebutton
1 Svar
5708 Visninger
Avatar
Ben Olsen

I'm trying to use a custom module to customize various aspects of the interface, and can't seem to get the reference to a particular button correct. With the "stock" addon installed, the product "Inventory" tab has a section for "Stock and Expected Variations." I can see in the source code that this is added in the file "addons/stock/product_view.xml".

In this view, next to the "Quantity on Hand" (name="qty_available") field, there is a text button called "update" that lets users manually set the quantity available of that product. For our business, we don't want to allow that, so I thought a simple solution would be to hide the "update" button. In the source code, the button has attribute name="%(action_view_change_product_quantity)d", but in my custom module, I can't seem to refer to it with that name.

In my code, when I try to do:

<button name="%(action_view_change_product_quantity)d" position="replace" />

I get an error:

ValueError: No such external ID currently defined in the system: ui_customizations.action_view_change_product_quantity

My module is called ui_customizations, and in my __openerp__.py file I have:

"depends" : ['base', "product", "account", "stock"],

So it should be able to inherit correctly from the stock module. However no matter what I do, I can't seem to hide that update button. Here's my full code from the record level:

    <record id="my_procurement_locations_form" model="ir.ui.view">
        <field name="name">my.product.normal.procurement.locations.inherit</field>
        <field name="model">product.product</field>
        <field name="inherit_id" ref="product.product_normal_form_view"/>
        <field name="arch" type="xml">
            <button name="%(action_view_change_product_quantity)d" position="replace" />
        </field>
    </record>

Anybody have any idea what I'm doing wrong?

-------------------------------------

Comments seem to be not working at the moment, so here's my addition. Thanks to Mertechdata for getting me going in the right direction. There are two things I was still missing after his comment. First, my inherid_id was wrong, and it needed to be:

<field name="inherit_id" ref="stock.view_normal_procurement_locations_form"/>

Second, when referencing another module's ID names, you need to prepend the ID with the module name (otherwise it only looks in the current module:

<xpath expr="//button[@name='%(stock.action_view_change_product_quantity)d']" ...

0
Avatar
Kassér
Avatar
Eric
Bedste svar

You will want to reference it using xpath tags instead of a button tag like this:

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

    </xpath>

 

Here is another example where you can navigate down to the elements location on xml file:

    <xpath expr="/form/header/button[@name='copy_quotation']" position="replace">                   
    </xpath>

 

You can also set the buttons invisible attribute to True like this:

    <xpath expr="//field[@name='shop_id']" position="attributes">   
        <attribute name="invisible">True</attribute>                      
    </xpath> 

 

A good tutorial using xpath can be found on this website:

http://www.w3schools.com/xpath/xpath_syntax.asp

 

0
Avatar
Kassér
Enjoying the discussion? Don't just read, join in!

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

Tilmeld dig
Related Posts Besvarelser Visninger Aktivitet
View Override - Add attribute on action button
view inheritance button
Avatar
Avatar
Avatar
3
dec. 23
3635
Can't inherit base.view_partner_form of res.partner
inheritance
Avatar
Avatar
Avatar
Avatar
Avatar
4
feb. 25
4106
Include in inherit from JS class
inheritance
Avatar
Avatar
1
aug. 24
2945
How to Override a method in parent class in JS Løst
inheritance
Avatar
Avatar
2
nov. 24
4377
How to add a simple field to partner?
inheritance
Avatar
Avatar
Avatar
Avatar
3
okt. 23
15723
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Oversættelser
Tjenester
  • Odoo.sh-hosting
  • Support
  • Opgradere
  • Individuelt tilpasset udvikling
  • Uddannelse
  • Find en bogholder
  • Find en partner
  • Bliv partner
Om os
  • Vores virksomhed
  • Brandaktiver
  • Kontakt os
  • Stillinger
  • Arrangementer
  • Podcast
  • Blog
  • Kunder
  • Juridiske dokumenter • Privatlivspolitik
  • Sikkerhedspolitik
الْعَرَبيّة 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 er en samling open source-forretningsapps, der dækker alle dine virksomhedsbehov – lige fra CRM, e-handel og bogføring til lagerstyring, POS, projektledelse og meget mere.

Det unikke ved Odoo er, at systemet både er brugervenligt og fuldt integreret.

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