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

Problem with template.xml selection tag on a new many2one field

Subscriure's

Get notified when there's activity on this post

This question has been flagged
viewsproductxmlselectionodoo9
1 Respondre
9241 Vistes
Avatar
wizardz

I have a new field in product.template:

'abonnement': fields.many2one('product.template', 'product_id', selected=True)

Now I want to make something like this:


<div t-attf-class="form-group #{error.get('country_id') and 'has-error' or ''} col-lg-6">
<label class="control-label" for="country_id">Country</label>
<select name="country_id" class="form-control">
<option value="">Country...</option>
<t t-foreach="countries or []" t-as="country">
<option t-att-value="country.id" t-att-selected="country.id == partner.country_id.id">
<t t-esc="country.name" />
</option>
</t>
</select>
</div>


My code doesn't work at all:


<template id="products_followup" name="test">
<t t-call="website.layout">
<t t-set="additional_title">test Details</t>
<div id="wrap">
<div class="container">
<div class="row">
<div class="col-sm-6">
<ol class="breadcrumb mt8">
<li><a href="/my/home">My Account</a></li>
<li><span t-esc="product.name"/></li>
</ol>
</div>
</div>
<h1>Inserat Bearbeiten</h1>
<form t-attf-action="/my/test/#{product.id}" method="post" enctype="multipart/form-data">
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
<div class="row o_website_portal_details">
<div class="col-md-8">
<div class="row">
<div t-attf-class="form-group">
<label class="control-label" for="abonnement">Abo</label>
<select name="abonnement" class="form-control">
<option value="">Abo...</option>
<t t-foreach="abonnements or []" t-as="abo">
<option t-att-value="abo.id" t-att-selected="abo.id == product.abonnement.id">
<t t-esc="abo.name" />
</option>
</t>
</select>
</div>
<div class="clearfix">
<button type="submit" class="btn btn-default btn-primary pull-right mb32 ">
Speichern
<span class="fa fa-long-arrow-right" />
</button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</t>
</template>


Have someone an idea why my code isn't working right?

I want a selection of my products.

This is my controller:

@http.route(['/my/test/<int:product>'], type='http', auth="user", website=True)
def products_followup(self, product=None, redirect=None, **post):
product = request.env['product.template'].browse([product])
try:
product.check_access_rights('read')
product.check_access_rule('read')
except AccessError:
return request.website.render("website.403")
values = {
'error': {},
'error_message': [],
}
if post:
vals = {}
product.sudo().write(post)
values.update(post)
abonnements = request.env['product.template'].sudo().search([])

values.update({
'product': product,
'abonnements': abonnements,
'redirect': redirect,
})
if redirect:
return request.redirect(redirect)
return request.redirect('/my/home')


return request.website.render("website_portal_sale.products_followup", {
'product': product.sudo(),
})


1
Avatar
Descartar
Avatar
Denis Baranov
Best Answer

Hello,

First of all, you try to iterate over abonnement, while it is not a list. If you want to show this field for each product, you should iterate over products.

<label class="control-label" for="product.abonnement">Country</label>
<select name="abonnement" class="form-control">
<option value="">Country...</option>
<t t-foreach="product_ids or []" t-as="a">
<option t-att-value="a.abonnement.id" t-att-selected="a.abonnement.id == product.abonnement.id">
<t t-esc="a.abonnement.name" />
</option>
</t>
</select>
</div>

Second of all, are you sure you transfer this abonnement via a controller? What does an error says?

1
Avatar
Descartar
wizardz
Autor

I only transfer it with that in the controller:

product = request.env['product.template'].browse([product])

try:

product.check_access_rights('read')

product.check_access_rule('read')

except AccessError:

return request.website.render("website.403")

Denis Baranov

And where is the template rendering? I guess, you are using a standard one. That's why there is no value for abonnement, but I guess there is 'product_ids' or 'products'. Thus just iterate over them

wizardz
Autor

I don't get it, I have updated my question with the real code...

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
Restore accidentally deleted 'valuation' field in Odoo 8
sales views product xml odooV8
Avatar
0
de set. 18
4457
Make a New view rather than odoo form,tree,kanban views in odoo9 and I need to use it in xml instead of form or tree.
views xml custom templates odoo9
Avatar
1
de maig 18
1165
How to post xml selection to a new product?
product xml create website_builder odoo9
Avatar
0
de maig 17
4464
Using field without map to the database
views xml models transient odoo9
Avatar
Avatar
1
de febr. 16
7972
Inherit from inherited view Solved
views xml
Avatar
Avatar
5
de juny 20
7692
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