I am new to odoo and learning a bit related to reporting. i was looking around stock picking report. i noticed that it has an object called "docs" and the values are stored inside this object. as i am from PHP background there are possibilities to print the object received for debugging purpose as follows:
<?php print_r("object"); ?>
So i tried to print the same thing in odoo using QWeb template using below codes :
1. <t t-esc="docs" />
2. <t t-foreach="docs" t-as="o">
<t t-esc="o" />
3. <t t-foreach="docs" t-as="o">
<t t-esc="o_all" />
4. <t t-foreach="docs" t-as="o">
<t t-esc="o_value" />
5. <t t-foreach="docs" t-as="o">
<t t-esc="o_all" />
But i was unable to print the whole object, i only get stock.picking(1,) Can someone help me how can i see the whole object with keys and values in qweb template. Moreover can someone guide me where this object "docs" is defined.
I will really appreciate.
Thanks,