From 63d9d24e3081344027d141ad8e8c1ea934320a6d Mon Sep 17 00:00:00 2001 From: DarioS Date: Wed, 14 Dec 2022 12:36:34 +0100 Subject: [PATCH] DataBeam : - aggiunti messaggi minimo grezzo scaricabile in Process. --- Process.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Process.lua b/Process.lua index 396666c..65c66fd 100644 --- a/Process.lua +++ b/Process.lua @@ -144,10 +144,11 @@ local function MyProcessBeams() end dTotLen = dTotLen + max( vBeam[#vBeam].Box:getDimX(), BD.MinRaw) local dAddLen = BD.OVM_HEAD + ( #vBeam - 1) * BD.OVM_MID - EgtOutLog( 'Ltot : ' .. EgtNumToString( dTotLen, 1) .. ' Lagg : '.. EgtNumToString( dAddLen, 1), 1) + EgtOutLog( 'Ltot : '..EgtNumToString( dTotLen, 1) .. ' Lagg : '..EgtNumToString( dAddLen, 1)..' MinUnloadRaw : '.. EgtNumToString( BD.MinRaw + BD.OVM_MID, 1), 1) -- Richiedo lunghezza del grezzo e sovramateriale di testa - local vsVal = EgtDialogBox( 'Lavora Travi' .. ' (Ltot='.. EgtNumToString( dTotLen + dAddLen + 0.5, 0) .. ', Lmax=' .. EgtNumToString( BD.MAX_RAW, 0) .. ')', + local vsVal = EgtDialogBox( 'Lavora Travi' .. ' (Ltot='..EgtNumToString( dTotLen + dAddLen + 0.5, 0).. + ', Lmax='..EgtNumToString( BD.MAX_RAW, 0)..',MinUlr='..EgtNumToString( BD.MinRaw + BD.OVM_MID, 0)..')', {'Lunghezza grezzo', EgtNumToString( BD.STD_RAW, 0)}, {'Sovramateriale di testa', EgtNumToString( BD.OVM_HEAD, 0)}, {'Forza sezione verticale', ' CB:true,*false'})