DataBeam :

- correzioni e migliorie varie
- aggiunta gestione lavorazioni BlockHausFront e FrenchRidgeLap.
This commit is contained in:
Dario Sassi
2020-02-12 09:10:51 +00:00
parent be5c936234
commit dbb43355c3
9 changed files with 711 additions and 19 deletions
+5 -3
View File
@@ -1,4 +1,4 @@
-- ProcessStepJointNotch.lua by Egaltech s.r.l. 2019/10/23
-- ProcessStepJointNotch.lua by Egaltech s.r.l. 2020/02/11
-- Gestione calcolo tacca a gradino per Travi
-- Tabella per definizione modulo
@@ -270,6 +270,9 @@ end
---------------------------------------------------------------------
-- Applicazione della lavorazione
function ProcessStepJointNotch.Make( Proc, nPhase, nRawId, nPartId, dOvmHead)
-- esecuzione eventuale smusso
local bOkc, sErrC = MakeChamfer( Proc, nPhase, nRawId, nPartId, dOvmHead)
if not bOkc then return bOkc, sErrC end
-- se due facce
if Proc.Fct == 2 then
local bOk, sErr = MakeTwoFaces( Proc, nPhase, nRawId, nPartId, dOvmHead)
@@ -284,8 +287,7 @@ function ProcessStepJointNotch.Make( Proc, nPhase, nRawId, nPartId, dOvmHead)
EgtOutLog( sErr)
return false, sErr
end
-- esecuzione eventuale smusso
return MakeChamfer( Proc, nPhase, nRawId, nPartId, dOvmHead)
return true
end
---------------------------------------------------------------------