Commit ea1ba10c authored by prumde's avatar prumde

Changes for Inventory DrillDown

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@204094 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 3af02f96
...@@ -150,12 +150,15 @@ ...@@ -150,12 +150,15 @@
<ng-template #eventsTemplate let-inventoryShortage> <ng-template #eventsTemplate let-inventoryShortage>
<div style='border-bottom: 1px solid #ececec;'> <div style='border-bottom: 1px solid #ececec;'>
<div style='display: inline-block;'> <div style='display: inline-block;'>
<div style='font-size:14px; padding:1px; cursor:pointer; ' (click)="_onDrillDown(inventoryShortage, 'ITEM_CODE')"> <div style='font-size:14px; padding:1px; cursor:pointer; ' (click)="_onDrillDown(inventoryShortage, 'ITEM_CODE')" title='{{inventoryShortage.ITEM_DESCR}}'>
<span #itemElem style='position: relative; vertical-align: -webkit-baseline-middle;' <span #itemElem style='position: relative; vertical-align: -webkit-baseline-middle;'
(mouseover)='itemElem.style.textDecoration= "underline"' (mouseover)='itemElem.style.textDecoration= "underline"'
(mouseout)='itemElem.style.textDecoration= "none"'> (mouseout)='itemElem.style.textDecoration= "none"'>
{{inventoryShortage.ITEM_SH_DESCR + ' (' + inventoryShortage.ITEM_CODE + ')'}} {{inventoryShortage.ITEM_SH_DESCR + ' (' + inventoryShortage.ITEM_CODE + ')'}}
</span> </span>
<span style='position: relative; vertical-align: -webkit-baseline-middle; padding-left: 1em;'>
{{inventoryShortage.ITEM_SER }}
</span>
</div> </div>
<div style='font-size:13px; padding:1px;'> <div style='font-size:13px; padding:1px;'>
<span title='Average Sales Per Day'> <span title='Average Sales Per Day'>
...@@ -188,7 +191,17 @@ ...@@ -188,7 +191,17 @@
]]> ]]>
</html> </html>
</layout> </layout>
<column_group id="1"> <column_group id='1'>
<columns>
<column id='1' type='string' aggFunction='GROUP_BY_KEYS'><![CDATA[SITE_CODE, ITEM_CODE]]></column>
</columns>
</column_group>
<column_group id='2'>
<columns>
<column id='1' type='number' aggFunction='SUM'><![CDATA[AVAIL_STOCK_QTY]]></column>
</columns>
</column_group>
<column_group id="3">
<columns> <columns>
<column id="1" type="number" aggFunction="SORT_BY" order="Ascending"><![CDATA[STOCK_NO_DAYS]]></column> <column id="1" type="number" aggFunction="SORT_BY" order="Ascending"><![CDATA[STOCK_NO_DAYS]]></column>
</columns> </columns>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment