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

How to have a compute field's value in domain action of a smart-button

Tilmeld

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

Dette spørgsmål er blevet anmeldt
actionodoocomputed-fields
1 Svar
8520 Visninger
Avatar
Simone

Hi

In my model i've a compute field that give the ID of the active contract of this user :

id_ultimo_contratto = fields.Integer(compute="_compute_last_contratto", store=True)

this is the function that i use  to calculate the id (and it's correct i've the right value) :

@api.multi
@api.depends()
def _compute_last_contratto(self):
id_utenza=self.id
contratto_attivo = ''
for AttivitaSvoltaEE in self.env['utilitypower.attivitasvolta_ee'].search([('id_utenza_ee','=',id_utenza)]):
id_attivita = AttivitaSvoltaEE.id
for Contratto in self.env['utilitypower.contratti_ee'].search([('attivitasvolte_ids','=',id_attivita)]):
if Contratto.stato==1:
#find it :
id_contratto_attivo = Contratto.id
id_ultima_attivita = id_attivita
contratto_attivo=Contratto.nome_contratto
for UtenzeEE in self:
UtenzeEE.last_contratto = contratto_attivo
UtenzeEE.id_ultimo_contratto = id_contratto_attivo
UtenzeEE.id_ultima_attivita = id_ultima_attivita

I use this id in a smart-button and i want to open the view of the contract with an action linked at the smart-button :

<button class="oe_stat_button" 
icon = "fa-file-text-o"
type = "action"
name="action_view_contrattoattivo_ee"
options="{}">
<span><field name="id_ultimo_contratto"/></span>
</button>

The problem is that i can't understand how to pass the id_ultimocontratto field_value in the domain/context of the action:

<act_window id="action_view_contrattoattivo_ee" 
name="Contratto Attivo"
res_model="utilitypower.contratti_ee"
view_type="tree,form"
view_mode="tree"
domain="[]"
/>

How have I do to insert the compute field in the domain? and how i can refer to the id (odoo) of the final model?

0
Avatar
Kassér
Avatar
Raciel Perdomo Gómez
Bedste svar

If you create the button with type="object" you could do a function responsible to open the action you need.

Something like this:


<button class="oe_stat_button" 
icon = "fa-file-text-o"
type = "object"
name="action_open_view_contrattoattivo_ee"
options="{}" context="{'id_ultimo_contratto': id_ultimo_contratto}">
<span><field name="id_ultimo_contratto"/></span>
</button>

Then

@api.multi

def action_open_view_contrattoattivo_ee(self):

action = self.env.ref('your_module_name.action_view_contrattoattivo_ee').read()[0]
action['domain'] = [('id', '=', self.env.context.get(''id_ultimo_contrato"))]

return action


1
Avatar
Kassér
Simone
Forfatter

Thanks for your reply, I tried, i think to undestand how it works and it works. I have only one question: everything works if the action is linked with the tree_view of the model, if I point directly to the form_view the form is opening in new-record mode (/web?debug=true#id=&action=1377&active_id=21059&model=utilitypower.contratti_ee&view_type=form&menu_id=1200) .. by debugging the function like this:

_logger.debug ('Simone INTO ACTION 1') # here i come

action = self.env.ref ("utility_power.view_tree_contratti_ee"). read () [0]

_logger.debug ('Simone VIEW ACTION 2:% s', action) # here i see the action

_logger.debug ('Simone ID_ULTIMO CONTRACT% s', self.env.context.get ("id_ultimo_contratto")) # here i see the right id

action ['domain'] = [('id', '=', self.env.context.get ("last_contract_id"))]

_logger.debug ('Simone DOMAIN:% s', action ['domain']) # Domain is right

return action

everything seems to be correct, am I doing something wrong?

Simone
Forfatter

I past the wrong form name, this is correct:

def action_view_contrattoattivo_ee(self):

_logger.debug ('Simone INTO ACTION 1') # Ok I arrive

action = self.env.ref ("utility_power.view_form_contratti_ee"). read () [0]

_logger.debug ('Simone VIEW ACTION 2:% s', action) # here i see the action

_logger.debug ('Simone ID_ULTIMO CONTRACT% s', self.env.context.get ("id_ultimo_contratto")) # here i see the right id

action ['domain'] = [('id', '=', self.env.context.get ("last_contract_id"))]

_logger.debug ('Simone DOMAIN:% s', action ['domain']) # Domain is right

return action

and this is the action code:

<act_window id="action_view_contrattoattivo_ee"

name="Contratto Attivo"

res_model="utilitypower.contratti_ee"

view_mode="tree,form"

/>

Raciel Perdomo Gómez

Just add this:

action['view_type'] = 'form'

action['view_mode'] = 'form'

action['res_id'] = self.env.context.get ("last_contract_id") (use this way instead of the domain)

action['target'] = 'current'

Raciel Perdomo Gómez

Also check that the model has only one form view declared, if not, you should specify what form to show

Simone
Forfatter

Thank you so much Raciel, everything works now.

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
How can i call a specific module view when i log ? am using Odoo studio
action odoo
Avatar
0
dec. 22
2509
Why XML in odoo ? Løst
action xml odoo
Avatar
Avatar
Avatar
Avatar
3
sep. 25
2209
HOW CAN I GET CURRENT COMPANY ID IN CONTEXT OF ACTION USING JUST XML
action xml context odoo
Avatar
Avatar
1
jul. 24
2629
What is use of “group_by_no_leaf”? Løst
action view odoo odoo12
Avatar
Avatar
Avatar
Avatar
3
jun. 24
4902
Export Data
action export data odoo
Avatar
0
nov. 22
2540
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