Quick Info Widget
Description
Environment
Attachments
relates to
Activity
Carlos Ruiz May 8, 2018 at 5:28 PM
With commit 816f209
added a context variable:
#clientInfo_QuickInfoComponentId
With this context variable is possible to configure Quick Info to zoom into windows.
Example:
Query:
select COALESCE(string_agg(qtyordered||' <a href="javascript:void(0)" class="rp-href" onclick="zoom(@#clientInfo_QuickInfoComponentId@, ''M_Product_ID'', '||m_product_id||')">'||value||'</a>', ' <br> '),'')
FROM (
SELECT p.m_product_id, p.value, p.name, sum(l.qtyordered) AS qtyordered
from m_product p
join c_orderline l on l.m_product_id = p.m_product_id
join c_order o on l.c_order_id = o.c_order_id
join c_bpartner b on o.c_bpartner_id = b.c_bpartner_id
where b.c_bpartner_id = @C_BPartner_ID@
and p.isactive = 'Y'
GROUP BY p.m_product_id, p.name, p.value
ORDER BY sum(l.qtyordered) DESC
NATIVE_PostgreSQL_KEYWORKLIMIT 10) AS x
Message:
<b>Top 10 ordered: </b><br> {0}
That quick info (just for postgresql) shows the top 10 products bought by a business partner (f.e. useful on sales order window) with a link to the product.
Look like the link is created using the zoom function on the actual report.js file and the new context variable #clientInfo_QuickInfoComponentId for the component listening the zoom event.
Carlos Ruiz January 13, 2014 at 2:48 PM
Thanks for the feedback @Alan Lescano
Reopening this ticket to address your finding.

Alan Lescano January 13, 2014 at 2:32 PM
Very useful feature, Carlos.
It seems that when switching tabs (several orders opened), quick info is not updated.
Carlos Ruiz January 13, 2014 at 3:42 AMEdited
The attached patch implements the functionality for Quick Info Widget.
For test and peer review purposes please:
apply the attached patch
pack in the attached file
The result can be seen on the Sales Order window like shown in the screenshot
Regards,
Carlos Ruiz
Implement Quick Info Widget like discussed on