Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

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

Subscriure's

Get notified when there's activity on this post

This question has been flagged
actionodoocomputed-fields
1 Respondre
8530 Vistes
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
Descartar
Avatar
Raciel Perdomo Gómez
Best Answer

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
Descartar
Simone
Autor

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
Autor

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
Autor

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!

Registrar-se
Related Posts Respostes Vistes Activitat
How can i call a specific module view when i log ? am using Odoo studio
action odoo
Avatar
0
de des. 22
2517
Why XML in odoo ? Solved
action xml odoo
Avatar
Avatar
Avatar
Avatar
3
de set. 25
2211
HOW CAN I GET CURRENT COMPANY ID IN CONTEXT OF ACTION USING JUST XML
action xml context odoo
Avatar
Avatar
1
de jul. 24
2631
What is use of “group_by_no_leaf”? Solved
action view odoo odoo12
Avatar
Avatar
Avatar
Avatar
3
de juny 24
4902
Export Data
action export data odoo
Avatar
0
de nov. 22
2542
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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