Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

How do I make products in bom-lines appear as "links"?

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
1 Răspunde
5838 Vizualizări
Imagine profil
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
Imagine profil
Abandonează
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.

Imagine profil
Will Stott
Cel mai bun răspuns

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
Imagine profil
Abandonează
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!

Înscrie-te
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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