DataBeam :

- aggiunta gestione sfrido di testa e coda da parametri utente TS3
- aggiunta gestione lavorazione tipo Mortise per mortasature
- tolto controllo non più utile da DtMortise.
This commit is contained in:
Dario Sassi
2020-05-25 13:43:35 +00:00
parent 1e612fac4a
commit 5d5732e142
4 changed files with 9 additions and 10 deletions
+5 -2
View File
@@ -1,4 +1,4 @@
-- ProcessMortise.lua by Egaltech s.r.l. 2020/04/27
-- ProcessMortise.lua by Egaltech s.r.l. 2020/05/25
-- Gestione calcolo mortase per Travi
-- Tabella per definizione modulo
@@ -160,7 +160,10 @@ function ProcessMortise.Make( Proc, nPhase, nRawId, nPartId)
-- determino larghezza della mortasa
if dL < dW then dL, dW = dW, dL end
-- recupero la lavorazione
local sPocketing = ML.FindPocketing( 'Pocket', dW)
local sPocketing = ML.FindPocketing( 'Mortise', dW)
if not sPocketing then
sPocketing = ML.FindPocketing( 'Pocket', dW)
end
if not sPocketing then
local sErr = 'Error on process ' .. tostring( Proc.Id) .. ' pocketing not found in library'
EgtOutLog( sErr)