Ir al contenido
Menú
Se marcó esta pregunta
2 Respuestas
7143 Vistas

I'd like to display the internal reference of my products and variants on the product page on the e commerce in odoo 10

can anyone explain me how to do it?

Avatar
Descartar
Mejor respuesta


      <td t-if="line.product_id.product_tmpl_id"> 

                  <div>

                         <strong t-field="line.product_id.with_context(display_default_code=True).display_name" />

                    </div>

    </td>

It Will show like this [E232]Mouse

                                          

         

Avatar
Descartar
Mejor respuesta

Hi Olivier,

To add the internal reference to the product page , you can extend the template with the id="product" using the t-extend , then you can add the code to add the internal reference like this,

Thank You

<div>
<t t-if="product.default_code">
<p t-field="product.default_code" class="text-muted" />
</t>
</div>


Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
4
feb 25
4212
2
ene 23
16014
0
oct 22
1875
1
jun 25
1892
0
oct 22
2184