Skip to Content
Menu
This question has been flagged
2 Replies
7650 Views


Hi,


I've got an error and not possible for me to find the cause.


In the view mrp.report_mrporder, i want to keep date order from sale_order since mrp.production

With the following code, it works when i taste it directly in the mrp.report_mrporder view

But i've got error "object unbound" when i add the same code in an XML view which inherit from mrp.report_mrporder

<xpath expr="/t[1]/t[1]/t[1]/t[1]/div[1]/div[3]/div[2]" position="after">

    <div class="col-3">

        <strong>Date Commande:</strong><br/>

        <tr t-foreach="request.env['sale.order'].search([('name','=',o.origin)])" t-as="cde">

            <t t-esc="cde.date_order" t-options='{"widget": "date"}'/>

        </tr>

    </div>

</xpath>


Any idea for this problem ?!

Vincent

Avatar
Discard
Author

It works, thank you Arya ;)

 

Best Answer

In the report, you cannot use the request variable.

Try the following code:

<tr t-foreach="o.env['sale.order'].search([('name','=',o.origin)])" t-as="cde"> 


Avatar
Discard