- in PanelSaw in esportazione Homag la descrizione del tipo di grain è in olandese

This commit is contained in:
luca.mazzoleni
2025-10-08 17:16:55 +02:00
parent 7f4e117339
commit 30d0efa0ca
+8
View File
@@ -308,6 +308,14 @@ local function BuildCuttingList_Homag( PanelList, ActualSheetList, ProjectInfo)
}
for i = 1, #PanelList do
local sGrain = PanelList[i].sGrainDirection
-- TODO questo dipenderà dalla lingua dell'esportazione; andrà fatto un tipo di esportazione specifica per ogni lingua (es: HOMAG_NL, HOMAG_ENG, ...)
if sGrain == 'None' then
sGrain = 'Geen'
elseif sGrain == 'Length' then
sGrain = 'Lengte'
elseif sGrain == 'Width' then
sGrain = 'Breedte'
end
Panels.ValuesList[i] = { PanelList[i].sDescription, PanelList[i].nQuantity, PanelList[i].dLength, PanelList[i].dWidth, PanelList[i].sMaterialPlusThickness, sGrain, PanelList[i].sEdgeMaterialLeft, PanelList[i].sEdgeMaterialRight, PanelList[i].sEdgeMaterialTop, PanelList[i].sEdgeMaterialBottom, ProjectInfo.sProjectName, PanelList[i].sBarcode}
end