Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
8295 Visualizzazioni

I customized the "external_layout_header" template from the "report" module in a custom module that modifies the Sales Quote/Order layout.  I didn't realize that this template is also used for Purchase RFQs/Orders.  Now I'm getting errors on the Purchase Order layout, because I moved a field from the sale.order object up into the header template, and this field doesn't exist in the purchase.order object.  Is there any way that I can detect the document/object type with a t-function?  Something along the lines of <t t-if="o = 'sale.order'"> ...?

Avatar
Abbandona
Risposta migliore

Try this:

<t t-if="doc_model == 'sale.order'">

Available variables, see: QWeb Reports documentation

Avatar
Abbandona
Autore

Cool. I will try that, thanks! I couldn't find any information on what kinds of comparisons can be done inside of a t-if statement. Is there any documentation for methods and operators?

Autore

Or the available variables, such as the "doc_model" you listed?

Updated my answer.

Autore

Thanks. I had read the QWeb section, but didn't notice that there was a separate QWeb Reports section.

Thank you very much for the answer. I spent so many hours fixing my problem before find this forum.

My code was:
<div t-if="o._name == 'sale.order'">

So I obtained odoo error:
AttributeError: 'NoneType' object has no attribute '_name'

you change the code like this. it will work
<div>
<t- t-if="o._name == 'sale.order'">
</t>
</div>

Post correlati Risposte Visualizzazioni Attività
1
lug 16
24391
2
mar 15
7536
1
giu 21
8001
0
mar 15
3742
1
mar 15
14147