i have the following code :
<p t-field="o.request_id"/>
<t t-foreach="docs" t-as="o">
<p>
<t t-set="latest_partner" t-value="o.run_sql('SELECT purchase_request.Name, purchase_request.origin FROM purchase_request join purchase_request_line on purchase_request_line.request_id = purchase_request.id where purchase_request_line.id =84')"/>
<t t-foreach="latest_partner" t-as="part">
<p> pr - <span t-esc="part_index"/>: <span t-esc="part"/> </p>
</t></p></t>
i want to replace the in sql query value mentioned 84 with the field <p t-field="o.request_id"/> how to do that