Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
2 Ответы
5183 Представления

I'm trying to change any fields of the table but only it change name of the "theads" but not the dinamic information. I'm trying to change "Description" field for the name of product in this case "product_id" but is not changing anything..


The original code in the report of "report_saleorder_document":

<...>

<thead>

<tr>

<th>Description</th>

<th>Taxes</th>

<th class="text-right">Quantity</th>

<th class="text-right">Unit Price</th>

<th groups="sale.group_discount_per_so_line">Disc.(%)</th>

<th class="text-right">Price</th>

</tr>

</thead>

<tbody class="sale_tbody">

<tr t-foreach="o.order_line" t-as="l">

<td class="text-right">

<span t-field="l.name"/>

</td>

<td>

<span t-esc="', '.join(map(lambda x: x.name, l.tax_id))"/>

</td>

<...>


------------------------------------------------------


And my code :

<...>

<thead>

<tr>

<th>Product Name</th>

<th>Taxes</th>

<th class="text-right">Quantity</th>

<th class="text-right">Unit Price</th>

<th groups="sale.group_discount_per_so_line">Disc.(%)</th>

<th class="text-right">Price</th>

</tr>

</thead>

<tbody class="sale_tbody">

<tr t-foreach="o.order_line" t-as="l">

<td class="text-right">

<span t-field="l.product_id.name"/> <!--This code I'm trying to change-->

</td>

<td>

<span t-esc="', '.join(map(lambda x: x.name, l.tax_id))"/>

</td>

<...>

 

I tried to change to this codes:

<span t-field="l.product_id.name"/>

or

<span t-field="l.product_id"/>



But it doesn't work \(>o<)/ Help meee 


Аватар
Отменить
Лучший ответ
Probably another installed module also overwrite the same report and your change is overwritten.
F
or example module sale_layout inherit and replace full report_saleorder_document.


 

Аватар
Отменить
Автор Лучший ответ

Then, I need to create a new module to avoid the overwritten?

 I found a beginner tutorial "http://www.odoo.yenthevg.com/creating-custom-reports-odoo-8/"??

Thanks!

Аватар
Отменить
Related Posts Ответы Просмотры Активность
2
авг. 24
1584
0
мар. 15
3286
1
июн. 23
2488
2
мар. 17
6110
0
февр. 16
3414