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 do I make products in bom-lines appear as "links"?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
1 Respondre
5844 Vistes
Avatar
philjun

The standard bill-of-material (bom) view is set up to display a list (lines) of any child boms. These lines also show the product_id of any child boms, but this product_id does not appear as a clickable 'link' taking me to actual products in my warehouse. As far as I can see, the structure is as follows: the bom-lines themselves each refer to a mrp.bom-object with a product_id, which refers to a product.product-object. As such, I should anticipate the product-names in the bom-lines to appear as links, but this is not the case. Can someone help me make the necessary configurations (to the view itself or to the underlying models)?

Cheers. 

2
Avatar
Descartar
Will Stott

Did you get anywhere with this? I would like to do the same thing. I found the following module: https://www.odoo.com/apps/6.1/web_treeviewlinks/ and the source: http://bazaar.launchpad.net/~credativ/credativ-openerp/addons-6.1/files/head:/web_treeviewlinks/ But it's quite old and I am having trouble understanding how you define the links.

Avatar
Will Stott
Best Answer

This seems to be broken now. I'm getting a Missing Error: "One of the documents you are trying to access has been deleted, please try again after refreshing." When the product definitely exists. The wrong ID is being given to the script. I don't know why this is. But this still might be a vaguely useful answer for someone trying to do this.

This is a bit of a dirty method. And it definitely isn't the ideal method for doing this. It doesn't retain history, and the links require a double click on the browser back button, because odoo changes the url slightly. But it works and it's a place to start.

 

I found a way to do this using javascript and modifying a view.xml in the form of a module:

<addons folder>/bom_links/__init__.py

 

<addons folder>/bom_links/__openerp__.py

{ 
 'name' : 'Bom Links',
 'version' : '1.0',
 'author' : 'Will Stott',
 'description' : 'MRP override module, adds links to the BOM view',
 'category': 'Manufacturing',
 'website': 'http://www.openerp.com',
 'depends' : ['base', 'mrp', 'web'], # list of dependencies, conditioning startup order
 'data' : [
 'view/views.xml', 
 ], 
 'installable': True,
 'auto-install': False,
} 

<addons folder>/bom_links/view/views.xml

<?xml version="1.0" encoding="utf-8"?>
<openerp>
  <data>

    <template id="assets_backend" name="bom_assets" inherit_id="web.assets_backend">
      <xpath expr="." position="inside">
        <script type="text/javascript" src="/bom_links/static/src/override.js"/>
      </xpath>
    </template>

    <record id="mrp_bom_form_view" model="ir.ui.view">
      <field name="name">mrp.bom.form</field>
      <field name="model">mrp.bom</field>
      <field name="inherit_id" ref="mrp.mrp_bom_form_view"/>
      <field name="arch" type="xml">
        <xpath expr="/form/notebook/page[@string='Components']/field/tree/field[@name='product_id']" position="replace"> 
          <field name="product_id" widget="link" on_change="onchange_product_id(product_id, product_qty)"/>
        </xpath>
      </field>
    </record>
  </data>
</openerp>

<addons folder>/bom_links/static/src/override.js

openerp.bom_links = function(instance) {
    instance.web.list.columns.add("field.link","instance.web.list.FieldTextLink");

        _format: function (row_data, options) {
           return _.template('<a class="oe_form_uri" href="<%-src%>"><%-text%></a>', {
                src: instance.session.url('/web',
                    {id: row_data[this.id].value[0], view_type:'form', model: 'product.template'}
                    ).replace('?', instance.session.debug ? '?debug=#' : '?#'),

                 text: row_data[this.id].value[1],

           });
        }
    });
}

I hope this helps some people.

 

3
Avatar
Descartar
Will Stott

I have no idea how to paste code. So I just used quotes.

philjun
Autor

Thank you for your reply, Will. This might be the way to go, but I have the feeling that there must be an easier and 'cleaner' solution. I am thinking that the fields which is defined as object-relations (one2many, many2one etc.) already appear as clickable links in the different views (e.g. the field 'product_id' in the 'mrp.bom' object, which relates to the corresponding product). Maybe it is just a case of editing the html of the corresponding view, though I must admit that I have not had much succes in this regard. Please let me know, if you find an elegant solution.

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
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