Quintiq file version 2.0
|
#parent: #root
|
StaticMethod ShowHideNode (
|
SupplyChainView supplychainview,
|
Entitys entities
|
)
|
{
|
Description: 'Show/hide node from supply chain overview'
|
TextBody:
|
[*
|
nodes := construct( Nodes );
|
|
traverse( entities, Elements, e )
|
{
|
localNodes := e.GetNodes( supplychainview );
|
nodes := nodes.Union( localNodes );
|
}
|
|
supplychainview.ShowOrHideNodes( nodes );
|
*]
|
}
|