- Corretto campo nome topologia

This commit is contained in:
andrea.villa
2024-04-19 11:51:48 +02:00
parent e58cf7e398
commit ce156606e6
2 changed files with 9 additions and 9 deletions
+8 -8
View File
@@ -195,14 +195,14 @@ local function GetStrategies_Essetre( Proc)
---------------------------------------------------------------------
-- Feature : Cut
elseif ID.IsSplitCut( Proc) then
if Proc.TopologyName == 'FEATURE' then
if Proc.Topology.Name == 'FEATURE' then
Strategy_Essetre = {
StrategyID = 'STR0010',
Parameters = {
{
{ Value = '15', Name = 'Step', Description = 'Questo è lo step di lavorazione', Type = 'd'},
{ Value = '2', Name = 'Depth', Description = 'Affondamento lavorazione', Type = 'd'},
{ Value = 'false', Name = 'AntiSplint', Description = 'Antischeggia', Type = 'b'}
{ Value = '15', Name = 'Step', Type = 'd'},
{ Value = '2', Name = 'Depth', Type = 'd'},
{ Value = 'false', Name = 'AntiSplint', Type = 'b'}
}
}
}
@@ -212,14 +212,14 @@ local function GetStrategies_Essetre( Proc)
---------------------------------------------------------------------
-- Feature : Cut
elseif ID.IsCut( Proc) then
if Proc.TopologyName == 'FEATURE' then
if Proc.Topology.Name == 'FEATURE' then
Strategy_Essetre = {
StrategyID = 'STR0001',
Parameters = {
{
{ Value = '15', Name = 'Step', Description = 'Questo è lo step di lavorazione', Type = 'd'},
{ Value = '2', Name = 'Depth', Description = 'Affondamento lavorazione', Type = 'd'},
{ Value = 'false', Name = 'AntiSplint', Description = 'Antischeggia', Type = 'b'}
{ Value = '15', Name = 'Step', Type = 'd'},
{ Value = '2', Name = 'Depth', Type = 'd'},
{ Value = 'false', Name = 'AntiSplint', Type = 'b'}
}
}
}