Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d98eb0e9da | |||
| f4e97d4bae |
@@ -327,4 +327,3 @@ _UpgradeReport_Files/
|
|||||||
Backup*/
|
Backup*/
|
||||||
UpgradeLog*.XML
|
UpgradeLog*.XML
|
||||||
|
|
||||||
.ionide/symbolCache.db
|
|
||||||
|
|||||||
-121
@@ -1,121 +0,0 @@
|
|||||||
variables:
|
|
||||||
NUGET_PATH: 'C:\Tools\nuget.exe'
|
|
||||||
MSBUILD_PATH: 'C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\MSBuild.exe'
|
|
||||||
ASPNET_MERGE_PATH: 'C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools'
|
|
||||||
EXE_RELEASE_FOLDER: 'c:\Projetcs\Compiled\GPW\Release'
|
|
||||||
DEPLOY_FOLDER: 'c:\Projects\Deploy\GPW\Builds'
|
|
||||||
APP_NAME: 'EgtBEAMWALL'
|
|
||||||
APP_NAMEG: 'EgtBEAMWALL'
|
|
||||||
NEW_REL: ''
|
|
||||||
VERS_RD: 'Release'
|
|
||||||
ARCH: 'x86'
|
|
||||||
ARCH64: 'x64'
|
|
||||||
OUTPUT_DIR: ''
|
|
||||||
NET_SHARE: '\\10.74.82.201\Artifacts\EgtProg\EgtBEAMWALL'
|
|
||||||
NET_USER: 'steamw\steamware'
|
|
||||||
|
|
||||||
# helper x mount cartella Artifacts su truenas
|
|
||||||
.ReplicaCompiled: &ReplicaCompiled
|
|
||||||
- |
|
|
||||||
rm -Recurse Z:\$CI_COMMIT_BRANCH\$env:ARCH\*.*
|
|
||||||
rm -Recurse Z:\$CI_COMMIT_BRANCH\$env:ARCH\*.*
|
|
||||||
ROBOCOPY /E $env:APP_NAME\bin\$env:ARCH\$env:VERS_RD Z:\$CI_COMMIT_BRANCH\$env:ARCH /XF *.xml /XF *.pdb
|
|
||||||
ROBOCOPY /E $env:APP_NAME2\bin\$env:ARCH\$env:VERS_RD Z:\$CI_COMMIT_BRANCH\$env:ARCH /XF *.xml /XF *.pdb
|
|
||||||
SLEEP 2
|
|
||||||
net use Z: /delete
|
|
||||||
|
|
||||||
.ReplicaCompileds2: &ReplicaCompileds2
|
|
||||||
- |
|
|
||||||
ROBOCOPY /E $env:APP_NAME\bin\$env:ARCH64\$env:VERS_RD Z:\$CI_COMMIT_BRANCH\$env:ARCH64 /XF *.xml /XF *.pdb
|
|
||||||
ROBOCOPY /E $env:APP_NAME2\bin\$env:ARCH64\$env:VERS_RD Z:\$CI_COMMIT_BRANCH\$env:ARCH64 /XF *.xml /XF *.pdb
|
|
||||||
SLEEP 2
|
|
||||||
net use Z: /delete
|
|
||||||
|
|
||||||
.MakeFolderM: &MakeFolderM
|
|
||||||
- |
|
|
||||||
net use Z: /delete
|
|
||||||
new-item c:\EgtProg\EgtBEAMWALL -itemtype directory
|
|
||||||
net use Z: $env:NET_SHARE
|
|
||||||
|
|
||||||
.nuget-fix: &nuget-fix
|
|
||||||
- |
|
|
||||||
$hasSource = C:\Tools\nuget.exe sources list | find "`"Steamware Nexus`"" /C
|
|
||||||
if ($hasSource -eq 0) {
|
|
||||||
C:\Tools\nuget.exe sources Add -Name "`"Steamware Nexus`"" -Source https://nexus.steamware.net/repository/nuget-group -username "`"nugetUser`"" -password "`"$NEXUS_PASSWD`""
|
|
||||||
} else {
|
|
||||||
C:\Tools\nuget.exe sources Update -Name "`"Steamware Nexus`"" -Source https://nexus.steamware.net/repository/nuget-group -username "`"nugetUser`"" -password "`"$NEXUS_PASSWD`""
|
|
||||||
}
|
|
||||||
echo $hasSource
|
|
||||||
|
|
||||||
|
|
||||||
# helper creazione hash files
|
|
||||||
.hashBuild: &hashBuild
|
|
||||||
- |
|
|
||||||
$Target = "Releases\" + $CI_COMMIT_BRANCH + "\" + $env:APP_NAME + ".zip"
|
|
||||||
$MD5 = Get-FileHash $Target -Algorithm MD5
|
|
||||||
$SHA1 = Get-FileHash $Target -Algorithm SHA1
|
|
||||||
New-Item $Target".md5"
|
|
||||||
New-Item $Target".sha1"
|
|
||||||
$MD5.Hash | Set-Content -Path $Target".md5"
|
|
||||||
$SHA1.Hash | Set-Content -Path $Target".sha1"
|
|
||||||
|
|
||||||
echo "Created HASH files for $Target"
|
|
||||||
|
|
||||||
.cleanup-dir: &cleanup-dir
|
|
||||||
- |
|
|
||||||
rm $env:APP_NAME\bin\$env:ARCH\$env:VERS_RD\*.xml
|
|
||||||
rm $env:APP_NAME\bin\$env:ARCH\$env:VERS_RD\*.pdb
|
|
||||||
rm $env:APP_NAME\bin\$env:ARCH64\$env:VERS_RD\*.xml
|
|
||||||
rm $env:APP_NAME\bin\$env:ARCH64\$env:VERS_RD\*.pdb
|
|
||||||
|
|
||||||
stages:
|
|
||||||
- build
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
X86:build:
|
|
||||||
stage: build
|
|
||||||
tags:
|
|
||||||
- win
|
|
||||||
only:
|
|
||||||
- main
|
|
||||||
- master
|
|
||||||
- develop
|
|
||||||
variables:
|
|
||||||
APP_NAME: EgtBEAMWALL.Supervisor
|
|
||||||
APP_NAME2: EgtBEAMWALL.ViewerOptimizer
|
|
||||||
VERS_RD: 'Release'
|
|
||||||
ARCH: 'x86'
|
|
||||||
ARCH64: 'x64'
|
|
||||||
before_script:
|
|
||||||
- *nuget-fix
|
|
||||||
- '& "$env:NUGET_PATH" restore EgtBEAMWALL.sln -verbosity quiet'
|
|
||||||
- *MakeFolderM
|
|
||||||
script:
|
|
||||||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.vbproj" -target:Build /p:Configuration=$env:VERS_RD /p:Platform="$env:ARCH" /p:OutputPath=bin/$env:ARCH/$env:VERS_RD/ /verbosity:minimal /m'
|
|
||||||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME2\$env:APP_NAME2.vbproj" -target:Build /p:Configuration=$env:VERS_RD /p:Platform="$env:ARCH" /p:OutputPath=bin/$env:ARCH/$env:VERS_RD/ /verbosity:minimal /m'
|
|
||||||
- *ReplicaCompiled
|
|
||||||
|
|
||||||
|
|
||||||
X64:build:
|
|
||||||
stage: build
|
|
||||||
tags:
|
|
||||||
- win
|
|
||||||
only:
|
|
||||||
- main
|
|
||||||
- master
|
|
||||||
- develop
|
|
||||||
variables:
|
|
||||||
APP_NAME: EgtBEAMWALL.Supervisor
|
|
||||||
APP_NAME2: EgtBEAMWALL.ViewerOptimizer
|
|
||||||
VERS_RD: 'Release'
|
|
||||||
ARCH: 'x86'
|
|
||||||
ARCH64: 'x64'
|
|
||||||
before_script:
|
|
||||||
- *nuget-fix
|
|
||||||
- '& "$env:NUGET_PATH" restore EgtBEAMWALL.sln -verbosity quiet'
|
|
||||||
- *MakeFolderM
|
|
||||||
script:
|
|
||||||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.vbproj" -target:Build /p:Configuration=$env:VERS_RD /p:Platform="$env:ARCH64" /p:OutputPath=bin/$env:ARCH64/$env:VERS_RD/ /verbosity:minimal /m'
|
|
||||||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME2\$env:APP_NAME2.vbproj" -target:Build /p:Configuration=$env:VERS_RD /p:Platform="$env:ARCH64" /p:OutputPath=bin/$env:ARCH64/$env:VERS_RD/ /verbosity:minimal /m'
|
|
||||||
- *ReplicaCompileds2
|
|
||||||
|
|
||||||
@@ -90,16 +90,6 @@ Public Class BTLFeatureM
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Protected m_nPriority As Integer = 0
|
|
||||||
Public Overridable Property nPriority As Integer
|
|
||||||
Get
|
|
||||||
Return m_nPriority
|
|
||||||
End Get
|
|
||||||
Set(value As Integer)
|
|
||||||
m_nPriority = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
' Nome
|
' Nome
|
||||||
Protected m_sName As String
|
Protected m_sName As String
|
||||||
Public ReadOnly Property sName As String
|
Public ReadOnly Property sName As String
|
||||||
@@ -184,7 +174,7 @@ Public Class BTLFeatureM
|
|||||||
Protected m_sCALC_MSG As String
|
Protected m_sCALC_MSG As String
|
||||||
Public Property sCALC_MSG As String
|
Public Property sCALC_MSG As String
|
||||||
Get
|
Get
|
||||||
Return MessageFromLuaMsg(m_sCALC_MSG)
|
Return m_sCALC_MSG
|
||||||
End Get
|
End Get
|
||||||
Set(value As String)
|
Set(value As String)
|
||||||
m_sCALC_MSG = value
|
m_sCALC_MSG = value
|
||||||
@@ -254,11 +244,10 @@ Public Class BTLFeatureM
|
|||||||
Dim NewBTLFeature As New BTLFeatureM
|
Dim NewBTLFeature As New BTLFeatureM
|
||||||
NewBTLFeature.m_ParentPart = ParentPart
|
NewBTLFeature.m_ParentPart = ParentPart
|
||||||
NewBTLFeature.m_nFeatureId = nFeatureId
|
NewBTLFeature.m_nFeatureId = nFeatureId
|
||||||
' leggo gruppo, numero feature, lato e priorità
|
' leggo gruppo, numero feature e lato
|
||||||
EgtGetInfo(nFeatureId, BTL_FTR_GRP, NewBTLFeature.m_nSelGRP)
|
EgtGetInfo(nFeatureId, BTL_FTR_GRP, NewBTLFeature.m_nSelGRP)
|
||||||
EgtGetInfo(nFeatureId, BTL_FTR_PRC, NewBTLFeature.m_nPRC)
|
EgtGetInfo(nFeatureId, BTL_FTR_PRC, NewBTLFeature.m_nPRC)
|
||||||
EgtGetInfo(nFeatureId, BTL_FTR_SIDE, NewBTLFeature.m_nSelSIDE)
|
EgtGetInfo(nFeatureId, BTL_FTR_SIDE, NewBTLFeature.m_nSelSIDE)
|
||||||
EgtGetInfo(nFeatureId, BTL_FTR_PRIORITY, NewBTLFeature.m_nPRIORITY)
|
|
||||||
Dim nDO As Integer = 1
|
Dim nDO As Integer = 1
|
||||||
If EgtGetInfo(nFeatureId, BTL_FTR_DO, nDO) Then
|
If EgtGetInfo(nFeatureId, BTL_FTR_DO, nDO) Then
|
||||||
NewBTLFeature.m_bDO = (nDO <> 0)
|
NewBTLFeature.m_bDO = (nDO <> 0)
|
||||||
@@ -320,7 +309,6 @@ Public Class BTLFeatureM
|
|||||||
NewBTLFeature.m_nPRC = nPRC
|
NewBTLFeature.m_nPRC = nPRC
|
||||||
NewBTLFeature.m_nSelGRP = nGRP
|
NewBTLFeature.m_nSelGRP = nGRP
|
||||||
NewBTLFeature.m_nSelSIDE = nSIDE
|
NewBTLFeature.m_nSelSIDE = nSIDE
|
||||||
NewBTLFeature.m_nPriority = 0
|
|
||||||
NewBTLFeature.m_bDO = True
|
NewBTLFeature.m_bDO = True
|
||||||
' crea parametri per questa feature da file ini
|
' crea parametri per questa feature da file ini
|
||||||
NewBTLFeature.CreateFeatureParams(NewBTLFeature)
|
NewBTLFeature.CreateFeatureParams(NewBTLFeature)
|
||||||
@@ -479,7 +467,7 @@ Public Class BTLFeatureM
|
|||||||
If Param.nType = BTLParamType.DOUBLE_ Or Param.nType = BTLParamType.LENGTH Then
|
If Param.nType = BTLParamType.DOUBLE_ Or Param.nType = BTLParamType.LENGTH Then
|
||||||
Param.SetValue(Param.dDefault)
|
Param.SetValue(Param.dDefault)
|
||||||
ElseIf Param.nType = BTLParamType.STRING_ Then
|
ElseIf Param.nType = BTLParamType.STRING_ Then
|
||||||
Param.SetValue(Param.sDefault)
|
Param.SetValue("")
|
||||||
ElseIf Param.nType = BTLParamType.COMBO Then
|
ElseIf Param.nType = BTLParamType.COMBO Then
|
||||||
Param.nSelValue = Param.dDefault
|
Param.nSelValue = Param.dDefault
|
||||||
End If
|
End If
|
||||||
@@ -545,7 +533,6 @@ Public Class BTLFeatureM
|
|||||||
For Each QPar In QBTLParamMList
|
For Each QPar In QBTLParamMList
|
||||||
If QPar.bCustom Then EgtSetInfo(nFeatureId, QPar.sName & "A", 1)
|
If QPar.bCustom Then EgtSetInfo(nFeatureId, QPar.sName & "A", 1)
|
||||||
Next
|
Next
|
||||||
EgtSetInfo( nFeatureId, BTL_FTR_PRIORITY, nPriority)
|
|
||||||
SetFeatureId(nFeatureId)
|
SetFeatureId(nFeatureId)
|
||||||
' imposto modificato per copie
|
' imposto modificato per copie
|
||||||
EgtDuploSetModified(ParentPart.nPartId)
|
EgtDuploSetModified(ParentPart.nPartId)
|
||||||
|
|||||||
@@ -129,16 +129,6 @@ Public Class BTLParamM
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Protected m_sDefault As String
|
|
||||||
Public Property sDefault As String
|
|
||||||
Get
|
|
||||||
Return m_sDefault
|
|
||||||
End Get
|
|
||||||
Set(value As String)
|
|
||||||
m_sDefault = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
' tipo della variabile
|
' tipo della variabile
|
||||||
Protected m_nType As BTLParamType
|
Protected m_nType As BTLParamType
|
||||||
Public ReadOnly Property nType As BTLParamType
|
Public ReadOnly Property nType As BTLParamType
|
||||||
@@ -146,9 +136,6 @@ Public Class BTLParamM
|
|||||||
Return m_nType
|
Return m_nType
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
Public Sub SetType(value As BTLParamType)
|
|
||||||
m_nType = value
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
' Feature a cui appartiene il parametro
|
' Feature a cui appartiene il parametro
|
||||||
Protected m_ParentFeature As BTLFeatureM
|
Protected m_ParentFeature As BTLFeatureM
|
||||||
@@ -258,18 +245,16 @@ Public Class BTLParamM
|
|||||||
End Function
|
End Function
|
||||||
|
|
||||||
' new per stringhe
|
' new per stringhe
|
||||||
Public Shared Function CreateBTLParam(ParentFeature As BTLFeatureM, IsP As Boolean, nType As BTLParamType, sParamName As String, sDefault As String, sDescription As String)
|
Public Shared Function CreateBTLParam(ParentFeature As BTLFeatureM, IsP As Boolean, nType As BTLParamType, sParamName As String, sDescription As String)
|
||||||
Dim NewBTLParam As New BTLParamM
|
Dim NewBTLParam As New BTLParamM
|
||||||
NewBTLParam.StdInit(ParentFeature, IsP, nType, sParamName, sDescription)
|
NewBTLParam.StdInit(ParentFeature, IsP, nType, sParamName, sDescription)
|
||||||
NewBTLParam.m_sDefault = sDefault
|
|
||||||
Return NewBTLParam
|
Return NewBTLParam
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
' new per stringhe (con tipo Beam o Wall)
|
' new per stringhe (con tipo Beam o Wall)
|
||||||
Public Shared Function CreateBTLParam(ParentFeature As BTLFeatureM, IsP As Boolean, nType As BTLParamType, sParamName As String, sDefault As String, sDescription As String, sBWType As String)
|
Public Shared Function CreateBTLParam(ParentFeature As BTLFeatureM, IsP As Boolean, nType As BTLParamType, sParamName As String, sDescription As String, sBWType As String)
|
||||||
Dim NewBTLParam As New BTLParamM
|
Dim NewBTLParam As New BTLParamM
|
||||||
NewBTLParam.StdInit(ParentFeature, IsP, nType, sParamName, sDescription)
|
NewBTLParam.StdInit(ParentFeature, IsP, nType, sParamName, sDescription)
|
||||||
NewBTLParam.m_sDefault = sDefault
|
|
||||||
NewBTLParam.m_sBWType = sBWType
|
NewBTLParam.m_sBWType = sBWType
|
||||||
Return NewBTLParam
|
Return NewBTLParam
|
||||||
End Function
|
End Function
|
||||||
|
|||||||
@@ -666,7 +666,7 @@ Public Class BTLPartM
|
|||||||
Private m_sCALC_MSG As String
|
Private m_sCALC_MSG As String
|
||||||
Public Property sCALC_MSG As String
|
Public Property sCALC_MSG As String
|
||||||
Get
|
Get
|
||||||
Return MessageFromLuaMsg(m_sCALC_MSG)
|
Return m_sCALC_MSG
|
||||||
End Get
|
End Get
|
||||||
Set(value As String)
|
Set(value As String)
|
||||||
m_sCALC_MSG = value
|
m_sCALC_MSG = value
|
||||||
@@ -797,15 +797,15 @@ Public Class BTLPartM
|
|||||||
Dim vtVersY As New Vector3d
|
Dim vtVersY As New Vector3d
|
||||||
sValArray = sValue.Split({","}, StringSplitOptions.RemoveEmptyEntries)
|
sValArray = sValue.Split({","}, StringSplitOptions.RemoveEmptyEntries)
|
||||||
If sValArray.Count() >= 9 Then
|
If sValArray.Count() >= 9 Then
|
||||||
StringToLenAdv(sValArray(0), ptOri.x)
|
StringToLen(sValArray(0), ptOri.x)
|
||||||
StringToLenAdv(sValArray(1), ptOri.y)
|
StringToLen(sValArray(1), ptOri.y)
|
||||||
StringToLenAdv(sValArray(2), ptOri.z)
|
StringToLen(sValArray(2), ptOri.z)
|
||||||
StringToDoubleAdv(sValArray(3), vtVersX.x)
|
StringToDouble(sValArray(3), vtVersX.x)
|
||||||
StringToDoubleAdv(sValArray(4), vtVersX.y)
|
StringToDouble(sValArray(4), vtVersX.y)
|
||||||
StringToDoubleAdv(sValArray(5), vtVersX.z)
|
StringToDouble(sValArray(5), vtVersX.z)
|
||||||
StringToDoubleAdv(sValArray(6), vtVersY.x)
|
StringToDouble(sValArray(6), vtVersY.x)
|
||||||
StringToDoubleAdv(sValArray(7), vtVersY.y)
|
StringToDouble(sValArray(7), vtVersY.y)
|
||||||
StringToDoubleAdv(sValArray(8), vtVersY.z)
|
StringToDouble(sValArray(8), vtVersY.z)
|
||||||
NewBTLPart.m_refTransf.ChangeOrigin(ptOri)
|
NewBTLPart.m_refTransf.ChangeOrigin(ptOri)
|
||||||
NewBTLPart.m_refTransf.Setup(ptOri, ptOri + vtVersX, ptOri + vtVersY)
|
NewBTLPart.m_refTransf.Setup(ptOri, ptOri + vtVersX, ptOri + vtVersY)
|
||||||
End If
|
End If
|
||||||
@@ -813,12 +813,12 @@ Public Class BTLPartM
|
|||||||
ind = ind + 1
|
ind = ind + 1
|
||||||
End While
|
End While
|
||||||
EgtGetInfo(nPartId, BTL_PRT_CAMBER, sValue)
|
EgtGetInfo(nPartId, BTL_PRT_CAMBER, sValue)
|
||||||
sValArray = sValue.Split(New String() {":", "P"}, StringSplitOptions.RemoveEmptyEntries)
|
sValArray = sValue.Split(New String() {": ", " P"}, StringSplitOptions.RemoveEmptyEntries)
|
||||||
If sValArray.Count() >= 10 Then
|
If sValArray.Count() >= 5 Then
|
||||||
StringToLenAdv(sValArray(3), NewBTLPart.m_dCamberLen1)
|
StringToLen(sValArray(3), NewBTLPart.m_dCamberLen1)
|
||||||
StringToLenAdv(sValArray(5), NewBTLPart.m_dCamberLen2)
|
StringToLen(sValArray(5), NewBTLPart.m_dCamberLen2)
|
||||||
StringToLenAdv(sValArray(7), NewBTLPart.m_dCamberLen3)
|
StringToLen(sValArray(7), NewBTLPart.m_dCamberLen3)
|
||||||
StringToLenAdv(sValArray(9), NewBTLPart.m_dCamberCross3)
|
StringToLen(sValArray(9), NewBTLPart.m_dCamberCross3)
|
||||||
End If
|
End If
|
||||||
Dim pFrom As Integer = sValue.IndexOf("SIDE: ") + "SIDE: ".Length
|
Dim pFrom As Integer = sValue.IndexOf("SIDE: ") + "SIDE: ".Length
|
||||||
Dim pTo As Integer = sValue.LastIndexOf(" P01")
|
Dim pTo As Integer = sValue.LastIndexOf(" P01")
|
||||||
@@ -828,12 +828,12 @@ Public Class BTLPartM
|
|||||||
End If
|
End If
|
||||||
|
|
||||||
EgtGetInfo(nPartId, BTL_PRT_PARTOFFSET, sValue)
|
EgtGetInfo(nPartId, BTL_PRT_PARTOFFSET, sValue)
|
||||||
sValArray = sValue.Split(New String() {":", "P"}, StringSplitOptions.RemoveEmptyEntries)
|
sValArray = sValue.Split(New String() {": ", " P"}, StringSplitOptions.RemoveEmptyEntries)
|
||||||
If sValArray.Count() >= 10 Then
|
If sValArray.Count() >= 5 Then
|
||||||
StringToLenAdv(sValArray(3), NewBTLPart.m_dPartOffsetSide1)
|
StringToLen(sValArray(3), NewBTLPart.m_dPartOffsetSide1)
|
||||||
StringToLenAdv(sValArray(5), NewBTLPart.m_dPartOffsetSide2)
|
StringToLen(sValArray(5), NewBTLPart.m_dPartOffsetSide2)
|
||||||
StringToLenAdv(sValArray(7), NewBTLPart.m_dPartOffsetSide3)
|
StringToLen(sValArray(7), NewBTLPart.m_dPartOffsetSide3)
|
||||||
StringToLenAdv(sValArray(9), NewBTLPart.m_dPartOffsetSide4)
|
StringToLen(sValArray(9), NewBTLPart.m_dPartOffsetSide4)
|
||||||
End If
|
End If
|
||||||
pFrom = sValue.IndexOf("P04: ") + "P04: ".Length
|
pFrom = sValue.IndexOf("P04: ") + "P04: ".Length
|
||||||
pTo = sValue.LastIndexOf(" P11")
|
pTo = sValue.LastIndexOf(" P11")
|
||||||
@@ -883,9 +883,9 @@ Public Class BTLPartM
|
|||||||
NewBTLPart.m_refGrainDir = New Vector3d
|
NewBTLPart.m_refGrainDir = New Vector3d
|
||||||
sValArray = sValue.Split(New String() {",", ";"}, StringSplitOptions.RemoveEmptyEntries)
|
sValArray = sValue.Split(New String() {",", ";"}, StringSplitOptions.RemoveEmptyEntries)
|
||||||
If sValArray.Count() >= 4 Then
|
If sValArray.Count() >= 4 Then
|
||||||
StringToDoubleAdv(sValArray(0), NewBTLPart.m_refGrainDir.x)
|
StringToDouble(sValArray(0), NewBTLPart.m_refGrainDir.x)
|
||||||
StringToDoubleAdv(sValArray(1), NewBTLPart.m_refGrainDir.y)
|
StringToDouble(sValArray(1), NewBTLPart.m_refGrainDir.y)
|
||||||
StringToDoubleAdv(sValArray(2), NewBTLPart.m_refGrainDir.z)
|
StringToDouble(sValArray(2), NewBTLPart.m_refGrainDir.z)
|
||||||
NewBTLPart.m_bGRAINDIRALIGN = (CInt(sValArray(3)) = 1)
|
NewBTLPart.m_bGRAINDIRALIGN = (CInt(sValArray(3)) = 1)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@@ -1044,15 +1044,15 @@ Public Class BTLPartM
|
|||||||
' Dim vtVersY As New Vector3d
|
' Dim vtVersY As New Vector3d
|
||||||
' sValArray = sValue.Split({","}, StringSplitOptions.RemoveEmptyEntries)
|
' sValArray = sValue.Split({","}, StringSplitOptions.RemoveEmptyEntries)
|
||||||
' If sValArray.Count() >= 9 Then
|
' If sValArray.Count() >= 9 Then
|
||||||
' StringToLenAdv(sValArray(0), ptOri.x)
|
' StringToLen(sValArray(0), ptOri.x)
|
||||||
' StringToLenAdv(sValArray(1), ptOri.y)
|
' StringToLen(sValArray(1), ptOri.y)
|
||||||
' StringToLenAdv(sValArray(2), ptOri.z)
|
' StringToLen(sValArray(2), ptOri.z)
|
||||||
' StringToDoubleAdv(sValArray(3), vtVersX.x)
|
' StringToDouble(sValArray(3), vtVersX.x)
|
||||||
' StringToDoubleAdv(sValArray(4), vtVersX.y)
|
' StringToDouble(sValArray(4), vtVersX.y)
|
||||||
' StringToDoubleAdv(sValArray(5), vtVersX.z)
|
' StringToDouble(sValArray(5), vtVersX.z)
|
||||||
' StringToDoubleAdv(sValArray(6), vtVersY.x)
|
' StringToDouble(sValArray(6), vtVersY.x)
|
||||||
' StringToDoubleAdv(sValArray(7), vtVersY.y)
|
' StringToDouble(sValArray(7), vtVersY.y)
|
||||||
' StringToDoubleAdv(sValArray(8), vtVersY.z)
|
' StringToDouble(sValArray(8), vtVersY.z)
|
||||||
' m_refTransf.ChangeOrigin(ptOri)
|
' m_refTransf.ChangeOrigin(ptOri)
|
||||||
' m_refTransf.Setup(ptOri, ptOri + vtVersX, ptOri + vtVersY)
|
' m_refTransf.Setup(ptOri, ptOri + vtVersX, ptOri + vtVersY)
|
||||||
' End If
|
' End If
|
||||||
@@ -1063,10 +1063,10 @@ Public Class BTLPartM
|
|||||||
' EgtGetInfo(nPartId, BTL_PRT_CAMBER, sValue)
|
' EgtGetInfo(nPartId, BTL_PRT_CAMBER, sValue)
|
||||||
' sValArray = sValue.Split(New String() {": ", " P"}, StringSplitOptions.RemoveEmptyEntries)
|
' sValArray = sValue.Split(New String() {": ", " P"}, StringSplitOptions.RemoveEmptyEntries)
|
||||||
' If sValArray.Count() >= 5 Then
|
' If sValArray.Count() >= 5 Then
|
||||||
' StringToLenAdv(sValArray(3), m_dCamberLen1)
|
' StringToLen(sValArray(3), m_dCamberLen1)
|
||||||
' StringToLenAdv(sValArray(5), m_dCamberLen2)
|
' StringToLen(sValArray(5), m_dCamberLen2)
|
||||||
' StringToLenAdv(sValArray(7), m_dCamberLen3)
|
' StringToLen(sValArray(7), m_dCamberLen3)
|
||||||
' StringToLenAdv(sValArray(9), m_dCamberCross3)
|
' StringToLen(sValArray(9), m_dCamberCross3)
|
||||||
' End If
|
' End If
|
||||||
' Dim pFrom As Integer = sValue.IndexOf("SIDE: ") + "SIDE: ".Length
|
' Dim pFrom As Integer = sValue.IndexOf("SIDE: ") + "SIDE: ".Length
|
||||||
' Dim pTo As Integer = sValue.LastIndexOf(" P01")
|
' Dim pTo As Integer = sValue.LastIndexOf(" P01")
|
||||||
@@ -1078,10 +1078,10 @@ Public Class BTLPartM
|
|||||||
' EgtGetInfo(nPartId, BTL_PRT_PARTOFFSET, sValue)
|
' EgtGetInfo(nPartId, BTL_PRT_PARTOFFSET, sValue)
|
||||||
' sValArray = sValue.Split(New String() {": ", " P"}, StringSplitOptions.RemoveEmptyEntries)
|
' sValArray = sValue.Split(New String() {": ", " P"}, StringSplitOptions.RemoveEmptyEntries)
|
||||||
' If sValArray.Count() >= 5 Then
|
' If sValArray.Count() >= 5 Then
|
||||||
' StringToLenAdv(sValArray(3), m_dPartOffsetSide1)
|
' StringToLen(sValArray(3), m_dPartOffsetSide1)
|
||||||
' StringToLenAdv(sValArray(5), m_dPartOffsetSide2)
|
' StringToLen(sValArray(5), m_dPartOffsetSide2)
|
||||||
' StringToLenAdv(sValArray(7), m_dPartOffsetSide3)
|
' StringToLen(sValArray(7), m_dPartOffsetSide3)
|
||||||
' StringToLenAdv(sValArray(9), m_dPartOffsetSide4)
|
' StringToLen(sValArray(9), m_dPartOffsetSide4)
|
||||||
' End If
|
' End If
|
||||||
' pFrom = sValue.IndexOf("P04: ") + "P04: ".Length
|
' pFrom = sValue.IndexOf("P04: ") + "P04: ".Length
|
||||||
' pTo = sValue.LastIndexOf(" P11")
|
' pTo = sValue.LastIndexOf(" P11")
|
||||||
@@ -1105,9 +1105,9 @@ Public Class BTLPartM
|
|||||||
' m_refGrainDir = New Vector3d
|
' m_refGrainDir = New Vector3d
|
||||||
' sValArray = sValue.Split(New String() {",", ";"}, StringSplitOptions.RemoveEmptyEntries)
|
' sValArray = sValue.Split(New String() {",", ";"}, StringSplitOptions.RemoveEmptyEntries)
|
||||||
' If sValArray.Count() >= 4 Then
|
' If sValArray.Count() >= 4 Then
|
||||||
' StringToDoubleAdv(sValArray(0), m_refGrainDir.x)
|
' StringToDouble(sValArray(0), m_refGrainDir.x)
|
||||||
' StringToDoubleAdv(sValArray(1), m_refGrainDir.y)
|
' StringToDouble(sValArray(1), m_refGrainDir.y)
|
||||||
' StringToDoubleAdv(sValArray(2), m_refGrainDir.z)
|
' StringToDouble(sValArray(2), m_refGrainDir.z)
|
||||||
' m_bGRAINDIRALIGN = (CInt(sValArray(3)) = 1)
|
' m_bGRAINDIRALIGN = (CInt(sValArray(3)) = 1)
|
||||||
' End If
|
' End If
|
||||||
|
|
||||||
@@ -1210,7 +1210,7 @@ Public Class BTLPartM
|
|||||||
Return New List(Of BTLFeatureM)(m_BTLFeatureMList)
|
Return New List(Of BTLFeatureM)(m_BTLFeatureMList)
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Function Rotation(IsPositive As Boolean, SelectedMachineType As MachineType, Optional bRedraw As Boolean = True, Optional dAng As Double = 90) As Boolean
|
Public Function Rotation(IsPositive As Boolean, SelectedMachineType As MachineType, Optional dAng As Double = 90) As Boolean
|
||||||
' recupero il box del pezzo
|
' recupero il box del pezzo
|
||||||
Dim nLs As Integer = EgtGetFirstNameInGroup(nPartId, "Box")
|
Dim nLs As Integer = EgtGetFirstNameInGroup(nPartId, "Box")
|
||||||
Dim b3Solid As New BBox3d
|
Dim b3Solid As New BBox3d
|
||||||
@@ -1249,7 +1249,7 @@ Public Class BTLPartM
|
|||||||
' ripristino inversione
|
' ripristino inversione
|
||||||
Inversion(SelectedMachineType)
|
Inversion(SelectedMachineType)
|
||||||
End If
|
End If
|
||||||
If bRedraw Then EgtDraw()
|
EgtDraw()
|
||||||
Return bOk
|
Return bOk
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ Public Module CalcIntegration
|
|||||||
Public Event Calc_ProcessResult As EventHandler(Of CalcResultEventArgs)
|
Public Event Calc_ProcessResult As EventHandler(Of CalcResultEventArgs)
|
||||||
Public Event Calc_ProcessEnd As EventHandler(Of CalcProcessEndEventArgs)
|
Public Event Calc_ProcessEnd As EventHandler(Of CalcProcessEndEventArgs)
|
||||||
|
|
||||||
Private m_bIsSupervisor As Boolean = False
|
|
||||||
|
|
||||||
Public Enum CmdTypes As Integer
|
Public Enum CmdTypes As Integer
|
||||||
GENERATE = 0
|
GENERATE = 0
|
||||||
MODIFY = 1
|
MODIFY = 1
|
||||||
@@ -40,9 +38,8 @@ Public Module CalcIntegration
|
|||||||
|
|
||||||
Delegate Sub CallbackDlg(dProgress As Double, sProgress As String, ByRef bCancel As Boolean)
|
Delegate Sub CallbackDlg(dProgress As Double, sProgress As String, ByRef bCancel As Boolean)
|
||||||
|
|
||||||
Public Sub Run(vBar As Bar(), sProjDirPath As String, callback As CallbackDlg, Optional bIsSupervisor As Boolean = False)
|
Public Sub Run(vBar As Bar(), sProjDirPath As String, callback As CallbackDlg)
|
||||||
_thread = New Thread(Sub()
|
_thread = New Thread(Sub()
|
||||||
m_bIsSupervisor = bIsSupervisor
|
|
||||||
DoJob(vBar, sProjDirPath, callback)
|
DoJob(vBar, sProjDirPath, callback)
|
||||||
End Sub)
|
End Sub)
|
||||||
_thread.Start()
|
_thread.Start()
|
||||||
@@ -65,7 +62,7 @@ Public Module CalcIntegration
|
|||||||
End If
|
End If
|
||||||
ElseIf Bar.nProgramPage = ProjectType.PROD Then
|
ElseIf Bar.nProgramPage = ProjectType.PROD Then
|
||||||
If Bar.nGlobState = CalcStates.NOTCALCULATED Then
|
If Bar.nGlobState = CalcStates.NOTCALCULATED Then
|
||||||
Bar.sBarPath = CreateNewProjectFromMachGroup(Bar.nBarId, sProjDirPath, Bar.nGlobState)
|
Bar.sBarPath = CreateNewProjectFromMachGroup(Bar.nBarId, sProjDirPath)
|
||||||
Else
|
Else
|
||||||
Dim sMachGroupName As String = ""
|
Dim sMachGroupName As String = ""
|
||||||
EgtGetMachGroupName(Bar.nBarId, sMachGroupName)
|
EgtGetMachGroupName(Bar.nBarId, sMachGroupName)
|
||||||
@@ -78,7 +75,7 @@ Public Module CalcIntegration
|
|||||||
If Bar.nProgramPage = ProjectType.PROJ Then
|
If Bar.nProgramPage = ProjectType.PROJ Then
|
||||||
Bar.sBarPath = CreateNewProjectFromPart(Bar.nBarId, sProjDirPath)
|
Bar.sBarPath = CreateNewProjectFromPart(Bar.nBarId, sProjDirPath)
|
||||||
ElseIf Bar.nProgramPage = ProjectType.PROD Then
|
ElseIf Bar.nProgramPage = ProjectType.PROD Then
|
||||||
Bar.sBarPath = CreateNewProjectFromMachGroup(Bar.nBarId, sProjDirPath, Bar.nGlobState)
|
Bar.sBarPath = CreateNewProjectFromMachGroup(Bar.nBarId, sProjDirPath)
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
End If
|
End If
|
||||||
@@ -355,38 +352,27 @@ Public Module CalcIntegration
|
|||||||
Return If(bOk, sPartFilePath, String.Empty)
|
Return If(bOk, sPartFilePath, String.Empty)
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Private Function CreateNewProjectFromMachGroup(nMachGroupId As Integer, sProjDirPath As String, nGlobState As Integer) As String
|
Private Function CreateNewProjectFromMachGroup(nMachGroupId As Integer, sProjDirPath As String) As String
|
||||||
' aggiorno cutid e taskid solo fuori dal supervisore o se pezzo ricalcolato
|
|
||||||
If Not m_bIsSupervisor OrElse nGlobState = CalcStates.NOTCALCULATED Then
|
' Aggiorno identificativi per segnalazione errori
|
||||||
Dim DisableMgr As DisableModifiedMgr = Nothing
|
Dim nOldMachGroup As Integer = EgtGetCurrMachGroup()
|
||||||
If m_bIsSupervisor Then
|
If nMachGroupId <> nOldMachGroup Then EgtSetCurrMachGroup(nMachGroupId)
|
||||||
' Disabilito segnalazione modificato
|
Dim nRawId As Integer = EgtGetFirstRawPart()
|
||||||
DisableMgr = New DisableModifiedMgr
|
While nRawId <> GDB_ID.NULL
|
||||||
|
If EgtVerifyRawPartPhase(nRawId, 1) Then
|
||||||
|
Dim nPartId As Integer = EgtGetFirstPartInRawPart(nRawId)
|
||||||
|
While nPartId <> GDB_ID.NULL
|
||||||
|
UpdateCutIdAndTaskId(nPartId)
|
||||||
|
nPartId = EgtGetNextPartInRawPart(nPartId)
|
||||||
|
End While
|
||||||
End If
|
End If
|
||||||
' Aggiorno identificativi per segnalazione errori
|
nRawId = EgtGetNextRawPart(nRawId)
|
||||||
Dim nOldMachGroup As Integer = EgtGetCurrMachGroup()
|
End While
|
||||||
If nMachGroupId <> nOldMachGroup Then EgtSetCurrMachGroup(nMachGroupId)
|
If nMachGroupId <> nOldMachGroup Then
|
||||||
Dim nRawId As Integer = EgtGetFirstRawPart()
|
If nOldMachGroup <> GDB_ID.NULL Then
|
||||||
While nRawId <> GDB_ID.NULL
|
EgtSetCurrMachGroup(nOldMachGroup)
|
||||||
If EgtVerifyRawPartPhase(nRawId, 1) Then
|
Else
|
||||||
Dim nPartId As Integer = EgtGetFirstPartInRawPart(nRawId)
|
EgtResetCurrMachGroup()
|
||||||
While nPartId <> GDB_ID.NULL
|
|
||||||
UpdateCutIdAndTaskId(nPartId)
|
|
||||||
nPartId = EgtGetNextPartInRawPart(nPartId)
|
|
||||||
End While
|
|
||||||
End If
|
|
||||||
nRawId = EgtGetNextRawPart(nRawId)
|
|
||||||
End While
|
|
||||||
If nMachGroupId <> nOldMachGroup Then
|
|
||||||
If nOldMachGroup <> GDB_ID.NULL Then
|
|
||||||
EgtSetCurrMachGroup(nOldMachGroup)
|
|
||||||
Else
|
|
||||||
EgtResetCurrMachGroup()
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
If m_bIsSupervisor Then
|
|
||||||
' Ripristino stato segnalazione modifica
|
|
||||||
DisableMgr.ReEnable()
|
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
|||||||
@@ -126,8 +126,6 @@
|
|||||||
|
|
||||||
' layer per assemblato
|
' layer per assemblato
|
||||||
Public Const ASSEBASE As String = "AsseBase"
|
Public Const ASSEBASE As String = "AsseBase"
|
||||||
' info parametri assemblato
|
|
||||||
Public Const BTL_ASSEBASE_N As String = "N"
|
|
||||||
|
|
||||||
' info parametri BTL
|
' info parametri BTL
|
||||||
Public Const BTL_PRT_PROJ As String = "PROJ"
|
Public Const BTL_PRT_PROJ As String = "PROJ"
|
||||||
@@ -175,10 +173,8 @@
|
|||||||
Public Const BTL_PRT_REFSIDE = "REFERENCESIDE"
|
Public Const BTL_PRT_REFSIDE = "REFERENCESIDE"
|
||||||
Public Const BTL_PRT_ALIGNMENT = "ALIGNMENT"
|
Public Const BTL_PRT_ALIGNMENT = "ALIGNMENT"
|
||||||
Public Const BTL_PRT_MATERIALTYPE = "MATERIALTYPE"
|
Public Const BTL_PRT_MATERIALTYPE = "MATERIALTYPE"
|
||||||
Public Const BTL_PRT_DESCRIPTION = "NAM"
|
|
||||||
|
|
||||||
' parametri generici
|
' parametri generici
|
||||||
Public Const BTL_GEN_BTLPATH = "BTL"
|
|
||||||
Public Const BTL_GEN_PROJNUM = "PROJECTNUMBER"
|
Public Const BTL_GEN_PROJNUM = "PROJECTNUMBER"
|
||||||
Public Const BTL_GEN_PROJNAME = "PROJECTNAME"
|
Public Const BTL_GEN_PROJNAME = "PROJECTNAME"
|
||||||
Public Const BTL_GEN_PROJPART = "PROJECTPART"
|
Public Const BTL_GEN_PROJPART = "PROJECTPART"
|
||||||
@@ -206,7 +202,6 @@
|
|||||||
Public Const BTL_FTR_PRC As String = "PRC"
|
Public Const BTL_FTR_PRC As String = "PRC"
|
||||||
Public Const BTL_FTR_DO As String = "DO"
|
Public Const BTL_FTR_DO As String = "DO"
|
||||||
Public Const BTL_FTR_SIDE As String = "SIDE"
|
Public Const BTL_FTR_SIDE As String = "SIDE"
|
||||||
Public Const BTL_FTR_PRIORITY As String = "PRIORITY"
|
|
||||||
Public Const BTL_FTR_NAME As String = "NAME"
|
Public Const BTL_FTR_NAME As String = "NAME"
|
||||||
Public Const BTL_FTR_DES As String = "DES"
|
Public Const BTL_FTR_DES As String = "DES"
|
||||||
Public Const BTL_FTR_PRID As String = "PRID"
|
Public Const BTL_FTR_PRID As String = "PRID"
|
||||||
@@ -254,7 +249,6 @@
|
|||||||
Public Const MGR_RPT_PANELLEN As String = "PANELLEN"
|
Public Const MGR_RPT_PANELLEN As String = "PANELLEN"
|
||||||
Public Const MGR_RPT_PANELWIDTH As String = "PANELWIDTH"
|
Public Const MGR_RPT_PANELWIDTH As String = "PANELWIDTH"
|
||||||
Public Const MGR_RPT_PANELHEIGHT As String = "PANELHEIGHT"
|
Public Const MGR_RPT_PANELHEIGHT As String = "PANELHEIGHT"
|
||||||
Public Const MGR_RPT_PANELPOSZ As String = "PANELPOSZ"
|
|
||||||
Public Const MGR_RPT_PART As String = "PART"
|
Public Const MGR_RPT_PART As String = "PART"
|
||||||
|
|
||||||
' parametri P per comunicazione con la macchina
|
' parametri P per comunicazione con la macchina
|
||||||
@@ -290,7 +284,6 @@
|
|||||||
Public Const WRH_CURRENT As String = "Current"
|
Public Const WRH_CURRENT As String = "Current"
|
||||||
Public Const WRH_STARTOFFSET As String = "StartOffset"
|
Public Const WRH_STARTOFFSET As String = "StartOffset"
|
||||||
Public Const WRH_OFFSET As String = "Offset"
|
Public Const WRH_OFFSET As String = "Offset"
|
||||||
Public Const WRH_RANGE As String = "Range"
|
|
||||||
Public Const WRH_QUANTITY As String = "Quantity"
|
Public Const WRH_QUANTITY As String = "Quantity"
|
||||||
Public Const WRH_L As String = "L"
|
Public Const WRH_L As String = "L"
|
||||||
Public Const WRH_KERF As String = "Kerf"
|
Public Const WRH_KERF As String = "Kerf"
|
||||||
@@ -302,10 +295,5 @@
|
|||||||
Public Const BTLFILENAME As String = "BTLFILENAME"
|
Public Const BTLFILENAME As String = "BTLFILENAME"
|
||||||
Public Const EXP_PART As String = "ImportExport"
|
Public Const EXP_PART As String = "ImportExport"
|
||||||
Public Const EXP_MACHINE As String = "Machine"
|
Public Const EXP_MACHINE As String = "Machine"
|
||||||
' parametro che indica se il progetto e' stato appena importato e quindi bisogna riverificare i MachGroup
|
|
||||||
Public Const IMP_VERIFYMACHGROUP As String = "VerifyMachGroup"
|
|
||||||
|
|
||||||
' parametri modifica percorsi free contour
|
|
||||||
Public Const PATH_SIDEANGLAYER As String = "SideAngLayer"
|
|
||||||
|
|
||||||
End Module
|
End Module
|
||||||
|
|||||||
@@ -6,16 +6,11 @@
|
|||||||
Public Const COL_STARTCUT As String = "colSTARTCUT"
|
Public Const COL_STARTCUT As String = "colSTARTCUT"
|
||||||
Public Const COL_W As String = "colW"
|
Public Const COL_W As String = "colW"
|
||||||
Public Const COL_L As String = "colL"
|
Public Const COL_L As String = "colL"
|
||||||
Public Const COL_POSZ As String = "colPOSZ"
|
|
||||||
Public Const COL_ROT As String = "colROT"
|
Public Const COL_ROT As String = "colROT"
|
||||||
Public Const COL_FLIP As String = "colFLIP"
|
Public Const COL_FLIP As String = "colFLIP"
|
||||||
Public Const COL_POSX As String = "colPOSX"
|
Public Const COL_POSX As String = "colPOSX"
|
||||||
Public Const COL_POSY As String = "colPOSY"
|
Public Const COL_POSY As String = "colPOSY"
|
||||||
Public Const COL_OFFSET As String = "colOFFSET"
|
Public Const COL_OFFSET As String = "colOFFSET"
|
||||||
Public Const COL_REDO As String = "colREDO"
|
Public Const COL_REDO As String = "colREDO"
|
||||||
Public Const COL_TYPE As String = "colTYPE"
|
|
||||||
Public Const COL_DESCRIPTION As String = "colDESCRIPTION"
|
|
||||||
Public Const COL_SUPERVISORID As String = "colSUPERVISORID"
|
|
||||||
Public Const COL_PRIORITY As String = "colPRIORITY"
|
|
||||||
|
|
||||||
End Module
|
End Module
|
||||||
|
|||||||
@@ -27,8 +27,6 @@
|
|||||||
Public Const S_SECTXMATLIST_WALL As String = "DG_SectXMatList_WALL"
|
Public Const S_SECTXMATLIST_WALL As String = "DG_SectXMatList_WALL"
|
||||||
Public Const S_VARIABLESLIST As String = "DG_VariablesList"
|
Public Const S_VARIABLESLIST As String = "DG_VariablesList"
|
||||||
Public Const S_MDICOMMANDS As String = "DG_MDICommands"
|
Public Const S_MDICOMMANDS As String = "DG_MDICommands"
|
||||||
Public Const S_MACHINELOG As String = "DG_MachineLog"
|
|
||||||
Public Const S_UPDATEBTLPARTLIST As String = "DG_UpdateBTLPartList"
|
|
||||||
|
|
||||||
Public Const K_LOCKTABLE As String = "LockTable"
|
Public Const K_LOCKTABLE As String = "LockTable"
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ Public Module ConstGen
|
|||||||
' File con dati di licenza
|
' File con dati di licenza
|
||||||
Public Const LIC_FILE_NAME As String = "EgtBEAMWALL.lic"
|
Public Const LIC_FILE_NAME As String = "EgtBEAMWALL.lic"
|
||||||
Public Const S_LICENCE As String = "Licence"
|
Public Const S_LICENCE As String = "Licence"
|
||||||
Public Const K_LOCKID As String = "LockId"
|
|
||||||
Public Const K_KEY As String = "Key"
|
Public Const K_KEY As String = "Key"
|
||||||
Public Const K_NESTKEY As String = "NestKey"
|
Public Const K_NESTKEY As String = "NestKey"
|
||||||
|
|
||||||
@@ -42,7 +41,6 @@ Public Module ConstGen
|
|||||||
NESTING_AUTO = 4
|
NESTING_AUTO = 4
|
||||||
SUPERVISOR = 8
|
SUPERVISOR = 8
|
||||||
NETWORK = 16
|
NETWORK = 16
|
||||||
ANY_DB = 32
|
|
||||||
End Enum
|
End Enum
|
||||||
|
|
||||||
' File di log generale
|
' File di log generale
|
||||||
@@ -77,6 +75,8 @@ Public Module ConstGen
|
|||||||
Public Const SETUP_LUA As String = "SetUp.lua"
|
Public Const SETUP_LUA As String = "SetUp.lua"
|
||||||
' Nome eseguibile per stampa
|
' Nome eseguibile per stampa
|
||||||
Public Const ZEBRAPRINTER_EXE As String = "ZebraPrinterUtilitiesD32.exe"
|
Public Const ZEBRAPRINTER_EXE As String = "ZebraPrinterUtilitiesD32.exe"
|
||||||
|
' Nome eseguibile per applicativo di invio feedback
|
||||||
|
Public Const LIMANTRANSFER_EXE As String = "LiMan.Transfer.exe"
|
||||||
' Sottodirettorio di default per macro
|
' Sottodirettorio di default per macro
|
||||||
Public Const MACRO_DFL_DIR As String = "Macro"
|
Public Const MACRO_DFL_DIR As String = "Macro"
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,6 @@ Public Module ConstIni
|
|||||||
'Public Const K_LICENCE As String = "Licence"
|
'Public Const K_LICENCE As String = "Licence"
|
||||||
'Public Const K_USERLEVEL As String = "UserLevel"
|
'Public Const K_USERLEVEL As String = "UserLevel"
|
||||||
'Public Const K_MAXINST As String = "MaxInstances"
|
'Public Const K_MAXINST As String = "MaxInstances"
|
||||||
Public Const K_NETKEY As String = "NetKey"
|
|
||||||
Public Const K_MAXCAMINST As String = "MaxCamInstances"
|
Public Const K_MAXCAMINST As String = "MaxCamInstances"
|
||||||
Public Const K_VIEWOPTIM_INSTANCES As String = "ViewOptimInstances"
|
Public Const K_VIEWOPTIM_INSTANCES As String = "ViewOptimInstances"
|
||||||
Public Const K_SUPERVISOR_INSTANCES As String = "SupervisorInstances"
|
Public Const K_SUPERVISOR_INSTANCES As String = "SupervisorInstances"
|
||||||
@@ -28,8 +27,6 @@ Public Module ConstIni
|
|||||||
'Public Const K_MESSAGESDIR As String = "MessagesDir"
|
'Public Const K_MESSAGESDIR As String = "MessagesDir"
|
||||||
'Public Const K_MESSAGES As String = "Messages"
|
'Public Const K_MESSAGES As String = "Messages"
|
||||||
'Public Const K_WINPLACE As String = "WinPlace"
|
'Public Const K_WINPLACE As String = "WinPlace"
|
||||||
Public Const K_VIEWOPTIMWINPLACE As String = "ViewOptimWinPlace"
|
|
||||||
Public Const K_SUPERVISORWINPLACE As String = "SupervisorWinPlace"
|
|
||||||
'Public Const K_LASTPROJ As String = "LastProj"
|
'Public Const K_LASTPROJ As String = "LastProj"
|
||||||
'Public Const K_AUTOLOADLASTPROJ As String = "AutoLoadLastProj"
|
'Public Const K_AUTOLOADLASTPROJ As String = "AutoLoadLastProj"
|
||||||
Public Const K_LASTIMPDIR As String = "LastImpDir"
|
Public Const K_LASTIMPDIR As String = "LastImpDir"
|
||||||
@@ -38,14 +35,9 @@ Public Module ConstIni
|
|||||||
Public Const K_PROJSINDEX As String = "ProjsIndex"
|
Public Const K_PROJSINDEX As String = "ProjsIndex"
|
||||||
Public Const K_PRODSINDEX As String = "ProdsIndex"
|
Public Const K_PRODSINDEX As String = "ProdsIndex"
|
||||||
'Public Const K_SUPPORT As String = "Support"
|
'Public Const K_SUPPORT As String = "Support"
|
||||||
|
Public Const K_WAREHOUSE As String = "Warehouse"
|
||||||
Public Const K_DBADDRESS As String = "DbAddress"
|
Public Const K_DBADDRESS As String = "DbAddress"
|
||||||
Public Const K_DBMASTERKEY As String = "DbMasterKey"
|
Public Const K_LIMANUTILITIES As String = "LiManUtilities"
|
||||||
Public Const K_SHAREDFOLDER As String = "SharedFolder"
|
|
||||||
Public Const K_UPDATEBTL As String = "UpdateBtl"
|
|
||||||
Public Const K_DATADIR As String = "DataDir"
|
|
||||||
Public Const K_ENABLEEDIT As String = "EnableEdit"
|
|
||||||
Public Const K_FASTPRODUCE As String = "FastProduce"
|
|
||||||
Public Const K_ADDPROJ As String = "AddProj"
|
|
||||||
|
|
||||||
'Public Const S_LANGUAGES As String = "Languages"
|
'Public Const S_LANGUAGES As String = "Languages"
|
||||||
'Public Const K_LANGUAGE As String = "Language"
|
'Public Const K_LANGUAGE As String = "Language"
|
||||||
@@ -96,7 +88,6 @@ Public Module ConstIni
|
|||||||
Public Const S_IMPORT As String = "Import"
|
Public Const S_IMPORT As String = "Import"
|
||||||
Public Const K_BTLFLAG As String = "BtlFlag"
|
Public Const K_BTLFLAG As String = "BtlFlag"
|
||||||
Public Const K_WALLBTLFLAG As String = "WallBtlFlag"
|
Public Const K_WALLBTLFLAG As String = "WallBtlFlag"
|
||||||
Public Const K_WALLOPPOSITESIDENESTING As String = "WallOppositeSideNesting"
|
|
||||||
|
|
||||||
'Public Const S_MACH As String = "Mach"
|
'Public Const S_MACH As String = "Mach"
|
||||||
'Public Const K_MACHINESDIR As String = "MachinesDir"
|
'Public Const K_MACHINESDIR As String = "MachinesDir"
|
||||||
@@ -104,8 +95,6 @@ Public Module ConstIni
|
|||||||
'Public Const K_CURRMACH As String = "CurrMach"
|
'Public Const K_CURRMACH As String = "CurrMach"
|
||||||
Public Const K_SUPERVISORMACH As String = "SupervisorMach"
|
Public Const K_SUPERVISORMACH As String = "SupervisorMach"
|
||||||
Public Const K_PASSWORD As String = "Password"
|
Public Const K_PASSWORD As String = "Password"
|
||||||
Public Const K_CHANGEMACH As String = "ChangeMach"
|
|
||||||
Public Const K_EXPORTBWE As String = "ExpBwe"
|
|
||||||
|
|
||||||
'Public Const S_SIMUL As String = "Simul"
|
'Public Const S_SIMUL As String = "Simul"
|
||||||
'Public Const K_SLIDERX As String = "SliderX"
|
'Public Const K_SLIDERX As String = "SliderX"
|
||||||
@@ -145,11 +134,12 @@ Public Module ConstIni
|
|||||||
Public Const K_ZEBRAUTILITIES As String = "ZebraUtilities"
|
Public Const K_ZEBRAUTILITIES As String = "ZebraUtilities"
|
||||||
Public Const K_TEMPLATE As String = "Template"
|
Public Const K_TEMPLATE As String = "Template"
|
||||||
|
|
||||||
|
Public Const S_CUSTOMERCONTACT As String = "CustomerContact"
|
||||||
|
Public Const K_CONTACTEMAIL As String = "ContactEmail"
|
||||||
|
Public Const K_CONTACTNAME As String = "ContactName"
|
||||||
|
Public Const K_CONTACTPHONE As String = "ContactPhone"
|
||||||
|
|
||||||
Public Const S_BEAM_LIST As String = "Beam_List"
|
Public Const S_BEAM_LIST As String = "Beam_List"
|
||||||
Public Const S_WALL_LIST As String = "Wall_List"
|
Public Const S_WALL_LIST As String = "Wall_List"
|
||||||
|
|
||||||
Public Const S_WAREHOUSE As String = "Warehouse"
|
|
||||||
Public Const K_TYPE As String = "Type"
|
|
||||||
Public Const K_DEFAULTQUANTITY As String = "DefaultQuantity"
|
|
||||||
|
|
||||||
End Module
|
End Module
|
||||||
|
|||||||
@@ -1,12 +1,9 @@
|
|||||||
Public Module ConstMachIni
|
Public Module ConstMachIni
|
||||||
|
|
||||||
Public Const MACH_INI_FILE_NAME As String = "MachData.ini"
|
Public Const MACH_INI_FILE_NAME As String = "MachData.ini"
|
||||||
Public Const GETBEAMDATA_FILE_NAME As String = "GetBeamData.lua"
|
|
||||||
Public Const GETWALLDATA_FILE_NAME As String = "GetWallData.lua"
|
Public Const GETWALLDATA_FILE_NAME As String = "GetWallData.lua"
|
||||||
Public Const GETTS3DATA_FILE_NAME As String = "GetTs3Data.lua"
|
|
||||||
|
|
||||||
Public Const K_NCTYPE As String = "NCType"
|
Public Const K_NCTYPE As String = "NCType"
|
||||||
Public Const K_CONNECTIONSTRING As String = "ConnectionString"
|
|
||||||
|
|
||||||
Public Const S_CHANNELS As String = "Channels"
|
Public Const S_CHANNELS As String = "Channels"
|
||||||
|
|
||||||
|
|||||||
@@ -47,17 +47,18 @@
|
|||||||
<OptionInfer>On</OptionInfer>
|
<OptionInfer>On</OptionInfer>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="EgtUILib">
|
<Reference Include="EgtUILib, Version=2.3.7.1, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\ExtLibs\EgtUILib.dll</HintPath>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<HintPath>..\..\..\..\..\..\EgtProg\Dll32\EgtUILib.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="EgtWPFLib5">
|
<Reference Include="EgtWPFLib5, Version=2.3.4.3, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\ExtLibs\EgtWPFLib5.dll</HintPath>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<HintPath>..\..\..\..\..\..\EgtProg\Dll32\EgtWPFLib5.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="PresentationCore" />
|
<Reference Include="PresentationCore" />
|
||||||
<Reference Include="PresentationFramework" />
|
<Reference Include="PresentationFramework" />
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Data" />
|
<Reference Include="System.Data" />
|
||||||
<Reference Include="System.Drawing" />
|
|
||||||
<Reference Include="System.Windows.Forms" />
|
<Reference Include="System.Windows.Forms" />
|
||||||
<Reference Include="System.Xaml" />
|
<Reference Include="System.Xaml" />
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
@@ -107,18 +108,12 @@
|
|||||||
<Compile Include="BTLModel\BTLPartM.vb" />
|
<Compile Include="BTLModel\BTLPartM.vb" />
|
||||||
<Compile Include="BTLModel\BTLStructureM.vb" />
|
<Compile Include="BTLModel\BTLStructureM.vb" />
|
||||||
<Compile Include="Constants\ConstBeam.vb" />
|
<Compile Include="Constants\ConstBeam.vb" />
|
||||||
<Compile Include="LoadingWnd\LoadingWndHelper.vb" />
|
|
||||||
<Compile Include="LoadingWnd\LoadingWndV.xaml.vb">
|
|
||||||
<DependentUpon>LoadingWndV.xaml</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="LoadingWnd\LoadingWndVM.vb" />
|
|
||||||
<Compile Include="Utility\DimensionsIniFile.vb" />
|
<Compile Include="Utility\DimensionsIniFile.vb" />
|
||||||
<Compile Include="Utility\Enum.vb" />
|
<Compile Include="Utility\Enum.vb" />
|
||||||
<Compile Include="MachGroupPanel\MyMachGroupPanelVM.vb" />
|
<Compile Include="MachGroupPanel\MyMachGroupPanelVM.vb" />
|
||||||
<Compile Include="MachGroupPanel\MyMachGroupVM.vb" />
|
<Compile Include="MachGroupPanel\MyMachGroupVM.vb" />
|
||||||
<Compile Include="MachGroupPanel\PartVM.vb" />
|
<Compile Include="MachGroupPanel\PartVM.vb" />
|
||||||
<Compile Include="Utility\GridDimension.vb" />
|
<Compile Include="Utility\GridDimension.vb" />
|
||||||
<Compile Include="Utility\LuaMsgManager.vb" />
|
|
||||||
<Compile Include="Utility\MachLog.vb" />
|
<Compile Include="Utility\MachLog.vb" />
|
||||||
<Compile Include="My Project\AssemblyInfo.vb" />
|
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||||
<Compile Include="My Project\Application.Designer.vb">
|
<Compile Include="My Project\Application.Designer.vb">
|
||||||
@@ -140,7 +135,6 @@
|
|||||||
<Compile Include="Lib\MachGroupM.vb" />
|
<Compile Include="Lib\MachGroupM.vb" />
|
||||||
<Compile Include="Lib\MachGroupPanelM.vb" />
|
<Compile Include="Lib\MachGroupPanelM.vb" />
|
||||||
<Compile Include="MachGroupModel\MyMachGroupPanelM.vb" />
|
<Compile Include="MachGroupModel\MyMachGroupPanelM.vb" />
|
||||||
<Compile Include="Utility\ManageWindow.vb" />
|
|
||||||
<Compile Include="Utility\MyMachine.vb" />
|
<Compile Include="Utility\MyMachine.vb" />
|
||||||
<Compile Include="OpenProjectFileDialog\OpenProjectFileDialogV.xaml.vb">
|
<Compile Include="OpenProjectFileDialog\OpenProjectFileDialogV.xaml.vb">
|
||||||
<DependentUpon>OpenProjectFileDialogV.xaml</DependentUpon>
|
<DependentUpon>OpenProjectFileDialogV.xaml</DependentUpon>
|
||||||
@@ -186,10 +180,6 @@
|
|||||||
<Generator>MSBuild:Compile</Generator>
|
<Generator>MSBuild:Compile</Generator>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</Page>
|
</Page>
|
||||||
<Page Include="LoadingWnd\LoadingWndV.xaml">
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
<Generator>XamlIntelliSenseFileGenerator</Generator>
|
|
||||||
</Page>
|
|
||||||
<Page Include="OpenProjectFileDialog\OpenProjectFileDialogV.xaml">
|
<Page Include="OpenProjectFileDialog\OpenProjectFileDialogV.xaml">
|
||||||
<Generator>MSBuild:Compile</Generator>
|
<Generator>MSBuild:Compile</Generator>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ Public Module DataGridColumnsIniFile
|
|||||||
Dim bIsReadOnly As Boolean = sColumnParams(4).Equals("1")
|
Dim bIsReadOnly As Boolean = sColumnParams(4).Equals("1")
|
||||||
Dim Width As Double
|
Dim Width As Double
|
||||||
Dim WidthType As DataGridLengthUnitType
|
Dim WidthType As DataGridLengthUnitType
|
||||||
StringToDoubleAdv(sColumnParams(5), Width)
|
StringToDouble(sColumnParams(5), Width)
|
||||||
Integer.TryParse(sColumnParams(6), WidthType)
|
Integer.TryParse(sColumnParams(6), WidthType)
|
||||||
Dim bVisible As Boolean = sColumnParams(7).Equals("1")
|
Dim bVisible As Boolean = sColumnParams(7).Equals("1")
|
||||||
Dim bCanUserEditVisible As Boolean = sColumnParams(8).Equals("1")
|
Dim bCanUserEditVisible As Boolean = sColumnParams(8).Equals("1")
|
||||||
@@ -65,7 +65,7 @@ Public Module DataGridColumnsIniFile
|
|||||||
Dim bIsReadOnly As Boolean = sColumnParams(4).Equals("1")
|
Dim bIsReadOnly As Boolean = sColumnParams(4).Equals("1")
|
||||||
Dim Width As Double
|
Dim Width As Double
|
||||||
Dim WidthType As DataGridLengthUnitType
|
Dim WidthType As DataGridLengthUnitType
|
||||||
StringToDoubleAdv(sColumnParams(5), Width)
|
StringToDouble(sColumnParams(5), Width)
|
||||||
Integer.TryParse(sColumnParams(6), WidthType)
|
Integer.TryParse(sColumnParams(6), WidthType)
|
||||||
Dim bVisible As Boolean = sColumnParams(7).Equals("1")
|
Dim bVisible As Boolean = sColumnParams(7).Equals("1")
|
||||||
Dim bCanUserEditVisible As Boolean = sColumnParams(8).Equals("1")
|
Dim bCanUserEditVisible As Boolean = sColumnParams(8).Equals("1")
|
||||||
|
|||||||
@@ -2,16 +2,13 @@
|
|||||||
x:Name="CurrDataGrid"
|
x:Name="CurrDataGrid"
|
||||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||||
<DataGrid.ColumnHeaderStyle>
|
<DataGrid.ColumnHeaderStyle>
|
||||||
<Style TargetType="DataGridColumnHeader">
|
<Style TargetType="DataGridColumnHeader">
|
||||||
<Setter Property="HorizontalContentAlignment"
|
<EventSetter Event="SizeChanged" Handler="Cell_SizedChanged" />
|
||||||
Value="Stretch" />
|
<EventSetter Event="MouseRightButtonDown" Handler="Cell_MouseRightButtonDown" />
|
||||||
<EventSetter Event="SizeChanged"
|
<EventSetter Event="FrameworkElement.Loaded" Handler="DataGridColumnHeader_Loaded"/>
|
||||||
Handler="Cell_SizedChanged" />
|
</Style>
|
||||||
<EventSetter Event="MouseRightButtonDown"
|
</DataGrid.ColumnHeaderStyle>
|
||||||
Handler="Cell_MouseRightButtonDown" />
|
|
||||||
</Style>
|
|
||||||
</DataGrid.ColumnHeaderStyle>
|
|
||||||
|
|
||||||
</DataGrid>
|
</DataGrid>
|
||||||
|
|
||||||
|
|||||||
@@ -14,13 +14,20 @@ Public Class EgtDataGrid
|
|||||||
|
|
||||||
' vecchio indice da salvare per il Reorder delle colonne
|
' vecchio indice da salvare per il Reorder delle colonne
|
||||||
Public OldIndex As Integer = 0
|
Public OldIndex As Integer = 0
|
||||||
|
|
||||||
|
' variabili e costanti per il Resize delle colonne adiacenti
|
||||||
|
Private Const LEFT As String = "PART_LeftHeaderGripper"
|
||||||
|
Private Const RIGHT As String = "PART_RightHeaderGripper"
|
||||||
|
Private startPoint As Point
|
||||||
|
Private startWidth As Double
|
||||||
|
Private adjacentStartWidth As Double
|
||||||
|
'Private startUnitType As DataGridLengthUnitType
|
||||||
|
'Private adjacentUnitType As DataGridLengthUnitType
|
||||||
|
Private targetColumn As DataGridColumn
|
||||||
|
Private adjacentColumn As DataGridColumn
|
||||||
|
|
||||||
' indice header su cui è aperto il ContextMenu per gestione check/uncheck LockTable
|
' indice header su cui è aperto il ContextMenu per gestione check/uncheck LockTable
|
||||||
Private HeaderDispIndex As Integer = 0
|
Private HeaderDispIndex As Integer = 0
|
||||||
' somma delle larghezze delle colonne di EgtDataGrid
|
|
||||||
Private columnsWidth As Double = 0
|
|
||||||
|
|
||||||
' larghezza minima dell'ultima colonna per attivare/disattivare ScrollBar orizzontale
|
|
||||||
Private Const LASTCOLUMN_MINWIDTH As Double = 40
|
|
||||||
|
|
||||||
Sub New()
|
Sub New()
|
||||||
InitializeComponent()
|
InitializeComponent()
|
||||||
@@ -131,44 +138,6 @@ Public Class EgtDataGrid
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub DataGrid_SizedChanged(sender As Object, e As SizeChangedEventArgs) Handles CurrDataGrid.SizeChanged
|
|
||||||
' confronto la larghezza effettiva della EgtDataGrid con la somma delle larghezze delle colonne
|
|
||||||
UpdateColumnsWidth()
|
|
||||||
If BindingColumns.Count > 0 Then
|
|
||||||
If CurrDataGrid.ActualWidth - LASTCOLUMN_MINWIDTH > columnsWidth Then
|
|
||||||
' nascondo la ScrollBar orizzontale e setto lo UnitType dell'ultima colonna visibile a Star
|
|
||||||
ScrollViewer.SetHorizontalScrollBarVisibility(CurrDataGrid, ScrollBarVisibility.Hidden)
|
|
||||||
BindingColumns.Last(Function(x) x.Visible = True).Width = New DataGridLength(1, DataGridLengthUnitType.Star)
|
|
||||||
Else
|
|
||||||
' mostro la ScrollBar orizzontale e se UnitType delle colonne è Star lo setto a Pixel
|
|
||||||
ScrollViewer.SetHorizontalScrollBarVisibility(CurrDataGrid, ScrollBarVisibility.Visible)
|
|
||||||
For Each bc In BindingColumns
|
|
||||||
If bc.Width.IsStar Then
|
|
||||||
bc.Width = New DataGridLength(bc.ActualWidth, DataGridLengthUnitType.Pixel)
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
End If
|
|
||||||
' scrivo nell'INI la Width dell'ultima colonna visibile
|
|
||||||
BindingColumns.Last(Function(x) x.Visible = True).SaveDataGridColumn()
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Sub UpdateColumnsWidth()
|
|
||||||
' ricalcolo la somma delle larghezze delle colonne visibili
|
|
||||||
columnsWidth = 0
|
|
||||||
For Each col In BindingColumns
|
|
||||||
If col.ColumnVisibility = Visibility.Visible Then
|
|
||||||
columnsWidth += col.ActualWidth
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
' alla somma calcolata tolgo la larghezza dell'ultima colonna visibile e aggiungo LASTCOLUMN_MINWIDTH
|
|
||||||
' (in questo modo si attiva/disattiva la ScrollBar orizzontale non appena l'ultima colonna viene ristretta/estesa a LASTCOLUMN_MINWIDTH px)
|
|
||||||
If BindingColumns.Count > 0 AndAlso
|
|
||||||
BindingColumns.Any(Function(x) x.Visible = True) Then
|
|
||||||
columnsWidth = columnsWidth - BindingColumns.Last(Function(x) x.Visible = True).ActualWidth + LASTCOLUMN_MINWIDTH
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub Cell_MouseRightButtonDown(sender As Object, e As RoutedEventArgs)
|
Private Sub Cell_MouseRightButtonDown(sender As Object, e As RoutedEventArgs)
|
||||||
Dim nDispIndex As Integer = sender.DisplayIndex
|
Dim nDispIndex As Integer = sender.DisplayIndex
|
||||||
' creo il ContextMenu con gli item checkabili
|
' creo il ContextMenu con gli item checkabili
|
||||||
@@ -271,6 +240,86 @@ Public Class EgtDataGrid
|
|||||||
Next
|
Next
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub DataGridColumnHeader_Loaded(sender As Object, e As RoutedEventArgs)
|
||||||
|
Dim header = DirectCast(sender, DataGridColumnHeader)
|
||||||
|
|
||||||
|
Dim thumbLeft As Thumb = header.Template.FindName(LEFT, header)
|
||||||
|
thumbLeft.AddHandler(Thumb.DragStartedEvent, CType(AddressOf Thumb_DragStarted, DragStartedEventHandler), True)
|
||||||
|
thumbLeft.AddHandler(Thumb.DragCompletedEvent, CType(AddressOf Thumb_DragCompleted, DragCompletedEventHandler), True)
|
||||||
|
|
||||||
|
Dim thumbRight As Thumb = header.Template.FindName(RIGHT, header)
|
||||||
|
thumbRight.AddHandler(Thumb.DragStartedEvent, CType(AddressOf Thumb_DragStarted, DragStartedEventHandler), True)
|
||||||
|
thumbRight.AddHandler(Thumb.DragCompletedEvent, CType(AddressOf Thumb_DragCompleted, DragCompletedEventHandler), True)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub Thumb_DragStarted(sender As Object, e As DragStartedEventArgs)
|
||||||
|
Dim thumb = CType(sender, Thumb)
|
||||||
|
Dim dg As DataGrid = GetParent(Of DataGrid)(thumb)
|
||||||
|
startPoint = Mouse.GetPosition(dg)
|
||||||
|
|
||||||
|
Dim header As DataGridColumnHeader = GetParent(Of DataGridColumnHeader)(thumb)
|
||||||
|
|
||||||
|
If thumb.Name = RIGHT Then
|
||||||
|
targetColumn = header.Column
|
||||||
|
Dim Index As Integer = header.Column.DisplayIndex + 1
|
||||||
|
If (Index < BindingColumns.Count) Then
|
||||||
|
adjacentColumn = dg.Columns.FirstOrDefault(Function(x) x.DisplayIndex = Index)
|
||||||
|
End If
|
||||||
|
Else
|
||||||
|
Dim Index As Integer = header.Column.DisplayIndex - 1
|
||||||
|
If (Index >= 0) Then
|
||||||
|
adjacentColumn = dg.Columns.FirstOrDefault(Function(x) x.DisplayIndex = Index + 1)
|
||||||
|
End If
|
||||||
|
targetColumn = dg.Columns.FirstOrDefault(Function(x) x.DisplayIndex = Index)
|
||||||
|
End If
|
||||||
|
startWidth = targetColumn.ActualWidth
|
||||||
|
'startUnitType = targetColumn.Width.UnitType
|
||||||
|
If Not IsNothing(adjacentColumn) Then
|
||||||
|
adjacentStartWidth = adjacentColumn.ActualWidth
|
||||||
|
'adjacentUnitType = adjacentColumn.Width.UnitType
|
||||||
|
End If
|
||||||
|
AddHandler thumb.PreviewMouseMove, AddressOf Thumb_PreviewMouseMove
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub Thumb_PreviewMouseMove(sender As Object, e As MouseEventArgs)
|
||||||
|
Dim thumb = CType(sender, Thumb)
|
||||||
|
If (Not thumb.IsDragging Or IsNothing(targetColumn)) Then Return
|
||||||
|
|
||||||
|
e.Handled = True
|
||||||
|
|
||||||
|
Dim dg As DataGrid = GetParent(Of DataGrid)(thumb)
|
||||||
|
Dim currentPoint As Point = Mouse.GetPosition(dg)
|
||||||
|
Dim diffX As Double = (currentPoint - startPoint).X
|
||||||
|
Dim newWidth As Double = Math.Max(targetColumn.MinWidth, Math.Min(startWidth + diffX, targetColumn.MaxWidth))
|
||||||
|
Dim length = New DataGridLength(newWidth)
|
||||||
|
|
||||||
|
targetColumn.SetValue(DataGridColumn.WidthProperty, length)
|
||||||
|
|
||||||
|
If Not IsNothing(adjacentColumn) Then
|
||||||
|
newWidth = Math.Max(adjacentColumn.MinWidth, Math.Min(adjacentStartWidth - diffX, adjacentColumn.MaxWidth))
|
||||||
|
length = New DataGridLength(newWidth)
|
||||||
|
adjacentColumn.SetValue(DataGridColumn.WidthProperty, length)
|
||||||
|
End If
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub Thumb_DragCompleted(sender As Object, e As DragCompletedEventArgs)
|
||||||
|
RemoveHandler CType(sender, Thumb).PreviewMouseMove, AddressOf Thumb_PreviewMouseMove
|
||||||
|
targetColumn = Nothing
|
||||||
|
adjacentColumn = Nothing
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Function GetParent(Of T As DependencyObject)(d As DependencyObject) As T
|
||||||
|
Dim tObj As T = Nothing
|
||||||
|
|
||||||
|
While IsNothing(tObj)
|
||||||
|
tObj = TryCast(d, T)
|
||||||
|
d = VisualTreeHelper.GetParent(d)
|
||||||
|
End While
|
||||||
|
|
||||||
|
Return tObj
|
||||||
|
End Function
|
||||||
|
|
||||||
Private Sub miLock_Checked(sender As Object, e As RoutedEventArgs)
|
Private Sub miLock_Checked(sender As Object, e As RoutedEventArgs)
|
||||||
Dim miLock = DirectCast(sender, MenuItem)
|
Dim miLock = DirectCast(sender, MenuItem)
|
||||||
' disabilito Reorder e Resize di tutte le colonne salvandone prima il valore
|
' disabilito Reorder e Resize di tutte le colonne salvandone prima il valore
|
||||||
@@ -310,8 +359,12 @@ Public Class EgtDataGrid
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub miResetSort_Click(sender As Object, e As RoutedEventArgs)
|
Private Sub miResetSort_Click(sender As Object, e As RoutedEventArgs)
|
||||||
' resetto le SortDirection di tutte le colonne della datagrid
|
CurrDataGrid.Items.SortDescriptions.Clear()
|
||||||
ResetSortDirections()
|
For Each column In BindingColumns 'Grid.Columns
|
||||||
|
column.SortDirection = 0
|
||||||
|
' resettiamo graficamente anche l'header della colonna
|
||||||
|
CurrDataGrid.Columns(column.DisplayIndex).SortDirection = Nothing
|
||||||
|
Next
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub CurrDataGrid_Loaded(sender As Object, e As RoutedEventArgs) Handles CurrDataGrid.Loaded
|
Private Sub CurrDataGrid_Loaded(sender As Object, e As RoutedEventArgs) Handles CurrDataGrid.Loaded
|
||||||
@@ -324,46 +377,19 @@ Public Class EgtDataGrid
|
|||||||
End If
|
End If
|
||||||
colIndex += 1
|
colIndex += 1
|
||||||
Next
|
Next
|
||||||
' calcolo la somma delle larghezze delle colonne visibili
|
|
||||||
For Each col In BindingColumns
|
|
||||||
If col.ColumnVisibility = Visibility.Visible Then
|
|
||||||
columnsWidth += col.ActualWidth
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub CurrDataGrid_Sorting(sender As Object, e As DataGridSortingEventArgs) Handles CurrDataGrid.Sorting
|
Private Sub CurrDataGrid_Sorting(sender As Object, e As DataGridSortingEventArgs) Handles CurrDataGrid.Sorting
|
||||||
' salvo la SortDirection corrente della colonna prima di resettarla per tutte le colonne
|
Select Case e.Column.SortDirection
|
||||||
Dim CurrSortDirection As ListSortDirection? = e.Column.SortDirection
|
|
||||||
ResetSortDirections(True)
|
|
||||||
' ora applico la SortDirection corretta
|
|
||||||
Select Case CurrSortDirection
|
|
||||||
Case ListSortDirection.Ascending
|
Case ListSortDirection.Ascending
|
||||||
BindingColumns(e.Column.DisplayIndex).SortDirection = 2 ' la setto a Descending
|
BindingColumns(e.Column.DisplayIndex).SortDirection = 2 ' la settiamo a Descending
|
||||||
Case ListSortDirection.Descending
|
Case ListSortDirection.Descending
|
||||||
BindingColumns(e.Column.DisplayIndex).SortDirection = 1 ' la setto a Ascending
|
BindingColumns(e.Column.DisplayIndex).SortDirection = 1 ' la settiamo a Ascending
|
||||||
Case Else
|
Case Else
|
||||||
BindingColumns(e.Column.DisplayIndex).SortDirection = 1 ' la setto a Ascending
|
BindingColumns(e.Column.DisplayIndex).SortDirection = 1 ' la settiamo a Ascending
|
||||||
End Select
|
End Select
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub ResetSortDirections(Optional bUserClick As Boolean = False)
|
|
||||||
If bUserClick Then
|
|
||||||
' nel caso di click dell'utente sulla colonna da sortare occorre solamente settare a 0 la SortDirection di tutte le colonne
|
|
||||||
For Each column In BindingColumns
|
|
||||||
column.SortDirection = 0
|
|
||||||
Next
|
|
||||||
Else
|
|
||||||
' altrimenti (caso ResetSort da ContextMenu) è necessatio un Clear più ampio e anche grafico
|
|
||||||
CurrDataGrid.Items.SortDescriptions.Clear()
|
|
||||||
For Each column In BindingColumns
|
|
||||||
column.SortDirection = 0
|
|
||||||
' resetto graficamente anche l'header della colonna
|
|
||||||
CurrDataGrid.Columns(column.DisplayIndex).SortDirection = Nothing
|
|
||||||
Next
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
|
|
||||||
Public Class EgtDataGridColumn
|
Public Class EgtDataGridColumn
|
||||||
@@ -404,12 +430,6 @@ Public Class EgtDataGridColumn
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Public ReadOnly Property ActualWidth As Double
|
|
||||||
Get
|
|
||||||
Return m_dgColumn.ActualWidth
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Private Property m_DisplayIndex As Integer
|
Private Property m_DisplayIndex As Integer
|
||||||
Public Property DisplayIndex As Integer
|
Public Property DisplayIndex As Integer
|
||||||
Get
|
Get
|
||||||
@@ -424,7 +444,6 @@ Public Class EgtDataGridColumn
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Private Property m_OrigIsReadOnly As Boolean = True
|
|
||||||
Private Property m_IsReadOnly As Boolean = True
|
Private Property m_IsReadOnly As Boolean = True
|
||||||
Public Property IsReadOnly As Boolean
|
Public Property IsReadOnly As Boolean
|
||||||
Get
|
Get
|
||||||
@@ -507,17 +526,6 @@ Public Class EgtDataGridColumn
|
|||||||
m_ColumnVisibility = value
|
m_ColumnVisibility = value
|
||||||
If Not IsNothing(m_dgColumn) Then
|
If Not IsNothing(m_dgColumn) Then
|
||||||
m_dgColumn.Visibility = value
|
m_dgColumn.Visibility = value
|
||||||
' ricavo la EgtDataGrid a cui appartiene la DataGridColumn
|
|
||||||
Dim propertyInfo As Reflection.PropertyInfo = m_dgColumn.GetType().GetProperty("DataGridOwner",
|
|
||||||
Reflection.BindingFlags.Instance Or
|
|
||||||
Reflection.BindingFlags.NonPublic)
|
|
||||||
Dim dg As EgtDataGrid = propertyInfo.GetValue(m_dgColumn, Nothing)
|
|
||||||
' ogni colonna visibile con UnitType a Star tranne l'ultima verrà settata a Pixel
|
|
||||||
For Each bc In dg.BindingColumns
|
|
||||||
If bc.Width.IsStar And Not bc.Name = dg.BindingColumns.Last(Function(x) x.Visible = True).Name Then
|
|
||||||
bc.Width = New DataGridLength(bc.ActualWidth, DataGridLengthUnitType.Pixel)
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
End If
|
End If
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
@@ -562,7 +570,6 @@ Public Class EgtDataGridColumn
|
|||||||
m_CanUserReorder = bCanUserReorder
|
m_CanUserReorder = bCanUserReorder
|
||||||
m_CanUserResize = bCanUserResize
|
m_CanUserResize = bCanUserResize
|
||||||
m_CanUserSort = bCanUserSort
|
m_CanUserSort = bCanUserSort
|
||||||
m_OrigIsReadOnly = bIsReadOnly
|
|
||||||
m_IsReadOnly = bIsReadOnly
|
m_IsReadOnly = bIsReadOnly
|
||||||
m_Width = Width
|
m_Width = Width
|
||||||
m_Visible = bVisible
|
m_Visible = bVisible
|
||||||
@@ -590,7 +597,7 @@ Public Class EgtDataGridColumn
|
|||||||
Public Function SaveDataGridColumn() As Boolean
|
Public Function SaveDataGridColumn() As Boolean
|
||||||
Dim bOk As Boolean
|
Dim bOk As Boolean
|
||||||
Dim sColumnParams = String.Empty
|
Dim sColumnParams = String.Empty
|
||||||
sColumnParams = Name & "," & If(CanUserReorder, 1, 0) & "," & If(CanUserResize, 1, 0) & "," & If(CanUserSort, 1, 0) & "," & If(m_OrigIsReadOnly, 1, 0) & "," & DoubleToString(Width.Value, 6) & "," & Width.UnitType & "," & If(Visible, 1, 0) & "," & If(CanUserEditVisible, 1, 0) & "," & CInt(SortDirection)
|
sColumnParams = Name & "," & If(CanUserReorder, 1, 0) & "," & If(CanUserResize, 1, 0) & "," & If(CanUserSort, 1, 0) & "," & If(IsReadOnly, 1, 0) & "," & DoubleToString(Width.Value, 6) & "," & Width.UnitType & "," & If(Visible, 1, 0) & "," & If(CanUserEditVisible, 1, 0) & "," & CInt(SortDirection)
|
||||||
bOk = WriteColumnPrivateProfileParam(ParentDataGridName, DisplayIndex, sColumnParams)
|
bOk = WriteColumnPrivateProfileParam(ParentDataGridName, DisplayIndex, sColumnParams)
|
||||||
Return bOk
|
Return bOk
|
||||||
End Function
|
End Function
|
||||||
|
|||||||
@@ -94,6 +94,8 @@ Public Class NewMachGroupPanelVM
|
|||||||
AddHandler m_MachGroupPanelM.MachGroupAdded, AddressOf OnMachGroupAdded
|
AddHandler m_MachGroupPanelM.MachGroupAdded, AddressOf OnMachGroupAdded
|
||||||
If Not MachGroupPanelM.IsMultiMachGroup Then SetMachGroupPanelVisibility(False)
|
If Not MachGroupPanelM.IsMultiMachGroup Then SetMachGroupPanelVisibility(False)
|
||||||
CreateMachGroupVMList()
|
CreateMachGroupVMList()
|
||||||
|
' Creo riferimento a questa classe in LibMap
|
||||||
|
'''LibMap.SetRefMachGroupPanelVM(Me)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
#End Region ' CONSTRUCTOR
|
#End Region ' CONSTRUCTOR
|
||||||
|
|||||||
@@ -1,99 +0,0 @@
|
|||||||
Imports System.Threading
|
|
||||||
Imports System.Windows.Threading
|
|
||||||
|
|
||||||
Public Module LoadingWndHelper
|
|
||||||
|
|
||||||
Public Enum ActiveIds As Integer
|
|
||||||
OPENPROJ = 1
|
|
||||||
SAVEPROJ = 2
|
|
||||||
IMPORTBTL = 3
|
|
||||||
GOTOPROD = 4
|
|
||||||
OPENPROD = 5
|
|
||||||
SAVEPROD = 6
|
|
||||||
GOTOPROJ = 7
|
|
||||||
EXPORTPROJECT = 8
|
|
||||||
IMPORTPROJECT = 9
|
|
||||||
CHANGEPARAM = 10
|
|
||||||
CREATINGPDF = 11
|
|
||||||
CHANGEMATERIAL = 12
|
|
||||||
End Enum
|
|
||||||
|
|
||||||
Dim m_MainWindow As Windows.Window
|
|
||||||
Public Sub SetMainWindow(MainWindow As Windows.Window)
|
|
||||||
m_MainWindow = MainWindow
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private m_bMainWindow_IsActive As Boolean = True
|
|
||||||
Public Sub SetMainWindowIsActive(IsActive As Boolean)
|
|
||||||
m_bMainWindow_IsActive = IsActive
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Delegate Sub CallbackLoadingDlg(ByRef CurrStep As Integer, ByRef StepText As String, ByRef nProgress As Integer, ByRef nNextProgress As Integer, ByRef MainWindow_IsActive As Boolean, ByRef bClose As Boolean)
|
|
||||||
|
|
||||||
Private m_thread As Thread
|
|
||||||
Private m_LoadingWndVM As Core.LoadingWndVM
|
|
||||||
Private m_CurrStep As Integer
|
|
||||||
Private m_StepText As String
|
|
||||||
Private m_nProgress As Integer
|
|
||||||
Private m_nNextProgress As Integer
|
|
||||||
Private m_bClose As Boolean
|
|
||||||
Private m_bActiveId As Integer = -1
|
|
||||||
|
|
||||||
Public Function OpenLoadingWnd(Id As Integer, nSteps As Integer, TotText As String, FirstStepText As String, nNextProgress As Integer) As Boolean
|
|
||||||
If m_bActiveId > 0 Then Return False
|
|
||||||
m_bActiveId = Id
|
|
||||||
m_LoadingWndVM = Nothing
|
|
||||||
m_CurrStep = 1
|
|
||||||
m_StepText = FirstStepText
|
|
||||||
m_nProgress = 1
|
|
||||||
m_nNextProgress = nNextProgress
|
|
||||||
m_bClose = False
|
|
||||||
Dim Top As Double = m_MainWindow.Top + (m_MainWindow.Height / 2) - 100
|
|
||||||
Dim Left As Double = m_MainWindow.Left + (m_MainWindow.Width / 2) - 150
|
|
||||||
Dim WindowStartupLocation As Windows.WindowStartupLocation = Windows.WindowStartupLocation.Manual
|
|
||||||
If m_MainWindow.WindowState = Windows.WindowState.Maximized Then
|
|
||||||
WindowStartupLocation = Windows.WindowStartupLocation.CenterOwner
|
|
||||||
End If
|
|
||||||
m_thread = New Thread(Sub()
|
|
||||||
m_LoadingWndVM = New Core.LoadingWndVM(nSteps, TotText, AddressOf LoadingCallback)
|
|
||||||
m_LoadingWndVM.UpdateProgress(m_CurrStep, m_StepText, m_nProgress, m_nNextProgress)
|
|
||||||
Dim LoadingWnd As New LoadingWndV(Nothing, m_LoadingWndVM)
|
|
||||||
' posiziono la finestra
|
|
||||||
If WindowStartupLocation = Windows.WindowStartupLocation.CenterScreen Then
|
|
||||||
LoadingWnd.WindowStartupLocation = Windows.WindowStartupLocation.CenterScreen
|
|
||||||
Else
|
|
||||||
LoadingWnd.Top = Top
|
|
||||||
LoadingWnd.Left = Left
|
|
||||||
End If
|
|
||||||
LoadingWnd.Show()
|
|
||||||
Dispatcher.Run()
|
|
||||||
End Sub)
|
|
||||||
m_thread.SetApartmentState(ApartmentState.STA)
|
|
||||||
m_thread.Start()
|
|
||||||
Return True
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Private Sub LoadingCallback(ByRef CurrStep As Integer, ByRef StepText As String, ByRef nProgress As Integer, ByRef nNextProgress As Integer, ByRef MainWindow_IsActive As Boolean, ByRef bClose As Boolean)
|
|
||||||
CurrStep = m_CurrStep
|
|
||||||
StepText = m_StepText
|
|
||||||
nProgress = m_nProgress
|
|
||||||
nNextProgress = m_nNextProgress
|
|
||||||
m_bMainWindow_IsActive = MainWindow_IsActive
|
|
||||||
bClose = m_bClose
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Sub UpdateLoadingWnd(Id As Integer, CurrStep As Integer, StepText As String, nProgress As Integer, nNextProgress As Integer)
|
|
||||||
If Id <> m_bActiveId Then Return
|
|
||||||
m_CurrStep = CurrStep
|
|
||||||
m_StepText = StepText
|
|
||||||
m_nProgress = nProgress
|
|
||||||
m_nNextProgress = nNextProgress
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Sub CloseLoadingWnd(Id As Integer)
|
|
||||||
If Id <> m_bActiveId Then Return
|
|
||||||
m_bClose = True
|
|
||||||
m_bActiveId = -1
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
End Module
|
|
||||||
@@ -1,56 +0,0 @@
|
|||||||
<EgtWPFLib5:EgtCustomWindow x:Class="LoadingWndV"
|
|
||||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
||||||
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
|
|
||||||
Style="{DynamicResource {x:Type EgtWPFLib5:EgtCustomWindow}}"
|
|
||||||
Height="200" Width="300"
|
|
||||||
TitleBarHeight="0"
|
|
||||||
ResizeMode="NoResize" WindowStyle="None"
|
|
||||||
IsClosable="False" IsMinimizable="False"
|
|
||||||
WindowStartupLocation="Manual" ShowInTaskbar="False">
|
|
||||||
|
|
||||||
<Grid>
|
|
||||||
<Grid.RowDefinitions>
|
|
||||||
<RowDefinition Height="1*"/>
|
|
||||||
<RowDefinition Height="Auto"/>
|
|
||||||
<RowDefinition Height="Auto"/>
|
|
||||||
<RowDefinition Height="Auto"/>
|
|
||||||
<RowDefinition Height="1*"/>
|
|
||||||
<RowDefinition Height="Auto"/>
|
|
||||||
<RowDefinition Height="1*"/>
|
|
||||||
<RowDefinition Height="Auto"/>
|
|
||||||
<RowDefinition Height="1*"/>
|
|
||||||
</Grid.RowDefinitions>
|
|
||||||
<TextBlock Grid.Row="1"
|
|
||||||
Text="{Binding TotText_Msg}"
|
|
||||||
TextAlignment="Center"/>
|
|
||||||
<TextBlock Grid.Row="2"
|
|
||||||
Text="{Binding StepText_Msg}"
|
|
||||||
TextAlignment="Center"
|
|
||||||
Visibility="{Binding StepText_Visibility}"/>
|
|
||||||
<Grid Grid.Row="3"
|
|
||||||
Visibility="{Binding StepProgress_Visibility}">
|
|
||||||
<Grid.RowDefinitions>
|
|
||||||
<RowDefinition Height="1*"/>
|
|
||||||
<RowDefinition Height="1*"/>
|
|
||||||
</Grid.RowDefinitions>
|
|
||||||
<Grid Height="20"/>
|
|
||||||
<ProgressBar Grid.Row="1"
|
|
||||||
Minimum="0"
|
|
||||||
Maximum="100"
|
|
||||||
Value="{Binding StepProgress_Value}"
|
|
||||||
Height="20"
|
|
||||||
Margin="40,0,40,0"/>
|
|
||||||
</Grid>
|
|
||||||
<ProgressBar Grid.Row="5"
|
|
||||||
Minimum="0"
|
|
||||||
Maximum="100"
|
|
||||||
Value="{Binding TotProgress_Value}"
|
|
||||||
Height="20"
|
|
||||||
Margin="40,0,40,0"/>
|
|
||||||
<TextBlock Grid.Row="7"
|
|
||||||
Text="{Binding TotProgress_Msg}"
|
|
||||||
TextAlignment="Center"/>
|
|
||||||
</Grid>
|
|
||||||
|
|
||||||
</EgtWPFLib5:EgtCustomWindow>
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
Imports System.Windows
|
|
||||||
Imports System.Windows.Input
|
|
||||||
|
|
||||||
Public Class LoadingWndV
|
|
||||||
|
|
||||||
Private WithEvents m_LoadingWndVM As LoadingWndVM
|
|
||||||
|
|
||||||
Sub New(Owner As Window, LoadingWndVM As LoadingWndVM)
|
|
||||||
MyBase.New(Owner)
|
|
||||||
' This call is required by the designer.
|
|
||||||
InitializeComponent()
|
|
||||||
Me.DataContext = LoadingWndVM
|
|
||||||
' Assegno al riferimento locale al VM il VM preso dal DataContext
|
|
||||||
m_LoadingWndVM = LoadingWndVM
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub CloseWindow(bDialogResult As Boolean) Handles m_LoadingWndVM.m_CloseWindow
|
|
||||||
Me.Close()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub ActivateWindow() Handles m_LoadingWndVM.m_ActivateWindow
|
|
||||||
Me.Activate()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub Me_ContentRendered() Handles Me.ContentRendered
|
|
||||||
m_LoadingWndVM.StartFunction()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub ToolsDbView_Closing(sender As Object, e As ComponentModel.CancelEventArgs) Handles Me.Closing
|
|
||||||
If (Keyboard.Modifiers And ModifierKeys.Alt) = ModifierKeys.Alt OrElse Keyboard.IsKeyDown(Key.F4) Then
|
|
||||||
e.Cancel = True
|
|
||||||
Return
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
End Class
|
|
||||||
@@ -1,233 +0,0 @@
|
|||||||
Imports System.Timers
|
|
||||||
Imports System.Windows
|
|
||||||
Imports System.Windows.Input
|
|
||||||
Imports System.Windows.Threading
|
|
||||||
Imports EgtBEAMWALL.Core
|
|
||||||
Imports EgtUILib
|
|
||||||
Imports EgtWPFLib5
|
|
||||||
|
|
||||||
Public Class LoadingWndVM
|
|
||||||
Inherits VMBase
|
|
||||||
|
|
||||||
#Region "FIELDS & PROPERTIES"
|
|
||||||
|
|
||||||
Enum LoadingTypes As Integer
|
|
||||||
NULL = 0
|
|
||||||
OPEN = 1
|
|
||||||
IMPORT = 2
|
|
||||||
End Enum
|
|
||||||
|
|
||||||
Delegate Sub CallbackLoadingDlg(ByRef CurrStep As Integer, ByRef StepText As String, ByRef nProgress As Integer, ByRef nNextProgress As Integer, ByRef MainWindow_IsActive As Boolean, ByRef bClose As Boolean)
|
|
||||||
|
|
||||||
Friend Event m_CloseWindow(bDialogResult As Boolean)
|
|
||||||
Friend Event m_ActivateWindow()
|
|
||||||
|
|
||||||
Private m_CallbackLoading As CallbackLoadingDlg
|
|
||||||
Private m_Waiting_Timer As New DispatcherTimer
|
|
||||||
|
|
||||||
' numero di passaggi di caricamento
|
|
||||||
Private m_nSteps As Integer
|
|
||||||
' titolo testo di caricamento
|
|
||||||
Private m_TotText As String
|
|
||||||
' numero passaggio corrente
|
|
||||||
Private m_CurrStep As Integer
|
|
||||||
' testo del passaggio corrente
|
|
||||||
Private m_StepText As String
|
|
||||||
' indice d'inizio di questo passaggio
|
|
||||||
Private m_nStartProgress As Integer
|
|
||||||
' indice d'inizio del prossimo passaggio
|
|
||||||
Private m_nNextProgress As Integer
|
|
||||||
' variabile che indica richiesta chiusura della finestra
|
|
||||||
Private m_bClosing As Boolean = False
|
|
||||||
Private m_bMainWindow_IsActive As Boolean = True
|
|
||||||
|
|
||||||
Private m_StepProgress_Value As Double = 0
|
|
||||||
Public Property StepProgress_Value As Double
|
|
||||||
Get
|
|
||||||
Return m_StepProgress_Value
|
|
||||||
End Get
|
|
||||||
Set(value As Double)
|
|
||||||
m_StepProgress_Value = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Private m_TotProgress_Value As Double = 0
|
|
||||||
Public Property TotProgress_Value As Double
|
|
||||||
Get
|
|
||||||
Return Math.Floor(m_TotProgress_Value)
|
|
||||||
End Get
|
|
||||||
Set(value As Double)
|
|
||||||
m_TotProgress_Value = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Private m_StepText_Visibility As Visibility
|
|
||||||
Public ReadOnly Property StepText_Visibility As Visibility
|
|
||||||
Get
|
|
||||||
Return m_StepText_Visibility
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Private m_StepProgress_Visibility As Visibility
|
|
||||||
Public ReadOnly Property StepProgress_Visibility As Visibility
|
|
||||||
Get
|
|
||||||
Return m_StepProgress_Visibility
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
#Region "Messages"
|
|
||||||
|
|
||||||
Public ReadOnly Property TotText_Msg As String
|
|
||||||
Get
|
|
||||||
Return If(m_nSteps > 0, m_TotText & " (" & m_CurrStep & "/" & m_nSteps & ")", m_TotText)
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Public ReadOnly Property StepText_Msg As String
|
|
||||||
Get
|
|
||||||
Return m_StepText
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Public ReadOnly Property TotProgress_Msg As String
|
|
||||||
Get
|
|
||||||
Return m_TotProgress_Value.ToString("0.#") & "%"
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
#End Region ' Messages
|
|
||||||
|
|
||||||
' Definizione comandi
|
|
||||||
Private m_cmdCancel As ICommand
|
|
||||||
|
|
||||||
#End Region ' FIELDS & PROPERTIES
|
|
||||||
|
|
||||||
Sub New(Steps As Integer, TotText As String, callback As CallbackLoadingDlg)
|
|
||||||
m_nSteps = Steps
|
|
||||||
m_TotText = TotText
|
|
||||||
m_CallbackLoading = callback
|
|
||||||
m_bClosing = False
|
|
||||||
If Steps = 1 Then
|
|
||||||
m_StepText_Visibility = Visibility.Collapsed
|
|
||||||
m_StepProgress_Visibility = Visibility.Collapsed
|
|
||||||
Else
|
|
||||||
m_StepText_Visibility = Visibility.Visible
|
|
||||||
m_StepProgress_Visibility = Visibility.Visible
|
|
||||||
End If
|
|
||||||
' imposto contatore
|
|
||||||
m_Waiting_Timer.Interval = TimeSpan.FromMilliseconds(200)
|
|
||||||
AddHandler m_Waiting_Timer.Tick, AddressOf WaitingTimer_Tick
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Sub UpdateProgress(CurrStep As Integer, StepText As String, nStartProgress As Integer, nNextProgress As Integer)
|
|
||||||
m_CurrStep = CurrStep
|
|
||||||
m_StepText = StepText
|
|
||||||
m_StepProgress_Value = nStartProgress
|
|
||||||
m_nNextProgress = nNextProgress
|
|
||||||
NotifyPropertyChanged(NameOf(StepText_Msg))
|
|
||||||
NotifyPropertyChanged(NameOf(TotText_Msg))
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Overridable Sub StartFunction()
|
|
||||||
m_Waiting_Timer.Start()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Protected Overridable Sub WaitingTimer_Tick()
|
|
||||||
' leggo eventuali nuovi valori
|
|
||||||
Dim CurrStep As Integer = 0
|
|
||||||
Dim StepText As String = ""
|
|
||||||
Dim nStartProgress As Integer = 0
|
|
||||||
Dim nNextProgress As Integer = 0
|
|
||||||
Dim bMainWindow_IsActive As Boolean = True
|
|
||||||
Dim bClose As Boolean = False
|
|
||||||
m_CallbackLoading(CurrStep, StepText, nStartProgress, nNextProgress, bMainWindow_IsActive, bClose)
|
|
||||||
If bMainWindow_IsActive <> m_bMainWindow_IsActive Then
|
|
||||||
RaiseEvent m_ActivateWindow()
|
|
||||||
End If
|
|
||||||
If m_bClosing Then
|
|
||||||
Close()
|
|
||||||
Dispatcher.CurrentDispatcher.InvokeShutdown()
|
|
||||||
Return
|
|
||||||
ElseIf bClose Then
|
|
||||||
m_bClosing = True
|
|
||||||
' mostro completamento caricamento
|
|
||||||
m_CurrStep = m_nSteps
|
|
||||||
m_StepProgress_Value = 100
|
|
||||||
m_TotProgress_Value = 100
|
|
||||||
m_Waiting_Timer.Interval = TimeSpan.FromMilliseconds(1000)
|
|
||||||
Else
|
|
||||||
If m_CurrStep <> CurrStep Then
|
|
||||||
If m_StepProgress_Value < 100 Then
|
|
||||||
m_StepProgress_Value = 100
|
|
||||||
ElseIf m_StepProgress_Value = 100 Then
|
|
||||||
m_StepProgress_Value = 0
|
|
||||||
m_CurrStep = CurrStep
|
|
||||||
m_StepText = StepText
|
|
||||||
m_nStartProgress = nStartProgress
|
|
||||||
m_nNextProgress = nNextProgress
|
|
||||||
End If
|
|
||||||
Else
|
|
||||||
' incremento Step corrente
|
|
||||||
If m_StepProgress_Value < 80 Then
|
|
||||||
m_StepProgress_Value += 1
|
|
||||||
ElseIf m_StepProgress_Value < 90 Then
|
|
||||||
m_StepProgress_Value += 0.4
|
|
||||||
ElseIf m_StepProgress_Value < 98 Then
|
|
||||||
m_StepProgress_Value += 0.1
|
|
||||||
Else
|
|
||||||
m_StepProgress_Value += 0.01
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
' calcolo totale
|
|
||||||
Dim dStepStart As Double = If(m_CurrStep > 1, m_nStartProgress, 0)
|
|
||||||
Dim dStepEnd As Double = m_nNextProgress
|
|
||||||
m_TotProgress_Value = dStepStart + ((dStepEnd - dStepStart) / 100 * m_StepProgress_Value)
|
|
||||||
End If
|
|
||||||
' aggiorno grafica
|
|
||||||
NotifyPropertyChanged(NameOf(StepText_Msg))
|
|
||||||
NotifyPropertyChanged(NameOf(TotText_Msg))
|
|
||||||
NotifyPropertyChanged(NameOf(StepProgress_Value))
|
|
||||||
NotifyPropertyChanged(NameOf(TotProgress_Value))
|
|
||||||
NotifyPropertyChanged(NameOf(TotProgress_Msg))
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Sub Close()
|
|
||||||
' fermo timer
|
|
||||||
m_Waiting_Timer.Stop()
|
|
||||||
' chiudo finestra
|
|
||||||
RaiseEvent m_CloseWindow(True)
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
#Region "COMMANDS"
|
|
||||||
|
|
||||||
#Region "Cancel"
|
|
||||||
|
|
||||||
''' <summary>
|
|
||||||
''' Returns a command that do Open.
|
|
||||||
''' </summary>
|
|
||||||
Public ReadOnly Property Cancel_Command As ICommand
|
|
||||||
Get
|
|
||||||
If m_cmdCancel Is Nothing Then
|
|
||||||
m_cmdCancel = New Command(AddressOf Cancel)
|
|
||||||
End If
|
|
||||||
Return m_cmdCancel
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
''' <summary>
|
|
||||||
''' Execute the Open. This method is invoked by the OpenCommand.
|
|
||||||
''' </summary>
|
|
||||||
Friend Sub Cancel()
|
|
||||||
'' chiedo conferma
|
|
||||||
'If MessageBox.Show("Are you sure you want to stop the nesting?", "Warning", MessageBoxButton.YesNo, MessageBoxImage.Warning) = MessageBoxResult.No Then Return
|
|
||||||
'' fermo il nesting
|
|
||||||
'Map.refOptimizePanelVM.m_StopNesting = True
|
|
||||||
'' fermo timer e chiudo finestra
|
|
||||||
'CloseNesting()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
#End Region ' Cancel
|
|
||||||
|
|
||||||
#End Region ' COMMANDS
|
|
||||||
|
|
||||||
End Class
|
|
||||||
@@ -149,16 +149,6 @@ Public Class MyMachGroupM
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Protected m_dPosZ As Double = 0
|
|
||||||
Public Property dPosZ As Double
|
|
||||||
Get
|
|
||||||
Return m_dPosZ
|
|
||||||
End Get
|
|
||||||
Set(value As Double)
|
|
||||||
m_dPosZ = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
#End Region ' Wall
|
#End Region ' Wall
|
||||||
|
|
||||||
#Region "Calc"
|
#Region "Calc"
|
||||||
@@ -186,7 +176,7 @@ Public Class MyMachGroupM
|
|||||||
Private m_sCALC_MSG As String
|
Private m_sCALC_MSG As String
|
||||||
Public Property sCALC_MSG As String
|
Public Property sCALC_MSG As String
|
||||||
Get
|
Get
|
||||||
Return MessageFromLuaMsg(m_sCALC_MSG)
|
Return m_sCALC_MSG
|
||||||
End Get
|
End Get
|
||||||
Set(value As String)
|
Set(value As String)
|
||||||
m_sCALC_MSG = value
|
m_sCALC_MSG = value
|
||||||
@@ -310,18 +300,17 @@ Public Class MyMachGroupM
|
|||||||
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_BARLEN, NewMachGroupM.m_dL)
|
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_BARLEN, NewMachGroupM.m_dL)
|
||||||
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_BARHEIGHT, NewMachGroupM.m_dH)
|
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_BARHEIGHT, NewMachGroupM.m_dH)
|
||||||
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_BARWIDTH, NewMachGroupM.m_dW)
|
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_BARWIDTH, NewMachGroupM.m_dW)
|
||||||
|
NewMachGroupM.m_dTotMat = NewMachGroupM.m_dL * NewMachGroupM.m_dW * NewMachGroupM.m_dH
|
||||||
NewMachGroupM.m_PartMList = LoadParts(NewMachGroupM)
|
NewMachGroupM.m_PartMList = LoadParts(NewMachGroupM)
|
||||||
For Each Part In NewMachGroupM.m_PartMList
|
For Each Part In NewMachGroupM.m_PartMList
|
||||||
Part.UpdateOffset()
|
Part.UpdateOffset()
|
||||||
NewMachGroupM.m_dTotMat += Part.dL + Part.dOffset
|
NewMachGroupM.m_dMatForPart += Part.dVolume
|
||||||
NewMachGroupM.m_dMatForPart += Part.dL
|
|
||||||
Next
|
Next
|
||||||
Else
|
Else
|
||||||
NewMachGroupM.m_nRawPartId = EgtGetFirstRawPart()
|
NewMachGroupM.m_nRawPartId = EgtGetFirstRawPart()
|
||||||
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_PANELLEN, NewMachGroupM.m_dL)
|
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_PANELLEN, NewMachGroupM.m_dL)
|
||||||
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_PANELWIDTH, NewMachGroupM.m_dW)
|
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_PANELWIDTH, NewMachGroupM.m_dW)
|
||||||
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_PANELHEIGHT, NewMachGroupM.m_dH)
|
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_PANELHEIGHT, NewMachGroupM.m_dH)
|
||||||
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_PANELPOSZ, NewMachGroupM.m_dPosZ)
|
|
||||||
NewMachGroupM.m_dTotMat = NewMachGroupM.m_dL * NewMachGroupM.m_dW * NewMachGroupM.m_dH
|
NewMachGroupM.m_dTotMat = NewMachGroupM.m_dL * NewMachGroupM.m_dW * NewMachGroupM.m_dH
|
||||||
NewMachGroupM.m_PartMList = LoadParts(NewMachGroupM)
|
NewMachGroupM.m_PartMList = LoadParts(NewMachGroupM)
|
||||||
For Each Part In NewMachGroupM.m_PartMList
|
For Each Part In NewMachGroupM.m_PartMList
|
||||||
@@ -347,14 +336,13 @@ Public Class MyMachGroupM
|
|||||||
NewMachGroupM.m_PartMList = LoadParts(NewMachGroupM)
|
NewMachGroupM.m_PartMList = LoadParts(NewMachGroupM)
|
||||||
For Each Part In NewMachGroupM.m_PartMList
|
For Each Part In NewMachGroupM.m_PartMList
|
||||||
Part.UpdateOffset()
|
Part.UpdateOffset()
|
||||||
NewMachGroupM.m_dMatForPart += Part.dL + Part.dOffset
|
NewMachGroupM.m_dMatForPart += Part.dVolume
|
||||||
Next
|
Next
|
||||||
Else
|
Else
|
||||||
NewMachGroupM.m_nRawPartId = EgtGetFirstRawPart()
|
NewMachGroupM.m_nRawPartId = EgtGetFirstRawPart()
|
||||||
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_PANELLEN, NewMachGroupM.m_dL)
|
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_PANELLEN, NewMachGroupM.m_dL)
|
||||||
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_PANELWIDTH, NewMachGroupM.m_dW)
|
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_PANELWIDTH, NewMachGroupM.m_dW)
|
||||||
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_PANELHEIGHT, NewMachGroupM.m_dH)
|
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_PANELHEIGHT, NewMachGroupM.m_dH)
|
||||||
EgtGetInfo(NewMachGroupM.m_Id, MGR_RPT_PANELPOSZ, NewMachGroupM.m_dPosZ)
|
|
||||||
NewMachGroupM.m_dTotMat = NewMachGroupM.m_dL * NewMachGroupM.m_dW
|
NewMachGroupM.m_dTotMat = NewMachGroupM.m_dL * NewMachGroupM.m_dW
|
||||||
NewMachGroupM.m_PartMList = LoadParts(NewMachGroupM)
|
NewMachGroupM.m_PartMList = LoadParts(NewMachGroupM)
|
||||||
For Each Part In NewMachGroupM.m_PartMList
|
For Each Part In NewMachGroupM.m_PartMList
|
||||||
@@ -420,7 +408,7 @@ Public Class MyMachGroupM
|
|||||||
EgtGetInfo(Id, MGR_RPT_PART & 1, sInfo)
|
EgtGetInfo(Id, MGR_RPT_PART & 1, sInfo)
|
||||||
If Not String.IsNullOrWhiteSpace(sInfo) Then
|
If Not String.IsNullOrWhiteSpace(sInfo) Then
|
||||||
sSplitInfo = sInfo.Split(","c)
|
sSplitInfo = sInfo.Split(","c)
|
||||||
StringToDoubleAdv(sSplitInfo(1), m_dStartCut)
|
StringToDouble(sSplitInfo(1), m_dStartCut)
|
||||||
Else
|
Else
|
||||||
m_dStartCut = 0
|
m_dStartCut = 0
|
||||||
End If
|
End If
|
||||||
|
|||||||
@@ -338,8 +338,7 @@ Public Class MyMachGroupPanelM
|
|||||||
End Class
|
End Class
|
||||||
|
|
||||||
' funzione che cancella tutti i pezzi segnati da eliminare
|
' funzione che cancella tutti i pezzi segnati da eliminare
|
||||||
Public Shared Function DeleteDuplo() As List(Of Integer)
|
Public Shared Sub DeleteDuplo()
|
||||||
Dim ToRedrawMachGroupList As New List(Of Integer)
|
|
||||||
' reset necessario per poter accedere direttamente al grezzo dalle info pezzo e al MachGroup tramite la gerarchia Db geometrico
|
' reset necessario per poter accedere direttamente al grezzo dalle info pezzo e al MachGroup tramite la gerarchia Db geometrico
|
||||||
EgtResetCurrMachGroup()
|
EgtResetCurrMachGroup()
|
||||||
Dim nPartId As Integer = EgtGetFirstPart()
|
Dim nPartId As Integer = EgtGetFirstPart()
|
||||||
@@ -357,37 +356,16 @@ Public Class MyMachGroupPanelM
|
|||||||
Dim nRawPartId As Integer = DuploGetRawPart(nDuploId)
|
Dim nRawPartId As Integer = DuploGetRawPart(nDuploId)
|
||||||
' recupero gruppo di lavorazione
|
' recupero gruppo di lavorazione
|
||||||
Dim nMachGroupId As Integer = EgtGetParent(EgtGetParent(EgtGetParent(nRawPartId)))
|
Dim nMachGroupId As Integer = EgtGetParent(EgtGetParent(EgtGetParent(nRawPartId)))
|
||||||
|
|
||||||
' elimino eventuali successive info pezzi di troppo
|
|
||||||
Dim nIndex As Integer = 0
|
|
||||||
Dim sTemp As String = ""
|
|
||||||
While EgtGetInfo(nMachGroupId, MGR_RPT_PART & nIndex, sTemp)
|
|
||||||
Dim PartData() As String = sTemp.Split(","c)
|
|
||||||
If PartData(0) <> nDuploId Then
|
|
||||||
EgtSetInfo(nMachGroupId, MGR_RPT_PART & nIndex, sTemp)
|
|
||||||
nIndex += 1
|
|
||||||
End If
|
|
||||||
End While
|
|
||||||
ToRedrawMachGroupList.Add(nMachGroupId)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
'' elimino vecchio grezzo ed eseguo script creazione nuovo
|
|
||||||
'Dim nRawId As Integer = EgtGetFirstRawPart()
|
|
||||||
'While nRawId <> GDB_ID.NULL
|
|
||||||
' EgtRemovePartFromRawPart(EgtGetFirstPartInRawPart(nRawId))
|
|
||||||
' EgtRemoveRawPart(nRawId)
|
|
||||||
' nRawId = EgtGetFirstRawPart()
|
|
||||||
'End While
|
|
||||||
'If Not ExecBeam(Map.refMainWindowVM.MainWindowM.sTempDir, Map.refMachinePanelVM.SelectedMachine.Name, CalcIntegration.CmdTypes.RAWPART, False) Then Return False
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
' lo setto come corrente
|
' lo setto come corrente
|
||||||
EgtSetCurrMachGroup(nMachGroupId)
|
EgtSetCurrMachGroup(nMachGroupId)
|
||||||
' elimino pezzo copia
|
' elimino pezzo copia
|
||||||
EgtRemovePartFromRawPart(nDuploId)
|
EgtRemovePartFromRawPart(nDuploId)
|
||||||
EgtErase(nDuploId)
|
EgtErase(nDuploId)
|
||||||
|
'' recupero gruppo di lavorazione e trave dell'interfaccia
|
||||||
|
'Dim BeamMachGroup As BeamMachGroupM = MachGroupMList.FirstOrDefault(Function(x) x.Id = nMachGroupId)
|
||||||
|
'Dim Beam As BeamM = BeamMachGroup.PartMList.FirstOrDefault(Function(x) x.nPartId = nDuploId)
|
||||||
|
'EgtSetCurrMachGroup(BeamMachGroup.Id)
|
||||||
|
'''Beam.DeletePart()
|
||||||
Next
|
Next
|
||||||
End If
|
End If
|
||||||
DuploResetToDelete(nPartId)
|
DuploResetToDelete(nPartId)
|
||||||
@@ -395,8 +373,7 @@ Public Class MyMachGroupPanelM
|
|||||||
nPartId = EgtGetNextPart(nPartId)
|
nPartId = EgtGetNextPart(nPartId)
|
||||||
End While
|
End While
|
||||||
EgtResetCurrMachGroup()
|
EgtResetCurrMachGroup()
|
||||||
Return ToRedrawMachGroupList
|
End Sub
|
||||||
End Function
|
|
||||||
|
|
||||||
Friend Shared Function DuploGetToDelete(nSouId As Integer, ByRef bToDelete As Boolean) As Boolean
|
Friend Shared Function DuploGetToDelete(nSouId As Integer, ByRef bToDelete As Boolean) As Boolean
|
||||||
If IsNothing(nSouId) Then Return False
|
If IsNothing(nSouId) Then Return False
|
||||||
@@ -425,23 +402,12 @@ Public Class MyMachGroupPanelM
|
|||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Function DuploGetRawPart(nDuploId As Integer) As Integer
|
Public Shared Function DuploGetRawPart(nDuploId As Integer) As Integer
|
||||||
Dim nSwapItem As Integer = GDB_ID.NULL
|
Dim nRawId As Integer = GDB_ID.NULL
|
||||||
Dim sSwapItem As String = String.Empty
|
If EgtGetInfo(nDuploId, GDB_SI_LIST, nRawId) AndAlso nRawId > 0 Then
|
||||||
EgtGetInfo(nDuploId, "!LST", sSwapItem)
|
Return nRawId
|
||||||
Dim LSTValues() As String = sSwapItem.Split(","c)
|
Else
|
||||||
If Not IsNothing(LSTValues(LSTValues.Count - 1)) AndAlso Integer.TryParse(LSTValues(LSTValues.Count - 1), nSwapItem) AndAlso nSwapItem > 0 Then
|
Return GDB_ID.NULL
|
||||||
Return EgtGetParent(nSwapItem)
|
|
||||||
End If
|
End If
|
||||||
Return GDB_ID.NULL
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
'Dim nRawId As Integer = GDB_ID.NULL
|
|
||||||
'If EgtGetInfo(nDuploId, GDB_SI_LIST, nRawId) AndAlso nRawId > 0 Then
|
|
||||||
' Return nRawId
|
|
||||||
'Else
|
|
||||||
' Return GDB_ID.NULL
|
|
||||||
'End If
|
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
#End Region ' METHODS
|
#End Region ' METHODS
|
||||||
|
|||||||
@@ -139,28 +139,21 @@ Public Class PartM
|
|||||||
Public Property dPOSX As Double
|
Public Property dPOSX As Double
|
||||||
Get
|
Get
|
||||||
If nType = BWType.WALL Then
|
If nType = BWType.WALL Then
|
||||||
' verifico che sia attivo MachGroup di questo pezzo
|
' recupero box pezzo
|
||||||
If EgtGetCurrMachGroup() = ParentMachGroup.Id Then
|
Dim b3Part As New BBox3d
|
||||||
' recupero box pezzo
|
EgtGetBBoxGlob(nPartId, GDB_BB.ONLY_VISIBLE + GDB_BB.IGNORE_TEXT + GDB_BB.IGNORE_DIM, b3Part)
|
||||||
Dim b3Part As New BBox3d
|
' recupero layer del box
|
||||||
EgtGetBBoxGlob(nPartId, GDB_BB.ONLY_VISIBLE + GDB_BB.IGNORE_TEXT + GDB_BB.IGNORE_DIM, b3Part)
|
Dim nBoxLayerId As Integer = EgtGetFirstNameInGroup(nPartId, "Box")
|
||||||
' recupero layer del box
|
' recupero box del layer box
|
||||||
Dim nBoxLayerId As Integer = EgtGetFirstNameInGroup(nPartId, "Box")
|
Dim b3Box As New BBox3d
|
||||||
' recupero box del layer box
|
EgtGetBBoxGlob(nBoxLayerId, GDB_BB.STANDARD, b3Box)
|
||||||
Dim b3Box As New BBox3d
|
' recupero origine grezzo
|
||||||
EgtGetBBoxGlob(nBoxLayerId, GDB_BB.STANDARD, b3Box)
|
Dim nrawPartId As Integer = EgtGetRawPartFromPart(nPartId)
|
||||||
' recupero origine grezzo
|
Dim b3Raw As New BBox3d
|
||||||
Dim nrawPartId As Integer = EgtGetRawPartFromPart(nPartId)
|
EgtGetRawPartBBox(nrawPartId, b3Raw)
|
||||||
Dim b3Raw As New BBox3d
|
' calcolo distanza tra origine pezzo e tavolo
|
||||||
EgtGetRawPartBBox(nrawPartId, b3Raw)
|
Dim vtPartRef As New Vector3d(b3Box.Min() - b3Raw.Min())
|
||||||
' calcolo distanza tra origine pezzo e tavolo
|
Return vtPartRef.x
|
||||||
Dim vtPartRef As New Vector3d(b3Box.Min() - b3Raw.Min())
|
|
||||||
m_dPOSX = vtPartRef.x
|
|
||||||
Return vtPartRef.x
|
|
||||||
' altrimenti restituisco valore salvato (per quando viene clickato un BTLPart)
|
|
||||||
Else
|
|
||||||
Return m_dPOSX
|
|
||||||
End If
|
|
||||||
Else ' nType = BWType.BEAM
|
Else ' nType = BWType.BEAM
|
||||||
Return m_dPOSX
|
Return m_dPOSX
|
||||||
End If
|
End If
|
||||||
@@ -210,16 +203,6 @@ Public Class PartM
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Public m_sSTOREY As String
|
|
||||||
Public Property sSTOREY As String
|
|
||||||
Get
|
|
||||||
Return m_sSTOREY
|
|
||||||
End Get
|
|
||||||
Set(value As String)
|
|
||||||
m_sSTOREY = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Public m_sGROUP As String
|
Public m_sGROUP As String
|
||||||
Public Property sGROUP As String
|
Public Property sGROUP As String
|
||||||
Get
|
Get
|
||||||
@@ -277,28 +260,21 @@ Public Class PartM
|
|||||||
Protected m_dPOSY As Double
|
Protected m_dPOSY As Double
|
||||||
Public Property dPOSY As Double
|
Public Property dPOSY As Double
|
||||||
Get
|
Get
|
||||||
' verifico che sia attivo MachGroup di questo pezzo
|
' recupero box pezzo
|
||||||
If EgtGetCurrMachGroup() = ParentMachGroup.Id Then
|
Dim b3Part As New BBox3d
|
||||||
' recupero box pezzo
|
EgtGetBBoxGlob(nPartId, GDB_BB.ONLY_VISIBLE + GDB_BB.IGNORE_TEXT + GDB_BB.IGNORE_DIM, b3Part)
|
||||||
Dim b3Part As New BBox3d
|
' recupero layer del box
|
||||||
EgtGetBBoxGlob(nPartId, GDB_BB.ONLY_VISIBLE + GDB_BB.IGNORE_TEXT + GDB_BB.IGNORE_DIM, b3Part)
|
Dim nBoxLayerId As Integer = EgtGetFirstNameInGroup(nPartId, "Box")
|
||||||
' recupero layer del box
|
' recupero box del layer box
|
||||||
Dim nBoxLayerId As Integer = EgtGetFirstNameInGroup(nPartId, "Box")
|
Dim b3Box As New BBox3d
|
||||||
' recupero box del layer box
|
EgtGetBBoxGlob(nBoxLayerId, GDB_BB.STANDARD, b3Box)
|
||||||
Dim b3Box As New BBox3d
|
' recupero origine grezzo
|
||||||
EgtGetBBoxGlob(nBoxLayerId, GDB_BB.STANDARD, b3Box)
|
Dim nrawPartId As Integer = EgtGetRawPartFromPart(nPartId)
|
||||||
' recupero origine grezzo
|
Dim b3Raw As New BBox3d
|
||||||
Dim nrawPartId As Integer = EgtGetRawPartFromPart(nPartId)
|
EgtGetRawPartBBox(nrawPartId, b3Raw)
|
||||||
Dim b3Raw As New BBox3d
|
' calcolo distanza tra origine pezzo e tavolo
|
||||||
EgtGetRawPartBBox(nrawPartId, b3Raw)
|
Dim vtPartRef As New Vector3d(b3Box.Min() - b3Raw.Min())
|
||||||
' calcolo distanza tra origine pezzo e tavolo
|
Return vtPartRef.y
|
||||||
Dim vtPartRef As New Vector3d(b3Box.Min() - b3Raw.Min())
|
|
||||||
m_dPOSY = vtPartRef.y
|
|
||||||
Return vtPartRef.y
|
|
||||||
' altrimenti restituisco valore salvato (per quando viene clickato un BTLPart)
|
|
||||||
Else
|
|
||||||
Return m_dPOSY
|
|
||||||
End If
|
|
||||||
'Return m_dPOSY
|
'Return m_dPOSY
|
||||||
End Get
|
End Get
|
||||||
Set(value As Double)
|
Set(value As Double)
|
||||||
@@ -383,7 +359,7 @@ Public Class PartM
|
|||||||
Protected m_sCALC_MSG As String = String.Empty
|
Protected m_sCALC_MSG As String = String.Empty
|
||||||
Public Property sCALC_MSG As String
|
Public Property sCALC_MSG As String
|
||||||
Get
|
Get
|
||||||
Return MessageFromLuaMsg(m_sCALC_MSG)
|
Return m_sCALC_MSG
|
||||||
End Get
|
End Get
|
||||||
Set(value As String)
|
Set(value As String)
|
||||||
m_sCALC_MSG = value
|
m_sCALC_MSG = value
|
||||||
@@ -480,7 +456,6 @@ Public Class PartM
|
|||||||
EgtGetInfo(nPartId, BTL_PRT_H, NewPartM.m_dBtlH)
|
EgtGetInfo(nPartId, BTL_PRT_H, NewPartM.m_dBtlH)
|
||||||
EgtGetInfo(nPartId, BTL_PRT_CNT, NewPartM.m_nCNT)
|
EgtGetInfo(nPartId, BTL_PRT_CNT, NewPartM.m_nCNT)
|
||||||
EgtGetInfo(nPartId, BTL_PRT_GROUP, NewPartM.m_sGROUP)
|
EgtGetInfo(nPartId, BTL_PRT_GROUP, NewPartM.m_sGROUP)
|
||||||
EgtGetInfo(nPartId, BTL_PRT_STOREY, NewPartM.m_sSTOREY)
|
|
||||||
EgtGetInfo(nPartId, BTL_PRT_MATERIAL, NewPartM.m_sMATERIAL)
|
EgtGetInfo(nPartId, BTL_PRT_MATERIAL, NewPartM.m_sMATERIAL)
|
||||||
Dim nTemp As Integer = 0
|
Dim nTemp As Integer = 0
|
||||||
If Not EgtGetInfo(nPartId, BTL_PRT_ROTATED, nTemp) Then
|
If Not EgtGetInfo(nPartId, BTL_PRT_ROTATED, nTemp) Then
|
||||||
@@ -508,7 +483,7 @@ Public Class PartM
|
|||||||
Index += 1
|
Index += 1
|
||||||
End While
|
End While
|
||||||
If bFound Then
|
If bFound Then
|
||||||
StringToDoubleAdv(sSplitInfo(1), NewPartM.m_dPOSX)
|
StringToDouble(sSplitInfo(1), NewPartM.m_dPOSX)
|
||||||
End If
|
End If
|
||||||
Else
|
Else
|
||||||
' leggo PosX, PosY, Rot e Flip
|
' leggo PosX, PosY, Rot e Flip
|
||||||
|
|||||||
@@ -47,18 +47,6 @@ Public MustInherit Class MyMachGroupPanelVM
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Public ReadOnly Property dDoneTime As String
|
|
||||||
Get
|
|
||||||
Return m_MachGroupVMList.Sum(CType(Function(x As MyMachGroupVM) If(x.nProduction_State >= ItemState.Produced AndAlso Not IsNothing(x.dtEndTime) AndAlso x.dtEndTime <> DateTime.MinValue, (x.dtEndTime - x.dtStartTime).TotalSeconds(), 0), Func(Of MachGroupVM, Double)))
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Public ReadOnly Property sDoneTime As String
|
|
||||||
Get
|
|
||||||
Return TimeSpan.FromSeconds(dDoneTime).ToString()
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Public ReadOnly Property dRemainingTime As String
|
Public ReadOnly Property dRemainingTime As String
|
||||||
Get
|
Get
|
||||||
Return m_MachGroupVMList.Sum(CType(Function(x As MyMachGroupVM) If(x.nProduction_State < ItemState.Produced, x.nCALC_TIME, 0), Func(Of MachGroupVM, Double)))
|
Return m_MachGroupVMList.Sum(CType(Function(x As MyMachGroupVM) If(x.nProduction_State < ItemState.Produced, x.nCALC_TIME, 0), Func(Of MachGroupVM, Double)))
|
||||||
@@ -108,21 +96,6 @@ Public MustInherit Class MyMachGroupPanelVM
|
|||||||
Return True
|
Return True
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Private Sub RedrawModifiedMachGroup(RedrawList As List(Of Integer))
|
|
||||||
For Each nMachGroupId In RedrawList
|
|
||||||
EgtSetCurrMachGroup(nMachGroupId)
|
|
||||||
' elimino vecchio grezzo ed eseguo script creazione nuovo
|
|
||||||
Dim nRawId As Integer = EgtGetFirstRawPart()
|
|
||||||
While nRawId <> GDB_ID.NULL
|
|
||||||
EgtRemovePartFromRawPart(EgtGetFirstPartInRawPart(nRawId))
|
|
||||||
EgtRemoveRawPart(nRawId)
|
|
||||||
nRawId = EgtGetFirstRawPart()
|
|
||||||
End While
|
|
||||||
'If Not ExecBeam(Map.refMainWindowVM.MainWindowM.sTempDir, Map.refMachinePanelVM.SelectedMachine.Name, CalcIntegration.CmdTypes.RAWPART, False) Then Return False
|
|
||||||
|
|
||||||
Next
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
'Public Overrides Sub AddMachGroup()
|
'Public Overrides Sub AddMachGroup()
|
||||||
' Dim MyMachGroupM As MyMachGroupM = m_MyMachGroupPanelM.NewMyMachGroup(CurrentMachine.sMachineName, Map.refProjectVM.BTLStructureVM.nPROJTYPE)
|
' Dim MyMachGroupM As MyMachGroupM = m_MyMachGroupPanelM.NewMyMachGroup(CurrentMachine.sMachineName, Map.refProjectVM.BTLStructureVM.nPROJTYPE)
|
||||||
' ' e lo seleziono
|
' ' e lo seleziono
|
||||||
|
|||||||
@@ -85,13 +85,13 @@ Public MustInherit Class MyMachGroupVM
|
|||||||
|
|
||||||
Public ReadOnly Property dUsage As Double
|
Public ReadOnly Property dUsage As Double
|
||||||
Get
|
Get
|
||||||
Return If(MyMachGroupM.dMatForPart > 0 AndAlso MyMachGroupM.dTotMat > 0, If(nType = BWType.WALL, MyMachGroupM.dMatForPart / MyMachGroupM.dTotMat * 100, MyMachGroupM.dMatForPart / MyMachGroupM.dL * 100), 0)
|
Return If(MyMachGroupM.dMatForPart > 0 AndAlso MyMachGroupM.dTotMat > 0, MyMachGroupM.dMatForPart / MyMachGroupM.dTotMat * 100, 0)
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Public ReadOnly Property dWaste As Double
|
Public ReadOnly Property dWaste As Double
|
||||||
Get
|
Get
|
||||||
Return If(MyMachGroupM.dMatForPart > 0 AndAlso MyMachGroupM.dTotMat > 0, If(nType = BWType.WALL, (MyMachGroupM.dTotMat - MyMachGroupM.dMatForPart) / 1000000000, MyMachGroupM.dL - MyMachGroupM.dTotMat), 0)
|
Return If(MyMachGroupM.dMatForPart > 0 AndAlso MyMachGroupM.dTotMat > 0, (MyMachGroupM.dTotMat - MyMachGroupM.dMatForPart) / MyMachGroupM.dTotMat * 100, 0)
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
@@ -103,7 +103,7 @@ Public MustInherit Class MyMachGroupVM
|
|||||||
|
|
||||||
Public ReadOnly Property sWaste As String
|
Public ReadOnly Property sWaste As String
|
||||||
Get
|
Get
|
||||||
Return LenToString(dWaste, 3)
|
Return DoubleToString(dWaste, 3)
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
@@ -169,7 +169,7 @@ Public MustInherit Class MyMachGroupVM
|
|||||||
Return LenToString(MyMachGroupM.dStartCut, 3)
|
Return LenToString(MyMachGroupM.dStartCut, 3)
|
||||||
End Get
|
End Get
|
||||||
Set(value As String)
|
Set(value As String)
|
||||||
StringToLenAdv(value, MyMachGroupM.dStartCut, True)
|
StringToLen(value, MyMachGroupM.dStartCut)
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
Public Property dStartCut As Double
|
Public Property dStartCut As Double
|
||||||
@@ -481,25 +481,13 @@ Public MustInherit Class MyMachGroupVM
|
|||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Sub UpdateUsage()
|
Public Sub UpdateUsage()
|
||||||
If nType = BWType.BEAM Then
|
MyMachGroupM.SetTotMat(dL * dH * dW)
|
||||||
MyMachGroupM.SetMatForPart(0)
|
MyMachGroupM.SetMatForPart(0)
|
||||||
Dim dPartLength As Double
|
Dim dPartVolume As Double
|
||||||
Dim dPartOffsetLength As Double
|
For Each Part In PartVMList
|
||||||
For Each Part In PartVMList
|
dPartVolume += Part.dVolume
|
||||||
dPartOffsetLength += Part.dL + Part.dOffset
|
Next
|
||||||
dPartLength += Part.dL
|
MyMachGroupM.SetMatForPart(dPartVolume)
|
||||||
Next
|
|
||||||
MyMachGroupM.SetTotMat(dPartOffsetLength)
|
|
||||||
MyMachGroupM.SetMatForPart(dPartLength)
|
|
||||||
Else
|
|
||||||
MyMachGroupM.SetTotMat(dL * dH * dW)
|
|
||||||
MyMachGroupM.SetMatForPart(0)
|
|
||||||
Dim dPartVolume As Double
|
|
||||||
For Each Part In PartVMList
|
|
||||||
dPartVolume += Part.dVolume
|
|
||||||
Next
|
|
||||||
MyMachGroupM.SetMatForPart(dPartVolume)
|
|
||||||
End If
|
|
||||||
NotifyPropertyChanged(NameOf(sUsage))
|
NotifyPropertyChanged(NameOf(sUsage))
|
||||||
NotifyPropertyChanged(NameOf(sWaste))
|
NotifyPropertyChanged(NameOf(sWaste))
|
||||||
End Sub
|
End Sub
|
||||||
@@ -632,17 +620,13 @@ Public MustInherit Class MyMachGroupVM
|
|||||||
Public ReadOnly Property DeleteMachGroup_Command As ICommand
|
Public ReadOnly Property DeleteMachGroup_Command As ICommand
|
||||||
Get
|
Get
|
||||||
If m_cmdDeleteMachGroup Is Nothing Then
|
If m_cmdDeleteMachGroup Is Nothing Then
|
||||||
m_cmdDeleteMachGroup = New Command(AddressOf DeleteMachGroupCmd)
|
m_cmdDeleteMachGroup = New Command(AddressOf DeleteMachGroup)
|
||||||
End If
|
End If
|
||||||
Return m_cmdDeleteMachGroup
|
Return m_cmdDeleteMachGroup
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Public Sub DeleteMachGroupCmd()
|
Public Overridable Sub DeleteMachGroup()
|
||||||
DeleteMachGroup()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Overridable Sub DeleteMachGroup(Optional bMultipleCommand As Boolean = False)
|
|
||||||
' elimino tutte le copie
|
' elimino tutte le copie
|
||||||
Dim nRawPartId As Integer = EgtGetFirstRawPart()
|
Dim nRawPartId As Integer = EgtGetFirstRawPart()
|
||||||
Dim nBeamId As Integer = EgtGetFirstPartInRawPart(nRawPartId)
|
Dim nBeamId As Integer = EgtGetFirstPartInRawPart(nRawPartId)
|
||||||
|
|||||||
@@ -107,7 +107,7 @@ Public MustInherit Class PartVM
|
|||||||
Return LenToString(m_PartM.dPOSX, 3)
|
Return LenToString(m_PartM.dPOSX, 3)
|
||||||
End Get
|
End Get
|
||||||
Set(value As String)
|
Set(value As String)
|
||||||
StringToLenAdv(value, m_PartM.dPOSX, True)
|
StringToLen(value, m_PartM.dPOSX)
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
Public Property dPOSX As Double
|
Public Property dPOSX As Double
|
||||||
@@ -162,18 +162,6 @@ Public MustInherit Class PartVM
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Public ReadOnly Property sSTOREY As String
|
|
||||||
Get
|
|
||||||
Return m_PartM.sSTOREY
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Public ReadOnly Property sGROUP As String
|
|
||||||
Get
|
|
||||||
Return m_PartM.sGROUP
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Public ReadOnly Property dVolume As Double
|
Public ReadOnly Property dVolume As Double
|
||||||
Get
|
Get
|
||||||
Return m_PartM.dVolume
|
Return m_PartM.dVolume
|
||||||
@@ -217,7 +205,7 @@ Public MustInherit Class PartVM
|
|||||||
Return LenToString(m_PartM.dOffset, 3)
|
Return LenToString(m_PartM.dOffset, 3)
|
||||||
End Get
|
End Get
|
||||||
Set(value As String)
|
Set(value As String)
|
||||||
StringToLenAdv(value, m_PartM.dOffset, True)
|
StringToLen(value, m_PartM.dOffset)
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
Public ReadOnly Property dOffset As Double
|
Public ReadOnly Property dOffset As Double
|
||||||
@@ -235,7 +223,7 @@ Public MustInherit Class PartVM
|
|||||||
Return LenToString(m_PartM.dPOSY, 3)
|
Return LenToString(m_PartM.dPOSY, 3)
|
||||||
End Get
|
End Get
|
||||||
Set(value As String)
|
Set(value As String)
|
||||||
StringToLenAdv(value, m_PartM.dPOSY, True)
|
StringToLen(value, m_PartM.dPOSY)
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
@@ -250,7 +238,7 @@ Public MustInherit Class PartVM
|
|||||||
Return LenToString(m_PartM.dROT, 3) & "°"
|
Return LenToString(m_PartM.dROT, 3) & "°"
|
||||||
End Get
|
End Get
|
||||||
Set(value As String)
|
Set(value As String)
|
||||||
StringToLenAdv(value, m_PartM.dROT, True)
|
StringToLen(value, m_PartM.dROT)
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ Imports System.Runtime.InteropServices
|
|||||||
<Assembly: AssemblyDescription("")>
|
<Assembly: AssemblyDescription("")>
|
||||||
<Assembly: AssemblyCompany("Egalware s.r.l.")>
|
<Assembly: AssemblyCompany("Egalware s.r.l.")>
|
||||||
<Assembly: AssemblyProduct("EgtBEAMWALL.Core")>
|
<Assembly: AssemblyProduct("EgtBEAMWALL.Core")>
|
||||||
<Assembly: AssemblyCopyright("Copyright © 2020-2023 by Egalware s.r.l.")>
|
<Assembly: AssemblyCopyright("Copyright © 2020-2022 by Egalware s.r.l.")>
|
||||||
<Assembly: AssemblyTrademark("")>
|
<Assembly: AssemblyTrademark("")>
|
||||||
|
|
||||||
<Assembly: ComVisible(False)>
|
<Assembly: ComVisible(False)>
|
||||||
@@ -35,5 +35,5 @@ Imports System.Runtime.InteropServices
|
|||||||
' by using the '*' as shown below:
|
' by using the '*' as shown below:
|
||||||
' <Assembly: AssemblyVersion("1.0.*")>
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
<Assembly: AssemblyVersion("2.5.5.4")>
|
<Assembly: AssemblyVersion("2.4.2.1")>
|
||||||
<Assembly: AssemblyFileVersion("2.5.5.4")>
|
<Assembly: AssemblyFileVersion("2.4.2.1")>
|
||||||
|
|||||||
@@ -154,7 +154,6 @@
|
|||||||
</ListBox.ItemTemplate>-->
|
</ListBox.ItemTemplate>-->
|
||||||
<DataGrid.RowStyle>
|
<DataGrid.RowStyle>
|
||||||
<Style TargetType="DataGridRow">
|
<Style TargetType="DataGridRow">
|
||||||
<Setter Property="IsEnabled" Value="{Binding bIsEnabled}"/>
|
|
||||||
<EventSetter Event="MouseDoubleClick" Handler="ProjectList_MouseDoubleClick"/>
|
<EventSetter Event="MouseDoubleClick" Handler="ProjectList_MouseDoubleClick"/>
|
||||||
</Style>
|
</Style>
|
||||||
</DataGrid.RowStyle>
|
</DataGrid.RowStyle>
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ Public MustInherit Class OpenProjectFileDialogVM
|
|||||||
' ora setto il valore scelto come Tipo Filtro
|
' ora setto il valore scelto come Tipo Filtro
|
||||||
m_SelSearchColumn = value
|
m_SelSearchColumn = value
|
||||||
Select Case m_SelSearchColumn.Id
|
Select Case m_SelSearchColumn.Id
|
||||||
Case OpenProjFileColumn.ID, OpenProjFileColumn.BTLFILENAME, OpenProjFileColumn.LISTNAME, OpenProjFileColumn.MACHINE
|
Case OpenProjFileColumn.ID, OpenProjFileColumn.BTLFILENAME, OpenProjFileColumn.LISTNAME
|
||||||
SearchText_Visibility = Visibility.Visible
|
SearchText_Visibility = Visibility.Visible
|
||||||
SearchDate_Visibility = Visibility.Collapsed
|
SearchDate_Visibility = Visibility.Collapsed
|
||||||
Case OpenProjFileColumn.EXPORTDATE, OpenProjFileColumn.CREATEDATE
|
Case OpenProjFileColumn.EXPORTDATE, OpenProjFileColumn.CREATEDATE
|
||||||
@@ -168,7 +168,6 @@ Public MustInherit Class OpenProjectFileDialogVM
|
|||||||
LISTNAME = 3
|
LISTNAME = 3
|
||||||
EXPORTDATE = 4
|
EXPORTDATE = 4
|
||||||
CREATEDATE = 5
|
CREATEDATE = 5
|
||||||
MACHINE = 6
|
|
||||||
End Enum
|
End Enum
|
||||||
|
|
||||||
#Region "Messages"
|
#Region "Messages"
|
||||||
@@ -258,8 +257,7 @@ Public MustInherit Class OpenProjectFileDialogVM
|
|||||||
New IdNameStruct(OpenProjFileColumn.BTLFILENAME, BTLFileName_Msg),
|
New IdNameStruct(OpenProjFileColumn.BTLFILENAME, BTLFileName_Msg),
|
||||||
New IdNameStruct(OpenProjFileColumn.LISTNAME, ListName_Msg),
|
New IdNameStruct(OpenProjFileColumn.LISTNAME, ListName_Msg),
|
||||||
New IdNameStruct(OpenProjFileColumn.EXPORTDATE, ExportDate_Msg),
|
New IdNameStruct(OpenProjFileColumn.EXPORTDATE, ExportDate_Msg),
|
||||||
New IdNameStruct(OpenProjFileColumn.CREATEDATE, CreateDate_Msg),
|
New IdNameStruct(OpenProjFileColumn.CREATEDATE, CreateDate_Msg)})
|
||||||
New IdNameStruct(OpenProjFileColumn.MACHINE, Machine_Msg)})
|
|
||||||
ElseIf ProjectType = ProjectType.PROD Then
|
ElseIf ProjectType = ProjectType.PROD Then
|
||||||
' carico le colonne della datagrid
|
' carico le colonne della datagrid
|
||||||
GetPrivateProfileColumns(S_OPENPROJFILEDLG_PROD, ProjectColumns)
|
GetPrivateProfileColumns(S_OPENPROJFILEDLG_PROD, ProjectColumns)
|
||||||
@@ -267,8 +265,7 @@ Public MustInherit Class OpenProjectFileDialogVM
|
|||||||
m_SearchColumnList = New ObservableCollection(Of IdNameStruct)({New IdNameStruct(OpenProjFileColumn.NULL, ""),
|
m_SearchColumnList = New ObservableCollection(Of IdNameStruct)({New IdNameStruct(OpenProjFileColumn.NULL, ""),
|
||||||
New IdNameStruct(OpenProjFileColumn.ID, Id_Msg),
|
New IdNameStruct(OpenProjFileColumn.ID, Id_Msg),
|
||||||
New IdNameStruct(OpenProjFileColumn.BTLFILENAME, BTLFileName_Msg),
|
New IdNameStruct(OpenProjFileColumn.BTLFILENAME, BTLFileName_Msg),
|
||||||
New IdNameStruct(OpenProjFileColumn.CREATEDATE, CreateDate_Msg),
|
New IdNameStruct(OpenProjFileColumn.CREATEDATE, CreateDate_Msg)})
|
||||||
New IdNameStruct(OpenProjFileColumn.MACHINE, Machine_Msg)})
|
|
||||||
End If
|
End If
|
||||||
' setto la visibilità delle colonne delle EgtDataGrid
|
' setto la visibilità delle colonne delle EgtDataGrid
|
||||||
For Each col In ProjectColumns
|
For Each col In ProjectColumns
|
||||||
@@ -278,16 +275,12 @@ Public MustInherit Class OpenProjectFileDialogVM
|
|||||||
|
|
||||||
Friend Function VerifySelected() As Boolean
|
Friend Function VerifySelected() As Boolean
|
||||||
If IsNothing(SelProject) Then Return False
|
If IsNothing(SelProject) Then Return False
|
||||||
Dim AllFilesInDir As IEnumerable(Of String) = Nothing
|
Dim AllFilesInDir As IEnumerable(Of String)
|
||||||
If m_ProjectType = Core.ConstBeam.ProjectType.PROJ Then
|
If m_ProjectType = Core.ConstBeam.ProjectType.PROJ Then
|
||||||
If String.IsNullOrWhiteSpace(SelProject.sProjDirPath) OrElse Not Directory.Exists(SelProject.sProjDirPath) Then Return False
|
|
||||||
' verifico se esiste ProdId
|
' verifico se esiste ProdId
|
||||||
AllFilesInDir = Directory.EnumerateFiles(SelProject.sProjDirPath)
|
AllFilesInDir = IO.Directory.EnumerateFiles(SelProject.sProjDirPath)
|
||||||
ElseIf m_ProjectType = Core.ConstBeam.ProjectType.PROD Then
|
ElseIf m_ProjectType = Core.ConstBeam.ProjectType.PROD Then
|
||||||
If String.IsNullOrWhiteSpace(SelProject.sProdDirPath) OrElse Not Directory.Exists(SelProject.sProdDirPath) Then Return False
|
AllFilesInDir = IO.Directory.EnumerateFiles(SelProject.sProdDirPath)
|
||||||
AllFilesInDir = Directory.EnumerateFiles(SelProject.sProdDirPath)
|
|
||||||
Else
|
|
||||||
Return False
|
|
||||||
End If
|
End If
|
||||||
For Each File In AllFilesInDir
|
For Each File In AllFilesInDir
|
||||||
If Path.GetExtension(File).ToLower() = ".nge" Then
|
If Path.GetExtension(File).ToLower() = ".nge" Then
|
||||||
@@ -307,16 +300,14 @@ Public MustInherit Class OpenProjectFileDialogVM
|
|||||||
If m_SelSearchColumn.Id <> OpenProjFileColumn.NULL AndAlso m_SearchText <> String.Empty AndAlso (
|
If m_SelSearchColumn.Id <> OpenProjFileColumn.NULL AndAlso m_SearchText <> String.Empty AndAlso (
|
||||||
(m_SelSearchColumn.Id = OpenProjFileColumn.ID AndAlso CurrProj.sProjId.ToString.IndexOf(SearchText, StringComparison.InvariantCultureIgnoreCase) < 0) OrElse
|
(m_SelSearchColumn.Id = OpenProjFileColumn.ID AndAlso CurrProj.sProjId.ToString.IndexOf(SearchText, StringComparison.InvariantCultureIgnoreCase) < 0) OrElse
|
||||||
(m_SelSearchColumn.Id = OpenProjFileColumn.BTLFILENAME AndAlso CurrProj.sBTLFileName.IndexOf(SearchText, StringComparison.InvariantCultureIgnoreCase) < 0) OrElse
|
(m_SelSearchColumn.Id = OpenProjFileColumn.BTLFILENAME AndAlso CurrProj.sBTLFileName.IndexOf(SearchText, StringComparison.InvariantCultureIgnoreCase) < 0) OrElse
|
||||||
(m_SelSearchColumn.Id = OpenProjFileColumn.LISTNAME AndAlso CurrProj.sListName.IndexOf(SearchText, StringComparison.InvariantCultureIgnoreCase) < 0) OrElse
|
(m_SelSearchColumn.Id = OpenProjFileColumn.LISTNAME AndAlso CurrProj.sListName.IndexOf(SearchText, StringComparison.InvariantCultureIgnoreCase) < 0)) Then bProjectOk = False
|
||||||
(m_SelSearchColumn.Id = OpenProjFileColumn.MACHINE AndAlso CurrProj.sMachine.IndexOf(SearchText, StringComparison.InvariantCultureIgnoreCase) < 0)) Then bProjectOk = False
|
|
||||||
ElseIf m_ProjectType = ProjectType.PROD Then
|
ElseIf m_ProjectType = ProjectType.PROD Then
|
||||||
Dim CurrProj As ProdFileVM = DirectCast(Proj, ProdFileVM)
|
Dim CurrProj As ProdFileVM = DirectCast(Proj, ProdFileVM)
|
||||||
If m_SelSearchColumn.Id <> OpenProjFileColumn.NULL AndAlso (
|
If m_SelSearchColumn.Id <> OpenProjFileColumn.NULL AndAlso (
|
||||||
(m_SelSearchColumn.Id = OpenProjFileColumn.CREATEDATE AndAlso Not SearchDate.Contains(CurrProj.dtCreateDate.Date))) Then bProjectOk = False
|
(m_SelSearchColumn.Id = OpenProjFileColumn.CREATEDATE AndAlso Not SearchDate.Contains(CurrProj.dtCreateDate.Date))) Then bProjectOk = False
|
||||||
If m_SelSearchColumn.Id <> OpenProjFileColumn.NULL AndAlso m_SearchText <> String.Empty AndAlso (
|
If m_SelSearchColumn.Id <> OpenProjFileColumn.NULL AndAlso m_SearchText <> String.Empty AndAlso (
|
||||||
(m_SelSearchColumn.Id = OpenProjFileColumn.ID AndAlso CurrProj.sProdId.ToString.IndexOf(SearchText, StringComparison.InvariantCultureIgnoreCase) < 0) OrElse
|
(m_SelSearchColumn.Id = OpenProjFileColumn.ID AndAlso CurrProj.sProdId.ToString.IndexOf(SearchText, StringComparison.InvariantCultureIgnoreCase) < 0) OrElse
|
||||||
(m_SelSearchColumn.Id = OpenProjFileColumn.BTLFILENAME AndAlso CurrProj.sBTLFileName.IndexOf(SearchText, StringComparison.InvariantCultureIgnoreCase) < 0) OrElse
|
(m_SelSearchColumn.Id = OpenProjFileColumn.BTLFILENAME AndAlso CurrProj.sBTLFileName.IndexOf(SearchText, StringComparison.InvariantCultureIgnoreCase) < 0)) Then bProjectOk = False
|
||||||
(m_SelSearchColumn.Id = OpenProjFileColumn.MACHINE AndAlso CurrProj.sMachine.IndexOf(SearchText, StringComparison.InvariantCultureIgnoreCase) < 0)) Then bProjectOk = False
|
|
||||||
End If
|
End If
|
||||||
Return bProjectOk
|
Return bProjectOk
|
||||||
End Function
|
End Function
|
||||||
|
|||||||
@@ -10,9 +10,6 @@ Public Class ProdFileM
|
|||||||
Return m_nProjIdList
|
Return m_nProjIdList
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
Public Sub SetProjIdList(value As List(Of Integer))
|
|
||||||
m_nProjIdList = value
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Protected m_sName As String
|
Protected m_sName As String
|
||||||
Public ReadOnly Property sName As String
|
Public ReadOnly Property sName As String
|
||||||
@@ -30,8 +27,7 @@ Public Class ProdFileM
|
|||||||
Return New ProdFileM
|
Return New ProdFileM
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Function CreateProdFileM(nProdId As Integer, nProjIdList As List(Of Integer), dtCreateProjDate As DateTime, sName As String, nType As BWType,
|
Public Shared Function CreateProdFileM(nProdId As Integer, nProjIdList As List(Of Integer), dtCreateProjDate As DateTime, sName As String, nType As BWType, sMachine As String) As ProdFileM
|
||||||
sMachine As String, sLockedBy As String, dtLock As DateTime) As ProdFileM
|
|
||||||
Dim NewProjectFileM As New ProdFileM
|
Dim NewProjectFileM As New ProdFileM
|
||||||
NewProjectFileM.m_nProdId = nProdId
|
NewProjectFileM.m_nProdId = nProdId
|
||||||
NewProjectFileM.m_nProjIdList = nProjIdList
|
NewProjectFileM.m_nProjIdList = nProjIdList
|
||||||
@@ -39,8 +35,6 @@ Public Class ProdFileM
|
|||||||
NewProjectFileM.m_sName = sName
|
NewProjectFileM.m_sName = sName
|
||||||
NewProjectFileM.m_nType = nType
|
NewProjectFileM.m_nType = nType
|
||||||
NewProjectFileM.m_sMachine = sMachine
|
NewProjectFileM.m_sMachine = sMachine
|
||||||
NewProjectFileM.m_sLockedBy = sLockedBy
|
|
||||||
NewProjectFileM.m_dtLock = dtLock
|
|
||||||
Return NewProjectFileM
|
Return NewProjectFileM
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
|
|||||||
@@ -74,26 +74,6 @@ Public Class ProjectFileM
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Protected m_sLockedBy As String
|
|
||||||
Public Property sLockedBy As String
|
|
||||||
Get
|
|
||||||
Return m_sLockedBy
|
|
||||||
End Get
|
|
||||||
Set(value As String)
|
|
||||||
m_sLockedBy = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Protected m_dtLock As DateTime
|
|
||||||
Public Property dtLock As DateTime
|
|
||||||
Get
|
|
||||||
Return m_dtLock
|
|
||||||
End Get
|
|
||||||
Set(value As DateTime)
|
|
||||||
m_dtLock = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
#Region "CONSTRUCTORS"
|
#Region "CONSTRUCTORS"
|
||||||
|
|
||||||
#End Region ' CONSTRUCTORS
|
#End Region ' CONSTRUCTORS
|
||||||
|
|||||||
@@ -147,9 +147,9 @@ Public Module BTLIniFile
|
|||||||
Dim dMin As Double
|
Dim dMin As Double
|
||||||
Dim dMax As Double
|
Dim dMax As Double
|
||||||
Dim dDefault As Double
|
Dim dDefault As Double
|
||||||
StringToDoubleAdv(sBTLParamParams(2), dMin)
|
StringToDouble(sBTLParamParams(2), dMin)
|
||||||
StringToDoubleAdv(sBTLParamParams(3), dMax)
|
StringToDouble(sBTLParamParams(3), dMax)
|
||||||
StringToDoubleAdv(sBTLParamParams(4), dDefault)
|
StringToDouble(sBTLParamParams(4), dDefault)
|
||||||
Dim ParamType As BTLParamType
|
Dim ParamType As BTLParamType
|
||||||
If sBTLParamParams(0) = "d" Then
|
If sBTLParamParams(0) = "d" Then
|
||||||
ParamType = BTLParamType.DOUBLE_
|
ParamType = BTLParamType.DOUBLE_
|
||||||
@@ -159,7 +159,7 @@ Public Module BTLIniFile
|
|||||||
IpBTLParam = BTLParamM.CreateBTLParam(IpParentFeature, IsP, ParamType, sBTLParamParams(1), dMin, dMax, dDefault, sBTLParamParams(5))
|
IpBTLParam = BTLParamM.CreateBTLParam(IpParentFeature, IsP, ParamType, sBTLParamParams(1), dMin, dMax, dDefault, sBTLParamParams(5))
|
||||||
Return Not IsNothing(IpBTLParam)
|
Return Not IsNothing(IpBTLParam)
|
||||||
ElseIf sBTLParamParams(0) = "s" Then
|
ElseIf sBTLParamParams(0) = "s" Then
|
||||||
IpBTLParam = BTLParamM.CreateBTLParam(IpParentFeature, IsP, BTLParamType.STRING_, sBTLParamParams(1), sBTLParamParams(4), sBTLParamParams(5))
|
IpBTLParam = BTLParamM.CreateBTLParam(IpParentFeature, IsP, BTLParamType.STRING_, sBTLParamParams(1), sBTLParamParams(5))
|
||||||
Return Not IsNothing(IpBTLParam)
|
Return Not IsNothing(IpBTLParam)
|
||||||
ElseIf sBTLParamParams(0) = "c" Then
|
ElseIf sBTLParamParams(0) = "c" Then
|
||||||
Dim nMin As Integer
|
Dim nMin As Integer
|
||||||
@@ -200,9 +200,9 @@ Public Module BTLIniFile
|
|||||||
Dim dMin As Double
|
Dim dMin As Double
|
||||||
Dim dMax As Double
|
Dim dMax As Double
|
||||||
Dim dDefault As Double
|
Dim dDefault As Double
|
||||||
StringToDoubleAdv(sBTLParamParams(2), dMin)
|
StringToDouble(sBTLParamParams(2), dMin)
|
||||||
StringToDoubleAdv(sBTLParamParams(3), dMax)
|
StringToDouble(sBTLParamParams(3), dMax)
|
||||||
StringToDoubleAdv(sBTLParamParams(4), dDefault)
|
StringToDouble(sBTLParamParams(4), dDefault)
|
||||||
Dim ParamType As BTLParamType
|
Dim ParamType As BTLParamType
|
||||||
If sBTLParamParams(0) = "d" Then
|
If sBTLParamParams(0) = "d" Then
|
||||||
ParamType = BTLParamType.DOUBLE_
|
ParamType = BTLParamType.DOUBLE_
|
||||||
@@ -212,7 +212,7 @@ Public Module BTLIniFile
|
|||||||
IpBTLParam = BTLParamM.CreateBTLParam(IpParentFeature, IsP, ParamType, sBTLParamParams(1), dMin, dMax, dDefault, sBTLParamParams(5), sBWQParam)
|
IpBTLParam = BTLParamM.CreateBTLParam(IpParentFeature, IsP, ParamType, sBTLParamParams(1), dMin, dMax, dDefault, sBTLParamParams(5), sBWQParam)
|
||||||
Return Not IsNothing(IpBTLParam)
|
Return Not IsNothing(IpBTLParam)
|
||||||
ElseIf sBTLParamParams(0) = "s" Then
|
ElseIf sBTLParamParams(0) = "s" Then
|
||||||
IpBTLParam = BTLParamM.CreateBTLParam(IpParentFeature, IsP, BTLParamType.STRING_, sBTLParamParams(1), sBTLParamParams(4), sBTLParamParams(5), sBWQParam)
|
IpBTLParam = BTLParamM.CreateBTLParam(IpParentFeature, IsP, BTLParamType.STRING_, sBTLParamParams(1), sBTLParamParams(5), sBWQParam)
|
||||||
Return Not IsNothing(IpBTLParam)
|
Return Not IsNothing(IpBTLParam)
|
||||||
ElseIf sBTLParamParams(0) = "c" Then
|
ElseIf sBTLParamParams(0) = "c" Then
|
||||||
Dim nMin As Integer
|
Dim nMin As Integer
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ Public Module DimensionsIniFile
|
|||||||
Dim GridLenType As GridUnitType
|
Dim GridLenType As GridUnitType
|
||||||
Integer.TryParse(sValueParams(0), nDimIndex)
|
Integer.TryParse(sValueParams(0), nDimIndex)
|
||||||
Integer.TryParse(sValueParams(1), nDimType)
|
Integer.TryParse(sValueParams(1), nDimType)
|
||||||
StringToDoubleAdv(sValueParams(2), GridLenValue)
|
StringToDouble(sValueParams(2), GridLenValue)
|
||||||
Integer.TryParse(sValueParams(3), GridLenType)
|
Integer.TryParse(sValueParams(3), GridLenType)
|
||||||
GridDimsList.Add(New GridDimension(GridName, nDimIndex, nDimType, New GridLength(GridLenValue, GridLenType)))
|
GridDimsList.Add(New GridDimension(GridName, nDimIndex, nDimType, New GridLength(GridLenValue, GridLenType)))
|
||||||
End If
|
End If
|
||||||
|
|||||||
@@ -58,11 +58,6 @@ Public Enum StatusMapOpType
|
|||||||
SupervisorReleaseStop = 11
|
SupervisorReleaseStop = 11
|
||||||
ResetPartStart = 12
|
ResetPartStart = 12
|
||||||
ResetPartEnd = 13
|
ResetPartEnd = 13
|
||||||
SetPartScrapped = 14
|
|
||||||
ChangeProdInSupervisorRequest = 15
|
|
||||||
ChangeProdInProdRequest = 16
|
|
||||||
OpenPageInViewOptimRequest = 17
|
|
||||||
MachGroupValidationUpdate = 18
|
|
||||||
End Enum
|
End Enum
|
||||||
|
|
||||||
Public Enum DimensionType
|
Public Enum DimensionType
|
||||||
|
|||||||
@@ -6,8 +6,6 @@ Imports EgtWPFLib5
|
|||||||
Public Class GridDimension
|
Public Class GridDimension
|
||||||
Inherits VMBase
|
Inherits VMBase
|
||||||
|
|
||||||
Private Shared m_SoftwareModActive As Boolean = False
|
|
||||||
|
|
||||||
Private Property m_GridName As String
|
Private Property m_GridName As String
|
||||||
Public Property GridName As String
|
Public Property GridName As String
|
||||||
Get
|
Get
|
||||||
@@ -45,7 +43,7 @@ Public Class GridDimension
|
|||||||
End Get
|
End Get
|
||||||
Set(value As GridLength)
|
Set(value As GridLength)
|
||||||
m_GridLen = value
|
m_GridLen = value
|
||||||
If Not m_SoftwareModActive Then DimensionsIniFile.SaveGridDimensions(GridName, GridDimensions)
|
DimensionsIniFile.SaveGridDimensions(GridName, GridDimensions)
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
@@ -66,8 +64,4 @@ Public Class GridDimension
|
|||||||
m_GridLen = GridLen
|
m_GridLen = GridLen
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Shared Sub SetSoftwareMod(bActive As Boolean)
|
|
||||||
m_SoftwareModActive = bActive
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -1,31 +0,0 @@
|
|||||||
Imports EgtUILib
|
|
||||||
|
|
||||||
Public Module LuaMsgManager
|
|
||||||
|
|
||||||
Public Function MessageFromLuaMsg(LuaMsg As String) As String
|
|
||||||
' verifico se inizia con $$
|
|
||||||
If Not String.IsNullOrWhiteSpace(LuaMsg) AndAlso LuaMsg.Length >= 2 AndAlso LuaMsg.Substring(0, 2) = "$$" Then
|
|
||||||
Dim sMsgArgs() As String = LuaMsg.Substring(2).Split(",")
|
|
||||||
Dim nMsg As Integer = -1
|
|
||||||
If sMsgArgs.Count > 1 AndAlso Integer.TryParse(sMsgArgs(0), nMsg) AndAlso nMsg > 0 Then
|
|
||||||
If sMsgArgs.Count > 1 Then
|
|
||||||
Dim sArgs() As String = sMsgArgs.Skip(1).ToArray()
|
|
||||||
Dim sMsg As String = String.Format(EgtMsg(65000 + nMsg), sArgs)
|
|
||||||
If Not String.IsNullOrWhiteSpace(sMsg) Then
|
|
||||||
Return sMsg
|
|
||||||
Else
|
|
||||||
Return EgtMsg(65000 + nMsg)
|
|
||||||
End If
|
|
||||||
Else
|
|
||||||
Return EgtMsg(65000 + nMsg)
|
|
||||||
End If
|
|
||||||
Else
|
|
||||||
Return LuaMsg
|
|
||||||
End If
|
|
||||||
Else
|
|
||||||
Return LuaMsg
|
|
||||||
End If
|
|
||||||
Return ""
|
|
||||||
End Function
|
|
||||||
|
|
||||||
End Module
|
|
||||||
@@ -2,19 +2,6 @@
|
|||||||
|
|
||||||
#Region "Private Fields"
|
#Region "Private Fields"
|
||||||
|
|
||||||
Public Enum MachLogTypes
|
|
||||||
PART_STATUS = 1
|
|
||||||
MACHGROUP_STATUS = 2
|
|
||||||
MACHINE_MODE = 3
|
|
||||||
MACHINE_STATUS = 4
|
|
||||||
MACHINE_COMMAND = 5
|
|
||||||
READ_VAR = 6
|
|
||||||
WRITE_VAR = 7
|
|
||||||
ALARM = 8
|
|
||||||
OPERATOR_MSG = 9
|
|
||||||
PROGRAM_SEND = 10
|
|
||||||
End Enum
|
|
||||||
|
|
||||||
Private m_AlarmCode As String
|
Private m_AlarmCode As String
|
||||||
Private m_AlarmDateTime As DateTime
|
Private m_AlarmDateTime As DateTime
|
||||||
Private m_AlarmMessage As String
|
Private m_AlarmMessage As String
|
||||||
@@ -24,74 +11,15 @@
|
|||||||
Private m_CommandState As CommandStates
|
Private m_CommandState As CommandStates
|
||||||
Private m_CommandType As LogCommandTypes
|
Private m_CommandType As LogCommandTypes
|
||||||
Private m_Description As String
|
Private m_Description As String
|
||||||
|
|
||||||
Private m_newOpState As Integer
|
Private m_newOpState As Integer
|
||||||
|
|
||||||
Private m_ResultType As ResultTypes
|
Private m_ResultType As ResultTypes
|
||||||
|
|
||||||
Private m_VarAddress As String
|
Private m_VarAddress As String
|
||||||
|
|
||||||
Private m_VarValue As String
|
Private m_VarValue As String
|
||||||
|
|
||||||
' variabili del log macchina
|
|
||||||
Public ReadOnly Property EventType As MachLogTypes
|
|
||||||
Get
|
|
||||||
Return m_ResultType
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
Public ReadOnly Property EventDateTime As DateTime
|
|
||||||
Get
|
|
||||||
Return m_AlarmDateTime
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
Public ReadOnly Property EventValue As String
|
|
||||||
Get
|
|
||||||
Return m_VarValue
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Public ReadOnly Property sEventType As String
|
|
||||||
Get
|
|
||||||
Select Case m_ResultType
|
|
||||||
Case MachLogTypes.PART_STATUS
|
|
||||||
Return String.Format("({0}) Stato pezzo", 1)
|
|
||||||
Case MachLogTypes.MACHGROUP_STATUS
|
|
||||||
Return String.Format("({0}) Stato barra", 2)
|
|
||||||
Case MachLogTypes.MACHINE_MODE = 3
|
|
||||||
Return String.Format("({0}) Modalità macchina", 3)
|
|
||||||
Case MachLogTypes.MACHINE_STATUS = 4
|
|
||||||
Return String.Format("({0}) Stato macchina", 4)
|
|
||||||
Case MachLogTypes.MACHINE_COMMAND = 5
|
|
||||||
Return String.Format("({0}) Comando macchina", 5)
|
|
||||||
Case MachLogTypes.READ_VAR = 6
|
|
||||||
Return String.Format("({0}) Lettura variabile", 6)
|
|
||||||
Case MachLogTypes.WRITE_VAR = 7
|
|
||||||
Return String.Format("({0}) Scrittura variabile", 7)
|
|
||||||
Case MachLogTypes.ALARM = 8
|
|
||||||
Return String.Format("({0}) Allarme", 8)
|
|
||||||
Case MachLogTypes.OPERATOR_MSG = 9
|
|
||||||
Return String.Format("({0}) Messaggio opertore", 9)
|
|
||||||
Case MachLogTypes.PROGRAM_SEND = 10
|
|
||||||
Return String.Format("({0}) Invio programma", 10)
|
|
||||||
Case Else
|
|
||||||
Return "Altro"
|
|
||||||
End Select
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
Public ReadOnly Property sEventDateTime As String
|
|
||||||
Get
|
|
||||||
Return m_AlarmDateTime
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
Public ReadOnly Property sEventValue As String
|
|
||||||
Get
|
|
||||||
Return m_VarValue
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Public ReadOnly Property sPROD As String
|
|
||||||
Get
|
|
||||||
|
|
||||||
Return m_VarValue
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
#End Region
|
#End Region
|
||||||
|
|
||||||
#Region "Protected Constructors"
|
#Region "Protected Constructors"
|
||||||
@@ -237,20 +165,11 @@
|
|||||||
Return NewMachLog
|
Return NewMachLog
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Function CreateMachLog(EventType As MachLogTypes, EventDateTime As DateTime, Value As String, SupervisorID As String)
|
|
||||||
Dim NewMachEvent As New MachLog
|
|
||||||
NewMachEvent.m_ResultType = EventType
|
|
||||||
NewMachEvent.m_AlarmDateTime = EventDateTime
|
|
||||||
NewMachEvent.m_VarValue = Value
|
|
||||||
NewMachEvent.m_VarAddress = SupervisorID
|
|
||||||
Return NewMachEvent
|
|
||||||
End Function
|
|
||||||
|
|
||||||
#End Region
|
#End Region
|
||||||
|
|
||||||
#Region "Public Methods"
|
#Region "Public Methods"
|
||||||
|
|
||||||
Public Shared Function CreateMachLog(AlarmCode As String, AlarmDateTime As Date, AlarmMessage As String, AlarmOperation As Integer, AlarmType As Integer, CommandExecutedCorrectly As Boolean, CommandState As CommandStates, CommandType As LogCommandTypes, Description As String, newOpState As Integer, ResultType As ResultTypes, VarAddress As String, VarValue As String) As MachLog
|
Public Shared Function CreateMacLog(AlarmCode As String, AlarmDateTime As Date, AlarmMessage As String, AlarmOperation As Integer, AlarmType As Integer, CommandExecutedCorrectly As Boolean, CommandState As CommandStates, CommandType As LogCommandTypes, Description As String, newOpState As Integer, ResultType As ResultTypes, VarAddress As String, VarValue As String) As MachLog
|
||||||
|
|
||||||
Dim NewMachLog As New MachLog
|
Dim NewMachLog As New MachLog
|
||||||
NewMachLog.m_AlarmCode = AlarmCode
|
NewMachLog.m_AlarmCode = AlarmCode
|
||||||
|
|||||||
@@ -15,80 +15,80 @@ Public Class ViewPanelVM
|
|||||||
' Posizione vista
|
' Posizione vista
|
||||||
Private Shared m_nViewDir As VT = VT.ISO_SW
|
Private Shared m_nViewDir As VT = VT.ISO_SW
|
||||||
|
|
||||||
Public Shared Sub BWSetView(nView As VT, Optional bRedraw As Boolean = True)
|
Public Shared Function BWSetView(nView As VT, Optional bRedraw As Boolean = True)
|
||||||
' condizioni che cambiano la vista del progetto
|
' condizioni che cambiano la vista del progetto
|
||||||
'Select Case m_Type
|
Select Case m_Type
|
||||||
' Case BWType.BEAM
|
Case BWType.BEAM
|
||||||
' Select Case nView
|
Select Case nView
|
||||||
' Case VT.TOP
|
Case VT.TOP
|
||||||
' EgtSetView(VT.TOP, bRedraw)
|
EgtSetView(VT.TOP, bRedraw)
|
||||||
' Case VT.FRONT
|
Case VT.FRONT
|
||||||
' EgtSetView(VT.FRONT, bRedraw)
|
EgtSetView(VT.FRONT, bRedraw)
|
||||||
' Case VT.BACK
|
Case VT.BACK
|
||||||
' EgtSetView(VT.BACK, bRedraw)
|
EgtSetView(VT.BACK, bRedraw)
|
||||||
' Case VT.RIGHT
|
Case VT.RIGHT
|
||||||
' EgtSetView(VT.RIGHT, bRedraw)
|
EgtSetView(VT.RIGHT, bRedraw)
|
||||||
' Case VT.LEFT
|
Case VT.LEFT
|
||||||
' EgtSetView(VT.LEFT, bRedraw)
|
EgtSetView(VT.LEFT, bRedraw)
|
||||||
' Case VT.ISO_SW
|
Case VT.ISO_SW
|
||||||
' EgtSetView(VT.ISO_SW, bRedraw)
|
EgtSetView(VT.ISO_SW, bRedraw)
|
||||||
' Case Else ' VT.ISO_SW
|
Case Else ' VT.ISO_SW
|
||||||
' EgtSetView(VT.ISO_SW, bRedraw)
|
EgtSetView(VT.ISO_SW, bRedraw)
|
||||||
' End Select
|
|
||||||
' Case BWType.WALL
|
|
||||||
Select Case nView
|
|
||||||
Case VT.TOP
|
|
||||||
Select Case m_nViewDir
|
|
||||||
Case VT.ISO_SW, VT.ISO_SE
|
|
||||||
EgtSetGenericView(0, -90, bRedraw) ' equivalente a vista TOP
|
|
||||||
Case VT.ISO_NW, VT.ISO_NE
|
|
||||||
EgtSetGenericView(0, 90, bRedraw) ' equivalente a vista TOP ruotata di 180 su Z
|
|
||||||
End Select
|
End Select
|
||||||
Case VT.FRONT
|
Case BWType.WALL
|
||||||
Select Case m_nViewDir
|
Select Case nView
|
||||||
Case VT.ISO_SW, VT.ISO_SE
|
Case VT.TOP
|
||||||
EgtSetGenericView(90, -90, bRedraw) ' equivalente a vista FRONT
|
Select Case m_nViewDir
|
||||||
Case VT.ISO_NW, VT.ISO_NE
|
Case VT.ISO_SW, VT.ISO_SE
|
||||||
EgtSetGenericView(90, 90, bRedraw) ' equivalente a vista FRONT ruotata di 180 su Z
|
EgtSetGenericView(0, -90, bRedraw) ' equivalente a vista TOP
|
||||||
End Select
|
Case VT.ISO_NW, VT.ISO_NE
|
||||||
Case VT.BACK
|
EgtSetGenericView(0, 90, bRedraw) ' equivalente a vista TOP ruotata di 180 su Z
|
||||||
Select Case m_nViewDir
|
End Select
|
||||||
Case VT.ISO_SW, VT.ISO_SE
|
Case VT.FRONT
|
||||||
EgtSetGenericView(-90, -90, bRedraw) ' equivalente a vista BACK
|
Select Case m_nViewDir
|
||||||
Case VT.ISO_NW, VT.ISO_NE
|
Case VT.ISO_SW, VT.ISO_SE
|
||||||
EgtSetGenericView(-90, 90, bRedraw) ' equivalente a vista BACK ruotata di 180 su Z
|
EgtSetGenericView(90, -90, bRedraw) ' equivalente a vista FRONT
|
||||||
End Select
|
Case VT.ISO_NW, VT.ISO_NE
|
||||||
Case VT.RIGHT
|
EgtSetGenericView(90, 90, bRedraw) ' equivalente a vista FRONT ruotata di 180 su Z
|
||||||
Select Case m_nViewDir
|
End Select
|
||||||
Case VT.ISO_SW, VT.ISO_SE
|
Case VT.BACK
|
||||||
EgtSetGenericView(90, 0, bRedraw) ' equivalente a vista RIGHT
|
Select Case m_nViewDir
|
||||||
Case VT.ISO_NW, VT.ISO_NE
|
Case VT.ISO_SW, VT.ISO_SE
|
||||||
EgtSetGenericView(-90, 0, bRedraw) ' equivalente a vista RIGHT ruotata di 180 su Z
|
EgtSetGenericView(-90, -90, bRedraw) ' equivalente a vista BACK
|
||||||
End Select
|
Case VT.ISO_NW, VT.ISO_NE
|
||||||
Case VT.LEFT
|
EgtSetGenericView(-90, 90, bRedraw) ' equivalente a vista BACK ruotata di 180 su Z
|
||||||
Select Case m_nViewDir
|
End Select
|
||||||
Case VT.ISO_SW, VT.ISO_SE
|
Case VT.RIGHT
|
||||||
EgtSetGenericView(-90, 0, bRedraw) ' equivalente a vista LEFT
|
Select Case m_nViewDir
|
||||||
Case VT.ISO_NW, VT.ISO_NE
|
Case VT.ISO_SW, VT.ISO_SE
|
||||||
EgtSetGenericView(90, 0, bRedraw) ' equivalente a vista LEFT ruotata di 180 su Z
|
EgtSetGenericView(90, 0, bRedraw) ' equivalente a vista RIGHT
|
||||||
End Select
|
Case VT.ISO_NW, VT.ISO_NE
|
||||||
Case VT.ISO_SW
|
EgtSetGenericView(-90, 0, bRedraw) ' equivalente a vista RIGHT ruotata di 180 su Z
|
||||||
Select Case m_nViewDir
|
End Select
|
||||||
Case VT.ISO_SW, VT.ISO_SE
|
Case VT.LEFT
|
||||||
EgtSetGenericView(60, 225, bRedraw) ' equivalente a vista ISO_SW
|
Select Case m_nViewDir
|
||||||
Case VT.ISO_NW, VT.ISO_NE
|
Case VT.ISO_SW, VT.ISO_SE
|
||||||
EgtSetGenericView(60, 45, bRedraw) ' equivalente a vista ISO_SW ruotata di 180 su Z
|
EgtSetGenericView(-90, 0, bRedraw) ' equivalente a vista LEFT
|
||||||
End Select
|
Case VT.ISO_NW, VT.ISO_NE
|
||||||
Case Else ' VT.ISO_SW
|
EgtSetGenericView(90, 0, bRedraw) ' equivalente a vista LEFT ruotata di 180 su Z
|
||||||
Select Case m_nViewDir
|
End Select
|
||||||
Case VT.ISO_SW, VT.ISO_SE
|
Case VT.ISO_SW
|
||||||
EgtSetGenericView(60, 225, bRedraw) ' equivalente a vista ISO_SW
|
Select Case m_nViewDir
|
||||||
Case VT.ISO_NW, VT.ISO_NE
|
Case VT.ISO_SW, VT.ISO_SE
|
||||||
EgtSetGenericView(60, 45, bRedraw) ' equivalente a vista ISO_SW ruotata di 180 su Z
|
EgtSetGenericView(60, 225, bRedraw) ' equivalente a vista ISO_SW
|
||||||
|
Case VT.ISO_NW, VT.ISO_NE
|
||||||
|
EgtSetGenericView(60, 45, bRedraw) ' equivalente a vista ISO_SW ruotata di 180 su Z
|
||||||
|
End Select
|
||||||
|
Case Else ' VT.ISO_SW
|
||||||
|
Select Case m_nViewDir
|
||||||
|
Case VT.ISO_SW, VT.ISO_SE
|
||||||
|
EgtSetGenericView(60, 225, bRedraw) ' equivalente a vista ISO_SW
|
||||||
|
Case VT.ISO_NW, VT.ISO_NE
|
||||||
|
EgtSetGenericView(60, 45, bRedraw) ' equivalente a vista ISO_SW ruotata di 180 su Z
|
||||||
|
End Select
|
||||||
End Select
|
End Select
|
||||||
End Select
|
End Select
|
||||||
'End Select
|
End Function
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Shared Sub UpdateMachParam(ViewDir As VT)
|
Public Shared Sub UpdateMachParam(ViewDir As VT)
|
||||||
m_nViewDir = ViewDir
|
m_nViewDir = ViewDir
|
||||||
|
|||||||
@@ -1,21 +1,26 @@
|
|||||||
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
using System;
|
||||||
using EgtBEAMWALL.DataLayer.Migrations;
|
using System.Collections.Generic;
|
||||||
using MySql.Data.EntityFramework;
|
|
||||||
using System;
|
|
||||||
using System.Data.Entity;
|
using System.Data.Entity;
|
||||||
using System.Data.Entity.Migrations;
|
using System.Data.Entity.Migrations;
|
||||||
|
using MySql.Data.Entity;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
||||||
|
using EgtBEAMWALL.DataLayer.Migrations;
|
||||||
using System.ServiceProcess;
|
using System.ServiceProcess;
|
||||||
|
using System.IO;
|
||||||
|
using System.Data.Entity.Infrastructure;
|
||||||
|
|
||||||
namespace EgtBEAMWALL.DataLayer
|
namespace EgtBEAMWALL.DataLayer
|
||||||
{
|
{
|
||||||
[DbConfigurationType(typeof(MySqlEFConfiguration))]
|
[DbConfigurationType(typeof(MySqlEFConfiguration))]
|
||||||
|
//[DbConfigurationType(typeof(aMySqlConfiguration))]
|
||||||
public class AdminContext : DbContext
|
public class AdminContext : DbContext
|
||||||
{
|
{
|
||||||
#region Public Constructors
|
#region Public Constructors
|
||||||
|
|
||||||
[Obsolete("This constructor should never be used directly, and is only needed to generate entityframework stuff. Connection string can be adapted as pleased.")]
|
[Obsolete("This constructor should never be used directly, and is only needed to generate entityframework stuff. Connection string can be adapted as pleased.")]
|
||||||
public AdminContext() : base(DbConfig.ADMIN_CONNECTION_STRING)
|
public AdminContext() : base("DefaultConnection")
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -33,67 +38,5 @@ namespace EgtBEAMWALL.DataLayer
|
|||||||
public DbSet<UserPriv> UserList { get; set; }
|
public DbSet<UserPriv> UserList { get; set; }
|
||||||
|
|
||||||
#endregion Public Properties
|
#endregion Public Properties
|
||||||
|
|
||||||
#region Public Methods
|
|
||||||
|
|
||||||
public bool SetUpDbConnectionAndDbConfig()
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
String serviceName = getDbServiceName();
|
|
||||||
if (serviceName.Equals(""))
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
ServiceController service = new ServiceController(serviceName);
|
|
||||||
try
|
|
||||||
{
|
|
||||||
TimeSpan timeout = TimeSpan.FromSeconds(DbConfig.DATABASE_PROCESS_TIMEOUT);
|
|
||||||
service.WaitForStatus(ServiceControllerStatus.Running, timeout);
|
|
||||||
}
|
|
||||||
catch (Exception)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
//Database.SetInitializer<DatabaseContext>(null);
|
|
||||||
Database.SetInitializer(new MigrateDatabaseToLatestVersion<DatabaseContext, Configuration>());
|
|
||||||
var migrator = new DbMigrator(new Configuration());
|
|
||||||
|
|
||||||
if (migrator.GetPendingMigrations().Any())
|
|
||||||
{
|
|
||||||
// Run migrations and seed.
|
|
||||||
migrator.Update();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (Exception exc)
|
|
||||||
{
|
|
||||||
Console.WriteLine(exc.ToString());
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion Public Methods
|
|
||||||
|
|
||||||
#region Private Methods
|
|
||||||
|
|
||||||
private static string getDbServiceName()
|
|
||||||
{
|
|
||||||
ServiceController[] services = ServiceController.GetServices();
|
|
||||||
var service = services.FirstOrDefault(s => s.ServiceName == "MariaDB");
|
|
||||||
if (service != null)
|
|
||||||
return service.DisplayName;
|
|
||||||
|
|
||||||
service = services.FirstOrDefault(s => s.ServiceName == "MySQL");
|
|
||||||
if (service != null)
|
|
||||||
return service.DisplayName;
|
|
||||||
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion Private Methods
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,49 +1,29 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<configuration>
|
<configuration>
|
||||||
<configSections>
|
<configSections>
|
||||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
||||||
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
||||||
</configSections>
|
</configSections>
|
||||||
<entityFramework>
|
<entityFramework>
|
||||||
<!--<defaultConnectionFactory type="MySql.Data.Entity.MySqlConnectionFactory, MySql.Data.EntityFramework" />-->
|
<defaultConnectionFactory type="MySql.Data.Entity.MySqlConnectionFactory, MySql.Data.Entity.EF6" />
|
||||||
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework"/>
|
<providers>
|
||||||
<providers>
|
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
||||||
<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.EntityFramework, Version=8.0.21.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d">
|
<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6, Version=6.10.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
|
||||||
</provider>
|
</providers>
|
||||||
</providers>
|
</entityFramework>
|
||||||
</entityFramework>
|
<connectionStrings>
|
||||||
<connectionStrings>
|
<add name="DefaultConnection" connectionString="server=localhost;port=3306;User Id=EgtUser;password=viacremasca;Persist Security Info=True;database=EgtBwDb;SslMode=none" providerName="MySql.Data.MySqlClient" />
|
||||||
<add name="DefaultConnection" connectionString="server=localhost;port=3306;User Id=steamware;password=Egalware_24068!;Persist Security Info=True;database=EgtBwDb_000470;SslMode=none" providerName="MySql.Data.MySqlClient" />
|
</connectionStrings>
|
||||||
</connectionStrings>
|
<runtime>
|
||||||
<runtime>
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<dependentAssembly>
|
||||||
<dependentAssembly>
|
<assemblyIdentity name="MySql.Data" publicKeyToken="c5687fc88969c44d" culture="neutral" />
|
||||||
<assemblyIdentity name="MySql.Data" publicKeyToken="c5687fc88969c44d" culture="neutral" />
|
<bindingRedirect oldVersion="0.0.0.0-6.10.9.0" newVersion="6.10.9.0" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-8.0.21.0" newVersion="8.0.21.0" />
|
</dependentAssembly>
|
||||||
</dependentAssembly>
|
</assemblyBinding>
|
||||||
<dependentAssembly>
|
</runtime>
|
||||||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
|
||||||
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
|
<startup>
|
||||||
</dependentAssembly>
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
<dependentAssembly>
|
</startup>
|
||||||
<assemblyIdentity name="Google.Protobuf" publicKeyToken="a7d26565bac4d604" culture="neutral" />
|
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.21.9.0" newVersion="3.21.9.0" />
|
|
||||||
</dependentAssembly>
|
|
||||||
<dependentAssembly>
|
|
||||||
<assemblyIdentity name="K4os.Compression.LZ4.Streams" publicKeyToken="2186fa9121ef231d" culture="neutral" />
|
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.3.5.0" newVersion="1.3.5.0" />
|
|
||||||
</dependentAssembly>
|
|
||||||
<dependentAssembly>
|
|
||||||
<assemblyIdentity name="BouncyCastle.Crypto" publicKeyToken="0e99375e54769942" culture="neutral" />
|
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.9.0.0" newVersion="1.9.0.0" />
|
|
||||||
</dependentAssembly>
|
|
||||||
<dependentAssembly>
|
|
||||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
|
|
||||||
</dependentAssembly>
|
|
||||||
</assemblyBinding>
|
|
||||||
</runtime>
|
|
||||||
<startup>
|
|
||||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
|
||||||
</startup>
|
|
||||||
</configuration>
|
</configuration>
|
||||||
@@ -1,17 +1,25 @@
|
|||||||
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
using System;
|
||||||
using NLog;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
||||||
|
|
||||||
namespace EgtBEAMWALL.DataLayer.Controllers
|
namespace EgtBEAMWALL.DataLayer.Controllers
|
||||||
{
|
{
|
||||||
public class BTLPartController : IDisposable
|
public class BTLPartController : IDisposable
|
||||||
{
|
{
|
||||||
|
#region Private Fields
|
||||||
|
|
||||||
|
private DatabaseContext dbCtx;
|
||||||
|
|
||||||
|
#endregion Private Fields
|
||||||
|
|
||||||
#region Public Constructors
|
#region Public Constructors
|
||||||
|
|
||||||
public BTLPartController()
|
public BTLPartController()
|
||||||
{
|
{
|
||||||
|
// Initialize database context
|
||||||
|
dbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion Public Constructors
|
#endregion Public Constructors
|
||||||
@@ -24,7 +32,7 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <param name="corePart"></param>
|
/// <param name="corePart"></param>
|
||||||
/// <param name="currProjDbId"></param>
|
/// <param name="currProjDbId"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public BTLPartModel ConvertFromCore(Core.BTLPartM corePart, int currProjDbId)
|
public static BTLPartModel ConvertFromCore(Core.BTLPartM corePart, int currProjDbId)
|
||||||
{
|
{
|
||||||
BTLPartModel answ = new BTLPartModel();
|
BTLPartModel answ = new BTLPartModel();
|
||||||
if (corePart != null)
|
if (corePart != null)
|
||||||
@@ -97,19 +105,15 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
// Add to database
|
||||||
{
|
dbCtx.BTLPartList.AddRange(partData);
|
||||||
// Add to database
|
// Commit changes
|
||||||
localDbCtx.BTLPartList.AddRange(partData);
|
dbCtx.SaveChanges();
|
||||||
// Commit changes
|
ResetController();
|
||||||
localDbCtx.SaveChanges();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on BTLPart.Create: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on Create: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
return partData;
|
return partData;
|
||||||
}
|
}
|
||||||
@@ -143,19 +147,15 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
// Add to database
|
||||||
{
|
dbCtx.BTLPartList.AddRange(partData);
|
||||||
// Add to database
|
// Commit changes
|
||||||
localDbCtx.BTLPartList.AddRange(partData);
|
dbCtx.SaveChanges();
|
||||||
// Commit changes
|
ResetController();
|
||||||
localDbCtx.SaveChanges();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on BTLPart.CreateBaseObj: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on CreateBaseObj: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return partData;
|
return partData;
|
||||||
@@ -169,26 +169,22 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public bool Delete(int PartDbId)
|
public bool Delete(int PartDbId)
|
||||||
{
|
{
|
||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
var item2del = dbCtx
|
||||||
{
|
|
||||||
var item2del = localDbCtx
|
|
||||||
.BTLPartList
|
.BTLPartList
|
||||||
.Where(x => x.BTLPartDbId == PartDbId)
|
.Where(x => x.BTLPartDbId == PartDbId)
|
||||||
.SingleOrDefault();
|
.SingleOrDefault();
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// Add to database
|
// Add to database
|
||||||
localDbCtx.BTLPartList.Remove(item2del);
|
dbCtx.BTLPartList.Remove(item2del);
|
||||||
// Commit changes
|
// Commit changes
|
||||||
localDbCtx.SaveChanges();
|
dbCtx.SaveChanges();
|
||||||
done = true;
|
ResetController();
|
||||||
}
|
done = true;
|
||||||
catch (Exception exc)
|
}
|
||||||
{
|
catch (Exception exc)
|
||||||
string errMessage = $"EXCEPTION on BTLPart.Delete: {Environment.NewLine}{exc}";
|
{
|
||||||
Console.WriteLine(errMessage);
|
Console.WriteLine($"EXCEPTION on Delete: {exc}");
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
@@ -201,31 +197,29 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public bool DeleteByProject(int ProjDbId)
|
public bool DeleteByProject(int ProjDbId)
|
||||||
{
|
{
|
||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
var items2del = dbCtx
|
||||||
{
|
|
||||||
var items2del = localDbCtx
|
|
||||||
.BTLPartList
|
.BTLPartList
|
||||||
.Where(x => x.ProjDbId == ProjDbId);
|
.Where(x => x.ProjDbId == ProjDbId);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// Add to database
|
// Add to database
|
||||||
localDbCtx.BTLPartList.RemoveRange(items2del);
|
dbCtx.BTLPartList.RemoveRange(items2del);
|
||||||
// Commit changes
|
// Commit changes
|
||||||
localDbCtx.SaveChanges();
|
dbCtx.SaveChanges();
|
||||||
done = true;
|
ResetController();
|
||||||
}
|
done = true;
|
||||||
catch (Exception exc)
|
}
|
||||||
{
|
catch (Exception exc)
|
||||||
string errMessage = $"EXCEPTION on BTLPart.DeleteByProject: {Environment.NewLine}{exc}";
|
{
|
||||||
Console.WriteLine(errMessage);
|
Console.WriteLine($"EXCEPTION on DeleteByProject: {exc}");
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
{
|
{
|
||||||
|
// Clear database context
|
||||||
|
dbCtx.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -235,13 +229,10 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public BTLPartModel FindByDbId(int PartDbId)
|
public BTLPartModel FindByDbId(int PartDbId)
|
||||||
{
|
{
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
return dbCtx
|
||||||
{
|
|
||||||
return localDbCtx
|
|
||||||
.BTLPartList
|
.BTLPartList
|
||||||
.Where(x => x.BTLPartDbId == PartDbId)
|
.Where(x => x.BTLPartDbId == PartDbId)
|
||||||
.SingleOrDefault();
|
.SingleOrDefault();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -251,13 +242,10 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public BTLPartModel FindByPartId(int PartId)
|
public BTLPartModel FindByPartId(int PartId)
|
||||||
{
|
{
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
return dbCtx
|
||||||
{
|
|
||||||
return localDbCtx
|
|
||||||
.BTLPartList
|
.BTLPartList
|
||||||
.Where(x => x.PartId == PartId)
|
.Where(x => x.PartId == PartId)
|
||||||
.SingleOrDefault();
|
.SingleOrDefault();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -268,13 +256,10 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public BTLPartModel FindByPartIdProjDbId(int PartId, int ProjDbId)
|
public BTLPartModel FindByPartIdProjDbId(int PartId, int ProjDbId)
|
||||||
{
|
{
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
return dbCtx
|
||||||
{
|
|
||||||
return localDbCtx
|
|
||||||
.BTLPartList
|
.BTLPartList
|
||||||
.Where(x => x.PartId == PartId && x.ProjDbId == ProjDbId)
|
.Where(x => x.PartId == PartId && x.ProjDbId == ProjDbId)
|
||||||
.FirstOrDefault();
|
.FirstOrDefault();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -284,15 +269,12 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public List<BTLPartModel> GetByProjectAsc(int ProjDbId)
|
public List<BTLPartModel> GetByProjectAsc(int ProjDbId)
|
||||||
{
|
{
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
// retrieve
|
||||||
{
|
return dbCtx
|
||||||
// retrieve
|
|
||||||
return localDbCtx
|
|
||||||
.BTLPartList
|
.BTLPartList
|
||||||
.Where(x => x.ProjDbId == ProjDbId)
|
.Where(x => x.ProjDbId == ProjDbId)
|
||||||
.OrderBy(x => x.BTLPartDbId)
|
.OrderBy(x => x.BTLPartDbId)
|
||||||
.ToList();
|
.ToList();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -302,15 +284,12 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public List<BTLPartModel> GetByProjectDesc(int ProjDbId)
|
public List<BTLPartModel> GetByProjectDesc(int ProjDbId)
|
||||||
{
|
{
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
// retrieve
|
||||||
{
|
return dbCtx
|
||||||
// retrieve
|
|
||||||
return localDbCtx
|
|
||||||
.BTLPartList
|
.BTLPartList
|
||||||
.Where(x => x.ProjDbId == ProjDbId)
|
.Where(x => x.ProjDbId == ProjDbId)
|
||||||
.OrderByDescending(x => x.BTLPartDbId)
|
.OrderByDescending(x => x.BTLPartDbId)
|
||||||
.ToList();
|
.ToList();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -321,22 +300,17 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public List<BTLPartModel> GetPaginatedAsc(int PartDbIdStart, int numRecord)
|
public List<BTLPartModel> GetPaginatedAsc(int PartDbIdStart, int numRecord)
|
||||||
{
|
{
|
||||||
List<BTLPartModel> answ = new List<BTLPartModel>();
|
|
||||||
int numEnd = PartDbIdStart - numRecord;
|
int numEnd = PartDbIdStart - numRecord;
|
||||||
// check numEnd
|
// check numEnd
|
||||||
if (numEnd < 0)
|
if (numEnd < 0)
|
||||||
numEnd = 0;
|
numEnd = 0;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
// retrieve
|
||||||
{
|
return dbCtx
|
||||||
// retrieve
|
.BTLPartList
|
||||||
answ = localDbCtx
|
.Where(x => x.BTLPartDbId <= PartDbIdStart)
|
||||||
.BTLPartList
|
.OrderBy(x => x.BTLPartDbId)
|
||||||
.Where(x => x.BTLPartDbId <= PartDbIdStart)
|
.Take(numRecord)
|
||||||
.OrderBy(x => x.BTLPartDbId)
|
.ToList();
|
||||||
.Take(numRecord)
|
|
||||||
.ToList();
|
|
||||||
}
|
|
||||||
return answ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -347,22 +321,26 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public List<BTLPartModel> GetPaginatedDesc(int PartDbIdStart, int numRecord)
|
public List<BTLPartModel> GetPaginatedDesc(int PartDbIdStart, int numRecord)
|
||||||
{
|
{
|
||||||
List<BTLPartModel> answ = new List<BTLPartModel>();
|
|
||||||
int numEnd = PartDbIdStart - numRecord;
|
int numEnd = PartDbIdStart - numRecord;
|
||||||
// check numEnd
|
// check numEnd
|
||||||
if (numEnd < 0)
|
if (numEnd < 0)
|
||||||
numEnd = 0;
|
numEnd = 0;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
// retrieve
|
||||||
{
|
return dbCtx
|
||||||
// retrieve
|
.BTLPartList
|
||||||
answ = localDbCtx
|
.Where(x => x.BTLPartDbId <= PartDbIdStart)
|
||||||
.BTLPartList
|
.OrderByDescending(x => x.BTLPartDbId)
|
||||||
.Where(x => x.BTLPartDbId <= PartDbIdStart)
|
.Take(numRecord)
|
||||||
.OrderByDescending(x => x.BTLPartDbId)
|
.ToList();
|
||||||
.Take(numRecord)
|
}
|
||||||
.ToList();
|
|
||||||
}
|
/// <summary>
|
||||||
return answ;
|
/// Reinizializzaizone del controller
|
||||||
|
/// </summary>
|
||||||
|
public void ResetController()
|
||||||
|
{
|
||||||
|
// Re-Initialize database context
|
||||||
|
dbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -373,44 +351,32 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public bool Update(BTLPartModel updItem)
|
public bool Update(BTLPartModel updItem)
|
||||||
{
|
{
|
||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
var item2update = dbCtx
|
||||||
{
|
|
||||||
var item2update = localDbCtx
|
|
||||||
.BTLPartList
|
.BTLPartList
|
||||||
.Where(x => x.BTLPartDbId == updItem.BTLPartDbId)
|
.Where(x => x.BTLPartDbId == updItem.BTLPartDbId)
|
||||||
.SingleOrDefault();
|
.SingleOrDefault();
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// update, vers 1...
|
// update, vers 1...
|
||||||
localDbCtx.Entry(item2update).CurrentValues.SetValues(updItem);
|
dbCtx.Entry(item2update).CurrentValues.SetValues(updItem);
|
||||||
|
|
||||||
//// update, vers 2
|
//// update, vers 2
|
||||||
//localDbCtx.BTLPartList.Remove(item2del);
|
//dbCtx.BTLPartList.Remove(item2del);
|
||||||
//localDbCtx.BTLPartList.Add(updItem);
|
//dbCtx.BTLPartList.Add(updItem);
|
||||||
|
|
||||||
// Commit changes
|
// Commit changes
|
||||||
localDbCtx.SaveChanges();
|
dbCtx.SaveChanges();
|
||||||
done = true;
|
done = true;
|
||||||
}
|
|
||||||
catch (Exception exc)
|
|
||||||
{
|
|
||||||
string errMessage = $"EXCEPTION on BTLPart.Update: {Environment.NewLine}{exc}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
catch (Exception exc)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"EXCEPTION on Update: {exc}");
|
||||||
|
}
|
||||||
|
// reset...
|
||||||
|
ResetController();
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion Public Methods
|
#endregion Public Methods
|
||||||
|
|
||||||
#region Private Fields
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Istanza logger
|
|
||||||
/// </summary>
|
|
||||||
private NLog.Logger Log = LogManager.GetCurrentClassLogger();
|
|
||||||
|
|
||||||
#endregion Private Fields
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,227 +1,97 @@
|
|||||||
using NLog;
|
using System;
|
||||||
using System;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading;
|
using System.Text;
|
||||||
|
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
||||||
|
|
||||||
namespace EgtBEAMWALL.DataLayer.Controllers
|
namespace EgtBEAMWALL.DataLayer.Controllers
|
||||||
{
|
{
|
||||||
public class DbController : IDisposable
|
public class DbController : IDisposable
|
||||||
{
|
{
|
||||||
#region Public Fields
|
#region Private Fields
|
||||||
|
|
||||||
/// <summary>
|
private AdminContext adbCtx;
|
||||||
/// Singleton gestione
|
|
||||||
/// </summary>
|
|
||||||
public static DbController man = new DbController();
|
|
||||||
|
|
||||||
#endregion Public Fields
|
#endregion Private Fields
|
||||||
|
|
||||||
#region Public Constructors
|
#region Public Fields
|
||||||
|
|
||||||
public DbController()
|
/// <summary>
|
||||||
{
|
/// Singleton gestione
|
||||||
// Initialize database context for ADMIN
|
/// </summary>
|
||||||
adbCtx = new AdminContext(DbConfig.ADMIN_CONNECTION_STRING);
|
public static DbController man = new DbController();
|
||||||
// DB standard utente
|
|
||||||
dbCtx = new AdminContext(DbConfig.CONNECTION_STRING);
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion Public Constructors
|
#endregion Public Fields
|
||||||
|
|
||||||
#region Public Methods
|
#region Public Constructors
|
||||||
|
|
||||||
/// <summary>
|
public DbController()
|
||||||
/// Verifica necessità creazione utente (locale o in rete)
|
{
|
||||||
/// </summary>
|
// Initialize database context for ADMIN
|
||||||
/// <param name="username"></param>
|
adbCtx = new AdminContext(DbConfig.ADMIN_CONNECTION_STRING);
|
||||||
/// <param name="pwd"></param>
|
}
|
||||||
/// <param name="isNetwork"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public bool checkCreateUser(string username, string pwd, bool isNetwork)
|
|
||||||
{
|
|
||||||
bool answ = false;
|
|
||||||
string domain = isNetwork ? "%" : "localhost";
|
|
||||||
answ = doCheckCreate(username, pwd, answ, domain, false);
|
|
||||||
if (answ)
|
|
||||||
{
|
|
||||||
doGrantPriv(username, domain, "ALL ON *.*");
|
|
||||||
}
|
|
||||||
return answ;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
#endregion Public Constructors
|
||||||
/// Migrazione esplicita del DB da parte dell'admin controller
|
|
||||||
/// </summary>
|
|
||||||
/// <returns></returns>
|
|
||||||
public bool checkMigrateDb()
|
|
||||||
{
|
|
||||||
return adbCtx.SetUpDbConnectionAndDbConfig();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Dispose()
|
#region Public Methods
|
||||||
{
|
|
||||||
// Clear database context
|
|
||||||
adbCtx.Dispose();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Verifica esistenza views + utente relativo eventualmente ricreandole + fornendo accesso
|
|
||||||
/// all'utente ReadOnly Essetre
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="dbName"></param>
|
|
||||||
/// <param name="username"></param>
|
|
||||||
/// <param name="pwd"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public bool refreshViews(string dbName, string username = "S3_User", string pwd = "S3_P4ssw0rd")
|
|
||||||
{
|
|
||||||
bool answ = false;
|
|
||||||
|
|
||||||
// in primis refresh delle view
|
|
||||||
string sqlCommand = @"CREATE OR REPLACE VIEW v_expProdRaw AS
|
|
||||||
SELECT DbId, AlarmDtEvent AS DtEvent, VarValue,
|
|
||||||
SUBSTRING_INDEX(VarValue, ';', 1) AS Prod,
|
|
||||||
SUBSTRING_INDEX(SUBSTRING_INDEX(VarValue, ';', 2), ';', -1) AS MachGroupId,
|
|
||||||
SUBSTRING_INDEX(SUBSTRING_INDEX(VarValue, ';', -2), ';', 1) AS PartId,
|
|
||||||
SUBSTRING_INDEX(VarValue, ';', -1) AS Status
|
|
||||||
FROM logmachine
|
|
||||||
WHERE ResultType = 1
|
|
||||||
AND VarAddress = 1;
|
|
||||||
|
|
||||||
CREATE OR REPLACE VIEW v_expProd AS
|
|
||||||
SELECT vp.DtEvent, vp.Prod, mgl.Name AS mgName, pl.PDN, vp.`Status`
|
|
||||||
FROM v_expProdRaw AS vp
|
|
||||||
INNER JOIN MachGroupList mgl ON vp.MachGroupId = mgl.Id
|
|
||||||
INNER JOIN partlist pl ON vp.PartId = pl.Id;";
|
|
||||||
dbCtx.Database.ExecuteSqlCommand(System.Data.Entity.TransactionalBehavior.DoNotEnsureTransaction, sqlCommand);
|
|
||||||
Thread.Sleep(100);
|
|
||||||
|
|
||||||
// ora setup parametri x utente
|
|
||||||
string domain = "%";
|
|
||||||
|
|
||||||
// ora controllo utente con diritti
|
|
||||||
answ = doCheckCreate(username, pwd, answ, domain, true);
|
|
||||||
if (answ)
|
|
||||||
{
|
|
||||||
doGrantPriv(username, domain, "USAGE ON *.*");
|
|
||||||
doGrantPriv(username, domain, $"SELECT ON {dbName}.v_expProd");
|
|
||||||
}
|
|
||||||
|
|
||||||
return answ;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// ATTENZIONE!!!! Procedura di Reset del DB
|
|
||||||
/// </summary>
|
|
||||||
/// <returns></returns>
|
|
||||||
public bool ResetDb()
|
|
||||||
{
|
|
||||||
bool answ = false;
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
adbCtx
|
|
||||||
.Database
|
|
||||||
.SqlQuery<int>("CALL stp_ResetDb()");
|
|
||||||
answ = true;
|
|
||||||
|
|
||||||
adbCtx.SaveChanges();
|
|
||||||
}
|
|
||||||
catch (Exception exc)
|
|
||||||
{
|
|
||||||
string errMessage = $"EXCEPTION on DbController.ResetDb: {Environment.NewLine}{exc}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
|
|
||||||
return answ;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion Public Methods
|
|
||||||
|
|
||||||
#region Private Fields
|
|
||||||
|
|
||||||
private AdminContext adbCtx;
|
|
||||||
private AdminContext dbCtx;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Istanza logger
|
|
||||||
/// </summary>
|
|
||||||
private NLog.Logger Log = LogManager.GetCurrentClassLogger();
|
|
||||||
|
|
||||||
#endregion Private Fields
|
|
||||||
|
|
||||||
#region Private Methods
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Procedura interna effettiva di check utente ed eventuale creazione + grant level
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="username"></param>
|
|
||||||
/// <param name="pwd"></param>
|
|
||||||
/// <param name="answ"></param>
|
|
||||||
/// <param name="domain"></param>
|
|
||||||
/// <param name="force">Force = esegue un drop prima...</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
private bool doCheckCreate(string username, string pwd, bool answ, string domain, bool force)
|
|
||||||
{
|
|
||||||
// ricerca utente...
|
|
||||||
var numUser = adbCtx
|
|
||||||
.UserList
|
|
||||||
.Where(x => x.User == username)
|
|
||||||
.ToList()
|
|
||||||
.Count;
|
|
||||||
if (numUser > 0)
|
|
||||||
{
|
|
||||||
answ = true;
|
|
||||||
}
|
|
||||||
if (!answ)
|
|
||||||
{
|
|
||||||
// creo utente
|
|
||||||
string sqlCommand = $"DROP USER IF EXISTS {username};";
|
|
||||||
if (force)
|
|
||||||
{
|
|
||||||
adbCtx.Database.ExecuteSqlCommand(System.Data.Entity.TransactionalBehavior.DoNotEnsureTransaction, sqlCommand);
|
|
||||||
Thread.Sleep(100);
|
|
||||||
}
|
|
||||||
sqlCommand = "FLUSH PRIVILEGES;";
|
|
||||||
adbCtx.Database.ExecuteSqlCommand(System.Data.Entity.TransactionalBehavior.DoNotEnsureTransaction, sqlCommand);
|
|
||||||
Thread.Sleep(100);
|
|
||||||
sqlCommand = $"CREATE USER '{username}'@'{domain}' IDENTIFIED BY '{pwd}';";
|
|
||||||
adbCtx.Database.ExecuteSqlCommand(System.Data.Entity.TransactionalBehavior.DoNotEnsureTransaction, sqlCommand);
|
|
||||||
Thread.Sleep(100);
|
|
||||||
sqlCommand = "FLUSH PRIVILEGES;";
|
|
||||||
adbCtx.Database.ExecuteSqlCommand(System.Data.Entity.TransactionalBehavior.DoNotEnsureTransaction, sqlCommand);
|
|
||||||
Thread.Sleep(100);
|
|
||||||
answ = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return answ;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Procedura interna effettiva di grant level x utente
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="username"></param>
|
|
||||||
/// <param name="domain"></param>
|
|
||||||
/// <param name="grantLevel"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
private bool doGrantPriv(string username, string domain, string grantLevel)
|
|
||||||
{
|
|
||||||
bool answ = false;
|
|
||||||
|
|
||||||
|
public bool checkCreateUser(string username, string pwd)
|
||||||
|
{
|
||||||
|
bool answ = false;
|
||||||
|
// ricerca utente...
|
||||||
|
var numUser = adbCtx
|
||||||
|
.UserList
|
||||||
|
.Where(x => x.User == username)
|
||||||
|
.ToList()
|
||||||
|
.Count;
|
||||||
|
if (numUser > 0)
|
||||||
|
{
|
||||||
|
answ = true;
|
||||||
|
}
|
||||||
|
if (!answ)
|
||||||
|
{
|
||||||
|
// creo utente
|
||||||
string sqlCommand = "FLUSH PRIVILEGES;";
|
string sqlCommand = "FLUSH PRIVILEGES;";
|
||||||
|
//string sqlCommand = $"CREATE USER '{username}'@'localhost' IDENTIFIED BY '{pwd}'; GRANT ALL ON *.* TO '{username}'@'localhost'; FLUSH PRIVILEGES;";
|
||||||
|
//string sqlCommand = $"CREATE USER '{username}'@'localhost' IDENTIFIED BY '{pwd}'; GRANT ALL ON *.* TO '{username}'@'localhost'; FLUSH PRIVILEGES;";
|
||||||
adbCtx.Database.ExecuteSqlCommand(System.Data.Entity.TransactionalBehavior.DoNotEnsureTransaction, sqlCommand);
|
adbCtx.Database.ExecuteSqlCommand(System.Data.Entity.TransactionalBehavior.DoNotEnsureTransaction, sqlCommand);
|
||||||
Thread.Sleep(100);
|
sqlCommand = $"CREATE USER '{username}'@'localhost' IDENTIFIED BY '{pwd}';";
|
||||||
sqlCommand = $"GRANT {grantLevel} TO '{username}'@'{domain}';";
|
adbCtx.Database.ExecuteSqlCommand(System.Data.Entity.TransactionalBehavior.DoNotEnsureTransaction, sqlCommand);
|
||||||
|
sqlCommand = $"GRANT ALL ON *.* TO '{username}'@'localhost';";
|
||||||
adbCtx.Database.ExecuteSqlCommand(System.Data.Entity.TransactionalBehavior.DoNotEnsureTransaction, sqlCommand);
|
adbCtx.Database.ExecuteSqlCommand(System.Data.Entity.TransactionalBehavior.DoNotEnsureTransaction, sqlCommand);
|
||||||
Thread.Sleep(100);
|
|
||||||
sqlCommand = "FLUSH PRIVILEGES;";
|
sqlCommand = "FLUSH PRIVILEGES;";
|
||||||
adbCtx.Database.ExecuteSqlCommand(System.Data.Entity.TransactionalBehavior.DoNotEnsureTransaction, sqlCommand);
|
adbCtx.Database.ExecuteSqlCommand(System.Data.Entity.TransactionalBehavior.DoNotEnsureTransaction, sqlCommand);
|
||||||
Thread.Sleep(100);
|
}
|
||||||
|
return answ;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
// Clear database context
|
||||||
|
adbCtx.Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool ResetDb()
|
||||||
|
{
|
||||||
|
bool answ = false;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
adbCtx
|
||||||
|
.Database
|
||||||
|
.SqlQuery<int>("CALL stp_ResetDb()");
|
||||||
answ = true;
|
answ = true;
|
||||||
|
|
||||||
return answ;
|
adbCtx.SaveChanges();
|
||||||
}
|
}
|
||||||
|
catch (Exception exc)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"EXCEPTION on ResetDb: {exc}");
|
||||||
|
}
|
||||||
|
|
||||||
#endregion Private Methods
|
return answ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endregion Public Methods
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -1,17 +1,25 @@
|
|||||||
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
using System;
|
||||||
using NLog;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
||||||
|
|
||||||
namespace EgtBEAMWALL.DataLayer.Controllers
|
namespace EgtBEAMWALL.DataLayer.Controllers
|
||||||
{
|
{
|
||||||
public class LogMachineController : IDisposable
|
public class LogMachineController : IDisposable
|
||||||
{
|
{
|
||||||
|
#region Private Fields
|
||||||
|
|
||||||
|
private DatabaseContext dbCtx;
|
||||||
|
|
||||||
|
#endregion Private Fields
|
||||||
|
|
||||||
#region Public Constructors
|
#region Public Constructors
|
||||||
|
|
||||||
public LogMachineController()
|
public LogMachineController()
|
||||||
{
|
{
|
||||||
|
// Initialize database context
|
||||||
|
dbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion Public Constructors
|
#endregion Public Constructors
|
||||||
@@ -23,7 +31,7 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="coreMacLog"></param>
|
/// <param name="coreMacLog"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public LogMachineModel ConvertFromCore(Core.MachLog coreMacLog)
|
public static LogMachineModel ConvertFromCore(Core.MachLog coreMacLog)
|
||||||
{
|
{
|
||||||
LogMachineModel answ = new LogMachineModel();
|
LogMachineModel answ = new LogMachineModel();
|
||||||
if (coreMacLog != null)
|
if (coreMacLog != null)
|
||||||
@@ -53,9 +61,9 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="dbLog"></param>
|
/// <param name="dbLog"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public Core.MachLog ConvertToCore(LogMachineModel dbLog)
|
public static Core.MachLog ConvertToCore(LogMachineModel dbLog)
|
||||||
{
|
{
|
||||||
var newRecord = Core.MachLog.CreateMachLog(dbLog.AlarmCode, dbLog.AlarmDatetime, dbLog.AlarmMessage, dbLog.AlarmOperation, dbLog.AlarmType, dbLog.CommandExecutedCorrectly, dbLog.CommandState, dbLog.CommandType, dbLog.Description, dbLog.NewOpState, dbLog.ResultType, dbLog.VarAddress, dbLog.VarValue);
|
var newRecord = Core.MachLog.CreateMacLog(dbLog.AlarmCode, dbLog.AlarmDatetime, dbLog.AlarmMessage, dbLog.AlarmOperation, dbLog.AlarmType, dbLog.CommandExecutedCorrectly, dbLog.CommandState, dbLog.CommandType, dbLog.Description, dbLog.NewOpState, dbLog.ResultType, dbLog.VarAddress, dbLog.VarValue);
|
||||||
return newRecord;
|
return newRecord;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -71,19 +79,18 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
using (var locallocalDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (var currDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
// Add to database
|
// Add to database
|
||||||
locallocalDbCtx.LogMachineList.Add(newLogMac);
|
currDbCtx.LogMachineList.Add(newLogMac);
|
||||||
// Commit changes
|
// Commit changes
|
||||||
locallocalDbCtx.SaveChanges();
|
currDbCtx.SaveChanges();
|
||||||
|
ResetController();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on LogMachine.Create: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on Create LogMachine: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch
|
catch
|
||||||
@@ -110,31 +117,29 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public bool DeleteByKey(int LogDbId)
|
public bool DeleteByKey(int LogDbId)
|
||||||
{
|
{
|
||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
var items2del = dbCtx
|
||||||
{
|
|
||||||
var items2del = localDbCtx
|
|
||||||
.LogMachineList
|
.LogMachineList
|
||||||
.Where(x => x.LogDbId == LogDbId);
|
.Where(x => x.LogDbId == LogDbId);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// Add to database
|
// Add to database
|
||||||
localDbCtx.LogMachineList.RemoveRange(items2del);
|
dbCtx.LogMachineList.RemoveRange(items2del);
|
||||||
// Commit changes
|
// Commit changes
|
||||||
localDbCtx.SaveChanges();
|
dbCtx.SaveChanges();
|
||||||
done = true;
|
ResetController();
|
||||||
}
|
done = true;
|
||||||
catch (Exception exc)
|
}
|
||||||
{
|
catch (Exception exc)
|
||||||
string errMessage = $"EXCEPTION on LogMachine.DeleteByKey: {Environment.NewLine}{exc}";
|
{
|
||||||
Console.WriteLine(errMessage);
|
Console.WriteLine($"EXCEPTION on DeleteByKey: {exc}");
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
{
|
{
|
||||||
|
// Clear database context
|
||||||
|
dbCtx.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -144,13 +149,10 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public LogMachineModel FindByDbId(int LogDbId)
|
public LogMachineModel FindByDbId(int LogDbId)
|
||||||
{
|
{
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
return dbCtx
|
||||||
{
|
|
||||||
return localDbCtx
|
|
||||||
.LogMachineList
|
.LogMachineList
|
||||||
.Where(x => x.LogDbId == LogDbId)
|
.Where(x => x.LogDbId == LogDbId)
|
||||||
.SingleOrDefault();
|
.SingleOrDefault();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -161,41 +163,12 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public List<LogMachineModel> GetAsc(DateTime dtStart, DateTime dtEnd)
|
public List<LogMachineModel> GetAsc(DateTime dtStart, DateTime dtEnd)
|
||||||
{
|
{
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
// retrieve
|
||||||
{
|
return dbCtx
|
||||||
// retrieve
|
|
||||||
return localDbCtx
|
|
||||||
.LogMachineList
|
.LogMachineList
|
||||||
.Where(x => x.AlarmDatetime >= dtStart && x.AlarmDatetime <= dtEnd)
|
.Where(x => x.AlarmDatetime >= dtStart && x.AlarmDatetime <= dtEnd)
|
||||||
.OrderBy(x => x.AlarmDatetime)
|
.OrderBy(x => x.AlarmDatetime)
|
||||||
.ToList();
|
.ToList();
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Get paginated data from DB (ASC ordered) in "core format"
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="dtStart"></param>
|
|
||||||
/// <param name="dtEnd"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public List<Core.MachLog> GetCoreAsc(DateTime dtStart, DateTime dtEnd)
|
|
||||||
{
|
|
||||||
var rawData = GetAsc(dtStart, dtEnd);
|
|
||||||
var coreData = rawData.Select(x => ConvertToCore(x)).ToList();
|
|
||||||
return coreData;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Get paginated data from DB (DESC ordered) in "core format"
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="dtStart"></param>
|
|
||||||
/// <param name="dtEnd"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public List<Core.MachLog> GetCoreDesc(DateTime dtStart, DateTime dtEnd)
|
|
||||||
{
|
|
||||||
var rawData = GetDesc(dtStart, dtEnd);
|
|
||||||
var coreData = rawData.Select(x => ConvertToCore(x)).ToList();
|
|
||||||
return coreData;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -206,15 +179,21 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public List<LogMachineModel> GetDesc(DateTime dtStart, DateTime dtEnd)
|
public List<LogMachineModel> GetDesc(DateTime dtStart, DateTime dtEnd)
|
||||||
{
|
{
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
// retrieve
|
||||||
{
|
return dbCtx
|
||||||
// retrieve
|
|
||||||
return localDbCtx
|
|
||||||
.LogMachineList
|
.LogMachineList
|
||||||
.Where(x => x.AlarmDatetime >= dtStart && x.AlarmDatetime <= dtEnd)
|
.Where(x => x.AlarmDatetime >= dtStart && x.AlarmDatetime <= dtEnd)
|
||||||
.OrderByDescending(x => x.AlarmDatetime)
|
.OrderByDescending(x => x.AlarmDatetime)
|
||||||
.ToList();
|
.ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Reinizializzaizone del controller
|
||||||
|
/// </summary>
|
||||||
|
public void ResetController()
|
||||||
|
{
|
||||||
|
// Re-Initialize database context
|
||||||
|
dbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -225,40 +204,27 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public bool Update(LogMachineModel updItem)
|
public bool Update(LogMachineModel updItem)
|
||||||
{
|
{
|
||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
var item2update = dbCtx
|
||||||
{
|
|
||||||
var item2update = localDbCtx
|
|
||||||
.LogMachineList
|
.LogMachineList
|
||||||
.Where(x => x.LogDbId == updItem.LogDbId)
|
.Where(x => x.LogDbId == updItem.LogDbId)
|
||||||
.SingleOrDefault();
|
.SingleOrDefault();
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// update, vers 1...
|
// update, vers 1...
|
||||||
localDbCtx.Entry(item2update).CurrentValues.SetValues(updItem);
|
dbCtx.Entry(item2update).CurrentValues.SetValues(updItem);
|
||||||
|
|
||||||
// Commit changes
|
// Commit changes
|
||||||
localDbCtx.SaveChanges();
|
dbCtx.SaveChanges();
|
||||||
done = true;
|
ResetController();
|
||||||
}
|
done = true;
|
||||||
catch (Exception exc)
|
}
|
||||||
{
|
catch (Exception exc)
|
||||||
string errMessage = $"EXCEPTION on LogMachine.Update: {Environment.NewLine}{exc}";
|
{
|
||||||
Console.WriteLine(errMessage);
|
Console.WriteLine($"EXCEPTION on Update: {exc}");
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion Public Methods
|
#endregion Public Methods
|
||||||
|
|
||||||
#region Private Fields
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Istanza logger
|
|
||||||
/// </summary>
|
|
||||||
private NLog.Logger Log = LogManager.GetCurrentClassLogger();
|
|
||||||
|
|
||||||
#endregion Private Fields
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,17 +1,25 @@
|
|||||||
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
using System;
|
||||||
using NLog;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
||||||
|
|
||||||
namespace EgtBEAMWALL.DataLayer.Controllers
|
namespace EgtBEAMWALL.DataLayer.Controllers
|
||||||
{
|
{
|
||||||
public class LogSupportController : IDisposable
|
public class LogSupportController : IDisposable
|
||||||
{
|
{
|
||||||
|
#region Private Fields
|
||||||
|
|
||||||
|
private DatabaseContext dbCtx;
|
||||||
|
|
||||||
|
#endregion Private Fields
|
||||||
|
|
||||||
#region Public Constructors
|
#region Public Constructors
|
||||||
|
|
||||||
public LogSupportController()
|
public LogSupportController()
|
||||||
{
|
{
|
||||||
|
// Initialize database context
|
||||||
|
dbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion Public Constructors
|
#endregion Public Constructors
|
||||||
@@ -33,28 +41,24 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public bool Create(DateTime dtCreated, Core.LogSupportLevel level, Core.LogSupportTarget target, string message)
|
public bool Create(DateTime dtCreated, Core.LogSupportLevel level, Core.LogSupportTarget target, string message)
|
||||||
{
|
{
|
||||||
bool fatto = false;
|
bool fatto = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
try
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
try
|
LogSupportModel newItem = new LogSupportModel() { DtEvent = dtCreated, Level = level, Target = target, Message = message };
|
||||||
{
|
// Add to database
|
||||||
LogSupportModel newItem = new LogSupportModel() { DtEvent = dtCreated, Level = level, Target = target, Message = message };
|
dbCtx.LogSupportList.Add(newItem);
|
||||||
// Add to database
|
// Commit changes
|
||||||
localDbCtx.LogSupportList.Add(newItem);
|
dbCtx.SaveChanges();
|
||||||
// Commit changes
|
ResetController();
|
||||||
localDbCtx.SaveChanges();
|
}
|
||||||
}
|
catch (Exception exc)
|
||||||
catch (Exception exc)
|
{
|
||||||
{
|
Console.WriteLine($"EXCEPTION on Create LogSupport: {exc}");
|
||||||
string errMessage = $"EXCEPTION on LogSupport.Create: {Environment.NewLine}{exc}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch
|
|
||||||
{ }
|
|
||||||
}
|
}
|
||||||
|
catch
|
||||||
|
{ }
|
||||||
return fatto;
|
return fatto;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -66,31 +70,29 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public bool DeleteByKey(int LogDbId)
|
public bool DeleteByKey(int LogDbId)
|
||||||
{
|
{
|
||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
var items2del = dbCtx
|
||||||
|
.LogSupportList
|
||||||
|
.Where(x => x.LogDbId == LogDbId);
|
||||||
|
try
|
||||||
{
|
{
|
||||||
var items2del = localDbCtx
|
// Add to database
|
||||||
.LogSupportList
|
dbCtx.LogSupportList.RemoveRange(items2del);
|
||||||
.Where(x => x.LogDbId == LogDbId);
|
// Commit changes
|
||||||
try
|
dbCtx.SaveChanges();
|
||||||
{
|
ResetController();
|
||||||
// Add to database
|
done = true;
|
||||||
localDbCtx.LogSupportList.RemoveRange(items2del);
|
}
|
||||||
// Commit changes
|
catch (Exception exc)
|
||||||
localDbCtx.SaveChanges();
|
{
|
||||||
done = true;
|
Console.WriteLine($"EXCEPTION on DeleteByKey: {exc}");
|
||||||
}
|
|
||||||
catch (Exception exc)
|
|
||||||
{
|
|
||||||
string errMessage = $"EXCEPTION on LogSupport.DeleteByKey: {Environment.NewLine}{exc}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
{
|
{
|
||||||
|
// Clear database context
|
||||||
|
dbCtx.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -100,13 +102,10 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public LogSupportModel FindByDbId(int LogDbId)
|
public LogSupportModel FindByDbId(int LogDbId)
|
||||||
{
|
{
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
return dbCtx
|
||||||
{
|
.LogSupportList
|
||||||
return localDbCtx
|
.Where(x => x.LogDbId == LogDbId)
|
||||||
.LogSupportList
|
.SingleOrDefault();
|
||||||
.Where(x => x.LogDbId == LogDbId)
|
|
||||||
.SingleOrDefault();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -118,14 +117,11 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public List<LogSupportModel> GetPaginatedAsc(DateTime dtStart, DateTime dtEnd)
|
public List<LogSupportModel> GetPaginatedAsc(DateTime dtStart, DateTime dtEnd)
|
||||||
{
|
{
|
||||||
// retrieve
|
// retrieve
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
return dbCtx
|
||||||
{
|
|
||||||
return localDbCtx
|
|
||||||
.LogSupportList
|
.LogSupportList
|
||||||
.Where(x => x.DtEvent >= dtStart && x.DtEvent <= dtEnd)
|
.Where(x => x.DtEvent >= dtStart && x.DtEvent <= dtEnd)
|
||||||
.OrderBy(x => x.DtEvent)
|
.OrderBy(x => x.DtEvent)
|
||||||
.ToList();
|
.ToList();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -137,14 +133,20 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public List<LogSupportModel> GetPaginatedDesc(DateTime dtStart, DateTime dtEnd)
|
public List<LogSupportModel> GetPaginatedDesc(DateTime dtStart, DateTime dtEnd)
|
||||||
{
|
{
|
||||||
// retrieve
|
// retrieve
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
return dbCtx
|
||||||
{
|
|
||||||
return localDbCtx
|
|
||||||
.LogSupportList
|
.LogSupportList
|
||||||
.Where(x => x.DtEvent >= dtStart && x.DtEvent <= dtEnd)
|
.Where(x => x.DtEvent >= dtStart && x.DtEvent <= dtEnd)
|
||||||
.OrderByDescending(x => x.DtEvent)
|
.OrderByDescending(x => x.DtEvent)
|
||||||
.ToList();
|
.ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Reinizializzaizone del controller
|
||||||
|
/// </summary>
|
||||||
|
public void ResetController()
|
||||||
|
{
|
||||||
|
// Re-Initialize database context
|
||||||
|
dbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -155,40 +157,27 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public bool Update(LogSupportModel updItem)
|
public bool Update(LogSupportModel updItem)
|
||||||
{
|
{
|
||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
var item2update = dbCtx
|
||||||
{
|
|
||||||
var item2update = localDbCtx
|
|
||||||
.LogSupportList
|
.LogSupportList
|
||||||
.Where(x => x.LogDbId == updItem.LogDbId)
|
.Where(x => x.LogDbId == updItem.LogDbId)
|
||||||
.SingleOrDefault();
|
.SingleOrDefault();
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// update, vers 1...
|
// update, vers 1...
|
||||||
localDbCtx.Entry(item2update).CurrentValues.SetValues(updItem);
|
dbCtx.Entry(item2update).CurrentValues.SetValues(updItem);
|
||||||
|
|
||||||
// Commit changes
|
// Commit changes
|
||||||
localDbCtx.SaveChanges();
|
dbCtx.SaveChanges();
|
||||||
done = true;
|
ResetController();
|
||||||
}
|
done = true;
|
||||||
catch (Exception exc)
|
}
|
||||||
{
|
catch (Exception exc)
|
||||||
string errMessage = $"EXCEPTION on LogSupport.Update: {Environment.NewLine}{exc}";
|
{
|
||||||
Console.WriteLine(errMessage);
|
Console.WriteLine($"EXCEPTION on Update: {exc}");
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion Public Methods
|
#endregion Public Methods
|
||||||
|
|
||||||
#region Private Fields
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Istanza logger
|
|
||||||
/// </summary>
|
|
||||||
private NLog.Logger Log = LogManager.GetCurrentClassLogger();
|
|
||||||
|
|
||||||
#endregion Private Fields
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
||||||
using NLog;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
@@ -8,10 +7,24 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
{
|
{
|
||||||
public class MachGroupController : IDisposable
|
public class MachGroupController : IDisposable
|
||||||
{
|
{
|
||||||
|
#region Private Fields
|
||||||
|
|
||||||
|
private DatabaseContext dbCtx;
|
||||||
|
|
||||||
|
#endregion Private Fields
|
||||||
|
|
||||||
|
#region Public Fields
|
||||||
|
|
||||||
|
public static MachGroupController man = new MachGroupController();
|
||||||
|
|
||||||
|
#endregion Public Fields
|
||||||
|
|
||||||
#region Public Constructors
|
#region Public Constructors
|
||||||
|
|
||||||
public MachGroupController()
|
public MachGroupController()
|
||||||
{
|
{
|
||||||
|
// Initialize database context
|
||||||
|
dbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion Public Constructors
|
#endregion Public Constructors
|
||||||
@@ -24,7 +37,7 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <param name="coreMachGroup"></param>
|
/// <param name="coreMachGroup"></param>
|
||||||
/// <param name="currProdDbId"></param>
|
/// <param name="currProdDbId"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public MachGroupModel ConvertFromCore(Core.MyMachGroupM coreMachGroup, int currProdDbId)
|
public static MachGroupModel ConvertFromCore(Core.MyMachGroupM coreMachGroup, int currProdDbId)
|
||||||
{
|
{
|
||||||
MachGroupModel answ = new MachGroupModel();
|
MachGroupModel answ = new MachGroupModel();
|
||||||
if (coreMachGroup != null)
|
if (coreMachGroup != null)
|
||||||
@@ -50,26 +63,21 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
return answ;
|
return answ;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary> Add MachGroup as rebuilt from NeedRedo (on top of order priority) <param
|
/// <summary>
|
||||||
/// name="ProdId">Id del Prod</param> <param name="newMachGroup">Nuovo MachGroup da
|
/// Add MachGroup as rebuilt from NeedRedo (on top of order priority)
|
||||||
/// associare</param> <returns></returns>
|
/// <param name="ProdId">Id del Prod</param>
|
||||||
|
/// <param name="newMachGroup">Nuovo MachGroup da associare</param>
|
||||||
|
/// <returns></returns>
|
||||||
public ProdModel AddMachGroupRedo(int ProdId, Core.MyMachGroupM newMachGroup)
|
public ProdModel AddMachGroupRedo(int ProdId, Core.MyMachGroupM newMachGroup)
|
||||||
{
|
{
|
||||||
ProdModel currData = new ProdModel();
|
// Recupero il PROD
|
||||||
|
ProdModel currData = ProdController.man.FindByProdId(ProdId);
|
||||||
List<PartModel> PartList2Add = new List<PartModel>();
|
List<PartModel> PartList2Add = new List<PartModel>();
|
||||||
var myPartCtrl = new PartController();
|
|
||||||
var myStatusMapCtrl = new StatusMapController();
|
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
// Recupero il PROD nel contesto
|
|
||||||
currData = localDbCtx
|
|
||||||
.ProdList
|
|
||||||
.Where(x => x.ProdId == ProdId)
|
|
||||||
.SingleOrDefault();
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var locMGCtrl = new MachGroupController();
|
var convCurrMG = MachGroupController.ConvertFromCore(newMachGroup, currData.ProdDbId);
|
||||||
var convCurrMG = locMGCtrl.ConvertFromCore(newMachGroup, currData.ProdDbId);
|
|
||||||
|
|
||||||
convCurrMG.ProdIndex = 1;
|
convCurrMG.ProdIndex = 1;
|
||||||
|
|
||||||
@@ -78,25 +86,15 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
// Commit changes
|
// Commit changes
|
||||||
localDbCtx.SaveChanges();
|
localDbCtx.SaveChanges();
|
||||||
|
|
||||||
int MachGroupDbId = FindByMachGroupId(ProdId, newMachGroup.Id).MachGroupDbId;
|
int MachGroupDbId = MachGroupController.man.FindByMachGroupId(ProdId, newMachGroup.Id).MachGroupDbId;
|
||||||
// 2023.05.10 leggo elenco part in una sola volta
|
|
||||||
|
|
||||||
var currMgPartList = localDbCtx
|
|
||||||
.PartList
|
|
||||||
.Where(x => x.MachGroup.Prod.ProdId == ProdId && x.MachGroup.MachGroupId == newMachGroup.Id)
|
|
||||||
.ToList();
|
|
||||||
// verifico se uguali o meno...
|
// verifico se uguali o meno...
|
||||||
foreach (var currPartM in newMachGroup.PartMList)
|
foreach (var currPartM in newMachGroup.PartMList)
|
||||||
{
|
{
|
||||||
//var currPart = localDbCtx
|
var currPart = localDbCtx
|
||||||
// .PartList
|
.PartList
|
||||||
// .Where(x => x.MachGroup.Prod.ProdId == ProdId && x.MachGroup.MachGroupId == newMachGroup.Id && x.PartId == currPartM.nPartId)
|
.Where(x => x.MachGroup.Prod.ProdId == ProdId && x.MachGroup.MachGroupId == newMachGroup.Id && x.PartId == currPartM.nPartId)
|
||||||
// .SingleOrDefault();
|
|
||||||
var currPart = currMgPartList
|
|
||||||
.Where(x => x.PartId == currPartM.nPartId)
|
|
||||||
.SingleOrDefault();
|
.SingleOrDefault();
|
||||||
|
var convCurrPartM = PartController.ConvertFromCore(currPartM, MachGroupDbId);
|
||||||
var convCurrPartM = myPartCtrl.ConvertFromCore(currPartM, MachGroupDbId);
|
|
||||||
if (currPart != null)
|
if (currPart != null)
|
||||||
{
|
{
|
||||||
// se non identico x equality limitata a ViewOptim...
|
// se non identico x equality limitata a ViewOptim...
|
||||||
@@ -132,13 +130,11 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
// Commit changes
|
// Commit changes
|
||||||
localDbCtx.SaveChanges();
|
localDbCtx.SaveChanges();
|
||||||
// aggiorno info sullo status
|
// aggiorno info sullo status
|
||||||
myStatusMapCtrl.UpdateAction("", ProdId, newMachGroup.Id, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupAdd, "");
|
StatusMapController.man.UpdateAction("", ProdId, newMachGroup.Id, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupAdd, "");
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on MachGroup.UpdateMachGroup: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on UpdateMachGroup: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return currData;
|
return currData;
|
||||||
@@ -165,9 +161,7 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on MachGroup.Create: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on Create: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return newMachGroup;
|
return newMachGroup;
|
||||||
@@ -184,7 +178,6 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
var myStatusMapCtrl = new StatusMapController();
|
|
||||||
// inizio eliminando le part
|
// inizio eliminando le part
|
||||||
var parts2del = localDbCtx
|
var parts2del = localDbCtx
|
||||||
.PartList
|
.PartList
|
||||||
@@ -205,25 +198,25 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
localDbCtx.SaveChanges();
|
localDbCtx.SaveChanges();
|
||||||
|
|
||||||
// registro modifica StatusMap
|
// registro modifica StatusMap
|
||||||
myStatusMapCtrl.UpdateAction(MG2Del.SupervisorId, ProdId, MG2Del.MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupRem, "");
|
StatusMapController.man.UpdateAction(MG2Del.SupervisorId, ProdId, MG2Del.MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupRem, "");
|
||||||
|
|
||||||
done = true;
|
done = true;
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on MachGroup.Delete: ProdId: {ProdId} | MachGroupId: {MachGroupId}{Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on Delete: ProdId: {ProdId} | MachGroupId: {MachGroupId}{Environment.NewLine}{exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// se fatto aggiorno info sullo status
|
// se fatto aggiorno info sullo status
|
||||||
myStatusMapCtrl.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupRem, "");
|
StatusMapController.man.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupRem, "");
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
{
|
{
|
||||||
|
// Clear database context
|
||||||
|
dbCtx.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -233,13 +226,10 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public MachGroupModel FindByMachGroupDbId(int MachGroupDbId)
|
public MachGroupModel FindByMachGroupDbId(int MachGroupDbId)
|
||||||
{
|
{
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
return dbCtx
|
||||||
{
|
.MachGroupList
|
||||||
return localDbCtx
|
.Where(x => x.MachGroupDbId == MachGroupDbId)
|
||||||
.MachGroupList
|
.SingleOrDefault();
|
||||||
.Where(x => x.MachGroupDbId == MachGroupDbId)
|
|
||||||
.SingleOrDefault();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -249,6 +239,7 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public MachGroupModel FindByMachGroupId(int ProdId, int MachGroupId)
|
public MachGroupModel FindByMachGroupId(int ProdId, int MachGroupId)
|
||||||
{
|
{
|
||||||
|
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
return localDbCtx
|
return localDbCtx
|
||||||
@@ -267,34 +258,27 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
{
|
{
|
||||||
// verificare fattibilità in 1 solo passo
|
// verificare fattibilità in 1 solo passo
|
||||||
int ProdDbId = 0;
|
int ProdDbId = 0;
|
||||||
List<MachGroupModel> answ = new List<MachGroupModel>();
|
try
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
|
||||||
{
|
{
|
||||||
try
|
var currProd = dbCtx
|
||||||
|
.ProdList
|
||||||
|
.Where(x => x.ProdId == ProdId)
|
||||||
|
.FirstOrDefault();
|
||||||
|
if (currProd != null)
|
||||||
{
|
{
|
||||||
var currProd = localDbCtx
|
ProdDbId = currProd.ProdDbId;
|
||||||
.ProdList
|
|
||||||
.Where(x => x.ProdId == ProdId)
|
|
||||||
.FirstOrDefault();
|
|
||||||
if (currProd != null)
|
|
||||||
{
|
|
||||||
ProdDbId = currProd.ProdDbId;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
|
||||||
{
|
|
||||||
string errMessage = $"EXCEPTION on MachGroup.GetByProdAsc: {Environment.NewLine}{exc}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
answ = localDbCtx
|
|
||||||
.MachGroupList
|
|
||||||
.Where(x => x.ProdDbId == ProdDbId)
|
|
||||||
.OrderBy(x => x.ProdIndex)
|
|
||||||
.ThenBy(x => x.MachGroupId)
|
|
||||||
.ToList();
|
|
||||||
}
|
}
|
||||||
return answ;
|
catch (Exception exc)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"EXCEPTION on GetByProdAsc: {exc}");
|
||||||
|
}
|
||||||
|
return dbCtx
|
||||||
|
.MachGroupList
|
||||||
|
.Where(x => x.ProdDbId == ProdDbId)
|
||||||
|
.OrderBy(x => x.ProdIndex)
|
||||||
|
.ThenBy(x => x.MachGroupId)
|
||||||
|
.ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -306,35 +290,29 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
{
|
{
|
||||||
// recupero
|
// recupero
|
||||||
int ProdDbId = 0;
|
int ProdDbId = 0;
|
||||||
List<MachGroupModel> answ = new List<MachGroupModel>();
|
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
// verificare fattibilità in 1 solo passo
|
||||||
|
try
|
||||||
{
|
{
|
||||||
// verificare fattibilità in 1 solo passo
|
var currProd = dbCtx
|
||||||
try
|
.ProdList
|
||||||
|
.Where(x => x.ProdId == ProdId)
|
||||||
|
.FirstOrDefault();
|
||||||
|
if (currProd != null)
|
||||||
{
|
{
|
||||||
var currProd = localDbCtx
|
ProdDbId = currProd.ProdDbId;
|
||||||
.ProdList
|
|
||||||
.Where(x => x.ProdId == ProdId)
|
|
||||||
.FirstOrDefault();
|
|
||||||
if (currProd != null)
|
|
||||||
{
|
|
||||||
ProdDbId = currProd.ProdDbId;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
|
||||||
{
|
|
||||||
string errMessage = $"EXCEPTION on MachGroup.GetByProdDesc: {Environment.NewLine}{exc}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
answ = localDbCtx
|
|
||||||
.MachGroupList
|
|
||||||
.Where(x => x.ProdDbId == ProdDbId)
|
|
||||||
.OrderByDescending(x => x.ProdIndex)
|
|
||||||
.ThenByDescending(x => x.MachGroupId)
|
|
||||||
.ToList();
|
|
||||||
}
|
}
|
||||||
return answ;
|
catch (Exception exc)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"EXCEPTION on GetByProdDesc: {exc}");
|
||||||
|
}
|
||||||
|
return dbCtx
|
||||||
|
.MachGroupList
|
||||||
|
.Where(x => x.ProdDbId == ProdDbId)
|
||||||
|
.OrderByDescending(x => x.ProdIndex)
|
||||||
|
.ThenByDescending(x => x.MachGroupId)
|
||||||
|
.ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -345,15 +323,12 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public List<MachGroupModel> GetByProdSupervisor(int ProdId, string SupervisorId)
|
public List<MachGroupModel> GetByProdSupervisor(int ProdId, string SupervisorId)
|
||||||
{
|
{
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
return dbCtx
|
||||||
{
|
.MachGroupList
|
||||||
return localDbCtx
|
.Where(x => x.Prod.ProdId == ProdId && x.SupervisorId == SupervisorId)
|
||||||
.MachGroupList
|
.OrderBy(x => x.ProdIndex)
|
||||||
.Where(x => x.Prod.ProdId == ProdId && x.SupervisorId == SupervisorId)
|
.ThenBy(x => x.MachGroupId)
|
||||||
.OrderBy(x => x.ProdIndex)
|
.ToList();
|
||||||
.ThenBy(x => x.MachGroupId)
|
|
||||||
.ToList();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -381,9 +356,7 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on MachGroup.UpdateOrder: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on UpdateOrder: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -401,7 +374,6 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
var myStatusMapCtrl = new StatusMapController();
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// aggiorno
|
// aggiorno
|
||||||
@@ -414,30 +386,31 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
currRecord.State = Core.ItemState.ND;
|
currRecord.State = Core.ItemState.ND;
|
||||||
currRecord.SupervisorId = "";
|
currRecord.SupervisorId = "";
|
||||||
currRecord.ProdIndex = 0;
|
currRecord.ProdIndex = 0;
|
||||||
// Commit changes
|
}
|
||||||
localDbCtx.SaveChanges();
|
// Commit changes
|
||||||
// aggiorno info sullo status
|
localDbCtx.SaveChanges();
|
||||||
myStatusMapCtrl.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupRemovedFromSupervisor, "");
|
// aggiorno info sullo status
|
||||||
|
StatusMapController.man.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupRemovedFromSupervisor, "");
|
||||||
|
|
||||||
done = true;
|
done = true;
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
string errMessage = $"ERROR on MachGroup.RemoveFromSupervisor: req item was not found | ProdId {ProdId} | MachGroupId {MachGroupId}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on MachGroup.RemoveFromSupervisor: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on RemoveFromSupervisor: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Reinizializzaizone del controller
|
||||||
|
/// </summary>
|
||||||
|
public void ResetController()
|
||||||
|
{
|
||||||
|
// Re-Initialize database context
|
||||||
|
dbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING);
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Set MachGroup as NeedRedo (ripresa = da rigenerare)
|
/// Set MachGroup as NeedRedo (ripresa = da rigenerare)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -450,35 +423,23 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
var myStatusMapCtrl = new StatusMapController();
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// aggiorno
|
// aggiorno
|
||||||
var item2upd = localDbCtx
|
localDbCtx
|
||||||
.MachGroupList
|
.MachGroupList
|
||||||
.Where(x => x.Prod.ProdId == ProdId && x.MachGroupId == MachGroupId)
|
.Where(x => x.Prod.ProdId == ProdId && x.MachGroupId == MachGroupId)
|
||||||
.FirstOrDefault();
|
.FirstOrDefault()
|
||||||
if (item2upd != null)
|
.State = newState;
|
||||||
{
|
// Commit changes
|
||||||
item2upd.State = newState;
|
localDbCtx.SaveChanges();
|
||||||
// Commit changes
|
done = true;
|
||||||
localDbCtx.SaveChanges();
|
// aggiorno info sullo status
|
||||||
done = true;
|
StatusMapController.man.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupNeedRedo, Value);
|
||||||
// aggiorno info sullo status
|
|
||||||
myStatusMapCtrl.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupNeedRedo, Value);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
string errMessage = $"ERROR on MachGroup.SetNeedRedo: req item was not found | ProdId {ProdId} | MachGroupId {MachGroupId} | newState {newState} | Value {Value}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on MachGroup.SetNeedRedo: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on UpdateStatus: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
@@ -494,36 +455,24 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
var myStatusMapCtrl = new StatusMapController();
|
var item2update = localDbCtx
|
||||||
|
.MachGroupList
|
||||||
|
.Where(x => x.MachGroupDbId == updItem.MachGroupDbId)
|
||||||
|
.SingleOrDefault();
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var item2update = localDbCtx
|
// update, vers 1...
|
||||||
.MachGroupList
|
localDbCtx.Entry(item2update).CurrentValues.SetValues(updItem);
|
||||||
.Where(x => x.MachGroupDbId == updItem.MachGroupDbId)
|
|
||||||
.SingleOrDefault();
|
|
||||||
if (item2update != null)
|
|
||||||
{
|
|
||||||
// update, vers 1...
|
|
||||||
localDbCtx.Entry(item2update).CurrentValues.SetValues(updItem);
|
|
||||||
|
|
||||||
// Commit changes
|
// Commit changes
|
||||||
localDbCtx.SaveChanges();
|
localDbCtx.SaveChanges();
|
||||||
done = true;
|
done = true;
|
||||||
// aggiorno info sullo status
|
// aggiorno info sullo status
|
||||||
myStatusMapCtrl.UpdateAction("", updItem.Prod.ProdId, updItem.MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupMod, "");
|
StatusMapController.man.UpdateAction("", updItem.Prod.ProdId, updItem.MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupMod, "");
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
string errMessage = $"ERROR on MachGroup.Update: req item was not found | ProdDbId {updItem.ProdDbId} | MachGroupId {updItem.MachGroupId} | ProdIndex {updItem.ProdIndex}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on MachGroup.Update: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on Update: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
@@ -541,7 +490,6 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
var myStatusMapCtrl = new StatusMapController();
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// aggiorno
|
// aggiorno
|
||||||
@@ -549,27 +497,19 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
.MachGroupList
|
.MachGroupList
|
||||||
.Where(x => x.Prod.ProdId == ProdId && x.MachGroupId == MachGroupId)
|
.Where(x => x.Prod.ProdId == ProdId && x.MachGroupId == MachGroupId)
|
||||||
.FirstOrDefault();
|
.FirstOrDefault();
|
||||||
if (currRecord != null)
|
|
||||||
{
|
currRecord.DtEnd = DtEnd;
|
||||||
currRecord.DtEnd = DtEnd;
|
|
||||||
// Commit changes
|
// Commit changes
|
||||||
localDbCtx.SaveChanges();
|
localDbCtx.SaveChanges();
|
||||||
done = true;
|
|
||||||
// aggiorno info sullo status
|
done = true;
|
||||||
myStatusMapCtrl.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, DtEnd == DateTime.MinValue ? Core.StatusMapOpType.ResetPartEnd : Core.StatusMapOpType.PartEnd, "");
|
// aggiorno info sullo status
|
||||||
}
|
StatusMapController.man.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, DtEnd == DateTime.MinValue ? Core.StatusMapOpType.ResetPartEnd : Core.StatusMapOpType.PartEnd, "");
|
||||||
else
|
|
||||||
{
|
|
||||||
string errMessage = $"ERROR on MachGroup.UpdateEnd: req item was not found | ProdId {ProdId} | MachGroupId {MachGroupId} | DtEnd {DtEnd}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on MachGroup.UpdateEnd: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on UpdateStartEnd: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
@@ -590,29 +530,19 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
// aggiorno
|
// aggiorno
|
||||||
var item2upd = localDbCtx
|
localDbCtx
|
||||||
.MachGroupList
|
.MachGroupList
|
||||||
.Where(x => x.Prod.ProdId == ProdId && x.MachGroupId == MachGroupId)
|
.Where(x => x.Prod.ProdId == ProdId && x.MachGroupId == MachGroupId)
|
||||||
.FirstOrDefault();
|
.FirstOrDefault()
|
||||||
if (item2upd != null)
|
.ProdIndex = newProdIndex;
|
||||||
{
|
// Commit changes
|
||||||
item2upd.ProdIndex = newProdIndex;
|
localDbCtx.SaveChanges();
|
||||||
// Commit changes
|
|
||||||
localDbCtx.SaveChanges();
|
done = true;
|
||||||
done = true;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
string errMessage = $"ERROR on MachGroup.UpdateOrder: req item was not found | ProdId {ProdId} | MachGroupId {MachGroupId} | newProdIndex {newProdIndex}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on MachGroup.UpdateOrder: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on UpdateOrder: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
@@ -631,7 +561,6 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
var myStatusMapCtrl = new StatusMapController();
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// aggiorno
|
// aggiorno
|
||||||
@@ -639,27 +568,19 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
.MachGroupList
|
.MachGroupList
|
||||||
.Where(x => x.Prod.ProdId == ProdId && x.MachGroupId == MachGroupId)
|
.Where(x => x.Prod.ProdId == ProdId && x.MachGroupId == MachGroupId)
|
||||||
.FirstOrDefault();
|
.FirstOrDefault();
|
||||||
if (currRecord != null)
|
|
||||||
{
|
currRecord.DtStart = DtStart;
|
||||||
currRecord.DtStart = DtStart;
|
|
||||||
// Commit changes
|
// Commit changes
|
||||||
localDbCtx.SaveChanges();
|
localDbCtx.SaveChanges();
|
||||||
done = true;
|
|
||||||
// aggiorno info sullo status
|
done = true;
|
||||||
myStatusMapCtrl.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, DtStart == DateTime.MinValue ? Core.StatusMapOpType.ResetPartStart : Core.StatusMapOpType.PartStart, "");
|
// aggiorno info sullo status
|
||||||
}
|
StatusMapController.man.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, DtStart == DateTime.MinValue ? Core.StatusMapOpType.ResetPartStart : Core.StatusMapOpType.PartStart, "");
|
||||||
else
|
|
||||||
{
|
|
||||||
string errMessage = $"ERROR on MachGroup.UpdateStart: req item was not found | ProdId {ProdId} | MachGroupId {MachGroupId} | DtStart {DtStart}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on MachGroup.UpdateStart: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on UpdateStartEnd: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
@@ -678,7 +599,6 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
var myStatusMapCtrl = new StatusMapController();
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// aggiorno
|
// aggiorno
|
||||||
@@ -686,28 +606,19 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
.MachGroupList
|
.MachGroupList
|
||||||
.Where(x => x.Prod.ProdId == ProdId && x.MachGroupId == MachGroupId)
|
.Where(x => x.Prod.ProdId == ProdId && x.MachGroupId == MachGroupId)
|
||||||
.FirstOrDefault();
|
.FirstOrDefault();
|
||||||
if (currRecord != null)
|
|
||||||
{
|
currRecord.DtStart = DtStart;
|
||||||
currRecord.DtStart = DtStart;
|
currRecord.DtEnd = DtEnd;
|
||||||
currRecord.DtEnd = DtEnd;
|
|
||||||
// Commit changes
|
// Commit changes
|
||||||
localDbCtx.SaveChanges();
|
localDbCtx.SaveChanges();
|
||||||
done = true;
|
done = true;
|
||||||
// aggiorno info sullo status
|
// aggiorno info sullo status
|
||||||
myStatusMapCtrl.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupMod, "");
|
StatusMapController.man.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupMod, "");
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
string errMessage = $"ERROR on MachGroup.UpdateStartEnd: req item was not found | ProdId {ProdId} | MachGroupId {MachGroupId} | DtStart {DtStart} | DtEnd {DtEnd}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on MachGroup.UpdateStartEnd: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on UpdateStartEnd: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
@@ -724,93 +635,67 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
var myStatusMapCtrl = new StatusMapController();
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// aggiorno
|
// aggiorno
|
||||||
var item2upd = localDbCtx
|
localDbCtx
|
||||||
.MachGroupList
|
.MachGroupList
|
||||||
.Where(x => x.Prod.ProdId == ProdId && x.MachGroupId == MachGroupId)
|
.Where(x => x.Prod.ProdId == ProdId && x.MachGroupId == MachGroupId)
|
||||||
.FirstOrDefault();
|
.FirstOrDefault()
|
||||||
if (item2upd != null)
|
.State = newState;
|
||||||
{
|
// Commit changes
|
||||||
item2upd.State = newState;
|
localDbCtx.SaveChanges();
|
||||||
// Commit changes
|
|
||||||
localDbCtx.SaveChanges();
|
done = true;
|
||||||
done = true;
|
// aggiorno info sullo status
|
||||||
// aggiorno info sullo status
|
StatusMapController.man.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupMod, "");
|
||||||
myStatusMapCtrl.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupMod, "");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
string errMessage = $"ERROR on MachGroup.UpdateStatus: req item was not found | ProdId {ProdId} | MachGroupId {MachGroupId} | newState {newState}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on MachGroup.UpdateStatus: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on UpdateStatus: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary> Set Supervisor & state for MachGroup </summary> <param name="ProdId"></param>
|
/// <summary>
|
||||||
/// <param name="MachGroupId"></param> <param name="SupervisorId"></param> <returns></returns>
|
/// Set Supervisor & state for MachGroup
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="ProdId"></param>
|
||||||
|
/// <param name="MachGroupId"></param>
|
||||||
|
/// <param name="SupervisorId"></param>
|
||||||
|
/// <returns></returns>
|
||||||
public bool UpdateSupervisor(int ProdId, int MachGroupId, string SupervisorId)
|
public bool UpdateSupervisor(int ProdId, int MachGroupId, string SupervisorId)
|
||||||
{
|
{
|
||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
var myStatusMapCtrl = new StatusMapController();
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// aggiorno
|
// aggiorno
|
||||||
var item2upd = localDbCtx
|
var currRecord = localDbCtx
|
||||||
.MachGroupList
|
.MachGroupList
|
||||||
.Where(x => x.Prod.ProdId == ProdId && x.MachGroupId == MachGroupId)
|
.Where(x => x.Prod.ProdId == ProdId && x.MachGroupId == MachGroupId)
|
||||||
.FirstOrDefault();
|
.FirstOrDefault();
|
||||||
if (item2upd != null)
|
|
||||||
{
|
|
||||||
item2upd.SupervisorId = SupervisorId;
|
|
||||||
item2upd.State = Core.ItemState.Assigned;
|
|
||||||
|
|
||||||
// Commit changes
|
currRecord.SupervisorId = SupervisorId;
|
||||||
localDbCtx.SaveChanges();
|
currRecord.State = Core.ItemState.Assigned;
|
||||||
done = true;
|
|
||||||
|
|
||||||
// aggiorno info sullo status
|
// Commit changes
|
||||||
myStatusMapCtrl.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupAssignedToSupervisor, "");
|
localDbCtx.SaveChanges();
|
||||||
}
|
|
||||||
else
|
done = true;
|
||||||
{
|
// aggiorno info sullo status
|
||||||
string errMessage = $"ERROR on MachGroup.UpdateSupervisor: req item was not found | ProdId {ProdId} | MachGroupId {MachGroupId} | SupervisorId {SupervisorId}";
|
StatusMapController.man.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupAssignedToSupervisor, "");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on MachGroup.UpdateSupervisor: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on UpdateSupervisor: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion Public Methods
|
#endregion Public Methods
|
||||||
|
|
||||||
#region Private Fields
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Istanza logger
|
|
||||||
/// </summary>
|
|
||||||
private NLog.Logger Log = LogManager.GetCurrentClassLogger();
|
|
||||||
|
|
||||||
#endregion Private Fields
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,19 +1,105 @@
|
|||||||
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
using System;
|
||||||
using NLog;
|
using System.Collections.Generic;
|
||||||
using System;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
||||||
|
|
||||||
namespace EgtBEAMWALL.DataLayer.Controllers
|
namespace EgtBEAMWALL.DataLayer.Controllers
|
||||||
{
|
{
|
||||||
public class PartController : IDisposable
|
public class PartController : IDisposable
|
||||||
{
|
{
|
||||||
|
#region Private Fields
|
||||||
|
|
||||||
|
private DatabaseContext dbCtx;
|
||||||
|
|
||||||
|
#endregion Private Fields
|
||||||
|
|
||||||
|
#region Public Fields
|
||||||
|
|
||||||
|
public static PartController man = new PartController();
|
||||||
|
|
||||||
|
#endregion Public Fields
|
||||||
|
|
||||||
#region Public Constructors
|
#region Public Constructors
|
||||||
|
|
||||||
public PartController()
|
public PartController()
|
||||||
{ }
|
{
|
||||||
|
// Initialize database context
|
||||||
|
dbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING);
|
||||||
|
}
|
||||||
|
|
||||||
#endregion Public Constructors
|
#endregion Public Constructors
|
||||||
|
|
||||||
|
#region Protected Methods
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Get BtlPartDBId by ProjId + PDN
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="ProjId"></param>
|
||||||
|
/// <param name="PDN"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
protected int FindBtlPart(int ProjId, int PDN)
|
||||||
|
{
|
||||||
|
int BtlPartDbId = 0;
|
||||||
|
|
||||||
|
#if false
|
||||||
|
var currProj = dbCtx
|
||||||
|
.ProjList
|
||||||
|
.Where(x => x.ProjId == ProjId)
|
||||||
|
.FirstOrDefault();
|
||||||
|
|
||||||
|
if (currProj != null)
|
||||||
|
{
|
||||||
|
var btlPart = dbCtx
|
||||||
|
.BTLPartList
|
||||||
|
.Where(x => x.ProjDbId == currProj.ProjDbId && x.PDN == PDN)
|
||||||
|
.SingleOrDefault();
|
||||||
|
|
||||||
|
if (btlPart != null)
|
||||||
|
{
|
||||||
|
BtlPartDbId = btlPart.BTLPartDbId;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
var btlPart = dbCtx
|
||||||
|
.BTLPartList
|
||||||
|
.Where(x => x.Project.ProjId == ProjId && x.PDN == PDN)
|
||||||
|
.SingleOrDefault();
|
||||||
|
|
||||||
|
if (btlPart != null)
|
||||||
|
{
|
||||||
|
BtlPartDbId = btlPart.BTLPartDbId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return BtlPartDbId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Get BtlPartDBId by ProjId + BtlPartId
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="ProjId"></param>
|
||||||
|
/// <param name="BtlPartId"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
protected int FindBtlPartByBPI(int ProjId, int BtlPartId)
|
||||||
|
{
|
||||||
|
int BtlPartDbId = 0;
|
||||||
|
|
||||||
|
var btlPart = dbCtx
|
||||||
|
.BTLPartList
|
||||||
|
.Where(x => x.Project.ProjId == ProjId && x.PartId == BtlPartId)
|
||||||
|
.SingleOrDefault();
|
||||||
|
|
||||||
|
if (btlPart != null)
|
||||||
|
{
|
||||||
|
BtlPartDbId = btlPart.BTLPartDbId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return BtlPartDbId;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion Protected Methods
|
||||||
|
|
||||||
#region Public Methods
|
#region Public Methods
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -22,12 +108,12 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <param name="corePart"></param>
|
/// <param name="corePart"></param>
|
||||||
/// <param name="currMachGroupDbId"></param>
|
/// <param name="currMachGroupDbId"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public PartModel ConvertFromCore(Core.PartM corePart, int currMachGroupDbId)
|
public static PartModel ConvertFromCore(Core.PartM corePart, int currMachGroupDbId)
|
||||||
{
|
{
|
||||||
PartModel answ = new PartModel();
|
PartModel answ = new PartModel();
|
||||||
if (corePart != null)
|
if (corePart != null)
|
||||||
{
|
{
|
||||||
int BTLPartId = FindBtlPartByBPI(corePart.nProjId, corePart.nBTLPartId);
|
int BTLPartId = man.FindBtlPartByBPI(corePart.nProjId, corePart.nBTLPartId);
|
||||||
answ = new PartModel()
|
answ = new PartModel()
|
||||||
{
|
{
|
||||||
PartId = corePart.nPartId,
|
PartId = corePart.nPartId,
|
||||||
@@ -65,39 +151,24 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public bool Delete(int ProdId, int MachGroupId, int PartId)
|
public bool Delete(int ProdId, int MachGroupId, int PartId)
|
||||||
{
|
{
|
||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
var item2del = dbCtx
|
||||||
|
.PartList
|
||||||
|
.Where(x => x.MachGroup.Prod.ProdId == ProdId && x.MachGroup.MachGroupId == MachGroupId && x.PartId == PartId)
|
||||||
|
.SingleOrDefault();
|
||||||
|
try
|
||||||
{
|
{
|
||||||
var myStatusMapCtrl = new StatusMapController();
|
// Remove from database
|
||||||
var item2del = localDbCtx
|
dbCtx.PartList.Remove(item2del);
|
||||||
.PartList
|
// Commit changes
|
||||||
.Where(x => x.MachGroup.Prod.ProdId == ProdId && x.MachGroup.MachGroupId == MachGroupId && x.PartId == PartId)
|
dbCtx.SaveChanges();
|
||||||
.SingleOrDefault();
|
ResetController();
|
||||||
|
done = true;
|
||||||
if (item2del != null)
|
// aggiorno info sullo status
|
||||||
{
|
StatusMapController.man.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupMod, "");
|
||||||
try
|
}
|
||||||
{
|
catch (Exception exc)
|
||||||
// Remove from database
|
{
|
||||||
localDbCtx.PartList.Remove(item2del);
|
Console.WriteLine($"EXCEPTION on Delete: ProdId: {ProdId} | MachGroupId: {MachGroupId} | PartId: {PartId}{Environment.NewLine}{exc}");
|
||||||
// Commit changes
|
|
||||||
localDbCtx.SaveChanges();
|
|
||||||
done = true;
|
|
||||||
// aggiorno info sullo status
|
|
||||||
myStatusMapCtrl.UpdateAction("", ProdId, MachGroupId, Core.StatusMapItemType.MachGroup, Core.StatusMapOpType.MachGroupMod, "");
|
|
||||||
}
|
|
||||||
catch (Exception exc)
|
|
||||||
{
|
|
||||||
string errMessage = $"EXCEPTION on Part.Delete: ProdId: {ProdId} | MachGroupId: {MachGroupId} | PartId: {PartId}{Environment.NewLine}{exc}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
string errMessage = $"ERROR on Part.Delete (01): req item was not found | ProdId {ProdId} | MachGroupId {MachGroupId} | PartId {PartId}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
@@ -110,36 +181,22 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public bool Delete(int PartDbId)
|
public bool Delete(int PartDbId)
|
||||||
{
|
{
|
||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
var item2del = dbCtx
|
||||||
|
.PartList
|
||||||
|
.Where(x => x.PartDbId == PartDbId)
|
||||||
|
.SingleOrDefault();
|
||||||
|
try
|
||||||
{
|
{
|
||||||
var item2del = localDbCtx
|
// Add to database
|
||||||
.PartList
|
dbCtx.PartList.Remove(item2del);
|
||||||
.Where(x => x.PartDbId == PartDbId)
|
// Commit changes
|
||||||
.SingleOrDefault();
|
dbCtx.SaveChanges();
|
||||||
|
ResetController();
|
||||||
if (item2del != null)
|
done = true;
|
||||||
{
|
}
|
||||||
try
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
// Add to database
|
Console.WriteLine($"EXCEPTION on Delete: {exc}");
|
||||||
localDbCtx.PartList.Remove(item2del);
|
|
||||||
// Commit changes
|
|
||||||
localDbCtx.SaveChanges();
|
|
||||||
done = true;
|
|
||||||
}
|
|
||||||
catch (Exception exc)
|
|
||||||
{
|
|
||||||
string errMessage = $"EXCEPTION on Part.Delete: {Environment.NewLine}{exc}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
string errMessage = $"ERROR on Part.Delete (02): req item was not found | PartDbId {PartDbId}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
@@ -152,31 +209,29 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public bool DeleteByMachGroup(int MachGroupDbId)
|
public bool DeleteByMachGroup(int MachGroupDbId)
|
||||||
{
|
{
|
||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
var items2del = dbCtx
|
||||||
|
.PartList
|
||||||
|
.Where(x => x.MachGroupDbId == MachGroupDbId);
|
||||||
|
try
|
||||||
{
|
{
|
||||||
var items2del = localDbCtx
|
// Add to database
|
||||||
.PartList
|
dbCtx.PartList.RemoveRange(items2del);
|
||||||
.Where(x => x.MachGroupDbId == MachGroupDbId);
|
// Commit changes
|
||||||
try
|
dbCtx.SaveChanges();
|
||||||
{
|
ResetController();
|
||||||
// Add to database
|
done = true;
|
||||||
localDbCtx.PartList.RemoveRange(items2del);
|
}
|
||||||
// Commit changes
|
catch (Exception exc)
|
||||||
localDbCtx.SaveChanges();
|
{
|
||||||
done = true;
|
Console.WriteLine($"EXCEPTION on DeleteByMachGroup: {exc}");
|
||||||
}
|
|
||||||
catch (Exception exc)
|
|
||||||
{
|
|
||||||
string errMessage = $"EXCEPTION on Part.DeleteByMachGroup: {Environment.NewLine}{exc}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
{
|
{
|
||||||
|
// Clear database context
|
||||||
|
dbCtx.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -186,13 +241,10 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public PartModel FindByDbId(int PartDbId)
|
public PartModel FindByDbId(int PartDbId)
|
||||||
{
|
{
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
return dbCtx
|
||||||
{
|
.PartList
|
||||||
return localDbCtx
|
.Where(x => x.PartDbId == PartDbId)
|
||||||
.PartList
|
.SingleOrDefault();
|
||||||
.Where(x => x.PartDbId == PartDbId)
|
|
||||||
.SingleOrDefault();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -203,9 +255,9 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public PartModel FindByPartId(int ProdId, int PartId)
|
public PartModel FindByPartId(int ProdId, int PartId)
|
||||||
{
|
{
|
||||||
PartModel answ = null;
|
PartModel answ = null;
|
||||||
using (DatabaseContext locallocalDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
answ = locallocalDbCtx
|
answ = localDbCtx
|
||||||
.PartList
|
.PartList
|
||||||
.Where(x => x.MachGroup.Prod.ProdId == ProdId && x.PartId == PartId)
|
.Where(x => x.MachGroup.Prod.ProdId == ProdId && x.PartId == PartId)
|
||||||
.FirstOrDefault();
|
.FirstOrDefault();
|
||||||
@@ -213,6 +265,15 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
return answ;
|
return answ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Reinizializzaizone del controller
|
||||||
|
/// </summary>
|
||||||
|
public void ResetController()
|
||||||
|
{
|
||||||
|
// Re-Initialize database context
|
||||||
|
dbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING);
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Update single Part
|
/// Update single Part
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -221,43 +282,29 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public bool Update(PartModel updItem)
|
public bool Update(PartModel updItem)
|
||||||
{
|
{
|
||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext locallocalDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
var myStatusMapCtrl = new StatusMapController();
|
var item2update = localDbCtx
|
||||||
var item2upd = locallocalDbCtx
|
|
||||||
.PartList
|
.PartList
|
||||||
.Where(x => x.PartDbId == updItem.PartDbId)
|
.Where(x => x.PartDbId == updItem.PartDbId)
|
||||||
.SingleOrDefault();
|
.SingleOrDefault();
|
||||||
if (item2upd != null)
|
try
|
||||||
{
|
{
|
||||||
try
|
// update, vers 1...
|
||||||
{
|
localDbCtx.Entry(item2update).CurrentValues.SetValues(updItem);
|
||||||
// update, vers 1...
|
|
||||||
locallocalDbCtx.Entry(item2upd).CurrentValues.SetValues(updItem);
|
|
||||||
|
|
||||||
//// update, vers 2
|
//// update, vers 2
|
||||||
//localDbCtx.PartList.Remove(item2del);
|
//dbCtx.PartList.Remove(item2del);
|
||||||
//localDbCtx.PartList.Add(updItem);
|
//dbCtx.PartList.Add(updItem);
|
||||||
|
|
||||||
// Commit changes
|
// Commit changes
|
||||||
locallocalDbCtx.SaveChanges();
|
localDbCtx.SaveChanges();
|
||||||
done = true;
|
done = true;
|
||||||
// aggiorno info sullo status
|
// aggiorno info sullo status
|
||||||
myStatusMapCtrl.UpdateAction("", updItem.MachGroup.Prod.ProdId, updItem.PartId, Core.StatusMapItemType.Part, Core.StatusMapOpType.MachGroupMod, "");
|
StatusMapController.man.UpdateAction("", updItem.MachGroup.Prod.ProdId, updItem.PartId, Core.StatusMapItemType.Part, Core.StatusMapOpType.MachGroupMod, "");
|
||||||
}
|
|
||||||
catch (Exception exc)
|
|
||||||
{
|
|
||||||
string errMessage = $"EXCEPTION on Part.Update: {Environment.NewLine}{exc}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
string errMessage = $"ERROR on Part.Update (01): req item was not found | PartId {updItem.PartId} | PartDbId {updItem.PartDbId} | BTLPartDbId {updItem.BTLPartDbId}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
|
catch
|
||||||
|
{ }
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
@@ -271,38 +318,25 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public bool UpdateEnd(int ProdId, int MachGroupId, int PartId, DateTime DtEnd)
|
public bool UpdateEnd(int ProdId, int MachGroupId, int PartId, DateTime DtEnd)
|
||||||
{
|
{
|
||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext locallocalDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
var myStatusMapCtrl = new StatusMapController();
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// aggiorno
|
// aggiorno
|
||||||
var item2upd = locallocalDbCtx
|
localDbCtx
|
||||||
.PartList
|
.PartList
|
||||||
.Where(x => x.MachGroup.Prod.ProdId == ProdId && x.MachGroup.MachGroupId == MachGroupId && x.PartId == PartId)
|
.Where(x => x.MachGroup.Prod.ProdId == ProdId && x.MachGroup.MachGroupId == MachGroupId && x.PartId == PartId)
|
||||||
.FirstOrDefault();
|
.FirstOrDefault()
|
||||||
|
.DtEnd = DtEnd;
|
||||||
if (item2upd != null)
|
// Commit changes
|
||||||
{
|
localDbCtx.SaveChanges();
|
||||||
item2upd.DtEnd = DtEnd;
|
done = true;
|
||||||
// Commit changes
|
// aggiorno info sullo status
|
||||||
locallocalDbCtx.SaveChanges();
|
StatusMapController.man.UpdateAction("", ProdId, PartId, Core.StatusMapItemType.Part, DtEnd == DateTime.MinValue ? Core.StatusMapOpType.ResetPartEnd : Core.StatusMapOpType.PartEnd, "");
|
||||||
done = true;
|
|
||||||
// aggiorno info sullo status
|
|
||||||
myStatusMapCtrl.UpdateAction("", ProdId, PartId, Core.StatusMapItemType.Part, DtEnd == DateTime.MinValue ? Core.StatusMapOpType.ResetPartEnd : Core.StatusMapOpType.PartEnd, "");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
string errMessage = $"ERROR on Part.UpdateEnd: req item was not found | ProdId {ProdId} | MachGroupId {MachGroupId} | PartId {PartId} | DtEnd {DtEnd}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on Part.UpdateEnd: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on UpdateStatus: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
@@ -317,37 +351,25 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public bool UpdateStart(int ProdId, int MachGroupId, int PartId, DateTime DtStart)
|
public bool UpdateStart(int ProdId, int MachGroupId, int PartId, DateTime DtStart)
|
||||||
{
|
{
|
||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext locallocalDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
var myStatusMapCtrl = new StatusMapController();
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// aggiorno
|
// aggiorno
|
||||||
var item2upd = locallocalDbCtx
|
localDbCtx
|
||||||
.PartList
|
.PartList
|
||||||
.Where(x => x.MachGroup.Prod.ProdId == ProdId && x.MachGroup.MachGroupId == MachGroupId && x.PartId == PartId)
|
.Where(x => x.MachGroup.Prod.ProdId == ProdId && x.MachGroup.MachGroupId == MachGroupId && x.PartId == PartId)
|
||||||
.FirstOrDefault();
|
.FirstOrDefault()
|
||||||
if (item2upd != null)
|
.DtStart = DtStart;
|
||||||
{
|
// Commit changes
|
||||||
item2upd.DtStart = DtStart;
|
localDbCtx.SaveChanges();
|
||||||
// Commit changes
|
done = true;
|
||||||
locallocalDbCtx.SaveChanges();
|
// aggiorno info sullo status
|
||||||
done = true;
|
StatusMapController.man.UpdateAction("", ProdId, PartId, Core.StatusMapItemType.Part, DtStart == DateTime.MinValue ? Core.StatusMapOpType.ResetPartStart : Core.StatusMapOpType.PartStart, "");
|
||||||
// aggiorno info sullo status
|
|
||||||
myStatusMapCtrl.UpdateAction("", ProdId, PartId, Core.StatusMapItemType.Part, DtStart == DateTime.MinValue ? Core.StatusMapOpType.ResetPartStart : Core.StatusMapOpType.PartStart, "");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
string errMessage = $"ERROR on Part.UpdateStart: req item was not found | ProdId {ProdId} | MachGroupId {MachGroupId} | PartId {PartId} | DtStart {DtStart}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on Part.UpdateStart: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on UpdateStatus: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -363,37 +385,25 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
public bool UpdateStatus(int ProdId, int MachGroupId, int PartId, Core.ItemState newState)
|
public bool UpdateStatus(int ProdId, int MachGroupId, int PartId, Core.ItemState newState)
|
||||||
{
|
{
|
||||||
bool done = false;
|
bool done = false;
|
||||||
using (DatabaseContext locallocalDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
var myStatusMapCtrl = new StatusMapController();
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// aggiorno
|
// aggiorno
|
||||||
var item2upd = locallocalDbCtx
|
localDbCtx
|
||||||
.PartList
|
.PartList
|
||||||
.Where(x => x.MachGroup.Prod.ProdId == ProdId && x.MachGroup.MachGroupId == MachGroupId && x.PartId == PartId)
|
.Where(x => x.MachGroup.Prod.ProdId == ProdId && x.MachGroup.MachGroupId == MachGroupId && x.PartId == PartId)
|
||||||
.FirstOrDefault();
|
.FirstOrDefault()
|
||||||
if (item2upd != null)
|
.State = newState;
|
||||||
{
|
// Commit changes
|
||||||
item2upd.State = newState;
|
localDbCtx.SaveChanges();
|
||||||
// Commit changes
|
done = true;
|
||||||
locallocalDbCtx.SaveChanges();
|
// aggiorno info sullo status
|
||||||
done = true;
|
StatusMapController.man.UpdateAction("", ProdId, PartId, Core.StatusMapItemType.Part, Core.StatusMapOpType.MachGroupMod, "");
|
||||||
// aggiorno info sullo status
|
|
||||||
myStatusMapCtrl.UpdateAction("", ProdId, PartId, Core.StatusMapItemType.Part, newState == Core.ItemState.Scrapped ? Core.StatusMapOpType.SetPartScrapped : Core.StatusMapOpType.MachGroupMod, "");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
string errMessage = $"ERROR on Part.UpdateStart: req item was not found | ProdId {ProdId} | MachGroupId {MachGroupId} | PartId {PartId} | newState {newState}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception exc)
|
catch (Exception exc)
|
||||||
{
|
{
|
||||||
string errMessage = $"EXCEPTION on Part.UpdateStatus: {Environment.NewLine}{exc}";
|
Console.WriteLine($"EXCEPTION on UpdateStatus: {exc}");
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -401,68 +411,5 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endregion Public Methods
|
#endregion Public Methods
|
||||||
|
|
||||||
#region Protected Methods
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Get BtlPartDBId by ProjId + PDN
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="ProjId"></param>
|
|
||||||
/// <param name="PDN"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
protected int FindBtlPart(int ProjId, int PDN)
|
|
||||||
{
|
|
||||||
int BtlPartDbId = 0;
|
|
||||||
|
|
||||||
using (DatabaseContext locallocalDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
|
||||||
{
|
|
||||||
var btlPart = locallocalDbCtx
|
|
||||||
.BTLPartList
|
|
||||||
.Where(x => x.Project.ProjId == ProjId && x.PDN == PDN)
|
|
||||||
.SingleOrDefault();
|
|
||||||
|
|
||||||
if (btlPart != null)
|
|
||||||
{
|
|
||||||
BtlPartDbId = btlPart.BTLPartDbId;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return BtlPartDbId;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Get BtlPartDBId by ProjId + BtlPartId
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="ProjId"></param>
|
|
||||||
/// <param name="BtlPartId"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
protected int FindBtlPartByBPI(int ProjId, int BtlPartId)
|
|
||||||
{
|
|
||||||
int BtlPartDbId = 0;
|
|
||||||
|
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
|
||||||
{
|
|
||||||
var btlPart = localDbCtx
|
|
||||||
.BTLPartList
|
|
||||||
.Where(x => x.Project.ProjId == ProjId && x.PartId == BtlPartId)
|
|
||||||
.SingleOrDefault();
|
|
||||||
|
|
||||||
if (btlPart != null)
|
|
||||||
{
|
|
||||||
BtlPartDbId = btlPart.BTLPartDbId;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return BtlPartDbId;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion Protected Methods
|
|
||||||
|
|
||||||
#region Private Fields
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Istanza logger
|
|
||||||
/// </summary>
|
|
||||||
private NLog.Logger Log = LogManager.GetCurrentClassLogger();
|
|
||||||
|
|
||||||
#endregion Private Fields
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,4 @@
|
|||||||
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
||||||
using NLog;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
@@ -8,10 +7,27 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
{
|
{
|
||||||
public class StatusMapController : IDisposable
|
public class StatusMapController : IDisposable
|
||||||
{
|
{
|
||||||
|
#region Private Fields
|
||||||
|
|
||||||
|
private DatabaseContext dbCtx;
|
||||||
|
|
||||||
|
#endregion Private Fields
|
||||||
|
|
||||||
|
#region Public Fields
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Oggetto statico per gestione chiamate da altre classi
|
||||||
|
/// </summary>
|
||||||
|
public static StatusMapController man = new StatusMapController();
|
||||||
|
|
||||||
|
#endregion Public Fields
|
||||||
|
|
||||||
#region Public Constructors
|
#region Public Constructors
|
||||||
|
|
||||||
public StatusMapController()
|
public StatusMapController()
|
||||||
{
|
{
|
||||||
|
// Initialize database context
|
||||||
|
dbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion Public Constructors
|
#endregion Public Constructors
|
||||||
@@ -21,7 +37,7 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Elimina i dati di una sessione (SupervisorId) precedente
|
/// Elimina i dati di una sessione (SupervisorId) precedente
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="Session">Se vuoto --> tutti</param>
|
/// <param name="Session">Se vuoto --> tutti</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public bool DeleteSession(string Session)
|
public bool DeleteSession(string Session)
|
||||||
{
|
{
|
||||||
@@ -29,42 +45,41 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
DateTime adesso = DateTime.Now;
|
DateTime adesso = DateTime.Now;
|
||||||
List<StatusMapModel> SM2Del = new List<StatusMapModel>();
|
List<StatusMapModel> SM2Del = new List<StatusMapModel>();
|
||||||
|
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
// svuoto la tab mappa precedente (da rivalutare in futuro)
|
||||||
|
if (string.IsNullOrEmpty(Session))
|
||||||
{
|
{
|
||||||
// svuoto la tab mappa precedente (da rivalutare in futuro)
|
SM2Del = dbCtx
|
||||||
if (string.IsNullOrEmpty(Session))
|
.StatusMapList
|
||||||
{
|
.ToList();
|
||||||
SM2Del = localDbCtx
|
|
||||||
.StatusMapList
|
|
||||||
.ToList();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
SM2Del = localDbCtx
|
|
||||||
.StatusMapList
|
|
||||||
.Where(x => x.Session == Session)
|
|
||||||
.ToList();
|
|
||||||
}
|
|
||||||
try
|
|
||||||
{
|
|
||||||
// Remove to database
|
|
||||||
localDbCtx.StatusMapList.RemoveRange(SM2Del);
|
|
||||||
// Commit changes
|
|
||||||
localDbCtx.SaveChanges();
|
|
||||||
done = true;
|
|
||||||
}
|
|
||||||
catch (Exception exc)
|
|
||||||
{
|
|
||||||
string errMessage = $"EXCEPTION on StatusMap.DeleteSession: {Environment.NewLine}{exc}";
|
|
||||||
Console.WriteLine(errMessage);
|
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
SM2Del = dbCtx
|
||||||
|
.StatusMapList
|
||||||
|
.Where(x => x.Session == Session)
|
||||||
|
.ToList();
|
||||||
|
}
|
||||||
|
try
|
||||||
|
{
|
||||||
|
// Remove to database
|
||||||
|
dbCtx.StatusMapList.RemoveRange(SM2Del);
|
||||||
|
// Commit changes
|
||||||
|
dbCtx.SaveChanges();
|
||||||
|
ResetController();
|
||||||
|
done = true;
|
||||||
|
}
|
||||||
|
catch (Exception exc)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"EXCEPTION on DeleteSession: {exc}");
|
||||||
|
}
|
||||||
|
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
{
|
{
|
||||||
|
// Clear database context
|
||||||
|
dbCtx.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -72,51 +87,44 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="Session"></param>
|
/// <param name="Session"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public List<StatusMapModel> GetBySession(string Session)
|
public List<StatusMapModel> GetBySession(string Session = "")
|
||||||
{
|
{
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
// retrieve
|
||||||
{
|
return dbCtx
|
||||||
// retrieve
|
|
||||||
return localDbCtx
|
|
||||||
.StatusMapList
|
.StatusMapList
|
||||||
.Where(x => x.Session == Session)
|
.Where(x => x.Session == Session)
|
||||||
.OrderByDescending(x => x.Index)
|
.OrderByDescending(x => x.Index)
|
||||||
.ToList();
|
.ToList();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get data for session where Index > minIndex ordered by index DESC
|
/// Get data for session where Index > minIndex ordered by index DESC
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="Session"></param>
|
|
||||||
/// <param name="minIndex"></param>
|
/// <param name="minIndex"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public List<StatusMapModel> GetFrom(string Session, int minIndex = 0)
|
public List<StatusMapModel> GetFrom(int minIndex = 0)
|
||||||
{
|
{
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
ResetController();
|
||||||
{
|
// retrieve
|
||||||
// retrieve
|
return dbCtx
|
||||||
return localDbCtx
|
|
||||||
.StatusMapList
|
.StatusMapList
|
||||||
.Where(x => x.Session == Session && x.Index >= minIndex)
|
.Where(x => x.Index >= minIndex)
|
||||||
.OrderBy(x => x.Index)
|
.OrderBy(x => x.Index)
|
||||||
.ToList();
|
.ToList();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get PROD (all)
|
/// Get PROD data for session
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="Session"></param>
|
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public List<StatusMapModel> GetProd()
|
public List<StatusMapModel> GetProd()
|
||||||
{
|
{
|
||||||
List<StatusMapModel> answ = new List<StatusMapModel>();
|
List<StatusMapModel> answ = new List<StatusMapModel>();
|
||||||
// Initialize database context
|
// Initialize database context
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
using (DatabaseContext myDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
||||||
{
|
{
|
||||||
// retrieve
|
// retrieve
|
||||||
answ = localDbCtx
|
answ = myDbCtx
|
||||||
.StatusMapList
|
.StatusMapList
|
||||||
.Where(x => x.ItemType == Core.StatusMapItemType.Prod)
|
.Where(x => x.ItemType == Core.StatusMapItemType.Prod)
|
||||||
.OrderByDescending(x => x.Index)
|
.OrderByDescending(x => x.Index)
|
||||||
@@ -126,24 +134,12 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get PROD for session
|
/// Reinizializzaizone del controller
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="Session"></param>
|
public void ResetController()
|
||||||
/// <returns></returns>
|
|
||||||
public List<StatusMapModel> GetProd(string Session)
|
|
||||||
{
|
{
|
||||||
List<StatusMapModel> answ = new List<StatusMapModel>();
|
// Re-Initialize database context
|
||||||
// Initialize database context
|
dbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING);
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
|
||||||
{
|
|
||||||
// retrieve
|
|
||||||
answ = localDbCtx
|
|
||||||
.StatusMapList
|
|
||||||
.Where(x => x.Session == Session && x.ItemType == Core.StatusMapItemType.Prod)
|
|
||||||
.OrderByDescending(x => x.Index)
|
|
||||||
.ToList();
|
|
||||||
}
|
|
||||||
return answ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -167,25 +163,22 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
done = false;
|
done = false;
|
||||||
// inserisco dato prod
|
// inserisco dato prod
|
||||||
StatusMapModel prodSMRecord = new StatusMapModel() { Session = SupervisorId, Index = 0, ItemId = ProdId, ItemType = Core.StatusMapItemType.Prod, Operation = Core.StatusMapOpType.Startup, DtEvent = adesso, Val = "" };
|
StatusMapModel prodSMRecord = new StatusMapModel() { Session = SupervisorId, Index = 0, ItemId = ProdId, ItemType = Core.StatusMapItemType.Prod, Operation = Core.StatusMapOpType.Startup, DtEvent = adesso, Val = "" };
|
||||||
// Initialize database context
|
// aggiungo
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
dbCtx.StatusMapList.Add(prodSMRecord);
|
||||||
{
|
|
||||||
// aggiungo
|
|
||||||
localDbCtx.StatusMapList.Add(prodSMRecord);
|
|
||||||
|
|
||||||
// recupero MachGroup da PROD
|
// recupero MachGroup da PROD
|
||||||
var MGList = localDbCtx
|
var MGList = dbCtx
|
||||||
.MachGroupList
|
.MachGroupList
|
||||||
.Where(x => x.Prod.ProdId == ProdId)
|
.Where(x => x.Prod.ProdId == ProdId)
|
||||||
.ToList();
|
.ToList();
|
||||||
|
|
||||||
var mgSMRecords = MGList.Select(x => new StatusMapModel() { Session = SupervisorId, Index = 0, ItemId = x.MachGroupId, ItemType = Core.StatusMapItemType.MachGroup, Operation = Core.StatusMapOpType.Startup, DtEvent = adesso, Val = "" }).ToList();
|
var mgSMRecords = MGList.Select(x => new StatusMapModel() { Session = SupervisorId, Index = 0, ItemId = x.MachGroupId, ItemType = Core.StatusMapItemType.MachGroup, Operation = Core.StatusMapOpType.Startup, DtEvent = adesso, Val = "" }).ToList();
|
||||||
// aggiungo
|
// aggiungo
|
||||||
localDbCtx.StatusMapList.AddRange(mgSMRecords);
|
dbCtx.StatusMapList.AddRange(mgSMRecords);
|
||||||
|
|
||||||
// salvo
|
// salvo
|
||||||
localDbCtx.SaveChanges();
|
dbCtx.SaveChanges();
|
||||||
}
|
ResetController();
|
||||||
done = true;
|
done = true;
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
@@ -201,70 +194,56 @@ namespace EgtBEAMWALL.DataLayer.Controllers
|
|||||||
/// <param name="Operation"></param>
|
/// <param name="Operation"></param>
|
||||||
/// <param name="Value"></param>
|
/// <param name="Value"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public bool UpdateAction(string Session, int ProdId, int ItemId, Core.StatusMapItemType ItemType, Core.StatusMapOpType Operation, string Value)
|
public bool UpdateAction(String Session, int ProdId, int ItemId, Core.StatusMapItemType ItemType, Core.StatusMapOpType Operation, string Value)
|
||||||
{
|
{
|
||||||
bool fatto = false;
|
bool fatto = false;
|
||||||
// Recupero il record PROD (che è ultimo indice)
|
// Recupero il record PROD (che è ultimo indice)
|
||||||
StatusMapModel prodData = new StatusMapModel();
|
StatusMapModel prodData = new StatusMapModel();
|
||||||
// Initialize database context
|
// se è un prod --> vado x ID
|
||||||
using (DatabaseContext localDbCtx = new DatabaseContext(DbConfig.CONNECTION_STRING))
|
if (Session == "")
|
||||||
{
|
{
|
||||||
// se è un prod --> vado x ID
|
prodData = dbCtx
|
||||||
if (Session == "")
|
.StatusMapList
|
||||||
|
.Where(x => x.ItemType == Core.StatusMapItemType.Prod && x.ItemId == ProdId)
|
||||||
|
.FirstOrDefault();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
prodData = dbCtx
|
||||||
|
.StatusMapList
|
||||||
|
.Where(x => x.ItemType == Core.StatusMapItemType.Prod && x.Session == Session)
|
||||||
|
.FirstOrDefault();
|
||||||
|
}
|
||||||
|
// se ho trovato
|
||||||
|
if (prodData != null)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
prodData = localDbCtx
|
// aggiorno indice PROD
|
||||||
.StatusMapList
|
prodData.Index++;
|
||||||
.Where(x => x.ItemType == Core.StatusMapItemType.Prod && x.ItemId == ProdId)
|
// se session è nulla ma ho un PROD --> calcolo da li la sessione
|
||||||
.FirstOrDefault();
|
if (string.IsNullOrEmpty(Session))
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
prodData = localDbCtx
|
|
||||||
.StatusMapList
|
|
||||||
.Where(x => x.ItemType == Core.StatusMapItemType.Prod && x.Session == Session)
|
|
||||||
.FirstOrDefault();
|
|
||||||
}
|
|
||||||
// se ho trovato
|
|
||||||
if (prodData != null)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
{
|
||||||
// aggiorno indice PROD
|
Session = prodData.Session;
|
||||||
prodData.Index++;
|
}
|
||||||
// se session è nulla ma ho un PROD --> calcolo da li la sessione
|
// creo un nuovo record
|
||||||
if (string.IsNullOrEmpty(Session))
|
DateTime adesso = DateTime.Now;
|
||||||
{
|
var newRec = new StatusMapModel() { Session = Session, Index = prodData.Index, ItemId = ItemId, ItemType = ItemType, Operation = Operation, DtEvent = adesso, Val = Value };
|
||||||
Session = prodData.Session;
|
dbCtx.StatusMapList.Add(newRec);
|
||||||
}
|
|
||||||
// creo un nuovo record
|
|
||||||
DateTime adesso = DateTime.Now;
|
|
||||||
var newRec = new StatusMapModel() { Session = Session, Index = prodData.Index, ItemId = ItemId, ItemType = ItemType, Operation = Operation, DtEvent = adesso, Val = Value };
|
|
||||||
localDbCtx.StatusMapList.Add(newRec);
|
|
||||||
|
|
||||||
// Commit changes
|
// Commit changes
|
||||||
localDbCtx.SaveChanges();
|
dbCtx.SaveChanges();
|
||||||
fatto = true;
|
ResetController();
|
||||||
}
|
fatto = true;
|
||||||
catch (Exception exc)
|
}
|
||||||
{
|
catch (Exception exc)
|
||||||
string errMessage = $"EXCEPTION on StatusMap.UpdateAction: {Environment.NewLine}{exc}";
|
{
|
||||||
Console.WriteLine(errMessage);
|
Console.WriteLine($"EXCEPTION on UpdateAction: {exc}");
|
||||||
Log.Error(errMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return fatto;
|
return fatto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion Public Methods
|
#endregion Public Methods
|
||||||
|
|
||||||
#region Private Fields
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Istanza logger
|
|
||||||
/// </summary>
|
|
||||||
private NLog.Logger Log = LogManager.GetCurrentClassLogger();
|
|
||||||
|
|
||||||
#endregion Private Fields
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,9 +1,15 @@
|
|||||||
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
using System;
|
||||||
using MySql.Data.EntityFramework;
|
using System.Collections.Generic;
|
||||||
using System;
|
|
||||||
using System.Data.Entity;
|
using System.Data.Entity;
|
||||||
using System.Data.Entity.Infrastructure;
|
using System.Data.Entity.Migrations;
|
||||||
|
using MySql.Data.Entity;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using EgtBEAMWALL.DataLayer.DatabaseModels;
|
||||||
|
using EgtBEAMWALL.DataLayer.Migrations;
|
||||||
|
using System.ServiceProcess;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
using System.Data.Entity.Infrastructure;
|
||||||
|
|
||||||
namespace EgtBEAMWALL.DataLayer
|
namespace EgtBEAMWALL.DataLayer
|
||||||
{
|
{
|
||||||
@@ -27,13 +33,15 @@ namespace EgtBEAMWALL.DataLayer
|
|||||||
#region Public Constructors
|
#region Public Constructors
|
||||||
|
|
||||||
[Obsolete("This constructor should never be used directly, and is only needed to generate entityframework stuff. Connection string can be adapted as pleased.")]
|
[Obsolete("This constructor should never be used directly, and is only needed to generate entityframework stuff. Connection string can be adapted as pleased.")]
|
||||||
public DatabaseContext() : base(DbConfig.CONNECTION_STRING)
|
public DatabaseContext() : base("DefaultConnection")
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
public DatabaseContext(string connectionString) : base(connectionString)
|
public DatabaseContext(string connectionString) : base(connectionString)
|
||||||
{
|
{
|
||||||
Database.CreateIfNotExists();
|
//Database.CreateIfNotExists();
|
||||||
|
////Database.SetInitializer(new MigrateDatabaseToLatestVersion<StratonLocalizerDatabase, Migrations.Configuration>());
|
||||||
|
//Database.Initialize(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion Public Constructors
|
#endregion Public Constructors
|
||||||
@@ -82,6 +90,24 @@ namespace EgtBEAMWALL.DataLayer
|
|||||||
|
|
||||||
#endregion Public Properties
|
#endregion Public Properties
|
||||||
|
|
||||||
|
#region Private Methods
|
||||||
|
|
||||||
|
private static string getDbServiceName()
|
||||||
|
{
|
||||||
|
ServiceController[] services = ServiceController.GetServices();
|
||||||
|
var service = services.FirstOrDefault(s => s.ServiceName == "MariaDB");
|
||||||
|
if (service != null)
|
||||||
|
return service.DisplayName;
|
||||||
|
|
||||||
|
service = services.FirstOrDefault(s => s.ServiceName == "MySQL");
|
||||||
|
if (service != null)
|
||||||
|
return service.DisplayName;
|
||||||
|
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion Private Methods
|
||||||
|
|
||||||
#region Public Methods
|
#region Public Methods
|
||||||
|
|
||||||
public static DatabaseContext Create()
|
public static DatabaseContext Create()
|
||||||
@@ -89,6 +115,44 @@ namespace EgtBEAMWALL.DataLayer
|
|||||||
return new DatabaseContext(DbConfig.CONNECTION_STRING);
|
return new DatabaseContext(DbConfig.CONNECTION_STRING);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static bool SetUpDbConnectionAndDbConfig()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
String serviceName = getDbServiceName();
|
||||||
|
if (serviceName.Equals(""))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
ServiceController service = new ServiceController(serviceName);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
TimeSpan timeout = TimeSpan.FromSeconds(DbConfig.DATABASE_PROCESS_TIMEOUT);
|
||||||
|
service.WaitForStatus(ServiceControllerStatus.Running, timeout);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
System.Data.Entity.Database.SetInitializer<DatabaseContext>(null);
|
||||||
|
var migrator = new DbMigrator(new Configuration());
|
||||||
|
|
||||||
|
if (migrator.GetPendingMigrations().Any())
|
||||||
|
{
|
||||||
|
// Run migrations and seed.
|
||||||
|
migrator.Update();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
#endregion Public Methods
|
#endregion Public Methods
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -98,5 +98,12 @@ namespace EgtBEAMWALL.DataLayer.DatabaseModels
|
|||||||
|
|
||||||
#endregion Public Properties
|
#endregion Public Properties
|
||||||
|
|
||||||
|
#if false
|
||||||
|
/// <summary>
|
||||||
|
/// MachineId del BTL
|
||||||
|
/// </summary>
|
||||||
|
[Column("MachineId")]
|
||||||
|
public string MachineId { get; set; } = "";
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -97,8 +97,6 @@ namespace EgtBEAMWALL.DataLayer.DatabaseModels
|
|||||||
if (!(obj is PartModel item))
|
if (!(obj is PartModel item))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (BTLPartDbId != item.BTLPartDbId)
|
|
||||||
return false;
|
|
||||||
if (H != item.H)
|
if (H != item.H)
|
||||||
return false;
|
return false;
|
||||||
if (L != item.L)
|
if (L != item.L)
|
||||||
|
|||||||
@@ -32,23 +32,11 @@ namespace EgtBEAMWALL.DataLayer.DatabaseModels
|
|||||||
public bool IsNew { get; set; } = true;
|
public bool IsNew { get; set; } = true;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Stato locked, quando aperto da un dispositivo in rete
|
/// Stato locked (quando aperto da un dispositivo in rete)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Column("Lock")]
|
[Column("Lock")]
|
||||||
public bool Locked { get; set; } = false;
|
public bool Locked { get; set; } = false;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// ID utente che ha bloccato (NumKey), quando aperto da un dispositivo in rete
|
|
||||||
/// </summary>
|
|
||||||
[Column("LockedBy")]
|
|
||||||
public string LockedBy { get; set; } = "";
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// DataOra ultima operazione di Lock (o di rimozione di lock), quando aperto da un dispositivo in rete
|
|
||||||
/// </summary>
|
|
||||||
[Column("LockDate")]
|
|
||||||
public DateTime LockDate { get; set; } = DateTime.MinValue;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Macchina
|
/// Macchina
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -49,18 +49,6 @@ namespace EgtBEAMWALL.DataLayer.DatabaseModels
|
|||||||
[Column("Lock")]
|
[Column("Lock")]
|
||||||
public bool Locked { get; set; } = false;
|
public bool Locked { get; set; } = false;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// ID utente che ha bloccato (NumKey), quando aperto da un dispositivo in rete
|
|
||||||
/// </summary>
|
|
||||||
[Column("LockedBy")]
|
|
||||||
public string LockedBy { get; set; } = "";
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// DataOra ultima operazione di Lock (o di rimozione di lock), quando aperto da un dispositivo in rete
|
|
||||||
/// </summary>
|
|
||||||
[Column("LockDate")]
|
|
||||||
public DateTime LockDate { get; set; } = DateTime.MinValue;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Macchina
|
/// Macchina
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
using System.Diagnostics;
|
using System;
|
||||||
using System;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Text;
|
||||||
|
|
||||||
namespace EgtBEAMWALL.DataLayer
|
namespace EgtBEAMWALL.DataLayer
|
||||||
{
|
{
|
||||||
@@ -37,142 +37,23 @@ namespace EgtBEAMWALL.DataLayer
|
|||||||
|
|
||||||
#region Public Methods
|
#region Public Methods
|
||||||
|
|
||||||
/// <summary>
|
public static void InitDb(string server, string nKey, string sKey)
|
||||||
/// Effettua migrazione esplicita del DB
|
|
||||||
/// </summary>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static bool CheckMigrateDb()
|
|
||||||
{
|
{
|
||||||
// esecuzione script di migrations del DB
|
|
||||||
return Controllers.DbController.man.checkMigrateDb();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Effettua verifica presenza utente
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="nKey"></param>
|
|
||||||
/// <param name="sKey"></param>
|
|
||||||
/// <param name="isNetwork"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static bool CheckUser(string nKey, string sKey, bool isNetwork)
|
|
||||||
{
|
|
||||||
// esecuzione script di install locale
|
|
||||||
return Controllers.DbController.man.checkCreateUser(DATABASE_USER, DATABASE_PWD, isNetwork);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Effettua verifica presenza view prod + relativo utente
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="nKey"></param>
|
|
||||||
/// <param name="sKey"></param>
|
|
||||||
/// <param name="isNetwork"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static bool CheckViews(string nKey, string sKey)
|
|
||||||
{
|
|
||||||
// esecuzione script di install locale
|
|
||||||
return Controllers.DbController.man.refreshViews(DATABASE_NAME);
|
|
||||||
}
|
|
||||||
/// <summary>
|
|
||||||
/// Effettua DUMP del DB dato utente admin + percorso salvataggio
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="outFilePath">Percorso di salvataggio del dump (*.sql)</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static bool DumpDB(string mysqlDumpPath, string outFilePath)
|
|
||||||
{
|
|
||||||
bool fatto = false;
|
|
||||||
// aggiungo sql finale
|
|
||||||
if (!outFilePath.EndsWith(".sql"))
|
|
||||||
{
|
|
||||||
outFilePath = $"{outFilePath}.sql";
|
|
||||||
}
|
|
||||||
// esecuzione script x dump del DB
|
|
||||||
string dirPath = Path.GetDirectoryName(outFilePath);
|
|
||||||
if (!Directory.Exists(dirPath))
|
|
||||||
{
|
|
||||||
Directory.CreateDirectory(dirPath);
|
|
||||||
}
|
|
||||||
// se ci fosse già file elimino...
|
|
||||||
if (File.Exists(outFilePath))
|
|
||||||
{
|
|
||||||
File.Delete(outFilePath);
|
|
||||||
}
|
|
||||||
// chiamo script esterno...
|
|
||||||
string callScript = $"\"{mysqlDumpPath}\" -u{DATABASE_USER} -p{DATABASE_PWD} {DATABASE_NAME} > {outFilePath}";
|
|
||||||
ExecuteCommand(callScript);
|
|
||||||
return fatto;
|
|
||||||
}
|
|
||||||
/// <summary>
|
|
||||||
/// Esecuzione di un comando esterno
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="command"></param>
|
|
||||||
public static void ExecuteCommand(string command)
|
|
||||||
{
|
|
||||||
int exitCode;
|
|
||||||
ProcessStartInfo processInfo;
|
|
||||||
Process process;
|
|
||||||
|
|
||||||
processInfo = new ProcessStartInfo("cmd.exe", "/c " + command);
|
|
||||||
processInfo.CreateNoWindow = true;
|
|
||||||
processInfo.UseShellExecute = false;
|
|
||||||
// *** Redirect the output ***
|
|
||||||
processInfo.RedirectStandardError = true;
|
|
||||||
processInfo.RedirectStandardOutput = true;
|
|
||||||
|
|
||||||
process = Process.Start(processInfo);
|
|
||||||
process.WaitForExit();
|
|
||||||
|
|
||||||
// *** Read the streams ***
|
|
||||||
// Warning: This approach can lead to deadlocks, see Edit #2
|
|
||||||
string output = process.StandardOutput.ReadToEnd();
|
|
||||||
string error = process.StandardError.ReadToEnd();
|
|
||||||
|
|
||||||
exitCode = process.ExitCode;
|
|
||||||
|
|
||||||
Console.WriteLine("output>>" + (String.IsNullOrEmpty(output) ? "(none)" : output));
|
|
||||||
Console.WriteLine("error>>" + (String.IsNullOrEmpty(error) ? "(none)" : error));
|
|
||||||
Console.WriteLine("ExitCode: " + exitCode.ToString(), "ExecuteCommand");
|
|
||||||
process.Close();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Metodo di init standard per DB in rete con Master_Key
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="server">Indirizzo del server (tipicamente indirizzo di rete)</param>
|
|
||||||
/// <param name="nKey">Numero chiave</param>
|
|
||||||
/// <param name="sKey">Codice/pwd associato a chaive</param>
|
|
||||||
/// <param name="masterKey">Numero di chiave master con cui è creato il DB</param>
|
|
||||||
public static void InitDb(string server, string nKey, string sKey, string masterKey = "")
|
|
||||||
{
|
|
||||||
// se nulla metto amster come nKey...
|
|
||||||
masterKey = string.IsNullOrEmpty(masterKey) ? nKey : masterKey;
|
|
||||||
DATABASE_SERV = server;
|
DATABASE_SERV = server;
|
||||||
DATABASE_NAME = $"EgtBwDb_{masterKey}";
|
DATABASE_NAME = $"EgtBwDb_{nKey}";
|
||||||
DATABASE_USER = $"user_{nKey}";
|
DATABASE_USER = $"user_{nKey}";
|
||||||
DATABASE_PWD = $"pwd_{sKey}";
|
DATABASE_PWD = $"pwd_{sKey}";
|
||||||
CONNECTION_STRING = $"server={DATABASE_SERV};port=3306;database={DATABASE_NAME};uid={DATABASE_USER};pwd={DATABASE_PWD};SslMode=None";
|
CONNECTION_STRING = $"server={DATABASE_SERV};port=3306;database={DATABASE_NAME};uid={DATABASE_USER};pwd={DATABASE_PWD};sslmode=None";
|
||||||
// stringa admin con utente root egalware...
|
// stringa admin con utente root egalware...
|
||||||
ADMIN_CONNECTION_STRING = $"server={DATABASE_SERV};port=3306;database=mysql;uid=root;pwd=Egalware_24068!;SslMode=none;CHARSET=utf8";
|
ADMIN_CONNECTION_STRING = $"server={DATABASE_SERV};port=3306;database=mysql;uid=root;pwd=Egalware_24068!;sslmode=None;CHARSET=utf8";
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
public static bool CheckUser(string nKey, string sKey)
|
||||||
/// Aggiorna conf NLog x target DIR
|
{
|
||||||
/// </summary>
|
// esecuzione script di install locale
|
||||||
/// <param name="logDir"></param>
|
return Controllers.DbController.man.checkCreateUser(DATABASE_USER, DATABASE_PWD);
|
||||||
public static void SetupLogDir(string logDir)
|
}
|
||||||
{
|
|
||||||
string appDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
|
|
||||||
string filePath = Path.Combine(appDir, "NLog.config");
|
|
||||||
// leggo il file NLog
|
|
||||||
string rawData = File.ReadAllText(filePath);
|
|
||||||
|
|
||||||
// sostituzione livello minimo da selezione
|
#endregion Public Methods
|
||||||
rawData = rawData.Replace("${basedir}", logDir);
|
}
|
||||||
|
|
||||||
// ri-scrivo file NLog
|
|
||||||
File.WriteAllText(filePath, rawData);
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion Public Methods
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -9,6 +9,7 @@ namespace EgtBEAMWALL.DataLayer
|
|||||||
{
|
{
|
||||||
#region Public Fields
|
#region Public Fields
|
||||||
|
|
||||||
|
public static DbManager obj = new DbManager();
|
||||||
public Controllers.BTLPartController BtlPartCtr = new Controllers.BTLPartController();
|
public Controllers.BTLPartController BtlPartCtr = new Controllers.BTLPartController();
|
||||||
public Controllers.LogMachineController LogMacCtr = new Controllers.LogMachineController();
|
public Controllers.LogMachineController LogMacCtr = new Controllers.LogMachineController();
|
||||||
public Controllers.LogSupportController LogSupCtr = new Controllers.LogSupportController();
|
public Controllers.LogSupportController LogSupCtr = new Controllers.LogSupportController();
|
||||||
|
|||||||
@@ -37,11 +37,8 @@
|
|||||||
<Prefer32Bit>false</Prefer32Bit>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="BouncyCastle.Crypto, Version=1.9.0.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\Portable.BouncyCastle.1.9.0\lib\net40\BouncyCastle.Crypto.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="EgtWPFLib5">
|
<Reference Include="EgtWPFLib5">
|
||||||
<HintPath>..\ExtLibs\EgtWPFLib5.dll</HintPath>
|
<HintPath>..\..\..\EgtProg\DllD32\EgtWPFLib5.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll</HintPath>
|
<HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll</HintPath>
|
||||||
@@ -49,37 +46,16 @@
|
|||||||
<Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
<Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll</HintPath>
|
<HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Google.Protobuf, Version=3.21.9.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
|
<Reference Include="MySql.Data, Version=6.10.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Google.Protobuf.3.21.9\lib\net45\Google.Protobuf.dll</HintPath>
|
<HintPath>..\packages\MySql.Data.6.10.9\lib\net452\MySql.Data.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="K4os.Compression.LZ4, Version=1.3.5.0, Culture=neutral, PublicKeyToken=2186fa9121ef231d, processorArchitecture=MSIL">
|
<Reference Include="MySql.Data.Entity.EF6, Version=6.10.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\K4os.Compression.LZ4.1.3.5\lib\net462\K4os.Compression.LZ4.dll</HintPath>
|
<HintPath>..\packages\MySql.Data.Entity.6.10.9\lib\net452\MySql.Data.Entity.EF6.dll</HintPath>
|
||||||
</Reference>
|
|
||||||
<Reference Include="K4os.Compression.LZ4.Streams, Version=1.3.5.0, Culture=neutral, PublicKeyToken=2186fa9121ef231d, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\K4os.Compression.LZ4.Streams.1.3.5\lib\net462\K4os.Compression.LZ4.Streams.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="K4os.Hash.xxHash, Version=1.0.8.0, Culture=neutral, PublicKeyToken=32cd54395057cec3, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\K4os.Hash.xxHash.1.0.8\lib\net462\K4os.Hash.xxHash.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="MySql.Data, Version=8.0.21.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\MySql.Data.8.0.21\lib\net452\MySql.Data.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="MySql.Data.EntityFramework, Version=8.0.21.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\MySql.Data.EntityFramework.8.0.21\lib\net452\MySql.Data.EntityFramework.dll</HintPath>
|
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
|
<HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\NLog.5.0.1\lib\net46\NLog.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="Renci.SshNet, Version=2016.1.0.0, Culture=neutral, PublicKeyToken=1cee9f8bde3db106, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\SSH.NET.2016.1.0\lib\net40\Renci.SshNet.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System.ComponentModel" />
|
<Reference Include="System.ComponentModel" />
|
||||||
<Reference Include="System.ComponentModel.DataAnnotations" />
|
<Reference Include="System.ComponentModel.DataAnnotations" />
|
||||||
<Reference Include="System.Configuration" />
|
<Reference Include="System.Configuration" />
|
||||||
@@ -87,39 +63,16 @@
|
|||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
<Reference Include="System.Drawing" />
|
<Reference Include="System.Drawing" />
|
||||||
<Reference Include="System.Drawing.Design" />
|
<Reference Include="System.Drawing.Design" />
|
||||||
<Reference Include="System.IO.Compression" />
|
|
||||||
<Reference Include="System.IO.Pipelines, Version=5.0.0.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\System.IO.Pipelines.5.0.2\lib\net461\System.IO.Pipelines.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System.Management" />
|
<Reference Include="System.Management" />
|
||||||
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System.Numerics" />
|
|
||||||
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System.Security" />
|
<Reference Include="System.Security" />
|
||||||
<Reference Include="System.ServiceModel" />
|
<Reference Include="System.ServiceModel" />
|
||||||
<Reference Include="System.ServiceProcess" />
|
<Reference Include="System.ServiceProcess" />
|
||||||
<Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System.Transactions" />
|
<Reference Include="System.Transactions" />
|
||||||
<Reference Include="System.Xml.Linq" />
|
<Reference Include="System.Xml.Linq" />
|
||||||
<Reference Include="System.Data.DataSetExtensions" />
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
<Reference Include="Microsoft.CSharp" />
|
<Reference Include="Microsoft.CSharp" />
|
||||||
<Reference Include="System.Data" />
|
<Reference Include="System.Data" />
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
<Reference Include="Ubiety.Dns.Core, Version=2.2.1.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\MySql.Data.8.0.21\lib\net452\Ubiety.Dns.Core.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="Zstandard.Net, Version=1.1.7.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\MySql.Data.8.0.21\lib\net452\Zstandard.Net.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="AdminContext.cs" />
|
<Compile Include="AdminContext.cs" />
|
||||||
@@ -168,19 +121,12 @@
|
|||||||
<Compile Include="Migrations\202109141058345_AddMachine2ProjProd.designer.cs">
|
<Compile Include="Migrations\202109141058345_AddMachine2ProjProd.designer.cs">
|
||||||
<DependentUpon>202109141058345_AddMachine2ProjProd.cs</DependentUpon>
|
<DependentUpon>202109141058345_AddMachine2ProjProd.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Migrations\202207051703296_UpgradeLockModel.cs" />
|
|
||||||
<Compile Include="Migrations\202207051703296_UpgradeLockModel.designer.cs">
|
|
||||||
<DependentUpon>202207051703296_UpgradeLockModel.cs</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="Migrations\Configuration.cs" />
|
<Compile Include="Migrations\Configuration.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="Utils.cs" />
|
<Compile Include="Utils.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="App.config" />
|
<None Include="App.config" />
|
||||||
<None Include="NLog.config">
|
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
||||||
</None>
|
|
||||||
<None Include="packages.config" />
|
<None Include="packages.config" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@@ -208,9 +154,6 @@
|
|||||||
<EmbeddedResource Include="Migrations\202109141058345_AddMachine2ProjProd.resx">
|
<EmbeddedResource Include="Migrations\202109141058345_AddMachine2ProjProd.resx">
|
||||||
<DependentUpon>202109141058345_AddMachine2ProjProd.cs</DependentUpon>
|
<DependentUpon>202109141058345_AddMachine2ProjProd.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Migrations\202207051703296_UpgradeLockModel.resx">
|
|
||||||
<DependentUpon>202207051703296_UpgradeLockModel.cs</DependentUpon>
|
|
||||||
</EmbeddedResource>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|||||||
-29
@@ -1,29 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
namespace EgtBEAMWALL.DataLayer.Migrations
|
|
||||||
{
|
|
||||||
using System.CodeDom.Compiler;
|
|
||||||
using System.Data.Entity.Migrations;
|
|
||||||
using System.Data.Entity.Migrations.Infrastructure;
|
|
||||||
using System.Resources;
|
|
||||||
|
|
||||||
[GeneratedCode("EntityFramework.Migrations", "6.4.4")]
|
|
||||||
public sealed partial class UpgradeLockModel : IMigrationMetadata
|
|
||||||
{
|
|
||||||
private readonly ResourceManager Resources = new ResourceManager(typeof(UpgradeLockModel));
|
|
||||||
|
|
||||||
string IMigrationMetadata.Id
|
|
||||||
{
|
|
||||||
get { return "202207051703296_UpgradeLockModel"; }
|
|
||||||
}
|
|
||||||
|
|
||||||
string IMigrationMetadata.Source
|
|
||||||
{
|
|
||||||
get { return null; }
|
|
||||||
}
|
|
||||||
|
|
||||||
string IMigrationMetadata.Target
|
|
||||||
{
|
|
||||||
get { return Resources.GetString("Target"); }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
namespace EgtBEAMWALL.DataLayer.Migrations
|
|
||||||
{
|
|
||||||
using System;
|
|
||||||
using System.Data.Entity.Migrations;
|
|
||||||
|
|
||||||
public partial class UpgradeLockModel : DbMigration
|
|
||||||
{
|
|
||||||
public override void Up()
|
|
||||||
{
|
|
||||||
AddColumn("dbo.ProjList", "LockedBy", c => c.String(unicode: false, nullable: false, defaultValueSql:""));
|
|
||||||
AddColumn("dbo.ProjList", "LockDate", c => c.DateTime(nullable: false, precision: 0, defaultValueSql: "DATE('1900-01-01')"));
|
|
||||||
AddColumn("dbo.ProdList", "LockedBy", c => c.String(unicode: false, nullable: false, defaultValueSql: ""));
|
|
||||||
AddColumn("dbo.ProdList", "LockDate", c => c.DateTime(nullable: false, precision: 0, defaultValueSql: "DATE('1900-01-01')"));
|
|
||||||
//AddColumn("dbo.ProjList", "LockedBy", c => c.String(unicode: false));
|
|
||||||
//AddColumn("dbo.ProjList", "LockDate", c => c.DateTime(nullable: false, precision: 0, defaultValueSql: "DATE('1900 - 01 - 01')"));
|
|
||||||
//AddColumn("dbo.ProdList", "LockedBy", c => c.String(unicode: false));
|
|
||||||
//AddColumn("dbo.ProdList", "LockDate", c => c.DateTime(nullable: false, precision: 0, defaultValueSql: "DATE('1900 - 01 - 01')"));
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void Down()
|
|
||||||
{
|
|
||||||
DropColumn("dbo.ProdList", "LockDate");
|
|
||||||
DropColumn("dbo.ProdList", "LockedBy");
|
|
||||||
DropColumn("dbo.ProjList", "LockDate");
|
|
||||||
DropColumn("dbo.ProjList", "LockedBy");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
File diff suppressed because one or more lines are too long
@@ -1,6 +1,9 @@
|
|||||||
namespace EgtBEAMWALL.DataLayer.Migrations
|
namespace EgtBEAMWALL.DataLayer.Migrations
|
||||||
{
|
{
|
||||||
|
using System;
|
||||||
|
using System.Data.Entity;
|
||||||
using System.Data.Entity.Migrations;
|
using System.Data.Entity.Migrations;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
internal sealed class Configuration : DbMigrationsConfiguration<EgtBEAMWALL.DataLayer.DatabaseContext>
|
internal sealed class Configuration : DbMigrationsConfiguration<EgtBEAMWALL.DataLayer.DatabaseContext>
|
||||||
{
|
{
|
||||||
@@ -9,6 +12,7 @@ namespace EgtBEAMWALL.DataLayer.Migrations
|
|||||||
public Configuration()
|
public Configuration()
|
||||||
{
|
{
|
||||||
AutomaticMigrationsEnabled = true;
|
AutomaticMigrationsEnabled = true;
|
||||||
|
//AutomaticMigrationsEnabled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion Public Constructors
|
#endregion Public Constructors
|
||||||
@@ -17,14 +21,18 @@ namespace EgtBEAMWALL.DataLayer.Migrations
|
|||||||
|
|
||||||
protected override void Seed(EgtBEAMWALL.DataLayer.DatabaseContext context)
|
protected override void Seed(EgtBEAMWALL.DataLayer.DatabaseContext context)
|
||||||
{
|
{
|
||||||
// This method will be called after migrating to the latest version.
|
// This method will be called after migrating to the latest version.
|
||||||
|
|
||||||
// You can use the DbSet<T>.AddOrUpdate() helper extension method to avoid creating
|
// You can use the DbSet<T>.AddOrUpdate() helper extension method
|
||||||
// duplicate seed data. E.g.
|
// to avoid creating duplicate seed data. E.g.
|
||||||
|
//
|
||||||
|
// context.People.AddOrUpdate(
|
||||||
|
// p => p.FullName,
|
||||||
|
// new Person { FullName = "Andrew Peters" },
|
||||||
|
// new Person { FullName = "Brice Lambson" },
|
||||||
|
// new Person { FullName = "Rowan Miller" }
|
||||||
|
// );
|
||||||
//
|
//
|
||||||
// context.People.AddOrUpdate( p => p.FullName, new Person { FullName = "Andrew Peters"
|
|
||||||
// }, new Person { FullName = "Brice Lambson" }, new Person { FullName = "Rowan Miller"
|
|
||||||
// } );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion Protected Methods
|
#endregion Protected Methods
|
||||||
|
|||||||
@@ -1,39 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
|
||||||
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
|
|
||||||
autoReload="true"
|
|
||||||
throwExceptions="false"
|
|
||||||
internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">
|
|
||||||
|
|
||||||
<variable name="logDir" value="${basedir}"/>
|
|
||||||
<targets>
|
|
||||||
<target xsi:type="File"
|
|
||||||
name="f_base"
|
|
||||||
fileName="${logDir}/${shortdate}.log"
|
|
||||||
layout="${longdate} [${uppercase:${level}}] ${logger:shortName=true}|${message}"
|
|
||||||
archiveFileName="${logDir}/${shortdate}.{###}.log"
|
|
||||||
archiveNumbering="Sequence"
|
|
||||||
archiveAboveSize="10240000"
|
|
||||||
maxArchiveFiles="60"
|
|
||||||
enableArchiveFileCompression="false"
|
|
||||||
keepFileOpen="false"
|
|
||||||
/>
|
|
||||||
<target xsi:type="File"
|
|
||||||
name="f_error"
|
|
||||||
fileName="${logDir}/${shortdate}_err.log"
|
|
||||||
layout="${longdate} [${uppercase:${level}}] ${logger:shortName=true}|${message}${newline}${exception:format=tostring}"
|
|
||||||
archiveFileName="${logDir}/${shortdate}_err.{###}.log"
|
|
||||||
archiveNumbering="Sequence"
|
|
||||||
archiveAboveSize="10240000"
|
|
||||||
maxArchiveFiles="60"
|
|
||||||
enableArchiveFileCompression="false"
|
|
||||||
keepFileOpen="false"
|
|
||||||
/>
|
|
||||||
</targets>
|
|
||||||
<rules>
|
|
||||||
<!-- Logging Levels (Trace, Debug, Info, Warn, Error, Fatal)-->
|
|
||||||
<logger name="*" minlevel="Info" maxlevel="Warn" final="true" writeTo="f_base" />
|
|
||||||
<logger name="*" minlevel="Error" writeTo="f_error" />
|
|
||||||
</rules>
|
|
||||||
</nlog>
|
|
||||||
@@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
|
|||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("Egalware s.r.l.")]
|
[assembly: AssemblyCompany("Egalware s.r.l.")]
|
||||||
[assembly: AssemblyProduct("EgtBEAMWALL.DataLayer")]
|
[assembly: AssemblyProduct("EgtBEAMWALL.DataLayer")]
|
||||||
[assembly: AssemblyCopyright("Copyright © 2020-2023 by Egalware s.r.l.")]
|
[assembly: AssemblyCopyright("Copyright © 2020-2022 by Egalware s.r.l.")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("2.5.5.4")]
|
[assembly: AssemblyVersion("2.4.2.1")]
|
||||||
[assembly: AssemblyFileVersion("2.5.5.4")]
|
[assembly: AssemblyFileVersion("2.4.2.1")]
|
||||||
|
|||||||
@@ -1,21 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<packages>
|
<packages>
|
||||||
<package id="BouncyCastle" version="1.8.5" targetFramework="net472" />
|
|
||||||
<package id="EntityFramework" version="6.4.4" targetFramework="net452" />
|
<package id="EntityFramework" version="6.4.4" targetFramework="net452" />
|
||||||
<package id="Google.Protobuf" version="3.21.9" targetFramework="net472" />
|
<package id="MySql.Data" version="6.10.9" targetFramework="net452" />
|
||||||
<package id="K4os.Compression.LZ4" version="1.3.5" targetFramework="net472" />
|
<package id="MySql.Data.Entity" version="6.10.9" targetFramework="net452" />
|
||||||
<package id="K4os.Compression.LZ4.Streams" version="1.3.5" targetFramework="net472" />
|
|
||||||
<package id="K4os.Hash.xxHash" version="1.0.8" targetFramework="net472" />
|
|
||||||
<package id="MySql.Data" version="8.0.21" targetFramework="net472" />
|
|
||||||
<package id="MySql.Data.EntityFramework" version="8.0.21" targetFramework="net472" />
|
|
||||||
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net452" />
|
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net452" />
|
||||||
<package id="NLog" version="5.0.1" targetFramework="net472" />
|
|
||||||
<package id="Portable.BouncyCastle" version="1.9.0" targetFramework="net472" />
|
|
||||||
<package id="SSH.NET" version="2016.1.0" targetFramework="net472" />
|
|
||||||
<package id="System.Buffers" version="4.5.1" targetFramework="net472" />
|
|
||||||
<package id="System.IO.Pipelines" version="5.0.2" targetFramework="net472" />
|
|
||||||
<package id="System.Memory" version="4.5.5" targetFramework="net472" />
|
|
||||||
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net472" />
|
|
||||||
<package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" targetFramework="net472" />
|
|
||||||
<package id="System.Threading.Tasks.Extensions" version="4.5.4" targetFramework="net472" />
|
|
||||||
</packages>
|
</packages>
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
<defaultConnectionFactory type="MySql.Data.Entity.MySqlConnectionFactory, MySql.Data.Entity.EF6"/>
|
<defaultConnectionFactory type="MySql.Data.Entity.MySqlConnectionFactory, MySql.Data.Entity.EF6"/>
|
||||||
<providers>
|
<providers>
|
||||||
|
|
||||||
<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, Version=6.10.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d"></provider>
|
<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6, Version=6.10.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d"></provider>
|
||||||
</providers>
|
</providers>
|
||||||
</entityFramework>
|
</entityFramework>
|
||||||
<connectionStrings>
|
<connectionStrings>
|
||||||
|
|||||||
@@ -35,20 +35,8 @@
|
|||||||
<Prefer32Bit>false</Prefer32Bit>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="EgtUILib, Version=2.4.6.1, Culture=neutral, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\EgtWPFLib5.2.4.7.1\lib\EgtUILib.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="EgtWPFLib, Version=2.4.5.1, Culture=neutral, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\EgtWPFLib5.2.4.7.1\lib\EgtWPFLib.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="EgtWPFLib5, Version=2.4.7.1, Culture=neutral, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\EgtWPFLib5.2.4.7.1\lib\EgtWPFLib5.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
<Reference Include="System.Windows.Interactivity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\EgtWPFLib5.2.4.7.1\lib\System.Windows.Interactivity.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System.Xml.Linq" />
|
<Reference Include="System.Xml.Linq" />
|
||||||
<Reference Include="System.Data.DataSetExtensions" />
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
<Reference Include="Microsoft.CSharp" />
|
<Reference Include="Microsoft.CSharp" />
|
||||||
@@ -83,7 +71,6 @@
|
|||||||
<DependentUpon>StressTest.cs</DependentUpon>
|
<DependentUpon>StressTest.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<None Include="App.config" />
|
<None Include="App.config" />
|
||||||
<None Include="packages.config" />
|
|
||||||
<None Include="Properties\Settings.settings">
|
<None Include="Properties\Settings.settings">
|
||||||
<Generator>SettingsSingleFileGenerator</Generator>
|
<Generator>SettingsSingleFileGenerator</Generator>
|
||||||
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ namespace EgtBEAMWALL.StressTest
|
|||||||
List<DataLayer.DatabaseModels.BTLPartModel> currPartList = new List<DataLayer.DatabaseModels.BTLPartModel>();
|
List<DataLayer.DatabaseModels.BTLPartModel> currPartList = new List<DataLayer.DatabaseModels.BTLPartModel>();
|
||||||
List<Core.MyMachGroupM> currMachGroupList = new List<Core.MyMachGroupM>();
|
List<Core.MyMachGroupM> currMachGroupList = new List<Core.MyMachGroupM>();
|
||||||
List<Core.PartM> currMGPartList = new List<Core.PartM>();
|
List<Core.PartM> currMGPartList = new List<Core.PartM>();
|
||||||
ProjCtr.UpdateInfo(currProjId, $"{DateTime.Now:yyyyMMdd_HHmmssfff}", $"LN_{DateTime.Now:yyyyMMdd_HHmm}", DateTime.Now.AddSeconds(15), Core.ConstBeam.BWType.BEAM, "SIM01");
|
ProjCtr.UpdateInfo(currProjId, $"{DateTime.Now:yyyyMMdd_HHmmssfff}", $"LN_{DateTime.Now:yyyyMMdd_HHmm}", DateTime.Now.AddSeconds(15));
|
||||||
// genero le BTLParts ed assegno..
|
// genero le BTLParts ed assegno..
|
||||||
for (int j = 0; j < currRandom.BtlPart2Proj; j++)
|
for (int j = 0; j < currRandom.BtlPart2Proj; j++)
|
||||||
{
|
{
|
||||||
@@ -109,7 +109,7 @@ namespace EgtBEAMWALL.StressTest
|
|||||||
{
|
{
|
||||||
// FixME!!! non può creare x loop in CreateBeamDL che vuole nParentMachGroup
|
// FixME!!! non può creare x loop in CreateBeamDL che vuole nParentMachGroup
|
||||||
// genero le Part x MachGroup ed assegno
|
// genero le Part x MachGroup ed assegno
|
||||||
Core.PartM currPart = Core.PartM.CreatePart(Core.ConstBeam.BWType.BEAM, currMachGroupList.FirstOrDefault(), currPartList[BPIdx].PartId, 1);
|
Core.PartM currPart = Core.BeamM.CreateBeamDL(null, currPartList[BPIdx].PartId, 1);
|
||||||
currMGPartList.Add(currPart);
|
currMGPartList.Add(currPart);
|
||||||
//currMGPartList.Add(new DataLayer.DatabaseModels.PartModel() { BTLPartDbId = currBTLPart.BTLPartDbId, PDN = l * k * currRandom.Part2MachGroup, PartId = l, H = 10 * l, L = 50 * l, W = 5 * l });
|
//currMGPartList.Add(new DataLayer.DatabaseModels.PartModel() { BTLPartDbId = currBTLPart.BTLPartDbId, PDN = l * k * currRandom.Part2MachGroup, PartId = l, H = 10 * l, L = 50 * l, W = 5 * l });
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<packages>
|
|
||||||
<package id="EgtWPFLib5" version="2.4.7.1" targetFramework="net452" />
|
|
||||||
</packages>
|
|
||||||
@@ -3,7 +3,8 @@ Imports EgtBEAMWALL.Core
|
|||||||
|
|
||||||
Public Class AboutBoxV
|
Public Class AboutBoxV
|
||||||
|
|
||||||
Private Sub AboutBoxWD_Loaded(sender As Object, e As RoutedEventArgs) Handles Me.Loaded
|
Private Sub AboutBoxWD_Initialized(sender As Object, e As EventArgs) Handles Me.Initialized
|
||||||
|
Me.Owner = Application.Current.MainWindow
|
||||||
DescriptionLbl.Text = My.Application.Info.Description.ToString()
|
DescriptionLbl.Text = My.Application.Info.Description.ToString()
|
||||||
VersionLbl.Text = "Version : " & My.Application.Info.Version.Major.ToString() &
|
VersionLbl.Text = "Version : " & My.Application.Info.Version.Major.ToString() &
|
||||||
"." & My.Application.Info.Version.Minor.ToString() &
|
"." & My.Application.Info.Version.Minor.ToString() &
|
||||||
@@ -24,9 +25,6 @@ Public Class AboutBoxV
|
|||||||
sInfo &= sKey & " - " & sKlev & " - " & sOpts & sLeftDays & Environment.NewLine
|
sInfo &= sKey & " - " & sKlev & " - " & sOpts & sLeftDays & Environment.NewLine
|
||||||
sInfo &= "DataRoot " & Map.refMainWindowVM.MainWindowM.sDataRoot & Environment.NewLine
|
sInfo &= "DataRoot " & Map.refMainWindowVM.MainWindowM.sDataRoot & Environment.NewLine
|
||||||
sInfo &= "MachinesRoot " & Map.refMainWindowVM.MainWindowM.sMachinesRoot & Environment.NewLine
|
sInfo &= "MachinesRoot " & Map.refMainWindowVM.MainWindowM.sMachinesRoot & Environment.NewLine
|
||||||
Dim sOpSys As String = String.Empty
|
|
||||||
EgtGetOsInfo( sOpSys)
|
|
||||||
sInfo &= sOpSys & Environment.NewLine
|
|
||||||
Dim sCPU As String = String.Empty
|
Dim sCPU As String = String.Empty
|
||||||
EgtGetCpuInfo( sCPU)
|
EgtGetCpuInfo( sCPU)
|
||||||
sInfo &= sCPU & Environment.NewLine
|
sInfo &= sCPU & Environment.NewLine
|
||||||
@@ -34,7 +32,7 @@ Public Class AboutBoxV
|
|||||||
EgtGetSceneInfo(sScene)
|
EgtGetSceneInfo(sScene)
|
||||||
sInfo &= sScene
|
sInfo &= sScene
|
||||||
InfoLbl.Text = sInfo
|
InfoLbl.Text = sInfo
|
||||||
ExitBtn.Content = EgtMsg(MSG_MISSINGKEYWD + 4) 'Ok
|
ExitBtn.Content = EgtMsg(constmsg.MSG_MISSINGKEYWD + 4) 'Ok
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
|
xmlns:local="clr-namespace:EgtCOMMTest"
|
||||||
mc:Ignorable="d"
|
mc:Ignorable="d"
|
||||||
d:DesignHeight="450" d:DesignWidth="800">
|
d:DesignHeight="450" d:DesignWidth="800">
|
||||||
<ItemsControl ItemsSource="{Binding AxesList}">
|
<ItemsControl ItemsSource="{Binding AxesList}">
|
||||||
|
|||||||
@@ -101,35 +101,27 @@ Public Class Axis
|
|||||||
Public ReadOnly Property sValue As String
|
Public ReadOnly Property sValue As String
|
||||||
Get
|
Get
|
||||||
Dim nDec As Integer = 0
|
Dim nDec As Integer = 0
|
||||||
If CurrentMachine.NCType = NCTypes.TPA Then
|
Select Case Type
|
||||||
nDec = -3
|
Case AxisTypes.LINEAR
|
||||||
Else
|
nDec = -3
|
||||||
Select Case Type
|
Case AxisTypes.ROTATIONAL
|
||||||
Case AxisTypes.LINEAR
|
nDec = -4
|
||||||
nDec = -3
|
Case Else
|
||||||
Case AxisTypes.ROTATIONAL
|
nDec = 0
|
||||||
nDec = -4
|
End Select
|
||||||
Case Else
|
|
||||||
nDec = 0
|
|
||||||
End Select
|
|
||||||
End If
|
|
||||||
Return DoubleToString(m_dValue, nDec)
|
Return DoubleToString(m_dValue, nDec)
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Friend Sub SetValue(value As Double)
|
Friend Sub SetValue(value As Double)
|
||||||
If CurrentMachine.NCType = NCTypes.TPA Then
|
Select Case Type
|
||||||
m_dValue = value
|
Case AxisTypes.LINEAR
|
||||||
Else
|
m_dValue = value / 1000
|
||||||
Select Case Type
|
Case AxisTypes.ROTATIONAL
|
||||||
Case AxisTypes.LINEAR
|
m_dValue = value / 10000
|
||||||
m_dValue = value / 1000
|
Case Else
|
||||||
Case AxisTypes.ROTATIONAL
|
m_dValue = value
|
||||||
m_dValue = value / 10000
|
End Select
|
||||||
Case Else
|
|
||||||
m_dValue = value
|
|
||||||
End Select
|
|
||||||
End If
|
|
||||||
NotifyPropertyChanged(NameOf(sValue))
|
NotifyPropertyChanged(NameOf(sValue))
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|||||||
@@ -16,34 +16,11 @@ Public Class CALCPanelVM
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Private m_bMachineLog As Boolean = False
|
|
||||||
Public Property bMachineLog As Boolean
|
|
||||||
Get
|
|
||||||
Return m_bMachineLog
|
|
||||||
End Get
|
|
||||||
Set(value As Boolean)
|
|
||||||
m_bMachineLog = value
|
|
||||||
If value Then
|
|
||||||
Map.refProjectVM.SetSelTabPage(ProjectVM.TabPages.MACHINELOG)
|
|
||||||
ElseIf Not IsNothing(Map.refLeftPanelVM.SelOPMode) AndAlso Map.refLeftPanelVM.SelOPMode.Id = OPModes.Mdi Then
|
|
||||||
Map.refProjectVM.SetSelTabPage(ProjectVM.TabPages.MDI)
|
|
||||||
Else
|
|
||||||
Map.refProjectVM.SetSelTabPage(ProjectVM.TabPages.SCENE)
|
|
||||||
End If
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
Friend Sub SetMachineLog(value As Boolean)
|
|
||||||
m_bMachineLog = value
|
|
||||||
NotifyPropertyChanged(NameOf(bMachineLog))
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
' Definizione comandi
|
' Definizione comandi
|
||||||
Private m_cmdVerify As ICommand
|
Private m_cmdVerify As ICommand
|
||||||
Private m_cmdVerifyAll As ICommand
|
Private m_cmdVerifyAll As ICommand
|
||||||
Private m_cmdSimulate As ICommand
|
Private m_cmdSimulate As ICommand
|
||||||
|
|
||||||
Private m_ProcessResultList As New List(Of Integer)
|
|
||||||
|
|
||||||
#Region "Messages"
|
#Region "Messages"
|
||||||
|
|
||||||
Public ReadOnly Property Verify_ToolTip As String
|
Public ReadOnly Property Verify_ToolTip As String
|
||||||
@@ -81,7 +58,6 @@ Public Class CALCPanelVM
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub Calc_ProcessResult(sender As Object, e As CalcResultEventArgs)
|
Private Sub Calc_ProcessResult(sender As Object, e As CalcResultEventArgs)
|
||||||
m_ProcessResultList.Add(e.m_Result.nBarId)
|
|
||||||
ProcessResults(e.m_Result)
|
ProcessResults(e.m_Result)
|
||||||
Dim nRawid As Integer = e.m_Result.nBarId
|
Dim nRawid As Integer = e.m_Result.nBarId
|
||||||
If nRawid <= 0 Then Return
|
If nRawid <= 0 Then Return
|
||||||
@@ -95,19 +71,15 @@ Public Class CALCPanelVM
|
|||||||
End If
|
End If
|
||||||
' ciclo sui pezzi
|
' ciclo sui pezzi
|
||||||
Dim bNotOkFound As Boolean = False
|
Dim bNotOkFound As Boolean = False
|
||||||
Dim MachGroupList As List(Of MachGroupVM) = Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.Where(Function(x) m_ProcessResultList.Contains(x.Id)).ToList()
|
For Each MachGroup As MyMachGroupVM In Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList
|
||||||
For Each MachGroup As MyMachGroupVM In MachGroupList
|
|
||||||
' se trovo pezzo errato, resetto tutti i successivi
|
' se trovo pezzo errato, resetto tutti i successivi
|
||||||
If Not bNotOkFound AndAlso MachGroup.MyMachGroupM.m_nCALC_GlobalState <> CalcStates.OK AndAlso MachGroup.MyMachGroupM.m_nCALC_GlobalState <> CalcStates.INFO Then
|
If Not bNotOkFound AndAlso MachGroup.MyMachGroupM.m_nCALC_GlobalState <> CalcStates.OK AndAlso MachGroup.MyMachGroupM.m_nCALC_GlobalState <> CalcStates.INFO Then
|
||||||
bNotOkFound = True
|
bNotOkFound = True
|
||||||
End If
|
End If
|
||||||
If bNotOkFound Then MachGroup.ResetProduce()
|
If bNotOkFound Then MachGroup.ResetProduce()
|
||||||
Next
|
Next
|
||||||
m_ProcessResultList = New List(Of Integer)
|
|
||||||
Map.refProjectVM.ManageIsEnabled(True)
|
Map.refProjectVM.ManageIsEnabled(True)
|
||||||
Map.refMyStatusBarVM.ResetStopProgress()
|
Map.refMyStatusBarVM.ResetStopProgress()
|
||||||
' riabilito bottoni di comunicazione a fine invio programma
|
|
||||||
Map.refMachCommandMessagePanelVM.SetCommBtnIsEnabled(True)
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub Calc_ProcessEnded(sender As Object, e As CalcProcessEndEventArgs)
|
Private Sub Calc_ProcessEnded(sender As Object, e As CalcProcessEndEventArgs)
|
||||||
@@ -118,10 +90,6 @@ Public Class CALCPanelVM
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Shared Sub ProcessResults(Bar As Bar)
|
Private Shared Sub ProcessResults(Bar As Bar)
|
||||||
If IsNothing(Bar) Then Return
|
|
||||||
|
|
||||||
' disabilito impostazione modificato
|
|
||||||
Dim DisableMgr As New DisableModifiedMgr
|
|
||||||
|
|
||||||
Dim BtlPath As String = Bar.sBarPath
|
Dim BtlPath As String = Bar.sBarPath
|
||||||
Dim ResPath As String = Path.ChangeExtension(BtlPath, ".txt")
|
Dim ResPath As String = Path.ChangeExtension(BtlPath, ".txt")
|
||||||
@@ -143,13 +111,14 @@ Public Class CALCPanelVM
|
|||||||
Dim cutId As Integer = 0
|
Dim cutId As Integer = 0
|
||||||
Dim taskId As Integer = 0
|
Dim taskId As Integer = 0
|
||||||
Dim prevCutId As Integer = GDB_ID.NULL
|
Dim prevCutId As Integer = GDB_ID.NULL
|
||||||
|
Dim currPart As PartVM
|
||||||
|
|
||||||
Dim lines As String() = System.IO.File.ReadAllLines(ResPath)
|
Dim lines As String() = System.IO.File.ReadAllLines(ResPath)
|
||||||
For Each line As String In lines
|
For Each line As String In lines
|
||||||
|
|
||||||
If line.StartsWith("ERR=") Then
|
If line.StartsWith("ERR=") Then
|
||||||
Dim nVal As Integer? = GetVal(line, "ERR")
|
Dim nVal As Integer? = GetVal(line, "ERR")
|
||||||
nErr = (If(Not IsNothing(nVal), nVal.Value, 0))
|
nErr = (If(nVal IsNot Nothing, nVal.Value, 0))
|
||||||
sMsg = ""
|
sMsg = ""
|
||||||
dRot = 0
|
dRot = 0
|
||||||
nFall = 0
|
nFall = 0
|
||||||
@@ -157,24 +126,24 @@ Public Class CALCPanelVM
|
|||||||
taskId = 0
|
taskId = 0
|
||||||
ElseIf line.StartsWith("ROT=") Then
|
ElseIf line.StartsWith("ROT=") Then
|
||||||
Dim nVal As Integer? = GetVal(line, "ROT")
|
Dim nVal As Integer? = GetVal(line, "ROT")
|
||||||
Dim nRot As Integer = (If(Not IsNothing(nVal), nVal.Value, 0))
|
Dim nRot As Integer = (If(nVal IsNot Nothing, nVal.Value, 0))
|
||||||
dRot = Math.Abs(((4 - nRot) Mod 4) * 90)
|
dRot = Math.Abs(((4 - nRot) Mod 4) * 90)
|
||||||
dPartRot = Math.Max(dPartRot, dRot)
|
dPartRot = Math.Max(dPartRot, dRot)
|
||||||
dTotRot = Math.Max(dTotRot, dRot)
|
dTotRot = Math.Max(dTotRot, dRot)
|
||||||
ElseIf line.StartsWith("CUTID=") Then
|
ElseIf line.StartsWith("CUTID=") Then
|
||||||
Dim nVal As Integer? = GetVal(line, "CUTID")
|
Dim nVal As Integer? = GetVal(line, "CUTID")
|
||||||
cutId = If(Not IsNothing(nVal), nVal.Value, 0)
|
cutId = If(nVal IsNot Nothing, nVal.Value, 0)
|
||||||
ElseIf line.StartsWith("TASKID=") Then
|
ElseIf line.StartsWith("TASKID=") Then
|
||||||
Dim nVal As Integer? = GetVal(line, "TASKID")
|
Dim nVal As Integer? = GetVal(line, "TASKID")
|
||||||
taskId = (If(Not IsNothing(nVal), nVal.Value, 0))
|
taskId = (If(nVal IsNot Nothing, nVal.Value, 0))
|
||||||
ProcessResultAdd(ProcessResultList, ProcessResult.CreateTaskResult(cutId, taskId, nErr, sMsg, dRot), Bar)
|
ProcessResultAdd(ProcessResultList, ProcessResult.CreateTaskResult(cutId, taskId, nErr, sMsg, dRot), Bar)
|
||||||
ElseIf line.StartsWith("FALL=") Then
|
ElseIf line.StartsWith("FALL=") Then
|
||||||
Dim nVal As Integer? = GetVal(line, "FALL")
|
Dim nVal As Integer? = GetVal(line, "FALL")
|
||||||
nFall = (If(Not IsNothing(nVal), nVal.Value, 0))
|
nFall = (If(nVal IsNot Nothing, nVal.Value, 0))
|
||||||
ProcessResultList.Add(ProcessResult.CreateFallResult(cutId, nErr, sMsg, nFall))
|
ProcessResultList.Add(ProcessResult.CreateFallResult(cutId, nErr, sMsg, nFall))
|
||||||
ElseIf line.StartsWith("TIME=") Then
|
ElseIf line.StartsWith("TIME=") Then
|
||||||
Dim nVal As Integer? = GetVal(line, "TIME")
|
Dim nVal As Integer? = GetVal(line, "TIME")
|
||||||
nTotTime = (If(Not IsNothing(nVal), nVal.Value, 0))
|
nTotTime = (If(nVal IsNot Nothing, nVal.Value, 0))
|
||||||
ProcessResultList.Add(ProcessResult.CreateTimeResult(cutId, nTotTime))
|
ProcessResultList.Add(ProcessResult.CreateTimeResult(cutId, nTotTime))
|
||||||
'If Bar.nBarType = ProjectType.PROJ AndAlso Not IsNothing(currBTLPart) Then
|
'If Bar.nBarType = ProjectType.PROJ AndAlso Not IsNothing(currBTLPart) Then
|
||||||
' EgtSetInfo(currBTLPart.nPartId, If(Bar.nBarType = ProjectType.PROJ, ITG_PROJ_TIME, ITG_PROD_TIME), nTotTime, True)
|
' EgtSetInfo(currBTLPart.nPartId, If(Bar.nBarType = ProjectType.PROJ, ITG_PROJ_TIME, ITG_PROD_TIME), nTotTime, True)
|
||||||
@@ -193,9 +162,9 @@ Public Class CALCPanelVM
|
|||||||
Machgroup.CalcMachGroupUpdate(0, 0, "")
|
Machgroup.CalcMachGroupUpdate(0, 0, "")
|
||||||
' Ciclo ...
|
' Ciclo ...
|
||||||
Dim nCUTID As Integer = -1
|
Dim nCUTID As Integer = -1
|
||||||
Dim CurrPartVM As PartVM = Nothing
|
Dim CurrPartVM As PartVM
|
||||||
Dim CurrMachgroupVM As MyMachGroupVM = Nothing
|
Dim CurrMachgroupVM As MyMachGroupVM
|
||||||
Dim CurrBTLFeatureVM As BTLFeatureVM = Nothing
|
Dim CurrBTLFeatureVM As BTLFeatureVM
|
||||||
For Each Line In ProcessResultList
|
For Each Line In ProcessResultList
|
||||||
' se necessario recupero part
|
' se necessario recupero part
|
||||||
If Line.nCUTID <> 0 Then
|
If Line.nCUTID <> 0 Then
|
||||||
@@ -217,39 +186,32 @@ Public Class CALCPanelVM
|
|||||||
End If
|
End If
|
||||||
Select Case Line.Type
|
Select Case Line.Type
|
||||||
Case ProcessResult.ProcessResultTypes.BAR
|
Case ProcessResult.ProcessResultTypes.BAR
|
||||||
If Not IsNothing(CurrMachgroupVM) Then CurrMachgroupVM.CalcMachGroupUpdate(Line.nERR, Line.dROT, Line.sMSG)
|
CurrMachgroupVM.CalcMachGroupUpdate(Line.nERR, Line.dROT, Line.sMSG)
|
||||||
Case ProcessResult.ProcessResultTypes.PART
|
Case ProcessResult.ProcessResultTypes.PART
|
||||||
If Not IsNothing(CurrPartVM) Then CurrPartVM.CalcPartUpdate(Line.nERR, Line.dROT, Line.sMSG)
|
CurrPartVM.CalcPartUpdate(Line.nERR, Line.dROT, Line.sMSG)
|
||||||
Case ProcessResult.ProcessResultTypes.TASKID
|
Case ProcessResult.ProcessResultTypes.TASKID
|
||||||
If Not IsNothing(CurrBTLFeatureVM) Then CurrBTLFeatureVM.CalcFeatureUpdate(Line.nERR, Line.dROT, Line.sMSG)
|
CurrBTLFeatureVM.CalcFeatureUpdate(Line.nERR, Line.dROT, Line.sMSG)
|
||||||
Case ProcessResult.ProcessResultTypes.FALL
|
Case ProcessResult.ProcessResultTypes.FALL
|
||||||
If Not IsNothing(CurrPartVM) Then CurrPartVM.CalcFallUpdate(Line.nFALL)
|
CurrPartVM.CalcFallUpdate(Line.nFALL)
|
||||||
Case ProcessResult.ProcessResultTypes.TIME
|
Case ProcessResult.ProcessResultTypes.TIME
|
||||||
If IsNothing(CurrMachgroupVM) Then CurrMachgroupVM = GetMachgroupVMFromMachgroupId(Bar.nBarId)
|
If IsNothing(CurrMachgroupVM) Then CurrMachgroupVM = GetMachgroupVMFromMachgroupId(Bar.nBarId)
|
||||||
If Not IsNothing(CurrMachgroupVM) Then CurrMachgroupVM.CalcTimeUpdate(Line.nTIME)
|
CurrMachgroupVM.CalcTimeUpdate(Line.nTIME)
|
||||||
End Select
|
End Select
|
||||||
Next
|
Next
|
||||||
Machgroup = GetMachgroupVMFromMachgroupId(Bar.nBarId)
|
Machgroup = GetMachgroupVMFromMachgroupId(Bar.nBarId)
|
||||||
If Not IsNothing(Machgroup) Then
|
For Each Part In Machgroup.PartVMList
|
||||||
For Each Part In Machgroup.PartVMList
|
Part.CalcGlobalUpdate()
|
||||||
Part.CalcGlobalUpdate()
|
Next
|
||||||
Next
|
Machgroup.CalcGlobalUpdate()
|
||||||
Machgroup.CalcGlobalUpdate()
|
|
||||||
End If
|
|
||||||
|
|
||||||
End If
|
End If
|
||||||
|
|
||||||
' mando notifica aggiornamento ad ottimizzatore
|
|
||||||
DbControllers.m_StatusMapController.UpdateAction(DbControllers.m_SupervisorId, Map.refSupervisorManagerVM.CurrProd.nProdId, Bar.nBarId, StatusMapItemType.MachGroup, StatusMapOpType.MachGroupValidationUpdate, "")
|
|
||||||
|
|
||||||
Else
|
Else
|
||||||
bErrors = True
|
bErrors = True
|
||||||
nLastErr = 25
|
nLastErr = 25
|
||||||
sLastMsg = "Execution Error"
|
sLastMsg = "Execution Error"
|
||||||
End If
|
End If
|
||||||
|
|
||||||
' ripristino precedente impostazione modificato
|
|
||||||
DisableMgr.ReEnable()
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Shared Function GetVal(sText As String, sKey As String) As Integer?
|
Private Shared Function GetVal(sText As String, sKey As String) As Integer?
|
||||||
@@ -265,7 +227,7 @@ Public Class CALCPanelVM
|
|||||||
End Function
|
End Function
|
||||||
|
|
||||||
Private Shared Sub ProcessResultAdd(PRList As List(Of ProcessResult), NewPR As ProcessResult, Bar As Bar)
|
Private Shared Sub ProcessResultAdd(PRList As List(Of ProcessResult), NewPR As ProcessResult, Bar As Bar)
|
||||||
Dim Prev As ProcessResult = Nothing
|
Dim Prev As ProcessResult
|
||||||
Select Case NewPR.Type
|
Select Case NewPR.Type
|
||||||
Case ProcessResult.ProcessResultTypes.BAR
|
Case ProcessResult.ProcessResultTypes.BAR
|
||||||
If Bar.nProgramPage = ProjectType.PROJ Then
|
If Bar.nProgramPage = ProjectType.PROJ Then
|
||||||
@@ -297,7 +259,6 @@ Public Class CALCPanelVM
|
|||||||
Dim PartVM As PartVM = MachGroupVM.PartVMList.FirstOrDefault(Function(x) x.nPartId = nPartId)
|
Dim PartVM As PartVM = MachGroupVM.PartVMList.FirstOrDefault(Function(x) x.nPartId = nPartId)
|
||||||
If Not IsNothing(PartVM) Then Return PartVM
|
If Not IsNothing(PartVM) Then Return PartVM
|
||||||
Next
|
Next
|
||||||
Return Nothing
|
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Private Shared Function GetMachgroupVMFromMachgroupId(nMachGroupId As Integer) As MyMachGroupVM
|
Private Shared Function GetMachgroupVMFromMachgroupId(nMachGroupId As Integer) As MyMachGroupVM
|
||||||
@@ -380,8 +341,7 @@ Public Class CALCPanelVM
|
|||||||
.nProgramPage = ProjectType.PROD,
|
.nProgramPage = ProjectType.PROD,
|
||||||
.nProjType = ProjType,
|
.nProjType = ProjType,
|
||||||
.bBarOk = True,
|
.bBarOk = True,
|
||||||
.nMachineName = MachineName,
|
.nMachineName = MachineName}
|
||||||
.nGlobState = MachGroup.nGlobalState}
|
|
||||||
Select Case MachGroup.nGlobalState
|
Select Case MachGroup.nGlobalState
|
||||||
Case Core.CalcStates.OK, Core.CalcStates.INFO
|
Case Core.CalcStates.OK, Core.CalcStates.INFO
|
||||||
Bar.nCmdType = CalcIntegration.CmdTypes.GENERATE
|
Bar.nCmdType = CalcIntegration.CmdTypes.GENERATE
|
||||||
@@ -397,7 +357,7 @@ Public Class CALCPanelVM
|
|||||||
' disabilito interfaccia
|
' disabilito interfaccia
|
||||||
Map.refProjectVM.ManageIsEnabled(False)
|
Map.refProjectVM.ManageIsEnabled(False)
|
||||||
' lancio calcolo
|
' lancio calcolo
|
||||||
EgtBEAMWALL.Core.CalcIntegration.Run(BarList, Map.refSupervisorManagerVM.CurrProd.sProdDirPath, AddressOf ManageCalc, True)
|
EgtBEAMWALL.Core.CalcIntegration.Run(BarList, Map.refSupervisorManagerVM.CurrProd.sProdDirPath, AddressOf ManageCalc)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
' funzione che gestisce risposta da thread di verifica, aggiorna progress e segnala comando di interruzione
|
' funzione che gestisce risposta da thread di verifica, aggiorna progress e segnala comando di interruzione
|
||||||
@@ -504,7 +464,7 @@ Public Class CALCPanelVM
|
|||||||
.bBarOk = True,
|
.bBarOk = True,
|
||||||
.nMachineName = MachineName,
|
.nMachineName = MachineName,
|
||||||
.nCmdType = CalcIntegration.CmdTypes.SIMULATE}
|
.nCmdType = CalcIntegration.CmdTypes.SIMULATE}
|
||||||
If SelMachGroup.nGlobalState = CalcStates.NOTCALCULATED Then
|
If SelMachGroup.nGlobalState <> Core.CalcStates.OK Then
|
||||||
Dim sMachGroupFilePath As String = Map.refSupervisorManagerVM.CurrProd.sProdDirPath & "\" & SelMachGroup.Name.ToString() & ".ori.bwe"
|
Dim sMachGroupFilePath As String = Map.refSupervisorManagerVM.CurrProd.sProdDirPath & "\" & SelMachGroup.Name.ToString() & ".ori.bwe"
|
||||||
If File.Exists(sMachGroupFilePath) Then File.Delete(sMachGroupFilePath)
|
If File.Exists(sMachGroupFilePath) Then File.Delete(sMachGroupFilePath)
|
||||||
End If
|
End If
|
||||||
|
|||||||
@@ -29,10 +29,5 @@
|
|||||||
IsEnabled="{Binding CALCPanel_IsEnabled}">
|
IsEnabled="{Binding CALCPanel_IsEnabled}">
|
||||||
<Image Source="/Resources/CALCPanel/Simulate.png" Stretch="Uniform"/>
|
<Image Source="/Resources/CALCPanel/Simulate.png" Stretch="Uniform"/>
|
||||||
</Button>
|
</Button>
|
||||||
<ToggleButton ToolTip="{Binding MachineLog_ToolTip}"
|
|
||||||
Content="Log"
|
|
||||||
IsChecked="{Binding bMachineLog}"
|
|
||||||
Style="{StaticResource ToolBar_ToggleButton}">
|
|
||||||
</ToggleButton>
|
|
||||||
|
|
||||||
</EgtFloating:EgtFloatingPanel>
|
</EgtFloating:EgtFloatingPanel>
|
||||||
|
|||||||
@@ -1,846 +0,0 @@
|
|||||||
Imports EgtBEAMWALL.Core
|
|
||||||
Imports EgtBEAMWALL.Core.ConstMachComm
|
|
||||||
Imports EgtUILib
|
|
||||||
Imports EgtWPFLib5
|
|
||||||
|
|
||||||
Public Class NUMAxiumComm
|
|
||||||
|
|
||||||
Enum CNMode As Integer
|
|
||||||
AUTO = 0
|
|
||||||
SINGLE_ = 1
|
|
||||||
MDI = 2
|
|
||||||
MANUAL = 7
|
|
||||||
End Enum
|
|
||||||
|
|
||||||
Private m_MachManaging As MachManaging
|
|
||||||
Friend ReadOnly Property MachManaging As MachManaging
|
|
||||||
Get
|
|
||||||
Return m_MachManaging
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Public ReadOnly Property bIsTransferActive As Boolean
|
|
||||||
Get
|
|
||||||
Return If(Not IsNothing(objDFileTransfer), objDFileTransfer.IsTransferActive(), False)
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
'Private objDRunTimeSystem As FXServer.DRunTimeSystem
|
|
||||||
Private WithEvents objDGroupManager As APServer.DGroupManager
|
|
||||||
Private WithEvents objDGeneralFunction As APServer.DGeneralFunctions
|
|
||||||
Private WithEvents objDMainCncData As APServer.DMainCncData
|
|
||||||
Private WithEvents objErrorHandler As APLog.ErrorHandler
|
|
||||||
Private WithEvents objDReadELS As APServer.DReadELS
|
|
||||||
Private WithEvents objDReadPlcVarList As APServer.DReadPlcVarList
|
|
||||||
Private WithEvents objDFileTransfer As APServer.DFileTransfer
|
|
||||||
Private WithEvents objDPosition As APServer.DPosition
|
|
||||||
Private WithEvents objDMdiCommand As APServer.DMdiCommand
|
|
||||||
Private WithEvents objDVariables As APServer.DVariables
|
|
||||||
Private WithEvents objDCncMode As APServer.DCncMode
|
|
||||||
Private WithEvents objDReadOperatorMessage As APServer.DReadOperatorMessage
|
|
||||||
|
|
||||||
Private m_CNCVersion As String = ""
|
|
||||||
Private _PartProgramNumber As Single
|
|
||||||
Private _CNCAxisChannelArray As String() = New String() {"Channel 1", "Channel 2"}
|
|
||||||
Private m_ChannelList As New List(Of String)
|
|
||||||
' Arraylist for read out the messages
|
|
||||||
Private m_ReadFXMessages As New List(Of ReadMessages)
|
|
||||||
Private m_ReadOperatorMessages As New List(Of ReadMessages)
|
|
||||||
' lista variabili in lettura
|
|
||||||
Private Shared m_ReadingVars(100) As CommVar
|
|
||||||
Private m_BytesTransferedCounter As Integer
|
|
||||||
Private m_LinearAxisPrecision As Integer
|
|
||||||
|
|
||||||
Public Sub New(MachManaging As MachManaging)
|
|
||||||
m_MachManaging = MachManaging
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
#Region "METHODS"
|
|
||||||
|
|
||||||
Friend Sub InitFxServer()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub InitFxObjects()
|
|
||||||
objDGroupManager = CreateObject("APServer.DGroupManager")
|
|
||||||
AddHandler objDGroupManager.ErrorHandler, AddressOf objDGroupManager_ErrorHandler
|
|
||||||
AddHandler objDGroupManager.AssignmentChanged, AddressOf objDGroupManager_AssignmentChanged
|
|
||||||
objDGroupManager.CncNumber = 0
|
|
||||||
objDGroupManager.AxisGroup = 0
|
|
||||||
|
|
||||||
objDMainCncData = CreateObject("APServer.DMainCncData")
|
|
||||||
Dim s = objDMainCncData.Init(objDGroupManager.Handle)
|
|
||||||
m_LinearAxisPrecision = objDMainCncData.GetLinearPrecision()
|
|
||||||
Dim CncFxIdentifier As String = objDMainCncData.GetCncIdentifier()
|
|
||||||
EgtOutLog("CncFxIdentifier: " & CncFxIdentifier)
|
|
||||||
|
|
||||||
m_CNCVersion = objDMainCncData.GetCncVersion()
|
|
||||||
|
|
||||||
' Initialize for Channel Change
|
|
||||||
Dim CncGroupNumber As Integer = objDMainCncData.GetCncGroupNumber()
|
|
||||||
Dim PlcGroupNumber As Integer = objDMainCncData.GetPlcGroupNumber()
|
|
||||||
|
|
||||||
Dim sumChannels As Integer = 0
|
|
||||||
sumChannels = PlcGroupNumber + CncGroupNumber
|
|
||||||
For i = 1 To sumChannels
|
|
||||||
m_ChannelList.Add(i)
|
|
||||||
Next
|
|
||||||
|
|
||||||
objDGeneralFunction = CreateObject("APServer.DGeneralFunctions")
|
|
||||||
AddHandler objDGeneralFunction.ProgramActivated, AddressOf objDGeneralFunction_ProgramActivated
|
|
||||||
AddHandler objDGeneralFunction.OnCncStart, AddressOf objDGeneralFunction_OnCncStart
|
|
||||||
AddHandler objDGeneralFunction.OnCncStop, AddressOf objDGeneralFunction_OnCncStop
|
|
||||||
AddHandler objDGeneralFunction.OnCncReset, AddressOf objDGeneralFunction_OnCncReset
|
|
||||||
AddHandler objDGeneralFunction.CncModeWritten, AddressOf objDGeneralFunction_CncModeWritten
|
|
||||||
AddHandler objDGeneralFunction.VariableWritten, AddressOf objDGeneralFunction_VariableWritten
|
|
||||||
Dim l = objDGeneralFunction.Init(objDGroupManager.Handle)
|
|
||||||
Dim MaxWaiting As Integer = 100
|
|
||||||
Dim WaitingIndex As Integer = 0
|
|
||||||
While objDGeneralFunction.ConnectionStatus <> 2 AndAlso WaitingIndex < MaxWaiting
|
|
||||||
Threading.Thread.Sleep(100)
|
|
||||||
UpdateUI()
|
|
||||||
WaitingIndex += 1
|
|
||||||
End While
|
|
||||||
Dim j = objDGeneralFunction.ConnectionStatus
|
|
||||||
Dim oi = objDGeneralFunction.ConnectionString
|
|
||||||
' Initialize FXLog Objects
|
|
||||||
objErrorHandler = CreateObject("APLog.ErrorHandler")
|
|
||||||
'AddHandler objErrorHandler.ErrorFromActiveCnc, AddressOf objErrorHandler_ErrorFromActiveCnc2
|
|
||||||
AddHandler objErrorHandler.ErrorOnCnc, AddressOf objErrorHandler_ErrorOnCnc
|
|
||||||
AddHandler objErrorHandler.ErrorOnOtherChannel, AddressOf objErrorHandler_ErrorOnOtherChannel
|
|
||||||
AddHandler objErrorHandler.Exception, AddressOf objErrorHandler_Exception
|
|
||||||
'Initialisation config for testing
|
|
||||||
'Accepting all messages
|
|
||||||
'Consult the documentation for detailed information
|
|
||||||
|
|
||||||
objErrorHandler.AllError = 1
|
|
||||||
objErrorHandler.ErrorGlobal = 0
|
|
||||||
objErrorHandler.SetChannel(0, 0)
|
|
||||||
objErrorHandler.AcceptBootSysMessage(1)
|
|
||||||
objErrorHandler.AcceptException(0)
|
|
||||||
|
|
||||||
'Initialize FXServer class DFileTransferv
|
|
||||||
objDFileTransfer = CreateObject("APServer.DFileTransfer")
|
|
||||||
AddHandler objDFileTransfer.Completed, AddressOf objDFileTransfer_Completed
|
|
||||||
AddHandler objDFileTransfer.TransferStarted, AddressOf objDFileTransfer_TransferStarted
|
|
||||||
AddHandler objDFileTransfer.Failed, AddressOf objDFileTransfer_Failed
|
|
||||||
AddHandler objDFileTransfer.BytesTransfered, AddressOf objDFileTransfer_BytesTransfered
|
|
||||||
objDFileTransfer.Init(objDGroupManager.Handle)
|
|
||||||
|
|
||||||
objDPosition = CreateObject("APServer.DPosition")
|
|
||||||
AddHandler objDPosition.PositionChanged, AddressOf objDPosition_PositionChanged
|
|
||||||
objDPosition.ModeOP = 1
|
|
||||||
objDPosition.Flag = 0
|
|
||||||
objDPosition.Init(objDGroupManager.Handle)
|
|
||||||
objDPosition.FireValidAxis()
|
|
||||||
objDPosition.FireValues()
|
|
||||||
|
|
||||||
'Initialize FXServer class DMdiCommand
|
|
||||||
objDMdiCommand = CreateObject("APServer.DMdiCommand")
|
|
||||||
AddHandler objDMdiCommand.CommandWritten, AddressOf objDMdiCommand_CommandWritten
|
|
||||||
objDMdiCommand.Init(objDGroupManager.Handle)
|
|
||||||
|
|
||||||
' Initialize FXServer class DCncMode
|
|
||||||
objDCncMode = CreateObject("APServer.DCncMode")
|
|
||||||
AddHandler objDCncMode.ValueChanged, AddressOf objDCncMode_ValueChanged
|
|
||||||
objDCncMode.Init(objDGroupManager.Handle)
|
|
||||||
|
|
||||||
' Initialize FXServer class DReadOperatorMessage
|
|
||||||
objDReadOperatorMessage = CreateObject("APServer.DReadOperatorMessage")
|
|
||||||
AddHandler objDReadOperatorMessage.ValueChanged, AddressOf objDReadOperatorMessage_ValueChanged
|
|
||||||
Dim tc = objDReadOperatorMessage.Init(objDGroupManager.Handle)
|
|
||||||
If tc <> 0 Then EgtOutLog("Init failed ! return code : " + tc)
|
|
||||||
|
|
||||||
' Initialize FXServer class DReadELS
|
|
||||||
'objDReadELS = CreateObject("APServer.DReadELS")
|
|
||||||
'AddHandler objDReadELS.ValueChanged, AddressOf objDReadELS_ValueChanged
|
|
||||||
'Dim y = objDReadELS.Init(objDGroupManager.Handle)
|
|
||||||
|
|
||||||
objDReadPlcVarList = CreateObject("APServer.DReadPlcVarList")
|
|
||||||
AddHandler objDReadPlcVarList.ValueChanged, AddressOf objDPlcVariables_ReadPLCVariablesChanged
|
|
||||||
' Init & send the list of requested variables
|
|
||||||
'tc = objDReadPlcVarList.Init(objDGroupManager.Handle)
|
|
||||||
'If tc <> 0 Then EgtOutLog(" objDReadPlcVarList.Init() Error : " + tc)
|
|
||||||
|
|
||||||
'Initialize FXServer class DVariables
|
|
||||||
objDVariables = CreateObject("APServer.DVariables")
|
|
||||||
'AddHandler objDVariables.ValueChanged, AddressOf objDVariables_ValueChanged
|
|
||||||
' Init & send the list of requested variables
|
|
||||||
'Dim rc As Short = objDVariables.Init(objDGroupManager.Handle, "E80000", 0)
|
|
||||||
AddHandler objDVariables.VariableWritten, AddressOf objDVariables_VariableWritten
|
|
||||||
AddHandler objDVariables.ValueChanged, AddressOf objDPlcVariables_ReadVariablesChanged
|
|
||||||
'If rc <> 0 Then EgtOutLog(" objDVariables.Init() Error : " + rc)
|
|
||||||
|
|
||||||
' attivo programma main
|
|
||||||
Map.refMachManaging.Num_Axium_APServer.ActivateProg(9000)
|
|
||||||
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub CloseFxObjects()
|
|
||||||
If Not IsNothing(objDReadOperatorMessage) Then
|
|
||||||
objDReadOperatorMessage.Close()
|
|
||||||
System.Runtime.InteropServices.Marshal.ReleaseComObject(objDReadOperatorMessage)
|
|
||||||
objDReadOperatorMessage = Nothing
|
|
||||||
End If
|
|
||||||
If Not IsNothing(objDCncMode) Then
|
|
||||||
System.Runtime.InteropServices.Marshal.ReleaseComObject(objDCncMode)
|
|
||||||
objDCncMode = Nothing
|
|
||||||
End If
|
|
||||||
If Not IsNothing(objDReadPlcVarList) Then
|
|
||||||
objDReadPlcVarList.Close()
|
|
||||||
System.Runtime.InteropServices.Marshal.ReleaseComObject(objDReadPlcVarList)
|
|
||||||
objDReadPlcVarList = Nothing
|
|
||||||
End If
|
|
||||||
If Not IsNothing(objDVariables) Then
|
|
||||||
System.Runtime.InteropServices.Marshal.ReleaseComObject(objDVariables)
|
|
||||||
objDVariables = Nothing
|
|
||||||
End If
|
|
||||||
If Not IsNothing(objDMdiCommand) Then
|
|
||||||
System.Runtime.InteropServices.Marshal.ReleaseComObject(objDMdiCommand)
|
|
||||||
objDMdiCommand = Nothing
|
|
||||||
End If
|
|
||||||
If Not IsNothing(objDPosition) Then
|
|
||||||
System.Runtime.InteropServices.Marshal.ReleaseComObject(objDPosition)
|
|
||||||
objDPosition = Nothing
|
|
||||||
End If
|
|
||||||
If Not IsNothing(objDFileTransfer) Then
|
|
||||||
System.Runtime.InteropServices.Marshal.ReleaseComObject(objDFileTransfer)
|
|
||||||
objDFileTransfer = Nothing
|
|
||||||
End If
|
|
||||||
If Not IsNothing(objDReadELS) Then
|
|
||||||
objDReadELS.Close()
|
|
||||||
System.Runtime.InteropServices.Marshal.ReleaseComObject(objDReadELS)
|
|
||||||
objDReadELS = Nothing
|
|
||||||
End If
|
|
||||||
If Not IsNothing(objErrorHandler) Then
|
|
||||||
System.Runtime.InteropServices.Marshal.ReleaseComObject(objErrorHandler)
|
|
||||||
objErrorHandler = Nothing
|
|
||||||
End If
|
|
||||||
If Not IsNothing(objDGeneralFunction) Then
|
|
||||||
objDGeneralFunction.Connect(0)
|
|
||||||
System.Runtime.InteropServices.Marshal.ReleaseComObject(objDGeneralFunction)
|
|
||||||
objDGeneralFunction = Nothing
|
|
||||||
End If
|
|
||||||
If Not IsNothing(objDMainCncData) Then
|
|
||||||
System.Runtime.InteropServices.Marshal.ReleaseComObject(objDMainCncData)
|
|
||||||
objDMainCncData = Nothing
|
|
||||||
End If
|
|
||||||
If Not IsNothing(objDGroupManager) Then
|
|
||||||
System.Runtime.InteropServices.Marshal.ReleaseComObject(objDGroupManager)
|
|
||||||
objDGroupManager = Nothing
|
|
||||||
End If
|
|
||||||
Dim ServerProcList As Process() = Process.GetProcessesByName("APServer")
|
|
||||||
Dim LogProcList As Process() = Process.GetProcessesByName("APLog")
|
|
||||||
For Each ServerProc In ServerProcList
|
|
||||||
ServerProc.Kill()
|
|
||||||
Next
|
|
||||||
For Each LogProc In LogProcList
|
|
||||||
LogProc.Kill()
|
|
||||||
Next
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub GetGeneralFunctions()
|
|
||||||
Dim _GetConnectState As Int16 = 0
|
|
||||||
Dim MaxWaiting As Integer = 100
|
|
||||||
Dim WaitingIndex As Integer = 0
|
|
||||||
While _GetConnectState <> 2 AndAlso WaitingIndex < MaxWaiting
|
|
||||||
_GetConnectState = objDGeneralFunction.ConnectionStatus
|
|
||||||
Threading.Thread.Sleep(100)
|
|
||||||
UpdateUI()
|
|
||||||
WaitingIndex += 1
|
|
||||||
End While
|
|
||||||
|
|
||||||
Select Case _GetConnectState
|
|
||||||
Case 0
|
|
||||||
' Not connected
|
|
||||||
m_MachManaging.SetConnected(False)
|
|
||||||
m_ResultCallbackDlg(CommandTypes.CONNECT, CommandStates.NULL, ResultTypes.RESULT, "")
|
|
||||||
Case 1
|
|
||||||
' Connection error
|
|
||||||
m_MachManaging.SetConnected(False)
|
|
||||||
m_ResultCallbackDlg(CommandTypes.CONNECT, CommandStates.ERROR_, ResultTypes.RESULT, "")
|
|
||||||
Case 2
|
|
||||||
' Connected
|
|
||||||
m_MachManaging.SetConnected(True)
|
|
||||||
m_ResultCallbackDlg(CommandTypes.CONNECT, CommandStates.OK, ResultTypes.RESULT, "")
|
|
||||||
' avvio lettura variabili
|
|
||||||
'MachManaging.CommandList.Add(ThreadCommand.CreateCommand(CommandTypes.READ_NUMFLEXIUM))
|
|
||||||
StartReadList()
|
|
||||||
StartReadPLCList()
|
|
||||||
'StartReadELS()
|
|
||||||
Case Else
|
|
||||||
End Select
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub Start()
|
|
||||||
objDGeneralFunction.CncStart()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub Stop_()
|
|
||||||
objDGeneralFunction.CncStop()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub Reset()
|
|
||||||
objDGeneralFunction.CncReset()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub SetMode(value As CNMode)
|
|
||||||
objDGeneralFunction.WriteCncMode(value, 0)
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub SetChannel(value As Integer)
|
|
||||||
ChangeChannel(CShort(value))
|
|
||||||
'objDGroupManager.AxisGroup = CShort(value)
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub ActivateProg(PartProgramNumberActivate As Integer)
|
|
||||||
' attivo programma main
|
|
||||||
Dim _FXReturn As Int16 = objDGeneralFunction.ActivateProgram(PartProgramNumberActivate * 10, 0)
|
|
||||||
If _FXReturn <> 0 Then
|
|
||||||
EgtOutLog("Error Activate Program:" & " " & _FXReturn.ToString())
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub ChangeChannel(Channel As Short)
|
|
||||||
objErrorHandler.SetChannel(1, Channel)
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub StartReadList()
|
|
||||||
'Dim AddressList() As String = (From CommVar In m_ReadingVars
|
|
||||||
' Where Not IsNothing(CommVar) AndAlso CommVar.nType = CommVar.Types.PLC
|
|
||||||
' Select CommVar.sAddress).ToArray()
|
|
||||||
'm_PlcVariablesList = New ArrayList((From CommVar In m_ReadingVars
|
|
||||||
' Where Not IsNothing(CommVar) AndAlso CommVar.nType = CommVar.Types.PLC
|
|
||||||
' Select CommVar.sAddress).ToArray())
|
|
||||||
Dim nPLCVarIndex As Integer = 0
|
|
||||||
Dim PlcVariablesList As New ArrayList
|
|
||||||
Dim sPLCVariableList = ""
|
|
||||||
For VarIndex = 0 To m_ReadingVars.Length - 1
|
|
||||||
Dim CommVar As CommVar = m_ReadingVars(VarIndex)
|
|
||||||
If Not IsNothing(CommVar) AndAlso CommVar.Paragraph = CommVar.Paragraphs.MAIN AndAlso CommVar.nType = CommVar.Types.CN Then
|
|
||||||
PlcVariablesList.Add(CommVar.sAddress)
|
|
||||||
If Not String.IsNullOrWhiteSpace(sPLCVariableList) Then
|
|
||||||
sPLCVariableList &= ","
|
|
||||||
End If
|
|
||||||
sPLCVariableList &= """" & CommVar.sAddress & """"
|
|
||||||
CommVar.Index = nPLCVarIndex
|
|
||||||
nPLCVarIndex += 1
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
'Dim sPLCVariableList = ""
|
|
||||||
'For VariableIndex = 0 To PlcVariablesList.Count - 1
|
|
||||||
' If VariableIndex <> 0 Then
|
|
||||||
' sPLCVariableList &= ","
|
|
||||||
' End If
|
|
||||||
' sPLCVariableList &= """" & PlcVariablesList(VariableIndex) & """"
|
|
||||||
'Next
|
|
||||||
Dim _FXReturn As Short = objDVariables.Init(objDGroupManager.Handle, sPLCVariableList, 1) 'PlcVariablesList.ToArray().ToString())
|
|
||||||
'Dim _FXReturn As Short = objDVariables.ReadVariables(PlcVariablesList.ToArray())
|
|
||||||
|
|
||||||
'If _FXReturn <> 0 Then
|
|
||||||
' EgtOutLog("Error ReadVariables:" & " " & _FXReturn.ToString())
|
|
||||||
'End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub StartReadPLCList()
|
|
||||||
'Dim AddressList() As String = (From CommVar In m_ReadingVars
|
|
||||||
' Where Not IsNothing(CommVar) AndAlso CommVar.nType = CommVar.Types.PLC
|
|
||||||
' Select CommVar.sAddress).ToArray()
|
|
||||||
'm_PlcVariablesList = New ArrayList((From CommVar In m_ReadingVars
|
|
||||||
' Where Not IsNothing(CommVar) AndAlso CommVar.nType = CommVar.Types.PLC
|
|
||||||
' Select CommVar.sAddress).ToArray())
|
|
||||||
Dim nPLCVarIndex As Integer = 0
|
|
||||||
Dim PlcVariablesList As New ArrayList
|
|
||||||
Dim sPLCVariableList = ""
|
|
||||||
For VarIndex = 0 To m_ReadingVars.Length - 1
|
|
||||||
Dim CommVar As CommVar = m_ReadingVars(VarIndex)
|
|
||||||
If Not IsNothing(CommVar) AndAlso CommVar.nType = CommVar.Types.PLC AndAlso
|
|
||||||
CommVar.Paragraph = CommVar.Paragraphs.MAIN Then
|
|
||||||
PlcVariablesList.Add(CommVar.sAddress)
|
|
||||||
If Not String.IsNullOrWhiteSpace(sPLCVariableList) Then
|
|
||||||
sPLCVariableList &= ","
|
|
||||||
End If
|
|
||||||
sPLCVariableList &= CommVar.sAddress
|
|
||||||
CommVar.Index = nPLCVarIndex
|
|
||||||
nPLCVarIndex += 1
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
objDReadPlcVarList.Argument = sPLCVariableList ' "%M5.L,%M5.B"
|
|
||||||
Dim h = objDReadPlcVarList.Init(objDGroupManager.Handle)
|
|
||||||
'Dim _FXReturn As Short = objDVariables.ReadVariables(PlcVariablesList.ToArray())
|
|
||||||
|
|
||||||
'If _FXReturn <> 0 Then
|
|
||||||
' EgtOutLog("Error ReadVariables:" & " " & _FXReturn.ToString())
|
|
||||||
'End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub CloseReadList()
|
|
||||||
'objDPlcVariables.CloseReadList()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub ReadVariablesOnce(Address As String)
|
|
||||||
'Dim _ReadSymbolicPlcVariableOnetime As String = "Application.IOCONFIG_GLOBALS.Flexium_NCK.RCNC.General.Mode"
|
|
||||||
'Dim _FXReturn As Int16 = objDPlcVariables.ReadVariablesOnce(10, Address)
|
|
||||||
|
|
||||||
'If _FXReturn <> 0 Then
|
|
||||||
' EgtOutLog("Error ReadVariablesOnce:" & " " & _FXReturn.ToString())
|
|
||||||
'End If
|
|
||||||
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub WritePlcVariables(Address As String, value As String)
|
|
||||||
'Dim _WriteSymbolicPlcVariable As String = _txtReadWritePlcVariables0.Text
|
|
||||||
'Dim _FXReturn As Int16 = objDPlcVariables.WriteVariables2(11, Address, value)
|
|
||||||
'
|
|
||||||
'If _FXReturn <> 0 Then
|
|
||||||
' EgtOutLog("Error WriteVariables2 :" & " " & _FXReturn.ToString())
|
|
||||||
'End If
|
|
||||||
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Shared Function InitVar(Variable As CommVar) As CommVar
|
|
||||||
Dim Index As Integer = Array.IndexOf(m_ReadingVars, Nothing)
|
|
||||||
m_ReadingVars(Index) = Variable
|
|
||||||
Return m_ReadingVars(Index)
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Friend Sub StartReadELS()
|
|
||||||
For Index = 0 To m_ReadingVars.Length - 1
|
|
||||||
If IsNothing(m_ReadingVars(Index)) Then Continue For 'OrElse m_ReadingVars(Index).nType <> CommVar.Types.CN Then Continue For
|
|
||||||
Dim rc As Short = objDReadELS.AddParameter(m_ReadingVars(Index).sAddress, Index + 1)
|
|
||||||
If rc <> 0 Then EgtOutLog(" Error AddParameter2 : " & rc & " on Variable : " & m_ReadingVars(Index).sAddress)
|
|
||||||
Next
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub CloseReadELS()
|
|
||||||
'objDPlcVariables.CloseReadList()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
#Region "File transfer"
|
|
||||||
|
|
||||||
Friend Sub FileDownload(sFileType As String, sFilePath As String)
|
|
||||||
Dim _Return_Download As Short
|
|
||||||
|
|
||||||
_Return_Download = objDFileTransfer.FileDownload(10, sFileType, sFilePath, "", 1)
|
|
||||||
|
|
||||||
If _Return_Download <> 0 Then
|
|
||||||
EgtOutLog("Error: File not stored to the job list:" & " " & _Return_Download.ToString())
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub FileUpload(sFileType As String, sFilePath As String)
|
|
||||||
Dim _Return_Upload As Short
|
|
||||||
_Return_Upload = objDFileTransfer.FileUpload(20, sFileType, sFilePath, "")
|
|
||||||
|
|
||||||
If _Return_Upload <> 0 Then
|
|
||||||
EgtOutLog("Error: File not stored to the job list:" & " " & _Return_Upload.ToString())
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub FileDelete(sFileType As String, sFilePath As String)
|
|
||||||
Dim _ReturnFileDelete As Short
|
|
||||||
_ReturnFileDelete = objDFileTransfer.FileDelete(20, sFileType, "")
|
|
||||||
|
|
||||||
If _ReturnFileDelete <> 0 Then
|
|
||||||
EgtOutLog("Error: File not deleted:" & " " & _ReturnFileDelete.ToString())
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub StartTransfer()
|
|
||||||
Dim _Return_StartTransfer As Short
|
|
||||||
_Return_StartTransfer = objDFileTransfer.StartTransfer()
|
|
||||||
|
|
||||||
If _Return_StartTransfer <> 0 Then
|
|
||||||
EgtOutLog("Error: Start transfer not executed:" & " " & _Return_StartTransfer.ToString())
|
|
||||||
Else
|
|
||||||
m_BytesTransferedCounter = 0
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
#End Region ' File transfer
|
|
||||||
|
|
||||||
#Region "MDI"
|
|
||||||
|
|
||||||
Friend Sub MDI_Execute(sCommand As String)
|
|
||||||
Dim nRet As Int16 = objDMdiCommand.ExecuteCommand(sCommand)
|
|
||||||
If nRet <> 0 Then
|
|
||||||
EgtOutLog("Error ExecuteCommand :" & " " & nRet.ToString())
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
#End Region ' MDI
|
|
||||||
|
|
||||||
#Region "Variables"
|
|
||||||
|
|
||||||
Friend Sub WriteNCVariables(Address As String, value As String)
|
|
||||||
Try
|
|
||||||
Dim dValue As Double = 0
|
|
||||||
StringToDoubleAdv(value, dValue)
|
|
||||||
Dim rc As Short = objDVariables.WriteVariables(objDGroupManager.Handle, Address, value)
|
|
||||||
|
|
||||||
'If rc <> 0 Then EgtOutLog(" objDVariables.WriteVariables2() Error : " & rc)
|
|
||||||
|
|
||||||
Catch ex As Exception
|
|
||||||
EgtOutLog(" objDVariables.WriteVariables2() Exception : " & ex.Message)
|
|
||||||
End Try
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
#End Region ' Variables
|
|
||||||
|
|
||||||
#End Region ' METHODS
|
|
||||||
|
|
||||||
#Region "EVENTS"
|
|
||||||
|
|
||||||
Private Sub objDRunTimeSystem_ServerInitializationFinished()
|
|
||||||
InitFxObjects()
|
|
||||||
GetGeneralFunctions()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDRunTimeSystem_ServerReinitializationStarted()
|
|
||||||
CloseFxObjects()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDGeneralFunction_ProgramActivated(ByVal nerrorCode As Short)
|
|
||||||
EgtOutLog("Part program activated:" & " " & nerrorCode)
|
|
||||||
'DbControllers.m_LogMachineController.Create(MachLog.CreateResultLog(CommandTypes.SENDPROG, CommandStates.OK, ResultTypes.EXECUTED, "Part program activated:" & " " & nerrorCode))
|
|
||||||
' scrivo evento programma attivato
|
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreateMachCommandLog(LogEvent.MachineCommands.PROGRAM_ACTIVATION, "", nerrorCode, DbControllers.SupervisorId))
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDGeneralFunction_OnCncStart(ByVal errorCode As Short)
|
|
||||||
Dim bOk As Boolean = (errorCode = 0)
|
|
||||||
m_MachManaging.SetStartPending(bOk)
|
|
||||||
m_ResultCallbackDlg(CommandTypes.START, If(bOk, CommandStates.OK, CommandStates.ERROR_), ResultTypes.EXECUTED, If(bOk, "", "Error CNC Start: " & errorCode.ToString()))
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDGeneralFunction_OnCncStop(ByVal errorCode As Short)
|
|
||||||
Dim bOk As Boolean = (errorCode = 0)
|
|
||||||
m_ResultCallbackDlg(CommandTypes.STOP_, If(bOk, CommandStates.OK, CommandStates.ERROR_), ResultTypes.EXECUTED, If(bOk, "", "Error Feed Hold: " & errorCode.ToString()))
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDGeneralFunction_OnCncReset(ByVal errorCode As Short)
|
|
||||||
Dim bOk As Boolean = (errorCode = 0)
|
|
||||||
m_ResultCallbackDlg(CommandTypes.RESET, If(bOk, CommandStates.OK, CommandStates.ERROR_), ResultTypes.EXECUTED, If(bOk, "", "Error CNC Reset: " & errorCode.ToString()))
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDGeneralFunction_CncModeWritten(ByVal errorCode As Short)
|
|
||||||
If errorCode <> 0 Then EgtOutLog("Error CNC Mode selection completed:" & " " & errorCode.ToString())
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDGroupManager_ErrorHandler(ByVal sError As String, ByVal nTextNumber As Short)
|
|
||||||
EgtOutLog("ErrorHandler message:" & " " & sError & " " & "ErrorHandler number:" & " " & nTextNumber.ToString())
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDGroupManager_AssignmentChanged(ByVal CncNumber As Short, ByVal AxisGroup As Short)
|
|
||||||
m_ChannelCallbackDlg(AxisGroup)
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub _comboCncAxisChannel_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs)
|
|
||||||
'Select Case _comboCncAxisChannel.SelectedItem.ToString()
|
|
||||||
' Case "Channel 1"
|
|
||||||
' objDGroupManager.AxisGroup = 0
|
|
||||||
' Case "Channel 2"
|
|
||||||
' objDGroupManager.AxisGroup = 1
|
|
||||||
' Case Else
|
|
||||||
'End Select
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDGeneralFunction_VariableWritten(ByVal errorCode As Short)
|
|
||||||
If errorCode <> 0 Then
|
|
||||||
MessageBox.Show("Error from VariableWritten:" & " " & errorCode.ToString())
|
|
||||||
Else
|
|
||||||
MessageBox.Show("VariableWritten successfully")
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objErrorHandler_ErrorOnCnc(ByVal cnc As Short, ByVal channel As Short, ByVal [set] As Short)
|
|
||||||
'AplCncNumber.Add(cnc)
|
|
||||||
'AplChannel.Add(channel)
|
|
||||||
'AplSet.Add([set])
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objErrorHandler_ErrorOnOtherChannel(ByVal status As Short)
|
|
||||||
'AplStatus = status
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objErrorHandler_Exception(ByVal status As Short)
|
|
||||||
'ExceptStatus = status
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub objErrorHandler_ErrorFromActiveCnc2(ErrorNumber As List(Of Integer))
|
|
||||||
' resetto stati bFound
|
|
||||||
For Each Message In m_ReadFXMessages
|
|
||||||
Message.bFound = False
|
|
||||||
Next
|
|
||||||
|
|
||||||
For index As Integer = 0 To ErrorNumber.Count - 1
|
|
||||||
Dim nIndex As Integer = index
|
|
||||||
Dim NewMessageInList As ReadMessages = m_ReadFXMessages.FirstOrDefault(Function(x) x.CMsgCncNumber = 0.ToString() AndAlso
|
|
||||||
x.CMsgErrorType = 6.ToString() AndAlso
|
|
||||||
x.CMsgErrorIndex = "" AndAlso
|
|
||||||
x.CMsgErrorNumber = ErrorNumber(nIndex).ToString() AndAlso
|
|
||||||
x.CMsgErrorLine = "" AndAlso
|
|
||||||
x.CMsgErrorMessage = "")
|
|
||||||
' se il messaggio e' gia' in lista
|
|
||||||
If Not IsNothing(NewMessageInList) Then
|
|
||||||
' lo segno come trovato
|
|
||||||
NewMessageInList.bFound = True
|
|
||||||
Else
|
|
||||||
' lo aggiungo
|
|
||||||
Dim NewMessage As ReadMessages = New ReadMessages(0.ToString(),
|
|
||||||
6.ToString(),
|
|
||||||
"",
|
|
||||||
ErrorNumber(index).ToString(),
|
|
||||||
"",
|
|
||||||
"",
|
|
||||||
"")
|
|
||||||
NewMessage.bFound = True
|
|
||||||
m_ReadFXMessages.Add(NewMessage)
|
|
||||||
m_NUMAlarmCallbackDlg(0, 0, 6.ToString(), "", ErrorNumber(index).ToString(), "", "", "")
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
|
|
||||||
' cancello messaggi non trovati
|
|
||||||
For Index = m_ReadFXMessages.Count - 1 To 0 Step -1
|
|
||||||
Dim Message As ReadMessages = m_ReadFXMessages(Index)
|
|
||||||
If Not Message.bFound Then
|
|
||||||
m_NUMAlarmCallbackDlg(Message.CMsgCncNumber, 1, Message.CMsgErrorType, Message.CMsgErrorIndex, Message.CMsgErrorNumber, Message.CMsgErrorLine, Message.CMsgErrorMessage, Message.CMsgErrorAdditional)
|
|
||||||
m_ReadFXMessages.RemoveAt(Index)
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
#Region "PLC Variables"
|
|
||||||
|
|
||||||
Private Sub objDPlcVariables_ReadVariablesChanged(ByVal index As Object, ByVal value As Object)
|
|
||||||
Dim _ObjIndex As Object() = CType(index, Object())
|
|
||||||
Dim _ObjValue As Object() = CType(value, Object())
|
|
||||||
|
|
||||||
For index = 0 To _ObjIndex.Length - 1
|
|
||||||
Dim nObjIndex As Integer = Integer.Parse(_ObjIndex(index).ToString())
|
|
||||||
Dim CommVar As CommVar = m_ReadingVars.FirstOrDefault(Function(x) Not IsNothing(x) AndAlso
|
|
||||||
x.Paragraph = CommVar.Paragraphs.MAIN AndAlso
|
|
||||||
x.nType = CommVar.Types.CN AndAlso
|
|
||||||
x.Index = nObjIndex)
|
|
||||||
If Not IsNothing(CommVar) Then
|
|
||||||
CommVar.SetValue(_ObjValue(index).ToString())
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDPlcVariables_ReadPLCVariablesChanged(ByVal index As Object, ByVal value As Object)
|
|
||||||
Dim _ObjIndex As Object() = CType(index, Object())
|
|
||||||
Dim _ObjValue As Object() = CType(value, Object())
|
|
||||||
|
|
||||||
For index = 0 To _ObjIndex.Length - 1
|
|
||||||
Dim nObjIndex As Integer = Integer.Parse(_ObjIndex(index).ToString())
|
|
||||||
Dim CommVar As CommVar = m_ReadingVars.FirstOrDefault(Function(x) Not IsNothing(x) AndAlso
|
|
||||||
x.Paragraph = CommVar.Paragraphs.MAIN AndAlso
|
|
||||||
x.nType = CommVar.Types.PLC AndAlso
|
|
||||||
x.Index = nObjIndex)
|
|
||||||
If Not IsNothing(CommVar) Then
|
|
||||||
CommVar.SetValue(_ObjValue(index).ToString())
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDPlcVariables_InvalidReadList(ByVal errorCode As Short)
|
|
||||||
EgtOutLog("InvalidReadList - ErrorCode: " & errorCode)
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDPlcVariables_AbortReadVariables()
|
|
||||||
EgtOutLog("InvalidReadList - ErrorCode: ")
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDPlcVariables_ReadOnceVariablesChanged(ByVal lHandle As Integer, ByVal value As Object)
|
|
||||||
'Dim _ObjValue As Object() = CType(value, Object())
|
|
||||||
|
|
||||||
'If lHandle = 10 Then
|
|
||||||
|
|
||||||
' For i As Integer = 0 To _ObjValue.Length - 1
|
|
||||||
' _ReadPlcVariableOnetime(i).Invoke(CType(Function()
|
|
||||||
' _ReadPlcVariableOnetime(i).Text = _ObjValue(i).ToString()
|
|
||||||
' End Function, MethodInvoker))
|
|
||||||
' Next
|
|
||||||
'End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDPlcVariables_VariablesWritten2(ByVal lHandle As Integer, ByVal errorCode As Integer)
|
|
||||||
Dim bOk As Boolean = (errorCode <> 0)
|
|
||||||
m_ResultCallbackDlg(CommandTypes.WRITE, If(bOk, CommandStates.OK, CommandStates.ERROR_), ResultTypes.RESULT, If(bOk, "", "Error VariablesWritten2 :" & " " & errorCode.ToString()))
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
#End Region ' PLC Variables
|
|
||||||
|
|
||||||
#Region "ReadELS"
|
|
||||||
|
|
||||||
Private Sub objDReadELS_ValueChanged(ByVal nHandle As Short, ByVal dValue As Double, ByVal nerrorCode As Short)
|
|
||||||
If nHandle < 1 OrElse nHandle > m_ReadingVars.Count - 1 Then Return
|
|
||||||
If nerrorCode <> 0 Then EgtOutLog(" Error in Validchanged2 : " & nerrorCode & " Handle : " & nHandle)
|
|
||||||
|
|
||||||
Try
|
|
||||||
m_ReadingVars(nHandle - 1).SetValue(dValue.ToString("F04"))
|
|
||||||
Catch Ex As Exception
|
|
||||||
EgtOutLog(Ex.Message)
|
|
||||||
End Try
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
#End Region ' ReadELS
|
|
||||||
|
|
||||||
#Region "File transfer"
|
|
||||||
|
|
||||||
Private Sub objDFileTransfer_Completed(ByVal lHandle As Integer)
|
|
||||||
If lHandle = 10 OrElse lHandle = 20 Then
|
|
||||||
'resetto contatore di trasferimento
|
|
||||||
m_BytesTransferedCounter = 0
|
|
||||||
EgtOutLog("Up- or Download successful completed:" & " " & lHandle.ToString())
|
|
||||||
' aggiorno variabili del MAIN
|
|
||||||
Dim ISONumVariable As Variable = Map.refMachCommandMessagePanelVM.MainVariablesList.FirstOrDefault(Function(x) x.sName = ISO_NUM)
|
|
||||||
Dim ISOSentVariable As Variable = Map.refMachCommandMessagePanelVM.MainVariablesList.FirstOrDefault(Function(x) x.sName = ISO_SENT)
|
|
||||||
Dim SentMachGroup As MyMachGroupVM = Map.refSupervisorMachGroupPanelVM.MachGroupVMList.FirstOrDefault(Function(x As MyMachGroupVM) x.bSendingToMachine)
|
|
||||||
If Not IsNothing(SentMachGroup) Then
|
|
||||||
ISONumVariable.sValue = SentMachGroup.Name
|
|
||||||
ISOSentVariable.sValue = 0
|
|
||||||
SentMachGroup.SetSentToMachine(True)
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDFileTransfer_TransferStarted(ByVal lHandle As Integer)
|
|
||||||
EgtOutLog("Transfer has been started !")
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDFileTransfer_Failed(ByVal lHandle As Integer, ByVal nSeq As Short, ByVal nReason As Short)
|
|
||||||
EgtOutLog("Sequence:" & " " & nSeq.ToString() & " " & "Reason:" & " " & nReason.ToString())
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDFileTransfer_BytesTransfered(ByVal lHandle As Integer, ByVal lBytes As Integer)
|
|
||||||
m_BytesTransferedCounter += lBytes
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
#End Region ' File transfer
|
|
||||||
|
|
||||||
#Region "Position"
|
|
||||||
|
|
||||||
Private Sub objDPosition_PositionChanged(ByVal vtArrayIndex As Object, ByVal vtArrayValues As Object)
|
|
||||||
Dim _indexArray As Object() = CType(vtArrayIndex, Object())
|
|
||||||
Dim _valueArray As Object() = CType(vtArrayValues, Object())
|
|
||||||
|
|
||||||
For _index As Integer = 0 To _indexArray.Length - 1
|
|
||||||
|
|
||||||
Dim _index1 As Int16 = CType(_indexArray.GetValue(_index), Int16)
|
|
||||||
Dim _axisPosValue As Int32 = CType(_valueArray.GetValue(_index), Int32)
|
|
||||||
Dim _axisRefPosValue As Single = CSng(_axisPosValue) / m_LinearAxisPrecision
|
|
||||||
m_AxisCoordinatesCallbackDlg(_axisPosValue, _index1)
|
|
||||||
|
|
||||||
Next
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
#End Region ' Position
|
|
||||||
|
|
||||||
#Region "MDI"
|
|
||||||
|
|
||||||
Private Sub objDMdiCommand_CommandWritten(ByVal retVal As Short)
|
|
||||||
If retVal <> 0 Then
|
|
||||||
EgtOutLog("Error CommandWritten :" & " " & retVal.ToString())
|
|
||||||
End If
|
|
||||||
Map.refMDIPageVM.SendMDIResult(retVal)
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
#End Region ' MDI
|
|
||||||
|
|
||||||
#Region "Variables"
|
|
||||||
|
|
||||||
Private Sub objDVariables_VariableWritten2(ByVal lHandle As Integer, ByVal errorCode As Short)
|
|
||||||
If lHandle <> 2 OrElse errorCode <> 0 Then
|
|
||||||
EgtOutLog(" Error on objDVariables_VariableWritten2 : handle " & lHandle.ToString() & " errorCode : " & errorCode.ToString())
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDVariables_VariableWritten(ByVal errorCode As Short)
|
|
||||||
If errorCode <> 0 Then
|
|
||||||
EgtOutLog(" Error on objDVariables_VariableWritten errorCode : " & errorCode.ToString())
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub objDVariables_ValueChanged(ByVal vtArrayIndex As Object, ByVal vtArrayValues As Object)
|
|
||||||
Dim AplArrayIndex As Object() = CType(vtArrayIndex, Object())
|
|
||||||
Dim AplArrayValue As Object() = CType(vtArrayValues, Object())
|
|
||||||
|
|
||||||
For index As Integer = 0 To AplArrayIndex.Length - 1
|
|
||||||
Dim nHandle As Integer = CType(AplArrayIndex.GetValue(index), Int16)
|
|
||||||
If nHandle < 1 OrElse nHandle > m_ReadingVars.Count - 1 Then Return
|
|
||||||
Dim dValue As Double = CDbl(AplArrayValue.GetValue(index))
|
|
||||||
Try
|
|
||||||
m_ReadingVars(nHandle - 1).SetValue(dValue.ToString("F04"))
|
|
||||||
Catch Ex As Exception
|
|
||||||
EgtOutLog(Ex.Message)
|
|
||||||
End Try
|
|
||||||
Next
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
#End Region ' Variables
|
|
||||||
|
|
||||||
#Region "CNCMode"
|
|
||||||
|
|
||||||
Private Sub objDCncMode_ValueChanged(ByVal mode As Short, ByVal preselected As Short)
|
|
||||||
m_OpModeCallbackDlg(mode)
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
#End Region ' CNCMode
|
|
||||||
|
|
||||||
#Region "ReadOperatorMessage"
|
|
||||||
|
|
||||||
Private Sub objDReadOperatorMessage_ValueChanged(ByVal line As Object)
|
|
||||||
' resetto stati bFound
|
|
||||||
For Each Message In m_ReadOperatorMessages
|
|
||||||
Message.bFound = False
|
|
||||||
Next
|
|
||||||
Dim objLine As String = TryCast(line, String)
|
|
||||||
Dim OpMsgErrType As Integer = 30
|
|
||||||
Dim NewMessageInList As ReadMessages = m_ReadOperatorMessages.FirstOrDefault(Function(x) x.CMsgCncNumber = 0 AndAlso
|
|
||||||
x.CMsgErrorType = OpMsgErrType.ToString() AndAlso
|
|
||||||
x.CMsgErrorIndex = "" AndAlso
|
|
||||||
x.CMsgErrorNumber = "" AndAlso
|
|
||||||
x.CMsgErrorLine = "" AndAlso
|
|
||||||
x.CMsgErrorMessage = objLine AndAlso
|
|
||||||
x.CMsgErrorAdditional = "")
|
|
||||||
' se il messaggio e' gia' in lista
|
|
||||||
If Not IsNothing(NewMessageInList) Then
|
|
||||||
' lo segno come trovato
|
|
||||||
NewMessageInList.bFound = True
|
|
||||||
Else
|
|
||||||
' se e' diverso da stringa vuota
|
|
||||||
If Not String.IsNullOrWhiteSpace(objLine.ToString()) Then
|
|
||||||
' lo aggiungo
|
|
||||||
Dim NewMessage As ReadMessages = New ReadMessages(0,
|
|
||||||
OpMsgErrType.ToString(),
|
|
||||||
"",
|
|
||||||
"",
|
|
||||||
"",
|
|
||||||
objLine,
|
|
||||||
"")
|
|
||||||
NewMessage.bFound = True
|
|
||||||
m_ReadOperatorMessages.Add(NewMessage)
|
|
||||||
m_NUMAlarmCallbackDlg(0, 0, OpMsgErrType.ToString(), "", "", "", objLine, "")
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
|
|
||||||
' cancello messaggi non trovati
|
|
||||||
If m_ReadOperatorMessages.Count > 0 Then
|
|
||||||
For Index = m_ReadOperatorMessages.Count - 1 To 0 Step -1
|
|
||||||
Dim Message As ReadMessages = m_ReadOperatorMessages(Index)
|
|
||||||
If Not Message.bFound Then
|
|
||||||
m_NUMAlarmCallbackDlg(Message.CMsgCncNumber, 1, Message.CMsgErrorType, Message.CMsgErrorIndex, Message.CMsgErrorNumber, Message.CMsgErrorLine, Message.CMsgErrorMessage, Message.CMsgErrorAdditional)
|
|
||||||
m_ReadOperatorMessages.RemoveAt(Index)
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
End If
|
|
||||||
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
#End Region ' ReadOperatorMessage
|
|
||||||
|
|
||||||
#End Region ' EVENTS
|
|
||||||
|
|
||||||
End Class
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -53,7 +53,7 @@ Public Class NUMFlexiumComm
|
|||||||
Private m_ReadFXMessages As New List(Of ReadMessages)
|
Private m_ReadFXMessages As New List(Of ReadMessages)
|
||||||
Private m_ReadOperatorMessages As New List(Of ReadMessages)
|
Private m_ReadOperatorMessages As New List(Of ReadMessages)
|
||||||
' lista variabili in lettura
|
' lista variabili in lettura
|
||||||
Private Shared m_ReadingVars(230) As CommVar
|
Private Shared m_ReadingVars(100) As CommVar
|
||||||
Private m_BytesTransferedCounter As Integer
|
Private m_BytesTransferedCounter As Integer
|
||||||
Private m_LinearAxisPrecision As Integer
|
Private m_LinearAxisPrecision As Integer
|
||||||
|
|
||||||
@@ -368,31 +368,6 @@ Public Class NUMFlexiumComm
|
|||||||
|
|
||||||
Friend Sub FileDownload(sFileType As String, sFilePath As String)
|
Friend Sub FileDownload(sFileType As String, sFilePath As String)
|
||||||
Dim _Return_Download As Short
|
Dim _Return_Download As Short
|
||||||
'' leggo variabile E30099
|
|
||||||
'Dim SendPermissionVariable As Variable = Map.refMachCommandMessagePanelVM.MainVariablesList.FirstOrDefault(Function(x) x.sName = SENDPERMISSION)
|
|
||||||
'Dim dTemp As Double = 0
|
|
||||||
'Dim nSendPermission As Integer = 0
|
|
||||||
'EgtOutLog("Inizio invio programma")
|
|
||||||
'While nSendPermission <> 2
|
|
||||||
' Dim bFirstWriteOne = True
|
|
||||||
' EgtOutLog("Inizio ciclo verifica diverso da 2")
|
|
||||||
' ' leggo valore
|
|
||||||
' If Not IsNothing(SendPermissionVariable.sValue) Then
|
|
||||||
' StringToDoubleAdv(SendPermissionVariable.sValue, dTemp)
|
|
||||||
' Integer.TryParse(dTemp, nSendPermission)
|
|
||||||
' EgtOutLog("Lettura variabile E30099: " & nSendPermission)
|
|
||||||
' Else
|
|
||||||
' EgtOutLog("nSendPermission = -1")
|
|
||||||
' nSendPermission = -1
|
|
||||||
' End If
|
|
||||||
' ' se uguale a zero ci scrivo uno
|
|
||||||
' If nSendPermission = 0 And bFirstWriteOne Then
|
|
||||||
' bFirstWriteOne = False
|
|
||||||
' SendPermissionVariable.sValue = 1
|
|
||||||
' EgtOutLog("Scrittura variabile E30099 = 1")
|
|
||||||
' End If
|
|
||||||
' Threading.Thread.Sleep(1000)
|
|
||||||
'End While
|
|
||||||
|
|
||||||
_Return_Download = objDFileTransfer.FileDownload2(10, sFileType, sFilePath, "", 1, 0)
|
_Return_Download = objDFileTransfer.FileDownload2(10, sFileType, sFilePath, "", 1, 0)
|
||||||
|
|
||||||
@@ -449,7 +424,7 @@ Public Class NUMFlexiumComm
|
|||||||
Friend Sub WriteNCVariables(Address As String, value As String)
|
Friend Sub WriteNCVariables(Address As String, value As String)
|
||||||
Try
|
Try
|
||||||
Dim dValue As Double = 0
|
Dim dValue As Double = 0
|
||||||
StringToDoubleAdv(value, dValue)
|
StringToDouble(value, dValue)
|
||||||
Dim rc As Short = objDVariables.WriteVariables2(2, objDGroupManager.Handle, Address, dValue)
|
Dim rc As Short = objDVariables.WriteVariables2(2, objDGroupManager.Handle, Address, dValue)
|
||||||
|
|
||||||
If rc <> 0 Then EgtOutLog(" objDVariables.WriteVariables2() Error : " & rc)
|
If rc <> 0 Then EgtOutLog(" objDVariables.WriteVariables2() Error : " & rc)
|
||||||
@@ -476,9 +451,7 @@ Public Class NUMFlexiumComm
|
|||||||
|
|
||||||
Private Sub objDGeneralFunction_ProgramActivated(ByVal nerrorCode As Short)
|
Private Sub objDGeneralFunction_ProgramActivated(ByVal nerrorCode As Short)
|
||||||
EgtOutLog("Part program activated:" & " " & nerrorCode)
|
EgtOutLog("Part program activated:" & " " & nerrorCode)
|
||||||
'DbControllers.m_LogMachineController.Create(MachLog.CreateResultLog(CommandTypes.SENDPROG, CommandStates.OK, ResultTypes.EXECUTED, "Part program activated:" & " " & nerrorCode))
|
DbControllers.m_LogMachineController.Create(MachLog.CreateResultLog(CommandTypes.SENDPROG, CommandStates.OK, ResultTypes.EXECUTED, "Part program activated:" & " " & nerrorCode))
|
||||||
' scrivo evento programma attivato
|
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreateMachCommandLog(LogEvent.MachineCommands.PROGRAM_ACTIVATION, "", nerrorCode, DbControllers.SupervisorId))
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub objDGeneralFunction_OnCncStart(ByVal errorCode As Short)
|
Private Sub objDGeneralFunction_OnCncStart(ByVal errorCode As Short)
|
||||||
@@ -556,14 +529,13 @@ Public Class NUMFlexiumComm
|
|||||||
Dim AplErrorAdditional As Object() = CType(ErrorAdditional, Object())
|
Dim AplErrorAdditional As Object() = CType(ErrorAdditional, Object())
|
||||||
|
|
||||||
For index As Integer = 0 To numberOfError - 1
|
For index As Integer = 0 To numberOfError - 1
|
||||||
Dim nIndex As Integer = index
|
|
||||||
Dim NewMessageInList As ReadMessages = m_ReadFXMessages.FirstOrDefault(Function(x) x.CMsgCncNumber = AplCnCNumber AndAlso
|
Dim NewMessageInList As ReadMessages = m_ReadFXMessages.FirstOrDefault(Function(x) x.CMsgCncNumber = AplCnCNumber AndAlso
|
||||||
x.CMsgErrorType = AplErrorType(nIndex).ToString() AndAlso
|
x.CMsgErrorType = AplErrorType(index).ToString() AndAlso
|
||||||
x.CMsgErrorIndex = AplErrorIndex(nIndex).ToString() AndAlso
|
x.CMsgErrorIndex = AplErrorIndex(index).ToString() AndAlso
|
||||||
x.CMsgErrorNumber = AplErrorNumber(nIndex).ToString() AndAlso
|
x.CMsgErrorNumber = AplErrorNumber(index).ToString() AndAlso
|
||||||
x.CMsgErrorLine = AplErrorLine(nIndex).ToString() AndAlso
|
x.CMsgErrorLine = AplErrorLine(index).ToString() AndAlso
|
||||||
x.CMsgErrorMessage = AplErrorMessage(nIndex).ToString() AndAlso
|
x.CMsgErrorMessage = AplErrorMessage(index).ToString() AndAlso
|
||||||
x.CMsgErrorAdditional = AplErrorAdditional(nIndex).ToString())
|
x.CMsgErrorAdditional = AplErrorAdditional(index).ToString())
|
||||||
' se il messaggio e' gia' in lista
|
' se il messaggio e' gia' in lista
|
||||||
If Not IsNothing(NewMessageInList) Then
|
If Not IsNothing(NewMessageInList) Then
|
||||||
' lo segno come trovato
|
' lo segno come trovato
|
||||||
@@ -917,13 +889,12 @@ Public Class NUMFlexiumComm
|
|||||||
Dim objLine As Object() = CType(line, Object())
|
Dim objLine As Object() = CType(line, Object())
|
||||||
Dim OpMsgErrType As Integer = 30
|
Dim OpMsgErrType As Integer = 30
|
||||||
For index As Integer = 0 To objMsgNumber.Length - 1
|
For index As Integer = 0 To objMsgNumber.Length - 1
|
||||||
Dim nIndex As Integer = index
|
|
||||||
Dim NewMessageInList As ReadMessages = m_ReadOperatorMessages.FirstOrDefault(Function(x) x.CMsgCncNumber = 0 AndAlso
|
Dim NewMessageInList As ReadMessages = m_ReadOperatorMessages.FirstOrDefault(Function(x) x.CMsgCncNumber = 0 AndAlso
|
||||||
x.CMsgErrorType = OpMsgErrType.ToString() AndAlso
|
x.CMsgErrorType = OpMsgErrType.ToString() AndAlso
|
||||||
x.CMsgErrorIndex = "" AndAlso
|
x.CMsgErrorIndex = "" AndAlso
|
||||||
x.CMsgErrorNumber = objMsgNumber(nIndex).ToString() AndAlso
|
x.CMsgErrorNumber = objMsgNumber(index).ToString() AndAlso
|
||||||
x.CMsgErrorLine = "" AndAlso
|
x.CMsgErrorLine = "" AndAlso
|
||||||
x.CMsgErrorMessage = objLine(nIndex).ToString() AndAlso
|
x.CMsgErrorMessage = objLine(index).ToString() AndAlso
|
||||||
x.CMsgErrorAdditional = "")
|
x.CMsgErrorAdditional = "")
|
||||||
' se il messaggio e' gia' in lista
|
' se il messaggio e' gia' in lista
|
||||||
If Not IsNothing(NewMessageInList) Then
|
If Not IsNothing(NewMessageInList) Then
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ Public Class TPAComm
|
|||||||
Private m_Proxy_ListInfoEventHandler As New ListInfoEventHandler(AddressOf RemoteObject_ListInfoResponse)
|
Private m_Proxy_ListInfoEventHandler As New ListInfoEventHandler(AddressOf RemoteObject_ListInfoResponse)
|
||||||
Private m_Proxy_RPCUpdateEventHandler As New RPCUpdateEventHandler(AddressOf RemoteObject_RPCUpdate)
|
Private m_Proxy_RPCUpdateEventHandler As New RPCUpdateEventHandler(AddressOf RemoteObject_RPCUpdate)
|
||||||
Private m_Proxy_VariableCommandExecutedEventHandler As New VariableCommandExecutedEventHandler(AddressOf RemoteObject_VariableCommandExecuted)
|
Private m_Proxy_VariableCommandExecutedEventHandler As New VariableCommandExecutedEventHandler(AddressOf RemoteObject_VariableCommandExecuted)
|
||||||
'Private m_Proxy_TickUpdateEventHandler As New TickUpdateEventHandler(AddressOf RemoteObject_TickUpdate)
|
Private m_Proxy_TickUpdateEventHandler As New TickUpdateEventHandler(AddressOf RemoteObject_TickUpdate)
|
||||||
Private m_Rem_CommandExecutedEventHandler As CommandExecutedEventHandler
|
Private m_Rem_CommandExecutedEventHandler As CommandExecutedEventHandler
|
||||||
Private m_Rem_ServerErrorEventHandler As ServerErrorEventHandler
|
Private m_Rem_ServerErrorEventHandler As ServerErrorEventHandler
|
||||||
Private m_Rem_AxesCoordinatesUpdateEventHandler As AxesCoordinatesUpdateEventHandler
|
Private m_Rem_AxesCoordinatesUpdateEventHandler As AxesCoordinatesUpdateEventHandler
|
||||||
@@ -77,7 +77,7 @@ Public Class TPAComm
|
|||||||
Private m_Rem_ListInfoEventHandler As ListInfoEventHandler
|
Private m_Rem_ListInfoEventHandler As ListInfoEventHandler
|
||||||
Private m_Rem_RPCUpdateEventHandler As RPCUpdateEventHandler
|
Private m_Rem_RPCUpdateEventHandler As RPCUpdateEventHandler
|
||||||
Private m_Rem_VariableCommandExecutedEventHandler As VariableCommandExecutedEventHandler
|
Private m_Rem_VariableCommandExecutedEventHandler As VariableCommandExecutedEventHandler
|
||||||
'Private m_Rem_TickUpdateEventHandler As TickUpdateEventHandler
|
|
||||||
|
|
||||||
<SecurityPermission(SecurityAction.Demand)>
|
<SecurityPermission(SecurityAction.Demand)>
|
||||||
Public Sub New(MachManaging As MachManaging)
|
Public Sub New(MachManaging As MachManaging)
|
||||||
@@ -93,7 +93,7 @@ Public Class TPAComm
|
|||||||
System.Runtime.Remoting.Channels.ChannelServices.RegisterChannel(channel, False)
|
System.Runtime.Remoting.Channels.ChannelServices.RegisterChannel(channel, False)
|
||||||
Dim remoteType As System.Runtime.Remoting.WellKnownClientTypeEntry = New System.Runtime.Remoting.WellKnownClientTypeEntry(GetType(ISOCNC.Remoting_Server), serverURI)
|
Dim remoteType As System.Runtime.Remoting.WellKnownClientTypeEntry = New System.Runtime.Remoting.WellKnownClientTypeEntry(GetType(ISOCNC.Remoting_Server), serverURI)
|
||||||
System.Runtime.Remoting.RemotingConfiguration.RegisterWellKnownClientType(remoteType)
|
System.Runtime.Remoting.RemotingConfiguration.RegisterWellKnownClientType(remoteType)
|
||||||
Dim objectUri As String = Nothing
|
Dim objectUri As String
|
||||||
Dim messageSink As System.Runtime.Remoting.Messaging.IMessageSink = channel.CreateMessageSink("ipc://localhost:9090/IRemoteObject.rem", Nothing, objectUri)
|
Dim messageSink As System.Runtime.Remoting.Messaging.IMessageSink = channel.CreateMessageSink("ipc://localhost:9090/IRemoteObject.rem", Nothing, objectUri)
|
||||||
Console.WriteLine("The URI of the message sink is {0}.", objectUri)
|
Console.WriteLine("The URI of the message sink is {0}.", objectUri)
|
||||||
|
|
||||||
@@ -110,7 +110,7 @@ Public Class TPAComm
|
|||||||
AddHandler m_eventProxy.ListInfoResponse, m_Proxy_ListInfoEventHandler
|
AddHandler m_eventProxy.ListInfoResponse, m_Proxy_ListInfoEventHandler
|
||||||
AddHandler m_eventProxy.RPCUpdate, m_Proxy_RPCUpdateEventHandler
|
AddHandler m_eventProxy.RPCUpdate, m_Proxy_RPCUpdateEventHandler
|
||||||
AddHandler m_eventProxy.VariableCommandExecuted, m_Proxy_VariableCommandExecutedEventHandler
|
AddHandler m_eventProxy.VariableCommandExecuted, m_Proxy_VariableCommandExecutedEventHandler
|
||||||
'AddHandler m_eventProxy.TickUpdate, m_Proxy_TickUpdateEventHandler
|
AddHandler m_eventProxy.TickUpdate, m_Proxy_TickUpdateEventHandler
|
||||||
|
|
||||||
_remObject = CType(Activator.GetObject(GetType(ISOCNC.Remoting_Server), serverURI), ISOCNC.Remoting_Server)
|
_remObject = CType(Activator.GetObject(GetType(ISOCNC.Remoting_Server), serverURI), ISOCNC.Remoting_Server)
|
||||||
Try
|
Try
|
||||||
@@ -122,7 +122,6 @@ Public Class TPAComm
|
|||||||
m_Rem_ListInfoEventHandler = New ListInfoEventHandler(AddressOf m_eventProxy.LocallyHandleListInfo)
|
m_Rem_ListInfoEventHandler = New ListInfoEventHandler(AddressOf m_eventProxy.LocallyHandleListInfo)
|
||||||
m_Rem_RPCUpdateEventHandler = New RPCUpdateEventHandler(AddressOf m_eventProxy.LocallyHandleRPCUpdate)
|
m_Rem_RPCUpdateEventHandler = New RPCUpdateEventHandler(AddressOf m_eventProxy.LocallyHandleRPCUpdate)
|
||||||
m_Rem_VariableCommandExecutedEventHandler = New VariableCommandExecutedEventHandler(AddressOf m_eventProxy.LocallyHandleVariableCommandExecuted)
|
m_Rem_VariableCommandExecutedEventHandler = New VariableCommandExecutedEventHandler(AddressOf m_eventProxy.LocallyHandleVariableCommandExecuted)
|
||||||
'm_Rem_TickUpdateEventHandler = New TickUpdateEventHandler(AddressOf m_eventProxy.LocallyHandleTickUpdate)
|
|
||||||
AddHandler _remObject.CommandExecuted, m_Rem_CommandExecutedEventHandler
|
AddHandler _remObject.CommandExecuted, m_Rem_CommandExecutedEventHandler
|
||||||
AddHandler _remObject.ServerError, m_Rem_ServerErrorEventHandler
|
AddHandler _remObject.ServerError, m_Rem_ServerErrorEventHandler
|
||||||
AddHandler _remObject.AxisCoordinatesUpdate, m_Rem_AxesCoordinatesUpdateEventHandler
|
AddHandler _remObject.AxisCoordinatesUpdate, m_Rem_AxesCoordinatesUpdateEventHandler
|
||||||
@@ -131,7 +130,6 @@ Public Class TPAComm
|
|||||||
AddHandler _remObject.ListInfoResponse, m_Rem_ListInfoEventHandler
|
AddHandler _remObject.ListInfoResponse, m_Rem_ListInfoEventHandler
|
||||||
AddHandler _remObject.RPCUpdate, m_Rem_RPCUpdateEventHandler
|
AddHandler _remObject.RPCUpdate, m_Rem_RPCUpdateEventHandler
|
||||||
AddHandler _remObject.VariableCommandExecuted, m_Rem_VariableCommandExecutedEventHandler
|
AddHandler _remObject.VariableCommandExecuted, m_Rem_VariableCommandExecutedEventHandler
|
||||||
'AddHandler _remObject.TickUpdate, m_Rem_TickUpdateEventHandler
|
|
||||||
Catch ex As System.Runtime.Remoting.RemotingException
|
Catch ex As System.Runtime.Remoting.RemotingException
|
||||||
Dim dR As MessageBoxResult = MessageBox.Show(ex.Message)
|
Dim dR As MessageBoxResult = MessageBox.Show(ex.Message)
|
||||||
End Try
|
End Try
|
||||||
@@ -156,10 +154,9 @@ Public Class TPAComm
|
|||||||
RemoveHandler m_eventProxy.ListInfoResponse, m_Proxy_ListInfoEventHandler
|
RemoveHandler m_eventProxy.ListInfoResponse, m_Proxy_ListInfoEventHandler
|
||||||
RemoveHandler m_eventProxy.RPCUpdate, m_Proxy_RPCUpdateEventHandler
|
RemoveHandler m_eventProxy.RPCUpdate, m_Proxy_RPCUpdateEventHandler
|
||||||
RemoveHandler m_eventProxy.VariableCommandExecuted, m_Proxy_VariableCommandExecutedEventHandler
|
RemoveHandler m_eventProxy.VariableCommandExecuted, m_Proxy_VariableCommandExecutedEventHandler
|
||||||
'RemoveHandler m_eventProxy.TickUpdate, m_Proxy_TickUpdateEventHandler
|
RemoveHandler m_eventProxy.TickUpdate, m_Proxy_TickUpdateEventHandler
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
Private Sub RemoteObject_OpStateUpdate(ByVal newOpState As ISOCNC.Remoting.MachineOperatingState)
|
Private Sub RemoteObject_OpStateUpdate(ByVal newOpState As ISOCNC.Remoting.MachineOperatingState)
|
||||||
' resetto stato pending iniziale
|
' resetto stato pending iniziale
|
||||||
If Map.refMachManaging.StartPending AndAlso newOpState = MachineOperatingState.Pending Then
|
If Map.refMachManaging.StartPending AndAlso newOpState = MachineOperatingState.Pending Then
|
||||||
@@ -242,7 +239,6 @@ Public Class TPAComm
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub RemoteObject_TickUpdate(ByVal newTick As ULong)
|
Private Sub RemoteObject_TickUpdate(ByVal newTick As ULong)
|
||||||
'EgtUILib.EgtOutLog("Tick: " & newTick)
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -17,8 +17,6 @@ Module ConstCommVar
|
|||||||
NULL = 0
|
NULL = 0
|
||||||
TPA = 1
|
TPA = 1
|
||||||
NUM_FLEXIUM = 2
|
NUM_FLEXIUM = 2
|
||||||
NUM_AXIUM_APSERVER = 3
|
|
||||||
NUM_AXIUM_PCTOOLKIT = 4
|
|
||||||
End Enum
|
End Enum
|
||||||
|
|
||||||
' Assi
|
' Assi
|
||||||
@@ -46,14 +44,6 @@ Module ConstCommVar
|
|||||||
Public Const RUNNING As String = "Running"
|
Public Const RUNNING As String = "Running"
|
||||||
' indice della lavorazione in corso (pareti NUM)
|
' indice della lavorazione in corso (pareti NUM)
|
||||||
Public Const MACHINDEX As String = "MachIndex"
|
Public Const MACHINDEX As String = "MachIndex"
|
||||||
' indice dell'utensile montato sulla testa 1
|
|
||||||
Public Const TOOLINDEX As String = "ToolIndex"
|
|
||||||
' indice dell'utensile montato sulla testa 1
|
|
||||||
Public Const TOOLINDEX2 As String = "ToolIndex2"
|
|
||||||
' variabile per lettura errori PLC bit a bit
|
|
||||||
Public Const PLC_MESSAGES As String = "PLC_Messages"
|
|
||||||
' variabile per leggere e scrivere permesso invio cn a macchina
|
|
||||||
Public Const SENDPERMISSION As String = "SendPermission"
|
|
||||||
|
|
||||||
Public Enum OPStates
|
Public Enum OPStates
|
||||||
Start = 1
|
Start = 1
|
||||||
|
|||||||
@@ -3,7 +3,5 @@
|
|||||||
Public Const MDI_MSG As String = "MDI"
|
Public Const MDI_MSG As String = "MDI"
|
||||||
Public Const PLC_MSG As String = "PLC"
|
Public Const PLC_MSG As String = "PLC"
|
||||||
Public Const CNC_MSG As String = "CNC"
|
Public Const CNC_MSG As String = "CNC"
|
||||||
Public Const INPUT_MSG As String = "INPUT"
|
|
||||||
Public Const OUTPUT_MSG As String = "OUTPUT"
|
|
||||||
|
|
||||||
End Module
|
End Module
|
||||||
|
|||||||
@@ -99,63 +99,20 @@
|
|||||||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
||||||
<Prefer32Bit>false</Prefer32Bit>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
|
||||||
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'RemoteDebug|AnyCPU'">
|
|
||||||
<DebugSymbols>true</DebugSymbols>
|
|
||||||
<DefineDebug>true</DefineDebug>
|
|
||||||
<DefineTrace>true</DefineTrace>
|
|
||||||
<OutputPath>bin\RemoteDebug\</OutputPath>
|
|
||||||
<DocumentationFile>EgtBEAMWALL.Supervisor.xml</DocumentationFile>
|
|
||||||
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
|
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'RemoteDebug|x64'">
|
|
||||||
<DebugSymbols>true</DebugSymbols>
|
|
||||||
<DefineDebug>true</DefineDebug>
|
|
||||||
<DefineTrace>true</DefineTrace>
|
|
||||||
<OutputPath>bin\x64\RemoteDebug\</OutputPath>
|
|
||||||
<DocumentationFile>EgtBEAMWALL.Supervisor.xml</DocumentationFile>
|
|
||||||
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
|
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<PlatformTarget>x64</PlatformTarget>
|
|
||||||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'RemoteDebug|x86'">
|
|
||||||
<DebugSymbols>true</DebugSymbols>
|
|
||||||
<DefineDebug>true</DefineDebug>
|
|
||||||
<DefineTrace>true</DefineTrace>
|
|
||||||
<OutputPath>bin\x86\RemoteDebug\</OutputPath>
|
|
||||||
<DocumentationFile>EgtBEAMWALL.Supervisor.xml</DocumentationFile>
|
|
||||||
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
|
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<PlatformTarget>x86</PlatformTarget>
|
|
||||||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="APLog">
|
<Reference Include="BouncyCastle.Crypto, Version=1.8.2.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL">
|
||||||
<HintPath>..\ExtLibs\APLog.dll</HintPath>
|
<HintPath>..\packages\Portable.BouncyCastle.1.8.2\lib\net40\BouncyCastle.Crypto.dll</HintPath>
|
||||||
<EmbedInteropTypes>True</EmbedInteropTypes>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="APServer">
|
|
||||||
<HintPath>..\ExtLibs\APServer.dll</HintPath>
|
|
||||||
<EmbedInteropTypes>True</EmbedInteropTypes>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="BouncyCastle.Crypto, Version=1.9.0.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\Portable.BouncyCastle.1.9.0\lib\net40\BouncyCastle.Crypto.dll</HintPath>
|
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Csv, Version=1.0.31.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="Csv, Version=1.0.31.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Csv.1.0.31\lib\net40\Csv.dll</HintPath>
|
<HintPath>..\packages\Csv.1.0.31\lib\net40\Csv.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="EgtUILib, Version=2.4.3.1, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="EgtUILib, Version=2.3.2.1, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\ExtLibs\EgtUILib.dll</HintPath>
|
<HintPath>..\..\..\..\..\..\EgtProg\Dll32\EgtUILib.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="EgtWPFLib5, Version=2.4.2.1, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="EgtWPFLib5, Version=2.3.1.1, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\ExtLibs\EgtWPFLib5.dll</HintPath>
|
<HintPath>..\..\..\..\..\..\EgtProg\Dll32\EgtWPFLib5.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll</HintPath>
|
<HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll</HintPath>
|
||||||
@@ -166,31 +123,16 @@
|
|||||||
<Reference Include="FluentFTP, Version=19.2.2.0, Culture=neutral, PublicKeyToken=f4af092b1d8df44f, processorArchitecture=MSIL">
|
<Reference Include="FluentFTP, Version=19.2.2.0, Culture=neutral, PublicKeyToken=f4af092b1d8df44f, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\FluentFTP.19.2.2\lib\net45\FluentFTP.dll</HintPath>
|
<HintPath>..\packages\FluentFTP.19.2.2\lib\net45\FluentFTP.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Google.Protobuf, Version=3.21.9.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\Google.Protobuf.3.21.9\lib\net45\Google.Protobuf.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="Interop.FXLog">
|
<Reference Include="Interop.FXLog">
|
||||||
<HintPath>..\ExtLibs\Interop.FXLog.dll</HintPath>
|
<HintPath>..\..\..\EgtProg\EgtBEAMWALL\Interop.FXLog.dll</HintPath>
|
||||||
<EmbedInteropTypes>True</EmbedInteropTypes>
|
<EmbedInteropTypes>True</EmbedInteropTypes>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Interop.FXServer">
|
<Reference Include="Interop.FXServer">
|
||||||
<HintPath>..\ExtLibs\Interop.FXServer.dll</HintPath>
|
<HintPath>..\..\..\EgtProg\EgtBEAMWALL\Interop.FXServer.dll</HintPath>
|
||||||
<EmbedInteropTypes>True</EmbedInteropTypes>
|
<EmbedInteropTypes>True</EmbedInteropTypes>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Ionic.Zip, Version=1.9.1.8, Culture=neutral, PublicKeyToken=edbe51ad942a3f5c, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\Ionic.Zip.1.9.1.8\lib\Ionic.Zip.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="ISOCNC.Remoting">
|
<Reference Include="ISOCNC.Remoting">
|
||||||
<HintPath>..\ExtLibs\ISOCNC.Remoting.dll</HintPath>
|
<HintPath>..\..\..\Albatros\Bin\ISOCNC.Remoting.dll</HintPath>
|
||||||
</Reference>
|
|
||||||
<Reference Include="K4os.Compression.LZ4, Version=1.3.5.0, Culture=neutral, PublicKeyToken=2186fa9121ef231d, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\K4os.Compression.LZ4.1.3.5\lib\net462\K4os.Compression.LZ4.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="K4os.Compression.LZ4.Streams, Version=1.3.5.0, Culture=neutral, PublicKeyToken=2186fa9121ef231d, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\K4os.Compression.LZ4.Streams.1.3.5\lib\net462\K4os.Compression.LZ4.Streams.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="K4os.Hash.xxHash, Version=1.0.8.0, Culture=neutral, PublicKeyToken=32cd54395057cec3, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\K4os.Hash.xxHash.1.0.8\lib\net462\K4os.Hash.xxHash.dll</HintPath>
|
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.CSharp" />
|
<Reference Include="Microsoft.CSharp" />
|
||||||
<Reference Include="Microsoft.DotNet.PlatformAbstractions, Version=2.1.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
|
<Reference Include="Microsoft.DotNet.PlatformAbstractions, Version=2.1.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
|
||||||
@@ -199,21 +141,15 @@
|
|||||||
<Reference Include="Microsoft.Extensions.DependencyModel, Version=2.1.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
|
<Reference Include="Microsoft.Extensions.DependencyModel, Version=2.1.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Microsoft.Extensions.DependencyModel.2.1.0\lib\net451\Microsoft.Extensions.DependencyModel.dll</HintPath>
|
<HintPath>..\packages\Microsoft.Extensions.DependencyModel.2.1.0\lib\net451\Microsoft.Extensions.DependencyModel.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="MySql.Data, Version=8.0.21.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
<Reference Include="MySql.Data, Version=6.10.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\MySql.Data.8.0.21\lib\net452\MySql.Data.dll</HintPath>
|
<HintPath>..\packages\MySql.Data.6.10.9\lib\net452\MySql.Data.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="MySql.Data.EntityFramework, Version=8.0.21.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
<Reference Include="MySql.Data.Entity.EF6, Version=6.10.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\MySql.Data.EntityFramework.8.0.21\lib\net452\MySql.Data.EntityFramework.dll</HintPath>
|
<HintPath>..\packages\MySql.Data.Entity.6.10.9\lib\net452\MySql.Data.Entity.EF6.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
|
<HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\NLog.5.0.1\lib\net46\NLog.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="Renci.SshNet, Version=2016.1.0.0, Culture=neutral, PublicKeyToken=1cee9f8bde3db106, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\SSH.NET.2016.1.0\lib\net40\Renci.SshNet.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="SdkApi.Core, Version=2.15.2634.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="SdkApi.Core, Version=2.15.2634.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Zebra.Printer.SDK.2.15.2634\lib\net471\SdkApi.Core.dll</HintPath>
|
<HintPath>..\packages\Zebra.Printer.SDK.2.15.2634\lib\net471\SdkApi.Core.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
@@ -226,9 +162,6 @@
|
|||||||
<Reference Include="SharpSnmpLib, Version=10.0.9.0, Culture=neutral, PublicKeyToken=4c00852d3788e005, processorArchitecture=MSIL">
|
<Reference Include="SharpSnmpLib, Version=10.0.9.0, Culture=neutral, PublicKeyToken=4c00852d3788e005, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Lextm.SharpSnmpLib.10.0.9\lib\net452\SharpSnmpLib.dll</HintPath>
|
<HintPath>..\packages\Lextm.SharpSnmpLib.10.0.9\lib\net452\SharpSnmpLib.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System.Collections.Specialized, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
<Reference Include="System.Collections.Specialized, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\System.Collections.Specialized.4.3.0\lib\net46\System.Collections.Specialized.dll</HintPath>
|
<HintPath>..\packages\System.Collections.Specialized.4.3.0\lib\net46\System.Collections.Specialized.dll</HintPath>
|
||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
@@ -241,14 +174,7 @@
|
|||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
<Reference Include="System.Drawing" />
|
<Reference Include="System.Drawing" />
|
||||||
<Reference Include="System.Drawing.Design" />
|
<Reference Include="System.Drawing.Design" />
|
||||||
<Reference Include="System.IO.Compression" />
|
|
||||||
<Reference Include="System.IO.Pipelines, Version=5.0.0.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\System.IO.Pipelines.5.0.2\lib\net461\System.IO.Pipelines.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System.Management" />
|
<Reference Include="System.Management" />
|
||||||
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System.Net.NameResolution, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
<Reference Include="System.Net.NameResolution, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\System.Net.NameResolution.4.3.0\lib\net46\System.Net.NameResolution.dll</HintPath>
|
<HintPath>..\packages\System.Net.NameResolution.4.3.0\lib\net46\System.Net.NameResolution.dll</HintPath>
|
||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
@@ -259,13 +185,6 @@
|
|||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="System.Numerics" />
|
|
||||||
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System.Runtime.InteropServices.RuntimeInformation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
<Reference Include="System.Runtime.InteropServices.RuntimeInformation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\System.Runtime.InteropServices.RuntimeInformation.4.0.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
|
<HintPath>..\packages\System.Runtime.InteropServices.RuntimeInformation.4.0.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
|
||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
@@ -273,9 +192,6 @@
|
|||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="System.Runtime.Remoting" />
|
<Reference Include="System.Runtime.Remoting" />
|
||||||
<Reference Include="System.Security" />
|
<Reference Include="System.Security" />
|
||||||
<Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System.Transactions" />
|
<Reference Include="System.Transactions" />
|
||||||
<Reference Include="System.Web" />
|
<Reference Include="System.Web" />
|
||||||
<Reference Include="System.Windows.Forms" />
|
<Reference Include="System.Windows.Forms" />
|
||||||
@@ -292,9 +208,6 @@
|
|||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Ubiety.Dns.Core, Version=2.2.1.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\MySql.Data.8.0.21\lib\net452\Ubiety.Dns.Core.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="WindowsBase" />
|
<Reference Include="WindowsBase" />
|
||||||
<Reference Include="PresentationCore" />
|
<Reference Include="PresentationCore" />
|
||||||
<Reference Include="PresentationFramework" />
|
<Reference Include="PresentationFramework" />
|
||||||
@@ -302,9 +215,6 @@
|
|||||||
<Reference Include="ZebraPrinterSdk, Version=2.15.2634.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="ZebraPrinterSdk, Version=2.15.2634.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Zebra.Printer.SDK.2.15.2634\lib\net471\ZebraPrinterSdk.dll</HintPath>
|
<HintPath>..\packages\Zebra.Printer.SDK.2.15.2634\lib\net471\ZebraPrinterSdk.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Zstandard.Net, Version=1.1.7.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\MySql.Data.8.0.21\lib\net452\Zstandard.Net.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ApplicationDefinition Include="Application.xaml">
|
<ApplicationDefinition Include="Application.xaml">
|
||||||
@@ -323,15 +233,9 @@
|
|||||||
<DependentUpon>CalcPanelV.xaml</DependentUpon>
|
<DependentUpon>CalcPanelV.xaml</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="CALCPanel\CALCPanelVM.vb" />
|
<Compile Include="CALCPanel\CALCPanelVM.vb" />
|
||||||
<Compile Include="Comms\NUMAxiumComm.vb" />
|
|
||||||
<Compile Include="Comms\NUMAxiumPcToolkitComm.vb" />
|
|
||||||
<Compile Include="Comms\NUMFlexiumComm.vb" />
|
<Compile Include="Comms\NUMFlexiumComm.vb" />
|
||||||
<Compile Include="Comms\TPAComm.vb" />
|
<Compile Include="Comms\TPAComm.vb" />
|
||||||
<Compile Include="Constants\ConstMachMsg.vb" />
|
<Compile Include="Constants\ConstMachMsg.vb" />
|
||||||
<Compile Include="MachineLogPage\MachineLogPageV.xaml.vb">
|
|
||||||
<DependentUpon>MachineLogPageV.xaml</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="MachineLogPage\MachineLogPageVM.vb" />
|
|
||||||
<Compile Include="MDIPage\MDIPageV.xaml.vb">
|
<Compile Include="MDIPage\MDIPageV.xaml.vb">
|
||||||
<DependentUpon>MDIPageV.xaml</DependentUpon>
|
<DependentUpon>MDIPageV.xaml</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
@@ -414,7 +318,6 @@
|
|||||||
<DependentUpon>Dictionary.xaml</DependentUpon>
|
<DependentUpon>Dictionary.xaml</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Utility\DisableModifiedMgr.vb" />
|
<Compile Include="Utility\DisableModifiedMgr.vb" />
|
||||||
<Compile Include="Utility\LogEvent.vb" />
|
|
||||||
<Compile Include="Utility\LuaExec.vb" />
|
<Compile Include="Utility\LuaExec.vb" />
|
||||||
<Compile Include="Utility\ManageBTLParts.vb" />
|
<Compile Include="Utility\ManageBTLParts.vb" />
|
||||||
<Compile Include="Utility\Map.vb" />
|
<Compile Include="Utility\Map.vb" />
|
||||||
@@ -444,10 +347,6 @@
|
|||||||
<Generator>MSBuild:Compile</Generator>
|
<Generator>MSBuild:Compile</Generator>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</Page>
|
</Page>
|
||||||
<Page Include="MachineLogPage\MachineLogPageV.xaml">
|
|
||||||
<Generator>MSBuild:Compile</Generator>
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
</Page>
|
|
||||||
<Page Include="MDIPage\MDIPageV.xaml">
|
<Page Include="MDIPage\MDIPageV.xaml">
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
<Generator>MSBuild:Compile</Generator>
|
<Generator>MSBuild:Compile</Generator>
|
||||||
@@ -584,7 +483,6 @@
|
|||||||
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<None Include="app.config" />
|
<None Include="app.config" />
|
||||||
<None Include="app.manifest" />
|
|
||||||
<None Include="My Project\Settings.settings">
|
<None Include="My Project\Settings.settings">
|
||||||
<Generator>SettingsSingleFileGenerator</Generator>
|
<Generator>SettingsSingleFileGenerator</Generator>
|
||||||
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
||||||
@@ -605,6 +503,17 @@
|
|||||||
<Resource Include="Resources\EgtBEAMWALL.ico" />
|
<Resource Include="Resources\EgtBEAMWALL.ico" />
|
||||||
<Resource Include="Resources\TreeView\Folder.png" />
|
<Resource Include="Resources\TreeView\Folder.png" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\ProjectManager\DxfOut.png" />
|
||||||
|
<Resource Include="Resources\ProjectManager\Export.png" />
|
||||||
|
<Resource Include="Resources\ProjectManager\Import.png" />
|
||||||
|
<Resource Include="Resources\ProjectManager\New.png" />
|
||||||
|
<Resource Include="Resources\ProjectManager\Open.png" />
|
||||||
|
<Resource Include="Resources\ProjectManager\Options.png" />
|
||||||
|
<Resource Include="Resources\ProjectManager\Save.png" />
|
||||||
|
<Resource Include="Resources\ProjectManager\SaveAs.png" />
|
||||||
|
<Resource Include="Resources\ProjectManager\Send.png" />
|
||||||
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Resource Include="Resources\ShowPanel\RenderingHL.png" />
|
<Resource Include="Resources\ShowPanel\RenderingHL.png" />
|
||||||
<Resource Include="Resources\ShowPanel\RenderingSH.png" />
|
<Resource Include="Resources\ShowPanel\RenderingSH.png" />
|
||||||
@@ -649,27 +558,6 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Resource Include="Resources\MDIPage\Send.png" />
|
<Resource Include="Resources\MDIPage\Send.png" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<Resource Include="Resources\ProjectManager\GoToProd.png" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Resource Include="Resources\ProjectManager\Open.png" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Resource Include="Resources\ProjectManager\Save.png" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<BootstrapperPackage Include=".NETFramework,Version=v4.7.2">
|
|
||||||
<Visible>False</Visible>
|
|
||||||
<ProductName>Microsoft .NET Framework 4.7.2 %28x86 and x64%29</ProductName>
|
|
||||||
<Install>true</Install>
|
|
||||||
</BootstrapperPackage>
|
|
||||||
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
|
||||||
<Visible>False</Visible>
|
|
||||||
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
|
||||||
<Install>false</Install>
|
|
||||||
</BootstrapperPackage>
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
||||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
CanUserAddRows="False"
|
CanUserAddRows="False"
|
||||||
AutoGenerateColumns="False"
|
AutoGenerateColumns="False"
|
||||||
CanUserSortColumns="False"
|
CanUserSortColumns="False"
|
||||||
|
CanUserResizeColumns="False"
|
||||||
CanUserResizeRows="False"
|
CanUserResizeRows="False"
|
||||||
CanUserReorderColumns="False"
|
CanUserReorderColumns="False"
|
||||||
SelectionMode="Single"
|
SelectionMode="Single"
|
||||||
|
|||||||
@@ -156,18 +156,6 @@
|
|||||||
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:PartInRawPartListV}}}"/>
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:PartInRawPartListV}}}"/>
|
||||||
</DataGridTextColumn.Header>
|
</DataGridTextColumn.Header>
|
||||||
</DataGridTextColumn>
|
</DataGridTextColumn>
|
||||||
<!--GRP - Gruppo-->
|
|
||||||
<DataGridTextColumn x:Key="colGROUP" Binding="{Binding sGROUP}">
|
|
||||||
<DataGridTextColumn.Header>
|
|
||||||
<TextBlock Text="{Binding Path=DataContext.GRP_Msg,RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:PartInRawPartListV}}}"/>
|
|
||||||
</DataGridTextColumn.Header>
|
|
||||||
</DataGridTextColumn>
|
|
||||||
<!--STOREY - Sottogruppo-->
|
|
||||||
<DataGridTextColumn x:Key="colSTOREY" Binding="{Binding sSTOREY}">
|
|
||||||
<DataGridTextColumn.Header>
|
|
||||||
<TextBlock Text="{Binding Path=DataContext.STOREY_Msg,RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:PartInRawPartListV}}}"/>
|
|
||||||
</DataGridTextColumn.Header>
|
|
||||||
</DataGridTextColumn>
|
|
||||||
|
|
||||||
</DataGrid.Resources>
|
</DataGrid.Resources>
|
||||||
<DataGrid.RowStyle>
|
<DataGrid.RowStyle>
|
||||||
|
|||||||
@@ -113,18 +113,6 @@ Public Class PartInRawPartListVM
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Public ReadOnly Property GRP_Msg As String
|
|
||||||
Get
|
|
||||||
Return EgtMsg(61624)
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Public ReadOnly Property STOREY_Msg As String
|
|
||||||
Get
|
|
||||||
Return EgtMsg(61623)
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
#End Region ' Messages
|
#End Region ' Messages
|
||||||
|
|
||||||
#Region "CONSTRUCTOR"
|
#Region "CONSTRUCTOR"
|
||||||
@@ -163,9 +151,6 @@ Public Class PartInRawPartListVM
|
|||||||
For Each col In PartInRawPartColumns
|
For Each col In PartInRawPartColumns
|
||||||
col.ColumnVisibility = If(col.Visible, Visibility.Visible, Visibility.Collapsed)
|
col.ColumnVisibility = If(col.Visible, Visibility.Visible, Visibility.Collapsed)
|
||||||
Next
|
Next
|
||||||
If Not IsNothing(colPartInRawPart_Redo) Then
|
|
||||||
colPartInRawPart_Redo.ColumnVisibility = Visibility.Collapsed
|
|
||||||
End If
|
|
||||||
If Not IsNothing(m_colPartInRawPart_Rot) Then
|
If Not IsNothing(m_colPartInRawPart_Rot) Then
|
||||||
m_colPartInRawPart_Rot.ColumnVisibility = Visibility.Collapsed
|
m_colPartInRawPart_Rot.ColumnVisibility = Visibility.Collapsed
|
||||||
End If
|
End If
|
||||||
@@ -197,9 +182,6 @@ Public Class PartInRawPartListVM
|
|||||||
For Each col In PartInRawPartColumns
|
For Each col In PartInRawPartColumns
|
||||||
col.ColumnVisibility = If(col.Visible, Visibility.Visible, Visibility.Collapsed)
|
col.ColumnVisibility = If(col.Visible, Visibility.Visible, Visibility.Collapsed)
|
||||||
Next
|
Next
|
||||||
If Not IsNothing(colPartInRawPart_Redo) Then
|
|
||||||
colPartInRawPart_Redo.ColumnVisibility = Visibility.Collapsed
|
|
||||||
End If
|
|
||||||
If Not IsNothing(m_colPartInRawPart_Offset) Then
|
If Not IsNothing(m_colPartInRawPart_Offset) Then
|
||||||
m_colPartInRawPart_Offset.ColumnVisibility = Visibility.Collapsed
|
m_colPartInRawPart_Offset.ColumnVisibility = Visibility.Collapsed
|
||||||
End If
|
End If
|
||||||
|
|||||||
@@ -81,15 +81,8 @@
|
|||||||
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:RawPartListV}}}"/>
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:RawPartListV}}}"/>
|
||||||
</DataGridTextColumn.Header>
|
</DataGridTextColumn.Header>
|
||||||
</DataGridTextColumn>
|
</DataGridTextColumn>
|
||||||
<!--PosZ - Posizione in Z-->
|
|
||||||
<DataGridTextColumn x:Key="colPOSZ" Binding="{Binding sPosZ}">
|
|
||||||
<DataGridTextColumn.Header>
|
|
||||||
<TextBlock Text="{Binding Path=DataContext.PosZ_Msg,
|
|
||||||
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:RawPartListV}}}"/>
|
|
||||||
</DataGridTextColumn.Header>
|
|
||||||
</DataGridTextColumn>
|
|
||||||
<!--MAT - Materiale-->
|
<!--MAT - Materiale-->
|
||||||
<DataGridTextColumn x:Key="colMATERIAL" Binding="{Binding sMATERIAL}">
|
<DataGridTextColumn x:Key="colMATERIAL" Binding="{Binding dL}">
|
||||||
<DataGridTextColumn.Header>
|
<DataGridTextColumn.Header>
|
||||||
<TextBlock Text="{Binding Path=DataContext.Material_Msg,
|
<TextBlock Text="{Binding Path=DataContext.Material_Msg,
|
||||||
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:RawPartListV}}}"/>
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:RawPartListV}}}"/>
|
||||||
@@ -113,7 +106,6 @@
|
|||||||
<DataGrid.RowStyle>
|
<DataGrid.RowStyle>
|
||||||
<Style TargetType="DataGridRow" BasedOn="{StaticResource RowDataGrid_CustomHighLight}">
|
<Style TargetType="DataGridRow" BasedOn="{StaticResource RowDataGrid_CustomHighLight}">
|
||||||
<Setter Property="Background" Value="{Binding Production_Background}"/>
|
<Setter Property="Background" Value="{Binding Production_Background}"/>
|
||||||
<EventSetter Event="PreviewMouseDown" Handler="RawPartRow_PreviewMouseDown"/>
|
|
||||||
</Style>
|
</Style>
|
||||||
</DataGrid.RowStyle>
|
</DataGrid.RowStyle>
|
||||||
|
|
||||||
|
|||||||
@@ -1,15 +1,3 @@
|
|||||||
Public Class RawPartListV
|
Public Class RawPartListV
|
||||||
|
|
||||||
' funzione che permette di selezionare un RawPart anche quando gia' selezionato
|
|
||||||
Private Sub RawPartRow_PreviewMouseDown(sender As Object, e As MouseButtonEventArgs)
|
|
||||||
If TypeOf sender Is DataGridRow Then
|
|
||||||
Dim Row As DataGridRow = DirectCast(sender, DataGridRow)
|
|
||||||
Dim RowVM As MyMachGroupVM = DirectCast(Row.DataContext, MyMachGroupVM)
|
|
||||||
' se gia' selezionato rifaccio selezione perche' potrbbe essere selezionato un BTLPart
|
|
||||||
If Not IsNothing(Row) AndAlso Row.IsSelected Then
|
|
||||||
Map.refProjectVM.SupervisorMachGroupPanelVM.SelectedMachGroup = Map.refProjectVM.SupervisorMachGroupPanelVM.SelectedMachGroup
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -13,13 +13,6 @@ Public Class RawPartListVM
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Private m_colRawPart_PosZ As EgtDataGridColumn
|
|
||||||
Public ReadOnly Property colRawPart_PosZ As EgtDataGridColumn
|
|
||||||
Get
|
|
||||||
Return m_colRawPart_PosZ
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Private m_RawPartColumns As New ObservableCollection(Of EgtDataGridColumn)
|
Private m_RawPartColumns As New ObservableCollection(Of EgtDataGridColumn)
|
||||||
Public Property RawPartColumns As ObservableCollection(Of EgtDataGridColumn)
|
Public Property RawPartColumns As ObservableCollection(Of EgtDataGridColumn)
|
||||||
Get
|
Get
|
||||||
@@ -62,12 +55,6 @@ Public Class RawPartListVM
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Public ReadOnly Property PosZ_Msg As String
|
|
||||||
Get
|
|
||||||
Return EgtMsg(61728)
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Public ReadOnly Property Material_Msg As String
|
Public ReadOnly Property Material_Msg As String
|
||||||
Get
|
Get
|
||||||
Return EgtMsg(61607)
|
Return EgtMsg(61607)
|
||||||
@@ -97,27 +84,23 @@ Public Class RawPartListVM
|
|||||||
Map.SetRefRawPartListVM(Me)
|
Map.SetRefRawPartListVM(Me)
|
||||||
' carico le colonne della datagrid
|
' carico le colonne della datagrid
|
||||||
GetPrivateProfileColumns(S_RAWPARTLIST_SUPERVISOR, RawPartColumns)
|
GetPrivateProfileColumns(S_RAWPARTLIST_SUPERVISOR, RawPartColumns)
|
||||||
' recupero riferimento a colonna StartCut e PosZ
|
' recupero riferimento a colonna StartCut
|
||||||
m_colRawPart_StartCut = m_RawPartColumns.FirstOrDefault(Function(x) x.Name = COL_STARTCUT)
|
m_colRawPart_StartCut = m_RawPartColumns.FirstOrDefault(Function(x) x.Name = COL_STARTCUT)
|
||||||
m_colRawPart_PosZ = m_RawPartColumns.FirstOrDefault(Function(x) x.Name = COL_POSZ)
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
#End Region ' CONSTRUCTOR
|
#End Region ' CONSTRUCTOR
|
||||||
|
|
||||||
Friend Sub UpdateColumns(nMachType As MachineType)
|
Friend Sub UpdateColumns(nMachType As MachineType)
|
||||||
If nMachType = MachineType.BEAM Then
|
If nMachType = MachineType.BEAM Then
|
||||||
|
If Not IsNothing(m_colRawPart_StartCut) Then
|
||||||
|
m_colRawPart_StartCut.ColumnVisibility = Visibility.Visible
|
||||||
|
End If
|
||||||
|
'RawPartColumns.Clear()
|
||||||
|
'GetPrivateProfileColumns(S_RAWPARTLIST_BEAM, RawPartColumns)
|
||||||
' aggiorno la visibilità delle colonne
|
' aggiorno la visibilità delle colonne
|
||||||
For Each col In RawPartColumns
|
For Each col In RawPartColumns
|
||||||
col.ColumnVisibility = If(col.Visible, Visibility.Visible, Visibility.Collapsed)
|
col.ColumnVisibility = If(col.Visible, Visibility.Visible, Visibility.Collapsed)
|
||||||
Next
|
Next
|
||||||
If Not IsNothing(m_colRawPart_StartCut) Then
|
|
||||||
m_colRawPart_StartCut.ColumnVisibility = Visibility.Visible
|
|
||||||
End If
|
|
||||||
If Not IsNothing(m_colRawPart_PosZ) Then
|
|
||||||
m_colRawPart_PosZ.ColumnVisibility = Visibility.Collapsed
|
|
||||||
End If
|
|
||||||
'RawPartColumns.Clear()
|
|
||||||
'GetPrivateProfileColumns(S_RAWPARTLIST_BEAM, RawPartColumns)
|
|
||||||
ElseIf nMachType = MachineType.WALL Then
|
ElseIf nMachType = MachineType.WALL Then
|
||||||
' aggiorno la visibilità delle colonne
|
' aggiorno la visibilità delle colonne
|
||||||
For Each col In RawPartColumns
|
For Each col In RawPartColumns
|
||||||
@@ -126,9 +109,6 @@ Public Class RawPartListVM
|
|||||||
If Not IsNothing(m_colRawPart_StartCut) Then
|
If Not IsNothing(m_colRawPart_StartCut) Then
|
||||||
m_colRawPart_StartCut.ColumnVisibility = Visibility.Collapsed
|
m_colRawPart_StartCut.ColumnVisibility = Visibility.Collapsed
|
||||||
End If
|
End If
|
||||||
If Not IsNothing(m_colRawPart_PosZ) Then
|
|
||||||
m_colRawPart_PosZ.ColumnVisibility = Visibility.Visible
|
|
||||||
End If
|
|
||||||
'RawPartColumns.Clear()
|
'RawPartColumns.Clear()
|
||||||
'GetPrivateProfileColumns(S_RAWPARTLIST_WALL, RawPartColumns)
|
'GetPrivateProfileColumns(S_RAWPARTLIST_WALL, RawPartColumns)
|
||||||
End If
|
End If
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
<RowDefinition Height="Auto"/>
|
|
||||||
<RowDefinition Height="{Binding GridDims[0].GridLen, Mode=TwoWay}"/>
|
<RowDefinition Height="{Binding GridDims[0].GridLen, Mode=TwoWay}"/>
|
||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
<RowDefinition Height="{Binding GridDims[1].GridLen, Mode=TwoWay}"/>
|
<RowDefinition Height="{Binding GridDims[1].GridLen, Mode=TwoWay}"/>
|
||||||
@@ -33,28 +32,12 @@
|
|||||||
<TextBlock Text="OPState"/>
|
<TextBlock Text="OPState"/>
|
||||||
<TextBlock Text="{Binding SelOPState.Name}"/>
|
<TextBlock Text="{Binding SelOPState.Name}"/>
|
||||||
</UniformGrid>
|
</UniformGrid>
|
||||||
<UniformGrid Grid.Row="3"
|
<Expander Grid.Row="3"
|
||||||
Columns="6"
|
|
||||||
Visibility="{Binding E80000_Visibility}">
|
|
||||||
<TextBlock Text="E80000: "/>
|
|
||||||
<TextBlock Text="{Binding sE80000}"
|
|
||||||
HorizontalAlignment="Left"/>
|
|
||||||
<TextBlock Text="E80001: "/>
|
|
||||||
<TextBlock Text="{Binding sE80001}"
|
|
||||||
HorizontalAlignment="Left"/>
|
|
||||||
<TextBlock Text="E80002: "
|
|
||||||
Visibility="{Binding E80002_Visibility}"/>
|
|
||||||
<TextBlock Text="{Binding sE80002}"
|
|
||||||
HorizontalAlignment="Left"
|
|
||||||
Visibility="{Binding E80002_Visibility}"/>
|
|
||||||
</UniformGrid>
|
|
||||||
<Expander Grid.Row="4"
|
|
||||||
Header="Axis">
|
Header="Axis">
|
||||||
<EgtBEAMWALL:AxesPanelV DataContext="{StaticResource AxesPanelVM}"/>
|
<EgtBEAMWALL:AxesPanelV DataContext="{StaticResource AxesPanelVM}"/>
|
||||||
</Expander>
|
</Expander>
|
||||||
|
|
||||||
|
<Grid Grid.Row="4">
|
||||||
<Grid Grid.Row="5">
|
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
<RowDefinition Height="1*"/>
|
<RowDefinition Height="1*"/>
|
||||||
@@ -103,9 +86,9 @@
|
|||||||
Tag="{Binding Tag, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:LeftPanelV}}}"/>
|
Tag="{Binding Tag, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:LeftPanelV}}}"/>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<GridSplitter Height="3" HorizontalAlignment="Stretch" Grid.Row="6" ResizeDirection="Rows" ResizeBehavior="PreviousAndNext"/>
|
<GridSplitter Height="3" HorizontalAlignment="Stretch" Grid.Row="5" ResizeDirection="Rows" ResizeBehavior="PreviousAndNext"/>
|
||||||
|
|
||||||
<Grid Grid.Row="7">
|
<Grid Grid.Row="6">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
<RowDefinition Height="1*"/>
|
<RowDefinition Height="1*"/>
|
||||||
@@ -129,10 +112,7 @@
|
|||||||
</Button>
|
</Button>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
<Grid Grid.Row="1" x:Name="PartFeatureGrid">
|
<Grid Grid.Row="1">
|
||||||
<Grid.Resources>
|
|
||||||
<EgtBEAMWALL:FeatureDataGridHeightConverter x:Key="FeatureDataGridHeightConverter"/>
|
|
||||||
</Grid.Resources>
|
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="1*"/>
|
<RowDefinition Height="1*"/>
|
||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
@@ -140,7 +120,7 @@
|
|||||||
<EgtBEAMWALL:PartInRawPartListV DataContext="{StaticResource PartInRawPartListVM}"
|
<EgtBEAMWALL:PartInRawPartListV DataContext="{StaticResource PartInRawPartListVM}"
|
||||||
Tag="{Binding Tag.SelectedMachGroup, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:LeftPanelV}}}"/>
|
Tag="{Binding Tag.SelectedMachGroup, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:LeftPanelV}}}"/>
|
||||||
<EgtBEAMWALL:FeatureInPartInRawPartListV Grid.Row="1"
|
<EgtBEAMWALL:FeatureInPartInRawPartListV Grid.Row="1"
|
||||||
Height="{Binding ActualHeight, ElementName=PartFeatureGrid, Converter={StaticResource FeatureDataGridHeightConverter}}"
|
Height="80"
|
||||||
DataContext="{StaticResource FeatureInPartInRawPartListVM}"
|
DataContext="{StaticResource FeatureInPartInRawPartListVM}"
|
||||||
Tag="{Binding Tag.SelectedMachGroup.SelPart, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:LeftPanelV}}}"
|
Tag="{Binding Tag.SelectedMachGroup.SelPart, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:LeftPanelV}}}"
|
||||||
Visibility="{Binding DataContext.FeatureList_Visibility, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:LeftPanelV}}}"/>
|
Visibility="{Binding DataContext.FeatureList_Visibility, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:LeftPanelV}}}"/>
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
Imports System.Collections.ObjectModel
|
Imports System.Collections.ObjectModel
|
||||||
Imports System.Globalization
|
|
||||||
Imports System.IO
|
Imports System.IO
|
||||||
Imports System.Windows.Threading
|
Imports System.Windows.Threading
|
||||||
Imports EgtBEAMWALL.Core
|
Imports EgtBEAMWALL.Core
|
||||||
@@ -40,7 +39,7 @@ Public Class LeftPanelVM
|
|||||||
Return m_SelChannel
|
Return m_SelChannel
|
||||||
End Get
|
End Get
|
||||||
Set(ByVal value As IdNameStruct)
|
Set(ByVal value As IdNameStruct)
|
||||||
MachManaging.AddToCommandList(ThreadCommand.CreateCommand(CommandTypes.SETCHANNEL, value.Id))
|
MachManaging.CommandList.Add(ThreadCommand.CreateCommand(CommandTypes.SETCHANNEL, value.Id))
|
||||||
m_SelChannel = value
|
m_SelChannel = value
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
@@ -86,14 +85,11 @@ Public Class LeftPanelVM
|
|||||||
Return m_SelOPMode
|
Return m_SelOPMode
|
||||||
End Get
|
End Get
|
||||||
Set(ByVal value As OPState)
|
Set(ByVal value As OPState)
|
||||||
MachManaging.AddToCommandList(ThreadCommand.CreateCommand(CommandTypes.SETOPMODE, value.Id))
|
MachManaging.CommandList.Add(ThreadCommand.CreateCommand(CommandTypes.SETOPMODE, value.Id))
|
||||||
' se MDI
|
' se MDI
|
||||||
If value.Id = OPModes.Mdi Then
|
If value.Id = OPModes.Mdi Then
|
||||||
' mostro pagina comandi MDI
|
' mostro pagina comandi MDI
|
||||||
Map.refProjectVM.SetSelTabPage(ProjectVM.TabPages.MDI)
|
Map.refProjectVM.SetSelTabPage(ProjectVM.TabPages.MDI)
|
||||||
ElseIf Map.refCALCPanelVM.bMachineLog Then
|
|
||||||
' mostro log macchina
|
|
||||||
Map.refProjectVM.SetSelTabPage(ProjectVM.TabPages.MACHINELOG)
|
|
||||||
Else
|
Else
|
||||||
' mostro scena
|
' mostro scena
|
||||||
Map.refProjectVM.SetSelTabPage(ProjectVM.TabPages.SCENE)
|
Map.refProjectVM.SetSelTabPage(ProjectVM.TabPages.SCENE)
|
||||||
@@ -106,9 +102,6 @@ Public Class LeftPanelVM
|
|||||||
If value.Id = OPModes.Mdi Then
|
If value.Id = OPModes.Mdi Then
|
||||||
' mostro pagina comandi MDI
|
' mostro pagina comandi MDI
|
||||||
Map.refProjectVM.SetSelTabPage(ProjectVM.TabPages.MDI)
|
Map.refProjectVM.SetSelTabPage(ProjectVM.TabPages.MDI)
|
||||||
ElseIf Map.refCALCPanelVM.bMachineLog Then
|
|
||||||
' mostro log macchina
|
|
||||||
Map.refProjectVM.SetSelTabPage(ProjectVM.TabPages.MACHINELOG)
|
|
||||||
Else
|
Else
|
||||||
' mostro scena
|
' mostro scena
|
||||||
Map.refProjectVM.SetSelTabPage(ProjectVM.TabPages.SCENE)
|
Map.refProjectVM.SetSelTabPage(ProjectVM.TabPages.SCENE)
|
||||||
@@ -116,36 +109,6 @@ Public Class LeftPanelVM
|
|||||||
m_SelOPMode = value
|
m_SelOPMode = value
|
||||||
NotifyPropertyChanged(NameOf(SelOPMode))
|
NotifyPropertyChanged(NameOf(SelOPMode))
|
||||||
End Sub
|
End Sub
|
||||||
Public ReadOnly Property sE80000 As String
|
|
||||||
Get
|
|
||||||
Dim MachIndexVar As Variable = Map.refMachCommandMessagePanelVM.MainVariablesList.FirstOrDefault(Function(x) x.sName = MACHINDEX)
|
|
||||||
Return If(IsNothing(MachIndexVar), "", MachIndexVar.sValue)
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
Public ReadOnly Property sE80001 As String
|
|
||||||
Get
|
|
||||||
Dim ToolIndexVar As Variable = Map.refMachCommandMessagePanelVM.MainVariablesList.FirstOrDefault(Function(x) x.sName = TOOLINDEX)
|
|
||||||
Return If(IsNothing(ToolIndexVar), "", ToolIndexVar.sValue)
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
Public ReadOnly Property sE80002 As String
|
|
||||||
Get
|
|
||||||
Dim ToolIndex2Var As Variable = Map.refMachCommandMessagePanelVM.MainVariablesList.FirstOrDefault(Function(x) x.sName = TOOLINDEX2)
|
|
||||||
Return If(IsNothing(ToolIndex2Var), "", ToolIndex2Var.sValue)
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
Public Property m_E80000_Visibility As Visibility
|
|
||||||
Public ReadOnly Property E80000_Visibility As Visibility
|
|
||||||
Get
|
|
||||||
Return m_E80000_Visibility
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
Public Property m_E80002_Visibility As Visibility
|
|
||||||
Public ReadOnly Property E80002_Visibility As Visibility
|
|
||||||
Get
|
|
||||||
Return m_E80002_Visibility
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Private m_bRestart As Boolean = False
|
Private m_bRestart As Boolean = False
|
||||||
Public Property bRestart As Boolean
|
Public Property bRestart As Boolean
|
||||||
@@ -266,7 +229,7 @@ Public Class LeftPanelVM
|
|||||||
|
|
||||||
Public ReadOnly Property OPMode_Visibility As Visibility
|
Public ReadOnly Property OPMode_Visibility As Visibility
|
||||||
Get
|
Get
|
||||||
Return If(CurrentMachine.NCType = NCTypes.NUM_FLEXIUM Or CurrentMachine.NCType = NCTypes.NUM_AXIUM_APSERVER Or CurrentMachine.NCType = NCTypes.NUM_AXIUM_PCTOOLKIT, Visibility.Visible, Visibility.Collapsed)
|
Return If(CurrentMachine.NCType = NCTypes.NUM_FLEXIUM, Visibility.Visible, Visibility.Collapsed)
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
@@ -378,7 +341,7 @@ Public Class LeftPanelVM
|
|||||||
' carico stati della macchina
|
' carico stati della macchina
|
||||||
Select Case NCType
|
Select Case NCType
|
||||||
Case NCTypes.TPA
|
Case NCTypes.TPA
|
||||||
Case NCTypes.NUM_FLEXIUM, NCTypes.NUM_AXIUM_APSERVER, NCTypes.NUM_AXIUM_PCTOOLKIT
|
Case NCTypes.NUM_FLEXIUM
|
||||||
m_ChannelList = New List(Of IdNameStruct)
|
m_ChannelList = New List(Of IdNameStruct)
|
||||||
Dim ChannelIndex As Integer = 1
|
Dim ChannelIndex As Integer = 1
|
||||||
Dim ChannelString As String = ""
|
Dim ChannelString As String = ""
|
||||||
@@ -427,7 +390,7 @@ Public Class LeftPanelVM
|
|||||||
New OPState("Pending", OPStates.Pending),
|
New OPState("Pending", OPStates.Pending),
|
||||||
New OPState("Unspecified", OPStates.Unspecified)
|
New OPState("Unspecified", OPStates.Unspecified)
|
||||||
}
|
}
|
||||||
Case NCTypes.NUM_FLEXIUM, NCTypes.NUM_AXIUM_APSERVER, NCTypes.NUM_AXIUM_PCTOOLKIT
|
Case NCTypes.NUM_FLEXIUM
|
||||||
m_OPStateList = New List(Of OPState) From {
|
m_OPStateList = New List(Of OPState) From {
|
||||||
New OPState("Start", OPStates.Start),
|
New OPState("Start", OPStates.Start),
|
||||||
New OPState("Stop", OPStates.Stop),
|
New OPState("Stop", OPStates.Stop),
|
||||||
@@ -447,7 +410,10 @@ Public Class LeftPanelVM
|
|||||||
m_OPModeList = New List(Of OPState) From {
|
m_OPModeList = New List(Of OPState) From {
|
||||||
New OPState("Manual", OPModes.Manual)
|
New OPState("Manual", OPModes.Manual)
|
||||||
}
|
}
|
||||||
Case NCTypes.NUM_FLEXIUM, NCTypes.NUM_AXIUM_APSERVER, NCTypes.NUM_AXIUM_PCTOOLKIT
|
' imposto stato manuale
|
||||||
|
Dim ManualMode As OPState = m_OPModeList.FirstOrDefault(Function(x) x.Id = OPModes.Manual)
|
||||||
|
SetOPState(ManualMode)
|
||||||
|
Case NCTypes.NUM_FLEXIUM
|
||||||
m_OPModeList = New List(Of OPState) From {
|
m_OPModeList = New List(Of OPState) From {
|
||||||
New OPState("Auto", OPModes.Auto),
|
New OPState("Auto", OPModes.Auto),
|
||||||
New OPState("Single", OPModes.Single),
|
New OPState("Single", OPModes.Single),
|
||||||
@@ -458,28 +424,6 @@ Public Class LeftPanelVM
|
|||||||
End Select
|
End Select
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Friend Sub SetE80000Visibility()
|
|
||||||
' imposto visibilità variabili E80000 e seconda del tipo di controllo
|
|
||||||
If CurrentMachine.NCType = NCTypes.TPA Then
|
|
||||||
m_E80000_Visibility = Visibility.Collapsed
|
|
||||||
m_E80002_Visibility = Visibility.Collapsed
|
|
||||||
Else
|
|
||||||
m_E80000_Visibility = Visibility.Visible
|
|
||||||
m_E80002_Visibility = Visibility.Collapsed
|
|
||||||
Dim ReadVar As String = ""
|
|
||||||
Dim Index = 1
|
|
||||||
While GetPrivateProfileString(S_MAINVARIABLES, Index, "", ReadVar, CurrentMachine.sMachIniFile) <> 0
|
|
||||||
If ReadVar.StartsWith(TOOLINDEX2) Then
|
|
||||||
m_E80002_Visibility = Visibility.Visible
|
|
||||||
Exit While
|
|
||||||
End If
|
|
||||||
Index += 1
|
|
||||||
End While
|
|
||||||
End If
|
|
||||||
NotifyPropertyChanged(NameOf(E80000_Visibility))
|
|
||||||
NotifyPropertyChanged(NameOf(E80002_Visibility))
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend Sub UpdateButtonIsEnabledState()
|
Friend Sub UpdateButtonIsEnabledState()
|
||||||
NotifyPropertyChanged(NameOf(MoveRawPart_IsEnabled))
|
NotifyPropertyChanged(NameOf(MoveRawPart_IsEnabled))
|
||||||
NotifyPropertyChanged(NameOf(DoneRawPart_IsEnabled))
|
NotifyPropertyChanged(NameOf(DoneRawPart_IsEnabled))
|
||||||
@@ -550,8 +494,6 @@ Public Class LeftPanelVM
|
|||||||
Dim Part As PartVM = SelMachGroup.PartVMList(PartIndex)
|
Dim Part As PartVM = SelMachGroup.PartVMList(PartIndex)
|
||||||
SetDonePart(SelMachGroup, Part)
|
SetDonePart(SelMachGroup, Part)
|
||||||
Next
|
Next
|
||||||
' riseleziono il gruppo
|
|
||||||
Map.refSupervisorMachGroupPanelVM.SelectedMachGroup = SelMachGroup
|
|
||||||
' aggiorno bottoni
|
' aggiorno bottoni
|
||||||
NotifyPropertyChanged(NameOf(DeleteRawPart_IsEnabled))
|
NotifyPropertyChanged(NameOf(DeleteRawPart_IsEnabled))
|
||||||
NotifyPropertyChanged(NameOf(DoneRawPart_IsEnabled))
|
NotifyPropertyChanged(NameOf(DoneRawPart_IsEnabled))
|
||||||
@@ -644,8 +586,32 @@ Public Class LeftPanelVM
|
|||||||
DbControllers.m_MachGroupController.UpdateOrder(Map.refSupervisorManagerVM.CurrProd.nProdId, SelMachGroup.Id, SelMachGroup.nProductionIndex)
|
DbControllers.m_MachGroupController.UpdateOrder(Map.refSupervisorManagerVM.CurrProd.nProdId, SelMachGroup.Id, SelMachGroup.nProductionIndex)
|
||||||
Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.Move(OldIndex, NewIndex - 1)
|
Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.Move(OldIndex, NewIndex - 1)
|
||||||
|
|
||||||
' riseleziono il gruppo
|
|
||||||
Map.refSupervisorMachGroupPanelVM.SelectedMachGroup = SelMachGroup
|
|
||||||
|
|
||||||
|
'' scrivo tutti pezzi completati
|
||||||
|
'For PartIndex = 0 To SelMachGroup.PartVMList.Count - 1
|
||||||
|
' Dim Part As PartVM = SelMachGroup.PartVMList(PartIndex)
|
||||||
|
' ' reset start, end e stato pezzo
|
||||||
|
' DbControllers.m_PartController.UpdateStart(Map.refSupervisorManagerVM.CurrProd.nProdId, SelMachGroup.Id, Part.nPartId, DateTime.MinValue)
|
||||||
|
' DbControllers.m_PartController.UpdateEnd(Map.refSupervisorManagerVM.CurrProd.nProdId, SelMachGroup.Id, Part.nPartId, DateTime.MinValue)
|
||||||
|
' DbControllers.m_PartController.UpdateStatus(Map.refSupervisorManagerVM.CurrProd.nProdId, SelMachGroup.Id, Part.nPartId, ItemState.ND)
|
||||||
|
' Part.dtStartTime = DateTime.MinValue
|
||||||
|
' Part.dtEndTime = DateTime.MinValue
|
||||||
|
' Part.nProduction_State = ItemState.ND
|
||||||
|
|
||||||
|
' Part.NotifyPropertyChanged(NameOf(Part.Production_Background))
|
||||||
|
'Next
|
||||||
|
'' reset start, end e stato MachGroup
|
||||||
|
'DbControllers.m_MachGroupController.UpdateStart(Map.refSupervisorManagerVM.CurrProd.nProdId, SelMachGroup.Id, Time)
|
||||||
|
'DbControllers.m_MachGroupController.UpdateEnd(Map.refSupervisorManagerVM.CurrProd.nProdId, SelMachGroup.Id, Time)
|
||||||
|
'DbControllers.m_MachGroupController.UpdateStatus(Map.refSupervisorManagerVM.CurrProd.nProdId, SelMachGroup.Id, ItemState.WIP)
|
||||||
|
'SelMachGroup.dtStartTime = DateTime.MinValue
|
||||||
|
'SelMachGroup.dtEndTime = DateTime.MinValue
|
||||||
|
'SelMachGroup.nProduction_State = ItemState.ND
|
||||||
|
'SelMachGroup.NotifyPropertyChanged(NameOf(SelMachGroup.Production_Background))
|
||||||
|
'SelMachGroup.NotifyPropertyChanged(NameOf(SelMachGroup.Produce_IsEnabled))
|
||||||
|
|
||||||
' aggiorno bottoni
|
' aggiorno bottoni
|
||||||
NotifyPropertyChanged(NameOf(DeleteRawPart_IsEnabled))
|
NotifyPropertyChanged(NameOf(DeleteRawPart_IsEnabled))
|
||||||
NotifyPropertyChanged(NameOf(DoneRawPart_IsEnabled))
|
NotifyPropertyChanged(NameOf(DoneRawPart_IsEnabled))
|
||||||
@@ -661,12 +627,6 @@ Public Class LeftPanelVM
|
|||||||
If IsNothing(MachGroup) OrElse IsNothing(Part) Then Return
|
If IsNothing(MachGroup) OrElse IsNothing(Part) Then Return
|
||||||
' se ora d'inizio non e' gia' fissata
|
' se ora d'inizio non e' gia' fissata
|
||||||
Dim Time As DateTime = DateTime.Now()
|
Dim Time As DateTime = DateTime.Now()
|
||||||
If Part.nProduction_State = ItemState.Scrapped Then
|
|
||||||
' fare domanda se modificare quantita' aggiunti se viene resettato un pezzo scraped??
|
|
||||||
'If MessageBox.Show("There are scraped parts in this bar. Would you like to add them to the added quantity?", "", MessageBoxButton.YesNo, MessageBoxImage.Information) = MessageBoxResult.Yes Then
|
|
||||||
' DbControllers.m_StatusMapController.UpdateAction("", Map.refSupervisorManagerVM.CurrProd.nProdId, Part.nPartId, StatusMapItemType.Part, StatusMapOpType.AddQtyForUnscraped, "")
|
|
||||||
'End If
|
|
||||||
End If
|
|
||||||
If Part.dtStartTime <> DateTime.MinValue Then
|
If Part.dtStartTime <> DateTime.MinValue Then
|
||||||
DbControllers.m_PartController.UpdateStart(Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, Part.nPartId, DateTime.MinValue)
|
DbControllers.m_PartController.UpdateStart(Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, Part.nPartId, DateTime.MinValue)
|
||||||
DbControllers.m_PartController.UpdateEnd(Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, Part.nPartId, DateTime.MinValue)
|
DbControllers.m_PartController.UpdateEnd(Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, Part.nPartId, DateTime.MinValue)
|
||||||
@@ -749,15 +709,10 @@ Public Class LeftPanelVM
|
|||||||
For Each Part In SelMachGroup.PartVMList
|
For Each Part In SelMachGroup.PartVMList
|
||||||
DbControllers.m_PartController.UpdateStatus(Map.refSupervisorManagerVM.CurrProd.nProdId, SelMachGroup.Id, Part.nPartId, ItemState.ND)
|
DbControllers.m_PartController.UpdateStatus(Map.refSupervisorManagerVM.CurrProd.nProdId, SelMachGroup.Id, Part.nPartId, ItemState.ND)
|
||||||
Next
|
Next
|
||||||
Dim nRemovedIndex As Integer = Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.IndexOf(SelMachGroup)
|
|
||||||
' se rimozione da Db ok, lo rimuovo da lista
|
' se rimozione da Db ok, lo rimuovo da lista
|
||||||
Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.Remove(SelMachGroup)
|
Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.Remove(SelMachGroup)
|
||||||
If Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.Count = 0 Then
|
If Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.Count = 0 Then
|
||||||
EgtResetCurrMachGroup()
|
|
||||||
ManageBTLParts.HideAll()
|
ManageBTLParts.HideAll()
|
||||||
Else
|
|
||||||
If nRemovedIndex >= Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.Count Then nRemovedIndex = Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.Count - 1
|
|
||||||
Map.refProjectVM.SupervisorMachGroupPanelVM.SelectedMachGroup = Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList(nRemovedIndex)
|
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
@@ -799,7 +754,6 @@ Public Class LeftPanelVM
|
|||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
SetDonePart(SelMachGroup, SelMachGroup.SelPart)
|
SetDonePart(SelMachGroup, SelMachGroup.SelPart)
|
||||||
Map.refProjectVM.SupervisorMachGroupPanelVM.SelectedMachGroup = SelMachGroup
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Sub SetDonePart(MachGroup As MyMachGroupVM, Part As PartVM)
|
Public Sub SetDonePart(MachGroup As MyMachGroupVM, Part As PartVM)
|
||||||
@@ -811,8 +765,6 @@ Public Class LeftPanelVM
|
|||||||
DbControllers.m_PartController.UpdateStatus(Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, Part.nPartId, ItemState.WIP)
|
DbControllers.m_PartController.UpdateStatus(Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, Part.nPartId, ItemState.WIP)
|
||||||
Part.dtStartTime = Time
|
Part.dtStartTime = Time
|
||||||
Part.nProduction_State = ItemState.WIP
|
Part.nProduction_State = ItemState.WIP
|
||||||
' scrivo evento inizio pezzo su DB
|
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreatePartStateLog(Time - TimeSpan.FromSeconds(1), Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, Part.nPartId, 1, DbControllers.SupervisorId))
|
|
||||||
' se e' il primo ad essere lavorato
|
' se e' il primo ad essere lavorato
|
||||||
If Not MachGroup.PartVMList.Any(Function(x) x IsNot Part AndAlso x.dtStartTime > DateTime.MinValue) Then
|
If Not MachGroup.PartVMList.Any(Function(x) x IsNot Part AndAlso x.dtStartTime > DateTime.MinValue) Then
|
||||||
' se non e' gia' in coda per essere prodotto
|
' se non e' gia' in coda per essere prodotto
|
||||||
@@ -823,14 +775,6 @@ Public Class LeftPanelVM
|
|||||||
' sposto MachGroup in lista come ultimo dei pronti da produrre
|
' sposto MachGroup in lista come ultimo dei pronti da produrre
|
||||||
Dim OldIndex As Integer = Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.IndexOf(MachGroup)
|
Dim OldIndex As Integer = Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.IndexOf(MachGroup)
|
||||||
MachGroup.SetProductionIndex(NewIndex + 1)
|
MachGroup.SetProductionIndex(NewIndex + 1)
|
||||||
' aggiorno indice di tutte le barre in coda
|
|
||||||
For Each CurrMachGroup As MyMachGroupVM In Map.refSupervisorMachGroupPanelVM.MachGroupVMList
|
|
||||||
If Not (CurrMachGroup Is MachGroup) AndAlso CurrMachGroup.nProductionIndex >= MachGroup.nProductionIndex AndAlso CurrMachGroup.nProductionIndex < 5000 Then
|
|
||||||
CurrMachGroup.SetProductionIndex(CurrMachGroup.nProductionIndex + 1)
|
|
||||||
DbControllers.m_MachGroupController.UpdateOrder(Map.refSupervisorManagerVM.CurrProd.nProdId, CurrMachGroup.Id, CurrMachGroup.nProductionIndex)
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
' sposto machgroup impostato a Done
|
|
||||||
DbControllers.m_MachGroupController.UpdateOrder(Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, MachGroup.nProductionIndex)
|
DbControllers.m_MachGroupController.UpdateOrder(Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, MachGroup.nProductionIndex)
|
||||||
Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.Move(OldIndex, NewIndex)
|
Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.Move(OldIndex, NewIndex)
|
||||||
End If
|
End If
|
||||||
@@ -840,8 +784,6 @@ Public Class LeftPanelVM
|
|||||||
MachGroup.dtStartTime = Time
|
MachGroup.dtStartTime = Time
|
||||||
MachGroup.nProduction_State = ItemState.WIP
|
MachGroup.nProduction_State = ItemState.WIP
|
||||||
MachGroup.NotifyPropertyChanged(NameOf(MachGroup.Production_Background))
|
MachGroup.NotifyPropertyChanged(NameOf(MachGroup.Production_Background))
|
||||||
' scrivo evento inizio MachGroup su DB
|
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreateMachGroupStateLog(Time - TimeSpan.FromSeconds(1), Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, 1, DbControllers.SupervisorId))
|
|
||||||
' blocco produzione di tutti gli altri perche' iniziato questo
|
' blocco produzione di tutti gli altri perche' iniziato questo
|
||||||
MyMachGroupVM.UpdateProduceIsEnabledForAll()
|
MyMachGroupVM.UpdateProduceIsEnabledForAll()
|
||||||
End If
|
End If
|
||||||
@@ -851,8 +793,6 @@ Public Class LeftPanelVM
|
|||||||
DbControllers.m_PartController.UpdateStatus(Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, Part.nPartId, ItemState.Produced)
|
DbControllers.m_PartController.UpdateStatus(Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, Part.nPartId, ItemState.Produced)
|
||||||
Part.dtEndTime = Time
|
Part.dtEndTime = Time
|
||||||
Part.nProduction_State = ItemState.Produced
|
Part.nProduction_State = ItemState.Produced
|
||||||
' scrivo evento fine pezzo su DB
|
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreatePartStateLog(Time, Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, Part.nPartId, 2, DbControllers.SupervisorId))
|
|
||||||
If MachGroup.PartVMList.All(Function(x) x.nProduction_State >= ItemState.Produced) Then
|
If MachGroup.PartVMList.All(Function(x) x.nProduction_State >= ItemState.Produced) Then
|
||||||
'aggiorno anche fine MachGroup
|
'aggiorno anche fine MachGroup
|
||||||
DbControllers.m_MachGroupController.UpdateEnd(Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, Time)
|
DbControllers.m_MachGroupController.UpdateEnd(Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, Time)
|
||||||
@@ -868,8 +808,6 @@ Public Class LeftPanelVM
|
|||||||
NotifyPropertyChanged(NameOf(DoneRawPart_IsEnabled))
|
NotifyPropertyChanged(NameOf(DoneRawPart_IsEnabled))
|
||||||
NotifyPropertyChanged(NameOf(MoveRawPart_IsEnabled))
|
NotifyPropertyChanged(NameOf(MoveRawPart_IsEnabled))
|
||||||
NotifyPropertyChanged(NameOf(ResetRawPart_IsEnabled))
|
NotifyPropertyChanged(NameOf(ResetRawPart_IsEnabled))
|
||||||
' scrivo evento fine MachGroup su DB
|
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreateMachGroupStateLog(Time, Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, 2, DbControllers.SupervisorId))
|
|
||||||
' se avanzamento singolo, sblocco produzione di tutti gli altri
|
' se avanzamento singolo, sblocco produzione di tutti gli altri
|
||||||
If CurrentMachine.Flow = FlowTypes.ONEBYONE Then
|
If CurrentMachine.Flow = FlowTypes.ONEBYONE Then
|
||||||
MyMachGroupVM.UpdateProduceIsEnabledForAll()
|
MyMachGroupVM.UpdateProduceIsEnabledForAll()
|
||||||
@@ -1004,48 +942,14 @@ Public Class LeftPanelVM
|
|||||||
|
|
||||||
Private Sub CreateDataFile(sFilePath As String, SelPart As PartVM, SelMachGroup As MyMachGroupVM)
|
Private Sub CreateDataFile(sFilePath As String, SelPart As PartVM, SelMachGroup As MyMachGroupVM)
|
||||||
Dim sFileText As New List(Of String)
|
Dim sFileText As New List(Of String)
|
||||||
Dim nBtlInfoId As Integer = EgtGetFirstNameInGroup(GDB_ID.ROOT, BTLINFO)
|
|
||||||
Dim sInfo As String = ""
|
|
||||||
Dim bOk As Boolean = False
|
|
||||||
' inserisco il capitolo del [Main]
|
' inserisco il capitolo del [Main]
|
||||||
sFileText.Add("[Main]")
|
sFileText.Add("[Main]")
|
||||||
sFileText.Add("Var1=$PRODID$," & Map.refSupervisorManagerVM.CurrProd.sProdId)
|
sFileText.Add("Var1=$PRODID$," & Map.refSupervisorManagerVM.CurrProd.sProdId)
|
||||||
sFileText.Add("Var2=$MACHGROUPID$," & SelMachGroup.nName)
|
sFileText.Add("Var2=$MACHGROUPID$," & SelMachGroup.Id)
|
||||||
sFileText.Add("Var3=$PARTID$," & SelPart.nPDN)
|
sFileText.Add("Var3=$PARTID$," & SelPart.nPDN)
|
||||||
sFileText.Add("Var4=$MATERIAL$," & SelPart.sMATERIAL)
|
sFileText.Add("Var4=$MATERIAL$," & SelPart.sMATERIAL)
|
||||||
bOk = EgtGetInfo(nBtlInfoId, BTL_GEN_PROJNUM, sInfo)
|
'sFileText.Add("Var5=$Thickness$," & SelPart.Thickness)
|
||||||
sFileText.Add("Var5=$PROJECTNUMBER$," & If(bOk, sInfo, ""))
|
'sFileText.Add("Var6=$Storage$," & SelPart.WarehousePosition)
|
||||||
bOk = EgtGetInfo(nBtlInfoId, BTL_GEN_PROJNAME, sInfo)
|
|
||||||
sFileText.Add("Var6=$PROJECTNAME$," & If(bOk, sInfo, ""))
|
|
||||||
bOk = EgtGetInfo(nBtlInfoId, BTL_GEN_CUSTOMER, sInfo)
|
|
||||||
sFileText.Add("Var7=$CUSTOMER$," & If(bOk, sInfo, ""))
|
|
||||||
bOk = EgtGetInfo(SelPart.nPartId, BTL_PRT_ASSEMBLYNUM, sInfo)
|
|
||||||
sFileText.Add("Var8=$ASSEMBLYNUMBER$," & If(bOk, sInfo, ""))
|
|
||||||
bOk = EgtGetInfo(SelPart.nPartId, BTL_PRT_ORDERNUM, sInfo)
|
|
||||||
sFileText.Add("Var9=$ORDERNUMBER$," & If(bOk, sInfo, ""))
|
|
||||||
bOk = EgtGetInfo(SelPart.nPartId, BTL_PRT_DESIGNATION, sInfo)
|
|
||||||
sFileText.Add("Var10=$DESIGNATION$," & If(bOk, sInfo, ""))
|
|
||||||
bOk = EgtGetInfo(SelPart.nPartId, BTL_PRT_ANNOTATION, sInfo)
|
|
||||||
sFileText.Add("Var11=$ANNOTATION$," & If(bOk, sInfo, ""))
|
|
||||||
sFileText.Add("Var12=$STOREY$," & SelPart.sSTOREY)
|
|
||||||
sFileText.Add("Var13=$GROUP$," & SelPart.sGROUP)
|
|
||||||
bOk = EgtGetInfo(SelPart.nPartId, BTL_PRT_PACKAGE, sInfo)
|
|
||||||
sFileText.Add("Var14=$PACKAGE$," & If(bOk, sInfo, ""))
|
|
||||||
sFileText.Add("Var15=$WHL$," & SelPart.sW & "x" & SelPart.sH & "x" & SelPart.sL)
|
|
||||||
sFileText.Add("Var16=$PRODUCTIONDATE$," & Date.Now().ToString("yyyy-MM-dd"))
|
|
||||||
' calcolo numero settimana corrente secondo ISO 8601
|
|
||||||
Dim time As Date = Date.Now()
|
|
||||||
Dim Day As DayOfWeek = CultureInfo.InvariantCulture.Calendar.GetDayOfWeek(time)
|
|
||||||
If Day >= DayOfWeek.Monday AndAlso Day <= DayOfWeek.Wednesday Then time = time.AddDays(3)
|
|
||||||
Dim nWeekOfYear As Integer = CultureInfo.InvariantCulture.Calendar.GetWeekOfYear(time, CalendarWeekRule.FirstFourDayWeek, DayOfWeek.Monday)
|
|
||||||
sFileText.Add("Var17=$PRODUCTIONWEEK$," & nWeekOfYear)
|
|
||||||
bOk = EgtGetInfo(SelPart.nPartId, BTL_PRT_DESCRIPTION, sInfo)
|
|
||||||
sFileText.Add("Var18=$DESCRIPTION$," & If(bOk, sInfo, ""))
|
|
||||||
bOk = EgtGetInfo(SelPart.nPartId, BTL_PRT_QUALITYGRADE, sInfo)
|
|
||||||
sFileText.Add("Var19=$QUALITYGRADE$," & If(bOk, sInfo, ""))
|
|
||||||
bOk = EgtGetInfo(nBtlInfoId, BTL_GEN_BTLPATH, sInfo)
|
|
||||||
sFileText.Add("Var20=$BTLPATH$," & If(bOk, Path.GetFileNameWithoutExtension(sInfo), ""))
|
|
||||||
|
|
||||||
Try
|
Try
|
||||||
File.WriteAllLines(sFilePath, sFileText)
|
File.WriteAllLines(sFilePath, sFileText)
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -1080,21 +984,3 @@ Public Class OPState
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
|
|
||||||
Public Class FeatureDataGridHeightConverter
|
|
||||||
Implements IValueConverter
|
|
||||||
|
|
||||||
Public Function Convert(value As Object, targetType As Type, parameter As Object, culture As System.Globalization.CultureInfo) As Object Implements IValueConverter.Convert
|
|
||||||
Dim Height As Double = CDbl(value)
|
|
||||||
If Not IsNothing(Height) Then
|
|
||||||
Return Height / 2
|
|
||||||
Else
|
|
||||||
Return 200
|
|
||||||
End If
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Public Function ConvertBack(value As Object, targetType As Type, parameter As Object, culture As System.Globalization.CultureInfo) As Object Implements IValueConverter.ConvertBack
|
|
||||||
Throw New NotImplementedException
|
|
||||||
End Function
|
|
||||||
|
|
||||||
End Class
|
|
||||||
|
|||||||
@@ -24,21 +24,17 @@
|
|||||||
<DataGrid.Resources>
|
<DataGrid.Resources>
|
||||||
<!-- Command -->
|
<!-- Command -->
|
||||||
<DataGridTextColumn x:Key="colCOMMAND" Binding="{Binding sCommand}">
|
<DataGridTextColumn x:Key="colCOMMAND" Binding="{Binding sCommand}">
|
||||||
<DataGridTextColumn.HeaderTemplate>
|
<DataGridTextColumn.Header>
|
||||||
<DataTemplate>
|
<TextBlock Text="{Binding Path=DataContext.Command_Msg,
|
||||||
<TextBlock Text="{Binding Path=DataContext.Command_Msg,
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:MDIPageV}}}"/>
|
||||||
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:MDIPageV}}}"/>
|
</DataGridTextColumn.Header>
|
||||||
</DataTemplate>
|
|
||||||
</DataGridTextColumn.HeaderTemplate>
|
|
||||||
</DataGridTextColumn>
|
</DataGridTextColumn>
|
||||||
<!-- Descrizione -->
|
<!-- Descrizione -->
|
||||||
<DataGridTextColumn x:Key="colDESCRIPTION" Binding="{Binding sDescription}">
|
<DataGridTextColumn x:Key="colDESCRIPTION" Binding="{Binding sDescription}">
|
||||||
<DataGridTextColumn.HeaderTemplate>
|
<DataGridTextColumn.Header>
|
||||||
<DataTemplate>
|
|
||||||
<TextBlock Text="{Binding Path=DataContext.Description_Msg,
|
<TextBlock Text="{Binding Path=DataContext.Description_Msg,
|
||||||
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:MDIPageV}}}"/>
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:MDIPageV}}}"/>
|
||||||
</DataTemplate>
|
</DataGridTextColumn.Header>
|
||||||
</DataGridTextColumn.HeaderTemplate>
|
|
||||||
</DataGridTextColumn>
|
</DataGridTextColumn>
|
||||||
</DataGrid.Resources>
|
</DataGrid.Resources>
|
||||||
|
|
||||||
@@ -52,7 +48,6 @@
|
|||||||
<TextBox Text="{Binding sMDICommand_Text, UpdateSourceTrigger=PropertyChanged}"
|
<TextBox Text="{Binding sMDICommand_Text, UpdateSourceTrigger=PropertyChanged}"
|
||||||
Background="{Binding MDIText_Background}"
|
Background="{Binding MDIText_Background}"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
CharacterCasing="Upper"
|
|
||||||
Margin="5,0,2.5,0"/>
|
Margin="5,0,2.5,0"/>
|
||||||
<Button Grid.Column="1"
|
<Button Grid.Column="1"
|
||||||
Command="{Binding SendMDI_Command}"
|
Command="{Binding SendMDI_Command}"
|
||||||
|
|||||||
@@ -78,13 +78,13 @@ Public Class MDIPageVM
|
|||||||
|
|
||||||
Public ReadOnly Property Command_Msg As String
|
Public ReadOnly Property Command_Msg As String
|
||||||
Get
|
Get
|
||||||
Return EgtMsg(62510)
|
Return "Command"
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Public ReadOnly Property Description_Msg As String
|
Public ReadOnly Property Description_Msg As String
|
||||||
Get
|
Get
|
||||||
Return EgtMsg(62511)
|
Return "Description"
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
@@ -163,7 +163,7 @@ Public Class MDIPageVM
|
|||||||
''' </summary>
|
''' </summary>
|
||||||
Friend Sub SendMDI()
|
Friend Sub SendMDI()
|
||||||
If Not String.IsNullOrWhiteSpace(m_sMDICommand_Text) Then
|
If Not String.IsNullOrWhiteSpace(m_sMDICommand_Text) Then
|
||||||
MachManaging.AddToCommandList(ThreadCommand.CreateCommand(CommandTypes.MDI, m_sMDICommand_Text))
|
MachManaging.CommandList.Add(ThreadCommand.CreateCommand(CommandTypes.MDI, m_sMDICommand_Text))
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|||||||
@@ -11,6 +11,9 @@
|
|||||||
Background="{Binding Message_Foreground}"/>
|
Background="{Binding Message_Foreground}"/>
|
||||||
<TextBlock Text="{Binding sErrSystem}"
|
<TextBlock Text="{Binding sErrSystem}"
|
||||||
Background="{Binding ErrSystem_Foreground}"/>
|
Background="{Binding ErrSystem_Foreground}"/>
|
||||||
|
<Button Content="CANCELLA ALLARMI"
|
||||||
|
Command="{Binding DeleteAlarms_Command}"
|
||||||
|
Visibility="Collapsed"/>
|
||||||
<WrapPanel Orientation="Horizontal" Width="{Binding ActualWidth, ElementName=TOPTRAY}">
|
<WrapPanel Orientation="Horizontal" Width="{Binding ActualWidth, ElementName=TOPTRAY}">
|
||||||
<Button Content="CONNECT"
|
<Button Content="CONNECT"
|
||||||
Command="{Binding Connect_Command}"
|
Command="{Binding Connect_Command}"
|
||||||
@@ -18,28 +21,23 @@
|
|||||||
Style="{StaticResource ToolBar_TextButton}"/>
|
Style="{StaticResource ToolBar_TextButton}"/>
|
||||||
<Button Content="START"
|
<Button Content="START"
|
||||||
Command="{Binding Start_Command}"
|
Command="{Binding Start_Command}"
|
||||||
Style="{StaticResource ToolBar_TextButton}"
|
Style="{StaticResource ToolBar_TextButton}"/>
|
||||||
IsEnabled="{Binding CommBtn_IsEnabled}"/>
|
|
||||||
<Button Content="STOP"
|
<Button Content="STOP"
|
||||||
Command="{Binding Stop_Command}"
|
Command="{Binding Stop_Command}"
|
||||||
Style="{StaticResource ToolBar_TextButton}"
|
Style="{StaticResource ToolBar_TextButton}"/>
|
||||||
IsEnabled="{Binding CommBtn_IsEnabled}"/>
|
|
||||||
<Button Content="RESET"
|
<Button Content="RESET"
|
||||||
Command="{Binding Reset_Command}"
|
Command="{Binding Reset_Command}"
|
||||||
Style="{StaticResource ToolBar_TextButton}"
|
Style="{StaticResource ToolBar_TextButton}"/>
|
||||||
IsEnabled="{Binding CommBtn_IsEnabled}"/>
|
<Button Content="STEP"
|
||||||
<!--<Button Content="STEP"
|
|
||||||
Command="{Binding Step_Command}"
|
Command="{Binding Step_Command}"
|
||||||
Style="{StaticResource ToolBar_TextButton}"/>-->
|
Style="{StaticResource ToolBar_TextButton}"/>
|
||||||
<Button Content="SET POINT"
|
<Button Content="SET POINT"
|
||||||
Command="{Binding SetPoint_Command}"
|
Command="{Binding SetPoint_Command}"
|
||||||
Style="{StaticResource ToolBar_TextButton}"
|
Style="{StaticResource ToolBar_TextButton}"/>
|
||||||
IsEnabled="{Binding CommBtn_IsEnabled}"/>
|
|
||||||
<Button Content="DELETE ALARMS"
|
<Button Content="DELETE ALARMS"
|
||||||
Command="{Binding DeleteAlarms_Command}"
|
Command="{Binding DeleteAlarms_Command}"
|
||||||
Visibility="{Binding DeleteAlarm_Visibility}"
|
Visibility="{Binding DeleteAlarm_Visibility}"
|
||||||
Style="{StaticResource ToolBar_TextButton}"
|
Style="{StaticResource ToolBar_TextButton}"/>
|
||||||
IsEnabled="{Binding CommBtn_IsEnabled}"/>
|
|
||||||
</WrapPanel>
|
</WrapPanel>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</UserControl>
|
</UserControl>
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ Imports System.Windows.Threading
|
|||||||
Imports EgtBEAMWALL.Core.ConstMachComm
|
Imports EgtBEAMWALL.Core.ConstMachComm
|
||||||
Imports EgtBEAMWALL.Core
|
Imports EgtBEAMWALL.Core
|
||||||
Imports EgtWPFLib5
|
Imports EgtWPFLib5
|
||||||
Imports EgtUILib
|
|
||||||
|
|
||||||
Public Class MachCommandMessagePanelVM
|
Public Class MachCommandMessagePanelVM
|
||||||
Inherits VMBase
|
Inherits VMBase
|
||||||
@@ -153,7 +152,7 @@ Public Class MachCommandMessagePanelVM
|
|||||||
Select Case CurrentMachine.NCType
|
Select Case CurrentMachine.NCType
|
||||||
Case NCTypes.TPA
|
Case NCTypes.TPA
|
||||||
Return If(Not IsNothing(ShownErr), ShownErr.sCode & ": " & ShownErr.sMessage, "")
|
Return If(Not IsNothing(ShownErr), ShownErr.sCode & ": " & ShownErr.sMessage, "")
|
||||||
Case NCTypes.NUM_FLEXIUM, NCTypes.NUM_AXIUM_APSERVER, NCTypes.NUM_AXIUM_PCTOOLKIT
|
Case NCTypes.NUM_FLEXIUM
|
||||||
Return If(Not IsNothing(ShownErr), ShownErr.sMessage, "")
|
Return If(Not IsNothing(ShownErr), ShownErr.sMessage, "")
|
||||||
Case Else
|
Case Else
|
||||||
Return ""
|
Return ""
|
||||||
@@ -175,7 +174,7 @@ Public Class MachCommandMessagePanelVM
|
|||||||
Select Case CurrentMachine.NCType
|
Select Case CurrentMachine.NCType
|
||||||
Case NCTypes.TPA
|
Case NCTypes.TPA
|
||||||
Return If(Not IsNothing(ShownErr), ShownErr.sCode & ": " & ShownErr.sMessage, "")
|
Return If(Not IsNothing(ShownErr), ShownErr.sCode & ": " & ShownErr.sMessage, "")
|
||||||
Case NCTypes.NUM_FLEXIUM, NCTypes.NUM_AXIUM_APSERVER, NCTypes.NUM_AXIUM_PCTOOLKIT
|
Case NCTypes.NUM_FLEXIUM
|
||||||
Return If(Not IsNothing(ShownErr), ShownErr.sMessage, "")
|
Return If(Not IsNothing(ShownErr), ShownErr.sMessage, "")
|
||||||
Case Else
|
Case Else
|
||||||
Return ""
|
Return ""
|
||||||
@@ -197,7 +196,7 @@ Public Class MachCommandMessagePanelVM
|
|||||||
Select Case CurrentMachine.NCType
|
Select Case CurrentMachine.NCType
|
||||||
Case NCTypes.TPA
|
Case NCTypes.TPA
|
||||||
Return If(Not IsNothing(ShownErr), ShownErr.sCode & ": " & ShownErr.sMessage, "")
|
Return If(Not IsNothing(ShownErr), ShownErr.sCode & ": " & ShownErr.sMessage, "")
|
||||||
Case NCTypes.NUM_FLEXIUM, NCTypes.NUM_AXIUM_APSERVER, NCTypes.NUM_AXIUM_PCTOOLKIT
|
Case NCTypes.NUM_FLEXIUM
|
||||||
Return If(Not IsNothing(ShownErr), ShownErr.sMessage, "")
|
Return If(Not IsNothing(ShownErr), ShownErr.sMessage, "")
|
||||||
Case Else
|
Case Else
|
||||||
Return ""
|
Return ""
|
||||||
@@ -219,7 +218,7 @@ Public Class MachCommandMessagePanelVM
|
|||||||
Select Case CurrentMachine.NCType
|
Select Case CurrentMachine.NCType
|
||||||
Case NCTypes.TPA
|
Case NCTypes.TPA
|
||||||
Return If(Not IsNothing(ShownErr), ShownErr.sCode & ": " & ShownErr.sMessage, "")
|
Return If(Not IsNothing(ShownErr), ShownErr.sCode & ": " & ShownErr.sMessage, "")
|
||||||
Case NCTypes.NUM_FLEXIUM, NCTypes.NUM_AXIUM_APSERVER, NCTypes.NUM_AXIUM_PCTOOLKIT
|
Case NCTypes.NUM_FLEXIUM
|
||||||
Return If(Not IsNothing(ShownErr), ShownErr.sMessage, "")
|
Return If(Not IsNothing(ShownErr), ShownErr.sMessage, "")
|
||||||
Case Else
|
Case Else
|
||||||
Return ""
|
Return ""
|
||||||
@@ -238,17 +237,6 @@ Public Class MachCommandMessagePanelVM
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Private m_CommBtn_IsEnabled As Boolean = True
|
|
||||||
Public ReadOnly Property CommBtn_IsEnabled As Boolean
|
|
||||||
Get
|
|
||||||
Return m_CommBtn_IsEnabled
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
Friend Sub SetCommBtnIsEnabled(value As Boolean)
|
|
||||||
m_CommBtn_IsEnabled = value
|
|
||||||
NotifyPropertyChanged(NameOf(CommBtn_IsEnabled))
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
' definizione comandi
|
' definizione comandi
|
||||||
Private m_cmdConnect As ICommand
|
Private m_cmdConnect As ICommand
|
||||||
Private m_cmdDisconnect As ICommand
|
Private m_cmdDisconnect As ICommand
|
||||||
@@ -427,11 +415,11 @@ Public Class MachCommandMessagePanelVM
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
Public Sub Disconnect()
|
Public Sub Disconnect()
|
||||||
MachManaging.AddToCommandList(ThreadCommand.CreateCommand(CommandTypes.DISCONNECT))
|
MachManaging.CommandList.Add(ThreadCommand.CreateCommand(CommandTypes.DISCONNECT))
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Sub SetOPState(OpState As Integer)
|
Public Sub SetOPState(OpState As Integer)
|
||||||
MachManaging.AddToCommandList(ThreadCommand.CreateCommand(CommandTypes.SETOPMODE))
|
MachManaging.CommandList.Add(ThreadCommand.CreateCommand(CommandTypes.SETOPMODE))
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public ReadOnly Property Start_Command As ICommand
|
Public ReadOnly Property Start_Command As ICommand
|
||||||
@@ -442,7 +430,7 @@ Public Class MachCommandMessagePanelVM
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
Public Sub Start(ByVal param As Object)
|
Public Sub Start(ByVal param As Object)
|
||||||
MachManaging.AddToCommandList(ThreadCommand.CreateCommand(CommandTypes.START))
|
MachManaging.CommandList.Add(ThreadCommand.CreateCommand(CommandTypes.START))
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public ReadOnly Property Stop_Command As ICommand
|
Public ReadOnly Property Stop_Command As ICommand
|
||||||
@@ -453,7 +441,7 @@ Public Class MachCommandMessagePanelVM
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
Public Sub [Stop](ByVal param As Object)
|
Public Sub [Stop](ByVal param As Object)
|
||||||
MachManaging.AddToCommandList(ThreadCommand.CreateCommand(CommandTypes.STOP_))
|
MachManaging.CommandList.Add(ThreadCommand.CreateCommand(CommandTypes.STOP_))
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public ReadOnly Property Reset_Command As ICommand
|
Public ReadOnly Property Reset_Command As ICommand
|
||||||
@@ -464,7 +452,7 @@ Public Class MachCommandMessagePanelVM
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
Public Sub Reset(ByVal param As Object)
|
Public Sub Reset(ByVal param As Object)
|
||||||
MachManaging.AddToCommandList(ThreadCommand.CreateCommand(CommandTypes.RESET))
|
MachManaging.CommandList.Add(ThreadCommand.CreateCommand(CommandTypes.RESET))
|
||||||
' annullo stato di pronto ad essere lavorato di tutti i programmi
|
' annullo stato di pronto ad essere lavorato di tutti i programmi
|
||||||
If Not IsNothing(Map.refProjectVM.SupervisorMachGroupPanelVM) Then Map.refProjectVM.SupervisorMachGroupPanelVM.ResetAllMachGroups()
|
If Not IsNothing(Map.refProjectVM.SupervisorMachGroupPanelVM) Then Map.refProjectVM.SupervisorMachGroupPanelVM.ResetAllMachGroups()
|
||||||
End Sub
|
End Sub
|
||||||
@@ -477,7 +465,7 @@ Public Class MachCommandMessagePanelVM
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
Public Sub [Step](ByVal param As Object)
|
Public Sub [Step](ByVal param As Object)
|
||||||
MachManaging.AddToCommandList(ThreadCommand.CreateCommand(CommandTypes.STEP_))
|
MachManaging.CommandList.Add(ThreadCommand.CreateCommand(CommandTypes.STEP_))
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public ReadOnly Property SetPoint_Command As ICommand
|
Public ReadOnly Property SetPoint_Command As ICommand
|
||||||
@@ -488,7 +476,7 @@ Public Class MachCommandMessagePanelVM
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
Public Sub SetPoint(ByVal param As Object)
|
Public Sub SetPoint(ByVal param As Object)
|
||||||
MachManaging.AddToCommandList(ThreadCommand.CreateCommand(CommandTypes.SETPOINT))
|
MachManaging.CommandList.Add(ThreadCommand.CreateCommand(CommandTypes.SETPOINT))
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
@@ -500,7 +488,7 @@ Public Class MachCommandMessagePanelVM
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
Public Sub DeleteAlarms(ByVal param As Object)
|
Public Sub DeleteAlarms(ByVal param As Object)
|
||||||
MachManaging.AddToCommandList(ThreadCommand.CreateCommand(CommandTypes.DELETEALARMS))
|
MachManaging.CommandList.Add(ThreadCommand.CreateCommand(CommandTypes.DELETEALARMS))
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Function GetVarPathByName(Name As String) As String
|
Public Function GetVarPathByName(Name As String) As String
|
||||||
@@ -533,26 +521,16 @@ Public Class MachCommandMessagePanelVM
|
|||||||
_Connected = True
|
_Connected = True
|
||||||
NotifyPropertyChanged(NameOf(Connect_Background))
|
NotifyPropertyChanged(NameOf(Connect_Background))
|
||||||
If ResultType = ResultTypes.EXECUTED Then
|
If ResultType = ResultTypes.EXECUTED Then
|
||||||
' avvio tick di comunicazione con la macchina
|
|
||||||
MachineCommThread.StartTick()
|
|
||||||
' inizializzo variabili
|
|
||||||
Init()
|
Init()
|
||||||
If CurrentMachine.NCType = NCTypes.NUM_AXIUM_APSERVER Then
|
|
||||||
Map.refMachManaging.Num_Axium_APServer.GetGeneralFunctions()
|
|
||||||
End If
|
|
||||||
End If
|
End If
|
||||||
' scrivo evento programma attivato
|
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreateMachCommandLog(LogEvent.MachineCommands.CONNECTION, "", 0, DbControllers.SupervisorId))
|
|
||||||
End If
|
End If
|
||||||
Case CommandTypes.DISCONNECT
|
Case CommandTypes.DISCONNECT
|
||||||
If CommandState = CommandStates.OK Then
|
If CommandState = CommandStates.OK Then
|
||||||
_Connected = False
|
_Connected = False
|
||||||
NotifyPropertyChanged(NameOf(Connect_Background))
|
NotifyPropertyChanged(NameOf(Connect_Background))
|
||||||
' scrivo evento programma attivato
|
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreateMachCommandLog(LogEvent.MachineCommands.DISCONNECTION, "", 0, DbControllers.SupervisorId))
|
|
||||||
End If
|
End If
|
||||||
End Select
|
End Select
|
||||||
'DbControllers.m_LogMachineController.Create(MachLog.CreateResultLog(CommandType, CommandState, ResultType, Params))
|
DbControllers.m_LogMachineController.Create(MachLog.CreateResultLog(CommandType, CommandState, ResultType, Params))
|
||||||
End Sub
|
End Sub
|
||||||
Friend Sub CloseCallbackDlg(ByRef bCancel As Boolean)
|
Friend Sub CloseCallbackDlg(ByRef bCancel As Boolean)
|
||||||
' serve?
|
' serve?
|
||||||
@@ -571,9 +549,9 @@ Public Class MachCommandMessagePanelVM
|
|||||||
Select Case AlarmType
|
Select Case AlarmType
|
||||||
Case CInt(ISOCNC.Remoting.AlarmType.Cycle)
|
Case CInt(ISOCNC.Remoting.AlarmType.Cycle)
|
||||||
If AlarmOperation = CInt(ISOCNC.Remoting.AlarmOperation.Addition) Then
|
If AlarmOperation = CInt(ISOCNC.Remoting.AlarmOperation.Addition) Then
|
||||||
m_Iso.Add(Alarm.CreateAlarm(AlarmCode, AlarmMessage))
|
m_ErrCycle.Add(Alarm.CreateAlarm(AlarmCode, AlarmMessage))
|
||||||
Else
|
Else
|
||||||
m_Iso.RemoveAll(Function(x) x.sCode = AlarmCode)
|
m_ErrCycle.RemoveAll(Function(x) x.sCode = AlarmCode)
|
||||||
'Dim ToRemove As Alarm = m_ErrCycle.FirstOrDefault(Function(x) x.sCode = AlarmCode)
|
'Dim ToRemove As Alarm = m_ErrCycle.FirstOrDefault(Function(x) x.sCode = AlarmCode)
|
||||||
'If Not IsNothing(ToRemove) Then
|
'If Not IsNothing(ToRemove) Then
|
||||||
' m_ErrCycle.Remove(ToRemove)
|
' m_ErrCycle.Remove(ToRemove)
|
||||||
@@ -581,9 +559,9 @@ Public Class MachCommandMessagePanelVM
|
|||||||
End If
|
End If
|
||||||
Case CInt(ISOCNC.Remoting.AlarmType.ISO)
|
Case CInt(ISOCNC.Remoting.AlarmType.ISO)
|
||||||
If AlarmOperation = CInt(ISOCNC.Remoting.AlarmOperation.Addition) Then
|
If AlarmOperation = CInt(ISOCNC.Remoting.AlarmOperation.Addition) Then
|
||||||
m_ErrSystem.Add(Alarm.CreateAlarm(AlarmCode, AlarmMessage))
|
m_Iso.Add(Alarm.CreateAlarm(AlarmCode, AlarmMessage))
|
||||||
Else
|
Else
|
||||||
m_ErrSystem.RemoveAll(Function(x) x.sCode = AlarmCode)
|
m_Iso.RemoveAll(Function(x) x.sCode = AlarmCode)
|
||||||
'Dim ToRemove As Alarm = m_Iso.FirstOrDefault(Function(x) x.sCode = AlarmCode)
|
'Dim ToRemove As Alarm = m_Iso.FirstOrDefault(Function(x) x.sCode = AlarmCode)
|
||||||
'If Not IsNothing(ToRemove) Then
|
'If Not IsNothing(ToRemove) Then
|
||||||
' m_Iso.Remove(ToRemove)
|
' m_Iso.Remove(ToRemove)
|
||||||
@@ -602,9 +580,9 @@ Public Class MachCommandMessagePanelVM
|
|||||||
Case CInt(ISOCNC.Remoting.AlarmType.None)
|
Case CInt(ISOCNC.Remoting.AlarmType.None)
|
||||||
Case CInt(ISOCNC.Remoting.AlarmType.System)
|
Case CInt(ISOCNC.Remoting.AlarmType.System)
|
||||||
If AlarmOperation = CInt(ISOCNC.Remoting.AlarmOperation.Addition) Then
|
If AlarmOperation = CInt(ISOCNC.Remoting.AlarmOperation.Addition) Then
|
||||||
m_ErrCycle.Add(Alarm.CreateAlarm(AlarmCode, AlarmMessage))
|
m_ErrSystem.Add(Alarm.CreateAlarm(AlarmCode, AlarmMessage))
|
||||||
Else
|
Else
|
||||||
m_ErrCycle.RemoveAll(Function(x) x.sCode = AlarmCode)
|
m_ErrSystem.RemoveAll(Function(x) x.sCode = AlarmCode)
|
||||||
'Dim ToRemove As Alarm = m_ErrSystem.FirstOrDefault(Function(x) x.sCode = AlarmCode)
|
'Dim ToRemove As Alarm = m_ErrSystem.FirstOrDefault(Function(x) x.sCode = AlarmCode)
|
||||||
'If Not IsNothing(ToRemove) Then
|
'If Not IsNothing(ToRemove) Then
|
||||||
' m_ErrSystem.Remove(ToRemove)
|
' m_ErrSystem.Remove(ToRemove)
|
||||||
@@ -619,8 +597,7 @@ Public Class MachCommandMessagePanelVM
|
|||||||
' fermo timer degli allarmi
|
' fermo timer degli allarmi
|
||||||
m_AlarmTimer.Stop()
|
m_AlarmTimer.Stop()
|
||||||
End If
|
End If
|
||||||
'DbControllers.m_LogMachineController.Create(MachLog.CreateAlarmLog(AlarmOperation, AlarmType, AlarmMessage, AlarmCode, AlarmDateTime))
|
DbControllers.m_LogMachineController.Create(MachLog.CreateAlarmLog(AlarmOperation, AlarmType, AlarmMessage, AlarmCode, AlarmDateTime))
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreateAlarmLog(DateTime.Now(), AlarmOperation & LogEvent.cSeparator & AlarmType & LogEvent.cSeparator & AlarmMessage & LogEvent.cSeparator & AlarmCode & LogEvent.cSeparator & AlarmDateTime, DbControllers.m_SupervisorId))
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Friend Sub NUMAlarmCallbackDlg(ByVal CncNumber As Integer, ByVal AlarmOperation As Integer, ByVal ErrorTyp As String, ByVal ErrorIndex As String, ByVal ErrorNumber As String, ByVal ErrorLine As String, ByVal ErrorMessage As String, ByVal ErrorAdditional As String)
|
Friend Sub NUMAlarmCallbackDlg(ByVal CncNumber As Integer, ByVal AlarmOperation As Integer, ByVal ErrorTyp As String, ByVal ErrorIndex As String, ByVal ErrorNumber As String, ByVal ErrorLine As String, ByVal ErrorMessage As String, ByVal ErrorAdditional As String)
|
||||||
@@ -666,17 +643,10 @@ Public Class MachCommandMessagePanelVM
|
|||||||
ErrorAdditionalMsg = "Line Number"
|
ErrorAdditionalMsg = "Line Number"
|
||||||
ErrorNumberMsg = "CN:"
|
ErrorNumberMsg = "CN:"
|
||||||
End If
|
End If
|
||||||
Dim sErrorMessage As String = ErrorMessage
|
|
||||||
If bMsgTranslationActive Then
|
|
||||||
Dim sTranslatedMsg = MachMsg(MsgParagraphs.CNC, nErrorNumber)
|
|
||||||
If Not String.IsNullOrWhiteSpace(sTranslatedMsg) Then
|
|
||||||
sErrorMessage = sTranslatedMsg
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
ErrorLineMsg = "Number from the Cnc Block"
|
ErrorLineMsg = "Number from the Cnc Block"
|
||||||
AlarmMessage = If(nErrorNumber <> 0, ErrorNumberMsg & ": " & nErrorNumber & " - ", "") &
|
AlarmMessage = If(nErrorNumber <> 0, ErrorNumberMsg & ": " & nErrorNumber & " - ", "") &
|
||||||
If(nErrorExtNumber <> 0, " - " & ErrorExtNumberMsg & ": " & nErrorExtNumber, "") &
|
If(nErrorExtNumber <> 0, " - " & ErrorExtNumberMsg & ": " & nErrorExtNumber, "") &
|
||||||
" " & sErrorMessage
|
" " & ErrorMessage
|
||||||
Case NUM_ErrorTypes.Drive_Error
|
Case NUM_ErrorTypes.Drive_Error
|
||||||
ErrorIndexMsg = "Azionamento: Asse"
|
ErrorIndexMsg = "Azionamento: Asse"
|
||||||
ErrorNumberMsg = "Ext"
|
ErrorNumberMsg = "Ext"
|
||||||
@@ -707,17 +677,12 @@ Public Class MachCommandMessagePanelVM
|
|||||||
End If
|
End If
|
||||||
ErrorNumberMsg = "PLC"
|
ErrorNumberMsg = "PLC"
|
||||||
ErrorTypMsg = "Classe"
|
ErrorTypMsg = "Classe"
|
||||||
If CurrentMachine.NCType = NCTypes.NUM_AXIUM_PCTOOLKIT OrElse CurrentMachine.NCType = NCTypes.NUM_AXIUM_APSERVER Then
|
AlarmMessage = If(nErrorIndex <> 0, ErrorIndexMsg & ": " & nErrorIndex & " - ", "") &
|
||||||
AlarmMessage = If(nErrorNumber <> 0, ErrorNumberMsg & ": " & nErrorNumber & " - ", "") &
|
If(nErrorNumber <> 0, ErrorNumberMsg & ": " & nErrorNumber & " - ", "") &
|
||||||
sErrorMessage
|
If(nErrorExtNumber <> 0, " - " & ErrorExtNumberMsg & ": " & nErrorExtNumber, "") &
|
||||||
Else
|
ErrorTypMsg & ": " & nErrorTyp - 5 &
|
||||||
AlarmMessage = If(nErrorIndex <> 0, ErrorIndexMsg & ": " & nErrorIndex & " - ", "") &
|
If(nErrorLine <> 0, " - " & ErrorLineMsg & ": " & nErrorLine, "") &
|
||||||
If(nErrorNumber <> 0, ErrorNumberMsg & ": " & nErrorNumber & " - ", "") &
|
" " & sErrorMessage & If(nErrorAdditional <> 0, " - " & ErrorAdditionalMsg & ": " & nErrorAdditional, "")
|
||||||
If(nErrorExtNumber <> 0, " - " & ErrorExtNumberMsg & ": " & nErrorExtNumber, "") &
|
|
||||||
ErrorTypMsg & ": " & nErrorTyp - 5 &
|
|
||||||
If(nErrorLine <> 0, " - " & ErrorLineMsg & ": " & nErrorLine, "") &
|
|
||||||
" " & sErrorMessage & If(nErrorAdditional <> 0, " - " & ErrorAdditionalMsg & ": " & nErrorAdditional, "")
|
|
||||||
End If
|
|
||||||
Case NUM_ErrorTypes.HMI_Message
|
Case NUM_ErrorTypes.HMI_Message
|
||||||
Case NUM_ErrorTypes.RTS_Message
|
Case NUM_ErrorTypes.RTS_Message
|
||||||
Case NUM_ErrorTypes.Drive_Warning
|
Case NUM_ErrorTypes.Drive_Warning
|
||||||
@@ -784,7 +749,7 @@ Public Class MachCommandMessagePanelVM
|
|||||||
Select Case CurrentMachine.NCType
|
Select Case CurrentMachine.NCType
|
||||||
Case NCTypes.TPA
|
Case NCTypes.TPA
|
||||||
m_ErrSystem.RemoveAll(Function(x) x.sCode = AlarmCode)
|
m_ErrSystem.RemoveAll(Function(x) x.sCode = AlarmCode)
|
||||||
Case NCTypes.NUM_FLEXIUM, NCTypes.NUM_AXIUM_APSERVER, NCTypes.NUM_AXIUM_PCTOOLKIT
|
Case NCTypes.NUM_FLEXIUM
|
||||||
m_ErrSystem.RemoveAll(Function(x) x.sMessage = AlarmMessage)
|
m_ErrSystem.RemoveAll(Function(x) x.sMessage = AlarmMessage)
|
||||||
End Select
|
End Select
|
||||||
End If
|
End If
|
||||||
@@ -797,8 +762,7 @@ Public Class MachCommandMessagePanelVM
|
|||||||
' fermo timer degli allarmi
|
' fermo timer degli allarmi
|
||||||
m_AlarmTimer.Stop()
|
m_AlarmTimer.Stop()
|
||||||
End If
|
End If
|
||||||
'DbControllers.m_LogMachineController.Create(MachLog.CreateAlarmLog(AlarmOperation, ErrorTyp, AlarmMessage, AlarmCode, DateTime.Now))
|
DbControllers.m_LogMachineController.Create(MachLog.CreateAlarmLog(AlarmOperation, ErrorTyp, AlarmMessage, AlarmCode, DateTime.Now))
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreateAlarmLog(DateTime.Now(), AlarmOperation & LogEvent.cSeparator & ErrorTyp & LogEvent.cSeparator & AlarmMessage & LogEvent.cSeparator & AlarmCode & LogEvent.cSeparator, DbControllers.m_SupervisorId))
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Friend Sub AxisCoordinatesCallbackDlg(AxisValue As Double, AxisIndex As Integer)
|
Friend Sub AxisCoordinatesCallbackDlg(AxisValue As Double, AxisIndex As Integer)
|
||||||
@@ -818,31 +782,25 @@ Public Class MachCommandMessagePanelVM
|
|||||||
Next
|
Next
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
Case NCTypes.NUM_FLEXIUM, NCTypes.NUM_AXIUM_APSERVER, NCTypes.NUM_AXIUM_PCTOOLKIT
|
Case NCTypes.NUM_FLEXIUM
|
||||||
Map.refLeftPanelVM.SetOPState(NewState)
|
Map.refLeftPanelVM.SetOPState(NewState)
|
||||||
End Select
|
End Select
|
||||||
'DbControllers.m_LogMachineController.Create(MachLog.CreateOPStateLog(newOpState))
|
DbControllers.m_LogMachineController.Create(MachLog.CreateOPStateLog(newOpState))
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreateMachineStateLog(newOpState, DbControllers.m_SupervisorId))
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Friend Sub OpModeCallbackDlg(newOpState As Integer)
|
Friend Sub OpModeCallbackDlg(newOpState As Integer)
|
||||||
Dim NewState As OPState = Map.refLeftPanelVM.OPModeList.FirstOrDefault(Function(x) x.Id = newOpState)
|
Dim NewState As OPState = Map.refLeftPanelVM.OPModeList.FirstOrDefault(Function(x) x.Id = newOpState)
|
||||||
If IsNothing(NewState) Then
|
|
||||||
EgtOutLog("Machine state not recognized, state " & newOpState)
|
|
||||||
Return
|
|
||||||
End If
|
|
||||||
Select Case CurrentMachine.NCType
|
Select Case CurrentMachine.NCType
|
||||||
Case NCTypes.NUM_FLEXIUM, NCTypes.NUM_AXIUM_APSERVER, NCTypes.NUM_AXIUM_PCTOOLKIT
|
Case NCTypes.NUM_FLEXIUM
|
||||||
Map.refLeftPanelVM.SetOPMode(NewState)
|
Map.refLeftPanelVM.SetOPMode(NewState)
|
||||||
End Select
|
End Select
|
||||||
'DbControllers.m_LogMachineController.Create(MachLog.CreateOPStateLog(newOpState))
|
DbControllers.m_LogMachineController.Create(MachLog.CreateOPStateLog(newOpState))
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreateMachineModeLog(newOpState, DbControllers.m_SupervisorId))
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Friend Sub ChannelCallbackDlg(NewChannelId As Short)
|
Friend Sub ChannelCallbackDlg(NewChannelId As Short)
|
||||||
Dim NewChannel As IdNameStruct = Map.refLeftPanelVM.ChannelList.FirstOrDefault(Function(x) x.Id = NewChannelId)
|
Dim NewChannel As IdNameStruct = Map.refLeftPanelVM.ChannelList.FirstOrDefault(Function(x) x.Id = NewChannelId)
|
||||||
Select Case CurrentMachine.NCType
|
Select Case CurrentMachine.NCType
|
||||||
Case NCTypes.NUM_FLEXIUM, NCTypes.NUM_AXIUM_APSERVER, NCTypes.NUM_AXIUM_PCTOOLKIT
|
Case NCTypes.NUM_FLEXIUM
|
||||||
Map.refLeftPanelVM.SetChannel(NewChannel)
|
Map.refLeftPanelVM.SetChannel(NewChannel)
|
||||||
End Select
|
End Select
|
||||||
'DbControllers.m_LogMachineController.Create(MachLog.CreateOPStateLog(NewChannelId))
|
'DbControllers.m_LogMachineController.Create(MachLog.CreateOPStateLog(NewChannelId))
|
||||||
@@ -855,9 +813,8 @@ Public Class MachCommandMessagePanelVM
|
|||||||
Case "AsseX", "AsseY", "AsseZ", "AsseC", "AsseB"
|
Case "AsseX", "AsseY", "AsseZ", "AsseC", "AsseB"
|
||||||
SetAxisValue(VarName, VarValue)
|
SetAxisValue(VarName, VarValue)
|
||||||
End Select
|
End Select
|
||||||
'DbControllers.m_LogMachineController.Create(MachLog.CreateReadLog(CommandExecutedCorrectly, VarAddress, VarValue))
|
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreateReadVarLog(VarAddress, VarValue, DbControllers.SupervisorId))
|
|
||||||
End If
|
End If
|
||||||
|
DbControllers.m_LogMachineController.Create(MachLog.CreateReadLog(CommandExecutedCorrectly, VarAddress, VarValue))
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub SetAxisValue(VarName As String, VarValue As String)
|
Private Sub SetAxisValue(VarName As String, VarValue As String)
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ Public Class MyMachGroupVM
|
|||||||
' se c'e', attivo solo il pezzo non finito
|
' se c'e', attivo solo il pezzo non finito
|
||||||
Return Not (Not IsNothing(ToBeRestartedPart) AndAlso Not ToBeRestartedPart Is Me)
|
Return Not (Not IsNothing(ToBeRestartedPart) AndAlso Not ToBeRestartedPart Is Me)
|
||||||
Else
|
Else
|
||||||
If CurrentMachine.Flow = CurrentMachine.FlowTypes.ONEBYONE Then
|
If Global.EgtBEAMWALL.Supervisor.CurrentMachine.Flow = Global.EgtBEAMWALL.Supervisor.CurrentMachine.FlowTypes.ONEBYONE Then
|
||||||
Select Case nProduction_State
|
Select Case nProduction_State
|
||||||
Case ItemState.Assigned, ItemState.Confirmed, ItemState.WIP
|
Case ItemState.Assigned, ItemState.Confirmed, ItemState.WIP
|
||||||
Return Not m_bToBeProduced AndAlso Not m_bSentToMachine AndAlso Not Map.refSupervisorMachGroupPanelVM.MachGroupVMList.Any(Function(x As MyMachGroupVM) x.bToBeProduced)
|
Return Not m_bToBeProduced AndAlso Not m_bSentToMachine AndAlso Not Map.refSupervisorMachGroupPanelVM.MachGroupVMList.Any(Function(x As MyMachGroupVM) x.bToBeProduced)
|
||||||
@@ -124,19 +124,7 @@ Public Class MyMachGroupVM
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Overrides Sub RefreshPartList()
|
Public Overrides Sub RefreshPartList()
|
||||||
If nType = BWType.BEAM Then
|
|
||||||
' leggo StartCut da posizione primo pezzo
|
|
||||||
Dim sInfo As String = ""
|
|
||||||
Dim sSplitInfo() As String
|
|
||||||
Dim bFound As Boolean = False
|
|
||||||
EgtGetInfo(Id, MGR_RPT_PART & 1, sInfo)
|
|
||||||
If Not String.IsNullOrWhiteSpace(sInfo) Then
|
|
||||||
sSplitInfo = sInfo.Split(","c)
|
|
||||||
StringToDoubleAdv(sSplitInfo(1), MyMachGroupM.dStartCut)
|
|
||||||
Else
|
|
||||||
MyMachGroupM.dStartCut = 0
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
#End Region ' Parts
|
#End Region ' Parts
|
||||||
@@ -168,8 +156,6 @@ Public Class MyMachGroupVM
|
|||||||
Public Overrides Sub ProduceMachGroup()
|
Public Overrides Sub ProduceMachGroup()
|
||||||
' se gia' in produzione, non devo fare nulla
|
' se gia' in produzione, non devo fare nulla
|
||||||
If m_bToBeProduced Then Return
|
If m_bToBeProduced Then Return
|
||||||
' disabilito bottoni di comunicazione durante invio programma
|
|
||||||
Map.refMachCommandMessagePanelVM.SetCommBtnIsEnabled(False)
|
|
||||||
' macchina bloccata con reset PER TEST!!!!
|
' macchina bloccata con reset PER TEST!!!!
|
||||||
'SetResetWhileCutting(True)
|
'SetResetWhileCutting(True)
|
||||||
' se ripartenza
|
' se ripartenza
|
||||||
@@ -183,8 +169,6 @@ Public Class MyMachGroupVM
|
|||||||
Dim WaitingWnd As New WaitingWndV(Application.Current.MainWindow, New WaitingWndVM)
|
Dim WaitingWnd As New WaitingWndV(Application.Current.MainWindow, New WaitingWndVM)
|
||||||
Dim WaitingResult As Boolean = WaitingWnd.ShowDialog()
|
Dim WaitingResult As Boolean = WaitingWnd.ShowDialog()
|
||||||
If Not WaitingResult Then
|
If Not WaitingResult Then
|
||||||
' riabilito bottoni di comunicazione a fine invio programma
|
|
||||||
Map.refMachCommandMessagePanelVM.SetCommBtnIsEnabled(True)
|
|
||||||
Return
|
Return
|
||||||
End If
|
End If
|
||||||
' ricarico progetto corrente
|
' ricarico progetto corrente
|
||||||
@@ -192,10 +176,6 @@ Public Class MyMachGroupVM
|
|||||||
End If
|
End If
|
||||||
' creo nuova barra
|
' creo nuova barra
|
||||||
Dim RedoMachGroupVM As MyMachGroupVM = RedoRawPart()
|
Dim RedoMachGroupVM As MyMachGroupVM = RedoRawPart()
|
||||||
If IsNothing(RedoMachGroupVM) Then
|
|
||||||
MessageBox.Show("New RawPart creation failed!")
|
|
||||||
Return
|
|
||||||
End If
|
|
||||||
' salvo progetto con nuova barra
|
' salvo progetto con nuova barra
|
||||||
Map.refSceneHostVM.SaveProject()
|
Map.refSceneHostVM.SaveProject()
|
||||||
Dim MyMachGroupList As New List(Of MyMachGroupM)
|
Dim MyMachGroupList As New List(Of MyMachGroupM)
|
||||||
@@ -217,34 +197,23 @@ Public Class MyMachGroupVM
|
|||||||
End If
|
End If
|
||||||
' riabilito produzione di tutti gli altri
|
' riabilito produzione di tutti gli altri
|
||||||
MyMachGroupVM.UpdateProduceIsEnabledForAll()
|
MyMachGroupVM.UpdateProduceIsEnabledForAll()
|
||||||
' riabilito bottoni di comunicazione a fine invio programma
|
|
||||||
Map.refMachCommandMessagePanelVM.SetCommBtnIsEnabled(True)
|
|
||||||
' reimposto visualizzazione gruppo selezionato
|
|
||||||
Map.refSupervisorMachGroupPanelVM.SelectedMachGroup = Map.refSupervisorMachGroupPanelVM.SelectedMachGroup
|
|
||||||
Return
|
Return
|
||||||
End If
|
End If
|
||||||
' se progetto travi e lavorazione interrotta da reset
|
' se progetto travi e lavorazione interrotta da reset
|
||||||
If Map.refSupervisorManagerVM.CurrProd.nType = BWType.BEAM AndAlso (bResetWhileCutting OrElse dtStartTime <> DateTime.MinValue) And Not Map.refLeftPanelVM.bRestart Then
|
If Map.refSupervisorManagerVM.CurrProd.nType = BWType.BEAM AndAlso (bResetWhileCutting OrElse dtStartTime <> DateTime.MinValue) And Not Map.refLeftPanelVM.bRestart Then
|
||||||
' chiedo se riprendere o rifare la barra da zero
|
' chiedo se riprendere o rifare la barra da zero
|
||||||
Dim bRedo As MessageBoxResult = MessageBox.Show(EgtMsg(62509), "", MessageBoxButton.YesNo, MessageBoxImage.Information)
|
Dim bRedo As MessageBoxResult = MessageBox.Show("Riprendere lavorazione barra corrente?", "", MessageBoxButton.YesNo, MessageBoxImage.Information)
|
||||||
Select Case bRedo
|
Select Case bRedo
|
||||||
Case MessageBoxResult.Yes
|
Case MessageBoxResult.Yes
|
||||||
' segno da rifare pezzi non completamente lavorati
|
' segno da rifare pezzi non completamente lavorati
|
||||||
For Each Part As PartVM In PartVMList
|
For Each Part As PartVM In PartVMList
|
||||||
If Part.dtEndTime <> DateTime.MinValue Then
|
Part.bDO = (Part.dtEndTime = DateTime.MinValue)
|
||||||
Part.bDO = False
|
|
||||||
Else
|
|
||||||
Part.SetDo(True)
|
|
||||||
End If
|
|
||||||
'Part.bDO = (Part.dtEndTime = DateTime.MinValue)
|
|
||||||
'Part.NotifyPropertyChanged(NameOf(Part.bRedo))
|
'Part.NotifyPropertyChanged(NameOf(Part.bRedo))
|
||||||
Next
|
Next
|
||||||
' se ripresa, mostro lista feature e colonne Redo
|
' se ripresa, mostro lista feature e colonne Redo
|
||||||
Map.refLeftPanelVM.bRestart = True
|
Map.refLeftPanelVM.bRestart = True
|
||||||
' blocco produzione di tutti gli altri
|
' blocco produzione di tutti gli altri
|
||||||
MyMachGroupVM.UpdateProduceIsEnabledForAll()
|
MyMachGroupVM.UpdateProduceIsEnabledForAll()
|
||||||
' riabilito bottoni di comunicazione a fine invio programma
|
|
||||||
Map.refMachCommandMessagePanelVM.SetCommBtnIsEnabled(True)
|
|
||||||
Return
|
Return
|
||||||
Case MessageBoxResult.No
|
Case MessageBoxResult.No
|
||||||
' annullo stati dei pezzi gia' fatti
|
' annullo stati dei pezzi gia' fatti
|
||||||
@@ -300,7 +269,6 @@ Public Class MyMachGroupVM
|
|||||||
|
|
||||||
' lancio produzione pezzo
|
' lancio produzione pezzo
|
||||||
Produce(New List(Of MachGroupVM)({Me}))
|
Produce(New List(Of MachGroupVM)({Me}))
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Friend Shared Sub Produce(MachGroupList As List(Of MachGroupVM))
|
Friend Shared Sub Produce(MachGroupList As List(Of MachGroupVM))
|
||||||
@@ -345,8 +313,6 @@ Public Class MyMachGroupVM
|
|||||||
|
|
||||||
Public Function RedoRawPart() As MyMachGroupVM
|
Public Function RedoRawPart() As MyMachGroupVM
|
||||||
If IsNothing(Map.refSupervisorManagerVM.CurrProd) Then Return Nothing
|
If IsNothing(Map.refSupervisorManagerVM.CurrProd) Then Return Nothing
|
||||||
' variabile che contiene anticipo di pinzaggio primo pezzo
|
|
||||||
Dim dHCING As Double = 0
|
|
||||||
' creo nuovo gruppo di lavorazione
|
' creo nuovo gruppo di lavorazione
|
||||||
Map.refProjectVM.ProdMachGroupPanelVM.AddMachGroup()
|
Map.refProjectVM.ProdMachGroupPanelVM.AddMachGroup()
|
||||||
Dim nCurrMachGroup As Integer = EgtGetCurrMachGroup()
|
Dim nCurrMachGroup As Integer = EgtGetCurrMachGroup()
|
||||||
@@ -375,12 +341,6 @@ Public Class MyMachGroupVM
|
|||||||
For Index = 0 To m_PartVMList.Count - 1
|
For Index = 0 To m_PartVMList.Count - 1
|
||||||
Dim CurrPart As PartVM = m_PartVMList(Index)
|
Dim CurrPart As PartVM = m_PartVMList(Index)
|
||||||
If CurrPart.bDO Then
|
If CurrPart.bDO Then
|
||||||
' se primo pezzo da fare
|
|
||||||
If nDone = 0 Then
|
|
||||||
' recupero anticipo di pinzaggio da vecchia barra
|
|
||||||
dHCING = GetHCING(CurrPart.nPartId)
|
|
||||||
dInitialCutOut += CurrPart.dOffset - 0.1
|
|
||||||
End If
|
|
||||||
nDone += 1
|
nDone += 1
|
||||||
' creo copia del pezzo
|
' creo copia del pezzo
|
||||||
Dim nPartDuploId As Integer = EgtDuploNew(PartList(Index).nPartId)
|
Dim nPartDuploId As Integer = EgtDuploNew(PartList(Index).nPartId)
|
||||||
@@ -396,7 +356,7 @@ Public Class MyMachGroupVM
|
|||||||
EgtBeamEnableProcess(Feature.nFeatureId, bOk)
|
EgtBeamEnableProcess(Feature.nFeatureId, bOk)
|
||||||
Next
|
Next
|
||||||
' scrivo dati costruzione grezzo in gruppo di lavorazione
|
' scrivo dati costruzione grezzo in gruppo di lavorazione
|
||||||
EgtSetInfo(nCurrMachGroup, MGR_RPT_PART & nDone, nPartDuploId & "," & DoubleToString(CurrPart.dPOSX - dInitialCutOut, 3))
|
EgtSetInfo(nCurrMachGroup, MGR_RPT_PART & nDone, nPartDuploId & "," & CurrPart.sPOSX - dInitialCutOut)
|
||||||
Else
|
Else
|
||||||
dInitialCutOut += CurrPart.dOffset + CurrPart.dL
|
dInitialCutOut += CurrPart.dOffset + CurrPart.dL
|
||||||
End If
|
End If
|
||||||
@@ -414,15 +374,14 @@ Public Class MyMachGroupVM
|
|||||||
End If
|
End If
|
||||||
Return Nothing
|
Return Nothing
|
||||||
End If
|
End If
|
||||||
' aggiorno anticipo di pinzaggio in primo pezzo
|
|
||||||
EgtSetInfo(EgtGetFirstRawPart(), "HCING", dHCING)
|
|
||||||
'aggiorno lista pezzi
|
'aggiorno lista pezzi
|
||||||
BeamMachGroup.MyMachGroupM.RefreshPartList()
|
BeamMachGroup.MyMachGroupM.RefreshPartList()
|
||||||
BeamMachGroup.MyMachGroupM.RefreshGroupData()
|
BeamMachGroup.MyMachGroupM.RefreshGroupData()
|
||||||
|
''' aggiorno dati utilizzo barra
|
||||||
|
''BeamMachGroup.UpdateUsage()
|
||||||
Core.ViewPanelVM.BWSetView(VT.ISO_SW, False)
|
Core.ViewPanelVM.BWSetView(VT.ISO_SW, False)
|
||||||
' salvo nuovo grezzo nel progetto
|
' salvo nuovo grezzo nel progetto
|
||||||
Map.refSupervisorManagerVM.Save()
|
Map.refSupervisorManagerVM.Save()
|
||||||
Dim LastDonePart As PartVM = Nothing
|
|
||||||
' segno pezzi non completati come scrap
|
' segno pezzi non completati come scrap
|
||||||
For Index = 0 To m_PartVMList.Count - 1
|
For Index = 0 To m_PartVMList.Count - 1
|
||||||
Dim CurrPart As PartVM = m_PartVMList(Index)
|
Dim CurrPart As PartVM = m_PartVMList(Index)
|
||||||
@@ -439,22 +398,15 @@ Public Class MyMachGroupVM
|
|||||||
Part.NotifyPropertyChanged(NameOf(Part.nProduction_State))
|
Part.NotifyPropertyChanged(NameOf(Part.nProduction_State))
|
||||||
' resetto stato redo
|
' resetto stato redo
|
||||||
Part.bRedo = False
|
Part.bRedo = False
|
||||||
Else
|
' scrivo data end su Db barra
|
||||||
LastDonePart = CurrPart
|
DbControllers.m_MachGroupController.UpdateEnd(nP_Prod, nP_Machgroup, DateTime.MinValue)
|
||||||
|
DbControllers.m_MachGroupController.UpdateStatus(nP_Prod, nP_Machgroup, ItemState.Produced)
|
||||||
|
' scrivo stato end
|
||||||
|
MyMachGroupM.SetProductionState(ItemState.Produced)
|
||||||
|
dtEndTime = DateTime.MinValue
|
||||||
|
NotifyPropertyChanged(NameOf(nProduction_State))
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
' imposto fine MachGroup su fine ultimo pezzo o inizio Machgroup + 1 secondo
|
|
||||||
Dim MachGroupEnd As DateTime = dtStartTime + New TimeSpan(0, 0, 1)
|
|
||||||
If Not IsNothing(LastDonePart) AndAlso LastDonePart.dtEndTime <> DateTime.MinValue Then
|
|
||||||
MachGroupEnd = LastDonePart.dtEndTime
|
|
||||||
End If
|
|
||||||
' scrivo data end su Db barra
|
|
||||||
DbControllers.m_MachGroupController.UpdateEnd(Map.refSupervisorManagerVM.CurrProd.nProdId, Id, MachGroupEnd)
|
|
||||||
DbControllers.m_MachGroupController.UpdateStatus(Map.refSupervisorManagerVM.CurrProd.nProdId, Id, ItemState.Produced)
|
|
||||||
' scrivo stato end
|
|
||||||
MyMachGroupM.SetProductionState(ItemState.Produced)
|
|
||||||
dtEndTime = MachGroupEnd
|
|
||||||
NotifyPropertyChanged(NameOf(nProduction_State))
|
|
||||||
NotifyPropertyChanged(NameOf(Produce_IsEnabled))
|
NotifyPropertyChanged(NameOf(Produce_IsEnabled))
|
||||||
MachGroup = BeamMachGroup
|
MachGroup = BeamMachGroup
|
||||||
ElseIf Map.refSupervisorManagerVM.CurrProd.nType = BWType.WALL Then
|
ElseIf Map.refSupervisorManagerVM.CurrProd.nType = BWType.WALL Then
|
||||||
@@ -492,7 +444,7 @@ Public Class MyMachGroupVM
|
|||||||
'WallMachGroup.UpdateUsage()
|
'WallMachGroup.UpdateUsage()
|
||||||
'EgtSetView(VT.TOP, False)
|
'EgtSetView(VT.TOP, False)
|
||||||
End If
|
End If
|
||||||
' aggiorno dati utilizzo grezzo
|
' aggiorno dati ultilizzo grezzo
|
||||||
MachGroup.UpdateUsage()
|
MachGroup.UpdateUsage()
|
||||||
'passo machgroup a supervisor su Db
|
'passo machgroup a supervisor su Db
|
||||||
DbControllers.m_MachGroupController.UpdateSupervisor(Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, DbControllers.m_SupervisorId)
|
DbControllers.m_MachGroupController.UpdateSupervisor(Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, DbControllers.m_SupervisorId)
|
||||||
@@ -500,18 +452,6 @@ Public Class MyMachGroupVM
|
|||||||
MachGroup.NotifyPropertyChanged(NameOf(MachGroup.Background))
|
MachGroup.NotifyPropertyChanged(NameOf(MachGroup.Background))
|
||||||
' assegno a nuova barra indice successivo a quella di partenza
|
' assegno a nuova barra indice successivo a quella di partenza
|
||||||
MachGroup.SetProductionIndex(m_nProductionIndex + 1)
|
MachGroup.SetProductionIndex(m_nProductionIndex + 1)
|
||||||
' assegno stati a pezzi
|
|
||||||
For Each Part As PartVM In MachGroup.PartVMList
|
|
||||||
DbControllers.m_PartController.UpdateStatus(Map.refSupervisorManagerVM.CurrProd.nProdId, MachGroup.Id, Part.nPartId, ItemState.Assigned)
|
|
||||||
Part.nProduction_State = ItemState.Assigned
|
|
||||||
Part.NotifyPropertyChanged(NameOf(Part.Background))
|
|
||||||
'' disabilito impostazione modificato
|
|
||||||
'Dim DisableMgr As New DisableModifiedMgr
|
|
||||||
'' blocco modifica del pezzo
|
|
||||||
'EgtDuploSetLocked(Part.nPartId)
|
|
||||||
'' ripristino precedente impostazione modificato
|
|
||||||
'DisableMgr.ReEnable()
|
|
||||||
Next
|
|
||||||
' aggiorno indice di tutte le barre in coda
|
' aggiorno indice di tutte le barre in coda
|
||||||
For Each CurrMachGroup As MyMachGroupVM In Map.refSupervisorMachGroupPanelVM.MachGroupVMList
|
For Each CurrMachGroup As MyMachGroupVM In Map.refSupervisorMachGroupPanelVM.MachGroupVMList
|
||||||
If Not (CurrMachGroup Is MachGroup) AndAlso CurrMachGroup.nProductionIndex >= MachGroup.nProductionIndex AndAlso CurrMachGroup.nProductionIndex < 5000 Then
|
If Not (CurrMachGroup Is MachGroup) AndAlso CurrMachGroup.nProductionIndex >= MachGroup.nProductionIndex AndAlso CurrMachGroup.nProductionIndex < 5000 Then
|
||||||
@@ -525,28 +465,10 @@ Public Class MyMachGroupVM
|
|||||||
If Not IsNothing(MachGroup) Then Map.refProjectVM.SupervisorMachGroupPanelVM.AddMachGroupToSupervisor(MachGroup)
|
If Not IsNothing(MachGroup) Then Map.refProjectVM.SupervisorMachGroupPanelVM.AddMachGroupToSupervisor(MachGroup)
|
||||||
' lo posiziono subito dopo il gruppo di ripartenza
|
' lo posiziono subito dopo il gruppo di ripartenza
|
||||||
Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.Move(Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.Count - 1, Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.IndexOf(Me) + 1)
|
Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.Move(Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.Count - 1, Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.IndexOf(Me) + 1)
|
||||||
EgtResetCurrMachGroup()
|
|
||||||
EgtZoom(ZM.ALL)
|
EgtZoom(ZM.ALL)
|
||||||
Return MachGroup
|
Return MachGroup
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Private Function GetHCING(nOrigPartId As Integer) As Double
|
|
||||||
' inizializzo nuovo contesto
|
|
||||||
Dim nCurrCtx As Integer = EgtGetCurrentContext()
|
|
||||||
Dim nTempCtx As Integer = EgtInitContext()
|
|
||||||
' inizializzo gestore lavorazioni
|
|
||||||
EgtInitMachMgr(Map.refMainWindowVM.MainWindowM.sMachinesRoot, Map.refMainWindowVM.MainWindowM.sToolMakersDir)
|
|
||||||
Dim g = EgtOpenFile(Map.refSupervisorManagerVM.CurrProd.sProdDirPath & "\" & Name & ".bwe")
|
|
||||||
Dim nFirstId As Integer = EgtGetFirstMachGroup()
|
|
||||||
Dim f = EgtSetCurrMachGroup(nFirstId)
|
|
||||||
Dim nOldRawId As Integer = EgtGetRawPartFromPart(nOrigPartId)
|
|
||||||
Dim dHCING As Double = 0
|
|
||||||
EgtGetInfo(nOldRawId, "HCING", dHCING)
|
|
||||||
EgtSetCurrentContext(nCurrCtx)
|
|
||||||
EgtDeleteContext(nTempCtx)
|
|
||||||
Return dHCING
|
|
||||||
End Function
|
|
||||||
|
|
||||||
#End Region ' ProduceMachGroup
|
#End Region ' ProduceMachGroup
|
||||||
|
|
||||||
#End Region ' COMMANDS
|
#End Region ' COMMANDS
|
||||||
|
|||||||
@@ -32,15 +32,6 @@ Public Class PartVM
|
|||||||
NotifyPropertyChanged(NameOf(bDO))
|
NotifyPropertyChanged(NameOf(bDO))
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Property bFLIP As Boolean
|
|
||||||
Get
|
|
||||||
Return m_PartM.nFLIP <> 0
|
|
||||||
End Get
|
|
||||||
Set(value As Boolean)
|
|
||||||
Return
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
#End Region ' Supervisor
|
#End Region ' Supervisor
|
||||||
|
|
||||||
#End Region ' FIELDS & PROPERTIES
|
#End Region ' FIELDS & PROPERTIES
|
||||||
|
|||||||
@@ -12,15 +12,6 @@ Public Class SupervisorMachGroupPanelVM
|
|||||||
|
|
||||||
#Region "FIELDS & PROPERTIES"
|
#Region "FIELDS & PROPERTIES"
|
||||||
|
|
||||||
Private m_ReloadProj_Timer As New DispatcherTimer
|
|
||||||
Private m_bReloadProj As Boolean = False
|
|
||||||
Private m_bReloadingProj As Boolean = False
|
|
||||||
Public ReadOnly Property bReloadingProj As Boolean
|
|
||||||
Get
|
|
||||||
Return m_bReloadingProj
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
' lock per aggiunta elemento a lista MachGroup
|
' lock per aggiunta elemento a lista MachGroup
|
||||||
Private m_Lock_AddMachGroup As New Object
|
Private m_Lock_AddMachGroup As New Object
|
||||||
|
|
||||||
@@ -46,8 +37,8 @@ Public Class SupervisorMachGroupPanelVM
|
|||||||
Map.SetRefSupervisorMachGroupPanelVM(Me)
|
Map.SetRefSupervisorMachGroupPanelVM(Me)
|
||||||
BindingOperations.EnableCollectionSynchronization(m_MachGroupVMList, m_Lock_AddMachGroup)
|
BindingOperations.EnableCollectionSynchronization(m_MachGroupVMList, m_Lock_AddMachGroup)
|
||||||
m_ReloadProj_Timer.Interval = TimeSpan.FromMilliseconds(500)
|
m_ReloadProj_Timer.Interval = TimeSpan.FromMilliseconds(500)
|
||||||
AddHandler m_ReloadProj_Timer.Tick, AddressOf ReloadProject_Tick
|
|
||||||
m_ReloadProj_Timer.Start()
|
m_ReloadProj_Timer.Start()
|
||||||
|
AddHandler m_ReloadProj_Timer.Tick, AddressOf ReloadProject_Tick
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
#End Region ' CONSTRUCTOR
|
#End Region ' CONSTRUCTOR
|
||||||
@@ -58,27 +49,26 @@ Public Class SupervisorMachGroupPanelVM
|
|||||||
If MachGroupVMList.Count = 0 Then
|
If MachGroupVMList.Count = 0 Then
|
||||||
ManageBTLParts.ShowAll()
|
ManageBTLParts.ShowAll()
|
||||||
End If
|
End If
|
||||||
If Not MachGroupVMList.Contains(MachGroup) Then
|
SyncLock (m_Lock_AddMachGroup)
|
||||||
SyncLock (m_Lock_AddMachGroup)
|
MachGroupVMList.Add(MachGroup)
|
||||||
MachGroupVMList.Add(MachGroup)
|
End SyncLock
|
||||||
End SyncLock
|
|
||||||
End If
|
|
||||||
' notifico stato
|
' notifico stato
|
||||||
MachGroup.NotifyPropertyChanged(NameOf(MachGroup.Produce_IsEnabled))
|
MachGroup.NotifyPropertyChanged(NameOf(MachGroup.Produce_IsEnabled))
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private m_bReloadProj As Boolean = False
|
||||||
|
Private m_ReloadProj_Timer As New DispatcherTimer
|
||||||
|
|
||||||
Public Sub ReloadProjectFile()
|
Public Sub ReloadProjectFile()
|
||||||
m_bReloadProj = True
|
m_bReloadProj = True
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Sub ReloadProject_Tick()
|
Public Sub ReloadProject_Tick()
|
||||||
If Not m_bReloadProj Then Return
|
If Not m_bReloadProj Then Return
|
||||||
m_bReloadingProj = True
|
|
||||||
m_bReloadProj = False
|
m_bReloadProj = False
|
||||||
Map.refSceneHostVM.MainController.ResetModified()
|
Map.refSceneHostVM.MainController.ResetModified()
|
||||||
Map.refSceneHostVM.MainController.OpenProject(Map.refSupervisorManagerVM.CurrProd.sProdPath, False)
|
Map.refSceneHostVM.MainController.OpenProject(Map.refSupervisorManagerVM.CurrProd.sProdPath, False)
|
||||||
RefreshSupervisorMachGroups(Map.refMachinePanelVM.MachineList.ToList())
|
RefreshSupervisorMachGroups(Map.refMachinePanelVM.MachineList.ToList())
|
||||||
m_bReloadingProj = False
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
#End Region ' CONSTRUCTOR
|
#End Region ' CONSTRUCTOR
|
||||||
|
|||||||
@@ -10,9 +10,6 @@ Imports EgtBEAMWALL.Supervisor.CommVar
|
|||||||
|
|
||||||
Public Class MachManaging
|
Public Class MachManaging
|
||||||
|
|
||||||
' lock per aggiunta elemento a lista MachGroup
|
|
||||||
Private Shared Lock_CommandList As New Object
|
|
||||||
|
|
||||||
Private m_bConnected As Boolean = False
|
Private m_bConnected As Boolean = False
|
||||||
Public ReadOnly Property bConnected As Boolean
|
Public ReadOnly Property bConnected As Boolean
|
||||||
Get
|
Get
|
||||||
@@ -39,16 +36,6 @@ Public Class MachManaging
|
|||||||
Return m_CN
|
Return m_CN
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
Public ReadOnly Property Num_Axium_APServer As NUMAxiumComm
|
|
||||||
Get
|
|
||||||
Return m_CN
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
Public ReadOnly Property Num_Axium_PCToolkit As NUMAxiumPcToolkitComm
|
|
||||||
Get
|
|
||||||
Return m_CN
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Private Shared WithEvents m_CommandList As New ObservableCollection(Of ThreadCommand)
|
Private Shared WithEvents m_CommandList As New ObservableCollection(Of ThreadCommand)
|
||||||
Public Shared ReadOnly Property CommandList As ObservableCollection(Of ThreadCommand)
|
Public Shared ReadOnly Property CommandList As ObservableCollection(Of ThreadCommand)
|
||||||
@@ -56,22 +43,6 @@ Public Class MachManaging
|
|||||||
Return m_CommandList
|
Return m_CommandList
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
Friend Shared Sub AddToCommandList(value As ThreadCommand)
|
|
||||||
SyncLock Lock_CommandList
|
|
||||||
' EgtOutLog("Inizio ciclo rimozioni")
|
|
||||||
For CommandIndex = m_CommandList.Count - 1 To 0 Step -1
|
|
||||||
Dim Command As ThreadCommand = m_CommandList(CommandIndex)
|
|
||||||
If Command.ProcessingStatus = ThreadCommand.ProcessingStatuses.DONE Then
|
|
||||||
' EgtOutLog("Inizio rimozione comando")
|
|
||||||
m_CommandList.Remove(Command)
|
|
||||||
' EgtOutLog("Fine rimozione comando")
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
' EgtOutLog("Fine ciclo rimozioni")
|
|
||||||
CommandList.Add(value)
|
|
||||||
' EgtOutLog("Count dopo aggiunta: " & CommandList.Count)
|
|
||||||
End SyncLock
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private m_bStartPending As Boolean = False
|
Private m_bStartPending As Boolean = False
|
||||||
Public ReadOnly Property StartPending As Boolean
|
Public ReadOnly Property StartPending As Boolean
|
||||||
@@ -241,7 +212,7 @@ Public Class MachManaging
|
|||||||
' Threading.Thread.Sleep(300)
|
' Threading.Thread.Sleep(300)
|
||||||
' End If
|
' End If
|
||||||
' End If
|
' End If
|
||||||
Case NCTypes.NUM_FLEXIUM, NCTypes.TPA, NCTypes.NUM_AXIUM_APSERVER, NCTypes.NUM_AXIUM_PCTOOLKIT
|
Case NCTypes.NUM_FLEXIUM, NCTypes.TPA
|
||||||
' eseguo ciclo principale
|
' eseguo ciclo principale
|
||||||
Dim nReset_State As Integer
|
Dim nReset_State As Integer
|
||||||
Dim nStart_State As Boolean
|
Dim nStart_State As Boolean
|
||||||
@@ -301,146 +272,6 @@ Public Class MachManaging
|
|||||||
If nCurrMachIndex > 0 AndAlso nReset_State = 0 Then
|
If nCurrMachIndex > 0 AndAlso nReset_State = 0 Then
|
||||||
m_nMachIndex = nCurrMachIndex
|
m_nMachIndex = nCurrMachIndex
|
||||||
End If
|
End If
|
||||||
Case NCTypes.NUM_AXIUM_APSERVER
|
|
||||||
Dim dTemp As Double = 0
|
|
||||||
Dim nTemp As Integer = 0
|
|
||||||
If Not IsNothing(ResetVariable.sValue) Then
|
|
||||||
Integer.TryParse(ResetVariable.sValue, nReset_State)
|
|
||||||
Else
|
|
||||||
nReset_State = 1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(StartVariable.sValue) Then
|
|
||||||
Integer.TryParse(StartVariable.sValue, nTemp)
|
|
||||||
nStart_State = (nTemp = 1)
|
|
||||||
Else
|
|
||||||
nStart_State = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(StopVariable.sValue) Then
|
|
||||||
Integer.TryParse(StopVariable.sValue, nTemp)
|
|
||||||
nStop_State = (nTemp = 1)
|
|
||||||
Else
|
|
||||||
nStop_State = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(ProdVariable.sValue) Then
|
|
||||||
Integer.TryParse(ProdVariable.sValue, nP_Prod)
|
|
||||||
Else
|
|
||||||
nP_Prod = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(MachGroupVariable.sValue) Then
|
|
||||||
Integer.TryParse(MachGroupVariable.sValue, nP_Machgroup)
|
|
||||||
Else
|
|
||||||
nP_Machgroup = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(PartVariable.sValue) Then
|
|
||||||
Integer.TryParse(PartVariable.sValue, nP_Part)
|
|
||||||
Else
|
|
||||||
nP_Part = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(StateVariable.sValue) Then
|
|
||||||
Integer.TryParse(StateVariable.sValue, nP_State)
|
|
||||||
Else
|
|
||||||
nP_State = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(ISONumVariable.sValue) Then
|
|
||||||
Integer.TryParse(ISONumVariable.sValue, nISO_Num)
|
|
||||||
Else
|
|
||||||
nISO_Num = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(ISOSentVariable.sValue) Then
|
|
||||||
Integer.TryParse(ISOSentVariable.sValue, nISO_Sent)
|
|
||||||
Else
|
|
||||||
nISO_Sent = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(RunningVariable.sValue) Then
|
|
||||||
Integer.TryParse(RunningVariable.sValue, nRunning)
|
|
||||||
Else
|
|
||||||
nRunning = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(MachIndexVariable.sValue) Then
|
|
||||||
Integer.TryParse(MachIndexVariable.sValue, nCurrMachIndex)
|
|
||||||
Else
|
|
||||||
nCurrMachIndex = -1
|
|
||||||
End If
|
|
||||||
' se indice lavorazione positivo, lo aggiorno
|
|
||||||
If nCurrMachIndex > 0 AndAlso nReset_State = 0 Then
|
|
||||||
m_nMachIndex = nCurrMachIndex
|
|
||||||
End If
|
|
||||||
' leggo messaggi plc
|
|
||||||
ReadPLCMessages()
|
|
||||||
Case NCTypes.NUM_AXIUM_PCTOOLKIT
|
|
||||||
' leggo tutte le variabili
|
|
||||||
Num_Axium_PCToolkit.RefreshAllVars()
|
|
||||||
'EgtOutLog("Post lettura variabili")
|
|
||||||
Dim dTemp As Double = 0
|
|
||||||
Dim nTemp As Integer = 0
|
|
||||||
If Not IsNothing(ResetVariable.sValue) Then
|
|
||||||
Integer.TryParse(ResetVariable.sValue, nReset_State)
|
|
||||||
Else
|
|
||||||
nReset_State = 1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(StartVariable.sValue) Then
|
|
||||||
Integer.TryParse(StartVariable.sValue, nTemp)
|
|
||||||
nStart_State = (nTemp = 1)
|
|
||||||
Else
|
|
||||||
nStart_State = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(StopVariable.sValue) Then
|
|
||||||
Integer.TryParse(StopVariable.sValue, nTemp)
|
|
||||||
nStop_State = (nTemp = 1)
|
|
||||||
Else
|
|
||||||
nStop_State = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(ProdVariable.sValue) Then
|
|
||||||
Integer.TryParse(ProdVariable.sValue, nP_Prod)
|
|
||||||
Else
|
|
||||||
nP_Prod = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(MachGroupVariable.sValue) Then
|
|
||||||
Integer.TryParse(MachGroupVariable.sValue, nP_Machgroup)
|
|
||||||
Else
|
|
||||||
nP_Machgroup = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(PartVariable.sValue) Then
|
|
||||||
Integer.TryParse(PartVariable.sValue, nP_Part)
|
|
||||||
Else
|
|
||||||
nP_Part = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(StateVariable.sValue) Then
|
|
||||||
Integer.TryParse(StateVariable.sValue, nP_State)
|
|
||||||
Else
|
|
||||||
nP_State = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(ISONumVariable.sValue) Then
|
|
||||||
Integer.TryParse(ISONumVariable.sValue, nISO_Num)
|
|
||||||
Else
|
|
||||||
nISO_Num = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(ISOSentVariable.sValue) Then
|
|
||||||
Integer.TryParse(ISOSentVariable.sValue, nISO_Sent)
|
|
||||||
Else
|
|
||||||
nISO_Sent = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(RunningVariable.sValue) Then
|
|
||||||
Integer.TryParse(RunningVariable.sValue, nRunning)
|
|
||||||
Else
|
|
||||||
nRunning = -1
|
|
||||||
End If
|
|
||||||
If Not IsNothing(MachIndexVariable.sValue) Then
|
|
||||||
Integer.TryParse(MachIndexVariable.sValue, nCurrMachIndex)
|
|
||||||
Else
|
|
||||||
nCurrMachIndex = -1
|
|
||||||
End If
|
|
||||||
'EgtOutLog("Post scrittura variabili lette")
|
|
||||||
' se indice lavorazione positivo, lo aggiorno
|
|
||||||
If nCurrMachIndex > 0 AndAlso nReset_State = 0 Then
|
|
||||||
m_nMachIndex = nCurrMachIndex
|
|
||||||
End If
|
|
||||||
' leggo messaggi plc
|
|
||||||
ReadPLCMessages()
|
|
||||||
Num_Axium_PCToolkit.ReadCncMode()
|
|
||||||
'EgtOutLog("Pre lettura posizioni")
|
|
||||||
Num_Axium_PCToolkit.ReadPosition()
|
|
||||||
'EgtOutLog("Post lettura messaggi")
|
|
||||||
End Select
|
End Select
|
||||||
' se NUM aggiorno stato della macchina
|
' se NUM aggiorno stato della macchina
|
||||||
If CurrentMachine.NCType = NCTypes.NUM_FLEXIUM Then
|
If CurrentMachine.NCType = NCTypes.NUM_FLEXIUM Then
|
||||||
@@ -455,34 +286,14 @@ Public Class MachManaging
|
|||||||
If OpState <> Map.refLeftPanelVM.SelOPState.Id Then
|
If OpState <> Map.refLeftPanelVM.SelOPState.Id Then
|
||||||
m_OpStateCallbackDlg(OpState)
|
m_OpStateCallbackDlg(OpState)
|
||||||
End If
|
End If
|
||||||
ElseIf CurrentMachine.NCType = NCTypes.NUM_AXIUM_APSERVER OrElse CurrentMachine.NCType = NCTypes.NUM_AXIUM_PCTOOLKIT Then
|
|
||||||
Dim OpState As OPStates
|
|
||||||
If nReset_State = 1 Then
|
|
||||||
OpState = OPStates.End
|
|
||||||
ElseIf nStop_State Then
|
|
||||||
OpState = OPStates.Stop
|
|
||||||
ElseIf nStart_State Then
|
|
||||||
OpState = OPStates.Start
|
|
||||||
Else
|
|
||||||
OpState = OPStates.End
|
|
||||||
End If
|
|
||||||
If IsNothing(Map.refLeftPanelVM.SelOPState) OrElse OpState <> Map.refLeftPanelVM.SelOPState.Id Then
|
|
||||||
m_OpStateCallbackDlg(OpState)
|
|
||||||
End If
|
|
||||||
End If
|
End If
|
||||||
' se TPA e non ancora fatto, preparo variabili barra successiva
|
' se TPA e non ancora fatto, preparo variabili barra successiva
|
||||||
If CurrentMachine.NCType = NCTypes.TPA AndAlso CurrentMachine.Flow = FlowTypes.CONTINUOUS AndAlso m_NextBarId = 0 Then
|
If CurrentMachine.NCType = NCTypes.TPA AndAlso CurrentMachine.Flow = FlowTypes.CONTINUOUS AndAlso m_NextBarId = 0 Then
|
||||||
SetNextBarVars()
|
SetNextBarVars()
|
||||||
' se macchina NUM, non sto gia' spedendo e variabile spedizione me lo permette
|
' se macchina NUM, non sto gia' spedendo e variabile spedizione me lo permette
|
||||||
ElseIf (CurrentMachine.NCType = NCTypes.NUM_FLEXIUM AndAlso
|
ElseIf CurrentMachine.NCType = NCTypes.NUM_FLEXIUM AndAlso
|
||||||
Not Num_Flexium.bIsTransferActive AndAlso
|
Not Num_Flexium.bIsTransferActive AndAlso
|
||||||
nISO_Sent = 1) OrElse
|
nISO_Sent = 1 Then
|
||||||
(CurrentMachine.NCType = NCTypes.NUM_AXIUM_APSERVER AndAlso
|
|
||||||
Not Num_Axium_APServer.bIsTransferActive AndAlso
|
|
||||||
nISO_Sent = 1) OrElse
|
|
||||||
(CurrentMachine.NCType = NCTypes.NUM_AXIUM_PCTOOLKIT AndAlso
|
|
||||||
Not Num_Axium_PCToolkit.bIsTransferActive AndAlso
|
|
||||||
nISO_Sent = 1) Then
|
|
||||||
' verifico se c'e' un programma da lanciare
|
' verifico se c'e' un programma da lanciare
|
||||||
SendNextProgram()
|
SendNextProgram()
|
||||||
End If
|
End If
|
||||||
@@ -537,41 +348,31 @@ Public Class MachManaging
|
|||||||
Dim MachGroup As MyMachGroupVM = Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.FirstOrDefault(Function(x) x.Id = nP_Machgroup)
|
Dim MachGroup As MyMachGroupVM = Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.FirstOrDefault(Function(x) x.Id = nP_Machgroup)
|
||||||
' se pezzo = -1 devo dare start a tutti i pezzi del MachGroup
|
' se pezzo = -1 devo dare start a tutti i pezzi del MachGroup
|
||||||
If nP_Part = -1 Then
|
If nP_Part = -1 Then
|
||||||
If Not IsNothing(MachGroup) Then
|
For Each Part In MachGroup.PartVMList
|
||||||
For Each Part In MachGroup.PartVMList
|
' scrivo data start su Db pezzo
|
||||||
' scrivo data start su Db pezzo
|
DbControllers.m_PartController.UpdateStart(nP_Prod, nP_Machgroup, Part.nPartId, dtStart)
|
||||||
DbControllers.m_PartController.UpdateStart(nP_Prod, nP_Machgroup, Part.nPartId, dtStart)
|
DbControllers.m_PartController.UpdateStatus(nP_Prod, nP_Machgroup, Part.nPartId, ItemState.WIP)
|
||||||
DbControllers.m_PartController.UpdateStatus(nP_Prod, nP_Machgroup, Part.nPartId, ItemState.WIP)
|
' scrivo stato start
|
||||||
' scrivo stato start
|
Part.nProduction_State = ItemState.WIP
|
||||||
Part.nProduction_State = ItemState.WIP
|
Part.dtStartTime = dtStart
|
||||||
Part.dtStartTime = dtStart
|
Part.NotifyPropertyChanged(NameOf(Part.nProduction_State))
|
||||||
Part.NotifyPropertyChanged(NameOf(Part.nProduction_State))
|
Next
|
||||||
' scrivo evento inizio pezzo su DB
|
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreatePartStateLog(dtStart, nP_Prod, nP_Machgroup, Part.nPartId, nP_State, DbControllers.SupervisorId))
|
|
||||||
Next
|
|
||||||
End If
|
|
||||||
Else
|
Else
|
||||||
' scrivo data start su Db pezzo
|
' scrivo data start su Db pezzo
|
||||||
DbControllers.m_PartController.UpdateStart(nP_Prod, nP_Machgroup, nP_Part, dtStart)
|
DbControllers.m_PartController.UpdateStart(nP_Prod, nP_Machgroup, nP_Part, dtStart)
|
||||||
DbControllers.m_PartController.UpdateStatus(nP_Prod, nP_Machgroup, nP_Part, ItemState.WIP)
|
DbControllers.m_PartController.UpdateStatus(nP_Prod, nP_Machgroup, nP_Part, ItemState.WIP)
|
||||||
If Not IsNothing(MachGroup) Then
|
' recupero pezzo
|
||||||
' recupero pezzo
|
Dim Part As PartVM = MachGroup.PartVMList.FirstOrDefault(Function(x) x.nPartId = nP_Part)
|
||||||
Dim Part As PartVM = MachGroup.PartVMList.FirstOrDefault(Function(x) x.nPartId = nP_Part)
|
' scrivo stato start
|
||||||
If Not IsNothing(Part) Then
|
Part.nProduction_State = ItemState.WIP
|
||||||
' scrivo stato start
|
Part.dtStartTime = dtStart
|
||||||
Part.nProduction_State = ItemState.WIP
|
Part.NotifyPropertyChanged(NameOf(Part.nProduction_State))
|
||||||
Part.dtStartTime = dtStart
|
|
||||||
Part.NotifyPropertyChanged(NameOf(Part.nProduction_State))
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
' scrivo evento inizio pezzo su DB
|
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreatePartStateLog(dtStart, nP_Prod, nP_Machgroup, nP_Part, nP_State, DbControllers.SupervisorId))
|
|
||||||
End If
|
End If
|
||||||
' azzero variabile per far ripartire macchina
|
' azzero variabile per far ripartire macchina
|
||||||
Select Case CurrentMachine.NCType
|
Select Case CurrentMachine.NCType
|
||||||
Case NCTypes.TPA
|
Case NCTypes.TPA
|
||||||
Tpa.RWVariableManager.WriteVarByName(P_STATE, 0)
|
Tpa.RWVariableManager.WriteVarByName(P_STATE, 0)
|
||||||
Case NCTypes.NUM_FLEXIUM, NCTypes.NUM_AXIUM_APSERVER, NCTypes.NUM_AXIUM_PCTOOLKIT
|
Case NCTypes.NUM_FLEXIUM
|
||||||
StateVariable.sValue = "0"
|
StateVariable.sValue = "0"
|
||||||
End Select
|
End Select
|
||||||
' se nessun pezzo della barra diverso da quello corrente e' in start
|
' se nessun pezzo della barra diverso da quello corrente e' in start
|
||||||
@@ -580,13 +381,9 @@ Public Class MachManaging
|
|||||||
DbControllers.m_MachGroupController.UpdateStart(nP_Prod, nP_Machgroup, dtStart)
|
DbControllers.m_MachGroupController.UpdateStart(nP_Prod, nP_Machgroup, dtStart)
|
||||||
DbControllers.m_MachGroupController.UpdateStatus(nP_Prod, nP_Machgroup, ItemState.WIP)
|
DbControllers.m_MachGroupController.UpdateStatus(nP_Prod, nP_Machgroup, ItemState.WIP)
|
||||||
' scrivo stato start
|
' scrivo stato start
|
||||||
If Not IsNothing(MachGroup) Then
|
MachGroup.MyMachGroupM.SetProductionState(ItemState.WIP)
|
||||||
MachGroup.MyMachGroupM.SetProductionState(ItemState.WIP)
|
MachGroup.dtStartTime = dtStart
|
||||||
MachGroup.dtStartTime = dtStart
|
MachGroup.NotifyPropertyChanged(NameOf(MachGroup.nProduction_State))
|
||||||
MachGroup.NotifyPropertyChanged(NameOf(MachGroup.nProduction_State))
|
|
||||||
End If
|
|
||||||
' scrivo evento inizio MachGroup su DB
|
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreateMachGroupStateLog(dtStart, nP_Prod, nP_Machgroup, nP_State, DbControllers.SupervisorId))
|
|
||||||
End If
|
End If
|
||||||
' attesa per essere sicuro che abbia scritto e riletto variabili
|
' attesa per essere sicuro che abbia scritto e riletto variabili
|
||||||
Threading.Thread.Sleep(300)
|
Threading.Thread.Sleep(300)
|
||||||
@@ -596,50 +393,39 @@ Public Class MachManaging
|
|||||||
Dim MachGroup As MyMachGroupVM = Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.FirstOrDefault(Function(x) x.Id = nP_Machgroup)
|
Dim MachGroup As MyMachGroupVM = Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList.FirstOrDefault(Function(x) x.Id = nP_Machgroup)
|
||||||
' se pezzo = -1 devo dare end a tutti i pezzi del MachGroup
|
' se pezzo = -1 devo dare end a tutti i pezzi del MachGroup
|
||||||
If nP_Part = -1 Then
|
If nP_Part = -1 Then
|
||||||
If Not IsNothing(MachGroup) Then
|
For Each Part In MachGroup.PartVMList
|
||||||
For Each Part In MachGroup.PartVMList
|
' scrivo data end su Db pezzo
|
||||||
' scrivo data end su Db pezzo
|
DbControllers.m_PartController.UpdateEnd(nP_Prod, nP_Machgroup, Part.nPartId, dtEnd)
|
||||||
DbControllers.m_PartController.UpdateEnd(nP_Prod, nP_Machgroup, Part.nPartId, dtEnd)
|
DbControllers.m_PartController.UpdateStatus(nP_Prod, nP_Machgroup, Part.nPartId, ItemState.Produced)
|
||||||
DbControllers.m_PartController.UpdateStatus(nP_Prod, nP_Machgroup, Part.nPartId, ItemState.Produced)
|
' scrivo stato end
|
||||||
' scrivo stato end
|
Part.nProduction_State = ItemState.Produced
|
||||||
Part.nProduction_State = ItemState.Produced
|
Part.dtEndTime = dtEnd
|
||||||
Part.dtEndTime = dtEnd
|
Part.NotifyPropertyChanged(NameOf(Part.nProduction_State))
|
||||||
Part.NotifyPropertyChanged(NameOf(Part.nProduction_State))
|
' resetto stato redo
|
||||||
' resetto stato redo
|
Part.bRedo = False
|
||||||
Part.bRedo = False
|
Next
|
||||||
' se non impostata data start
|
|
||||||
If Part.dtStartTime = DateTime.MinValue Then
|
|
||||||
' scrivo data start su Db pezzo
|
|
||||||
Dim dtStart As DateTime = Part.dtEndTime - TimeSpan.FromSeconds(60)
|
|
||||||
DbControllers.m_PartController.UpdateStart(nP_Prod, nP_Machgroup, Part.nPartId, dtStart)
|
|
||||||
Part.dtStartTime = dtStart
|
|
||||||
End If
|
|
||||||
' scrivo evento fine pezzo su DB
|
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreatePartStateLog(dtEnd, nP_Prod, nP_Machgroup, Part.nPartId, nP_State, DbControllers.SupervisorId))
|
|
||||||
Next
|
|
||||||
End If
|
|
||||||
Else
|
Else
|
||||||
' scrivo data end su Db pezzo
|
' scrivo data end su Db pezzo
|
||||||
DbControllers.m_PartController.UpdateEnd(nP_Prod, nP_Machgroup, nP_Part, dtEnd)
|
DbControllers.m_PartController.UpdateEnd(nP_Prod, nP_Machgroup, nP_Part, dtEnd)
|
||||||
DbControllers.m_PartController.UpdateStatus(nP_Prod, nP_Machgroup, nP_Part, ItemState.Produced)
|
DbControllers.m_PartController.UpdateStatus(nP_Prod, nP_Machgroup, nP_Part, ItemState.Produced)
|
||||||
If Not IsNothing(MachGroup) Then
|
' recupero pezzo
|
||||||
' recupero pezzo
|
Dim Part As PartVM = MachGroup.PartVMList.FirstOrDefault(Function(x) x.nPartId = nP_Part)
|
||||||
Dim Part As PartVM = MachGroup.PartVMList.FirstOrDefault(Function(x) x.nPartId = nP_Part)
|
' scrivo stato end
|
||||||
If Not IsNothing(Part) Then
|
Part.nProduction_State = ItemState.Produced
|
||||||
' scrivo stato end
|
Part.dtEndTime = dtEnd
|
||||||
Part.nProduction_State = ItemState.Produced
|
Part.NotifyPropertyChanged(NameOf(Part.nProduction_State))
|
||||||
Part.dtEndTime = dtEnd
|
' resetto stato redo
|
||||||
Part.NotifyPropertyChanged(NameOf(Part.nProduction_State))
|
Part.bRedo = False
|
||||||
' resetto stato redo
|
|
||||||
Part.bRedo = False
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
' scrivo evento fine pezzo su DB
|
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreatePartStateLog(dtEnd, nP_Prod, nP_Machgroup, nP_Part, nP_State, DbControllers.SupervisorId))
|
|
||||||
End If
|
End If
|
||||||
|
'Select Case CurrentMachine.NCType
|
||||||
|
' Case NCTypes.TPA
|
||||||
|
' Tpa.RWVariableManager.WriteVar(P_STATE, 0)
|
||||||
|
' Case NCTypes.NUM_FLEXIUM
|
||||||
|
' StateVariable.sValue = "0"
|
||||||
|
'End Select
|
||||||
|
|
||||||
' se tutti i pezzi della barra sono in end
|
' se tutti i pezzi della barra sono in end
|
||||||
If Not IsNothing(MachGroup) AndAlso MachGroup.PartVMList.All(Function(x) x.nProduction_State >= 2) Then
|
If MachGroup.PartVMList.All(Function(x) x.nProduction_State >= 2) Then
|
||||||
' scrivo data end su Db barra
|
' scrivo data end su Db barra
|
||||||
DbControllers.m_MachGroupController.UpdateEnd(nP_Prod, nP_Machgroup, dtEnd)
|
DbControllers.m_MachGroupController.UpdateEnd(nP_Prod, nP_Machgroup, dtEnd)
|
||||||
DbControllers.m_MachGroupController.UpdateStatus(nP_Prod, nP_Machgroup, ItemState.Produced)
|
DbControllers.m_MachGroupController.UpdateStatus(nP_Prod, nP_Machgroup, ItemState.Produced)
|
||||||
@@ -647,31 +433,20 @@ Public Class MachManaging
|
|||||||
MachGroup.MyMachGroupM.SetProductionState(ItemState.Produced)
|
MachGroup.MyMachGroupM.SetProductionState(ItemState.Produced)
|
||||||
MachGroup.dtEndTime = dtEnd
|
MachGroup.dtEndTime = dtEnd
|
||||||
MachGroup.NotifyPropertyChanged(NameOf(MachGroup.nProduction_State))
|
MachGroup.NotifyPropertyChanged(NameOf(MachGroup.nProduction_State))
|
||||||
' scrivo evento fine MachGroup su DB
|
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreateMachGroupStateLog(dtEnd, nP_Prod, nP_Machgroup, nP_State, DbControllers.SupervisorId))
|
|
||||||
' azzero tutte le variabilli per iniziare barra successiva
|
' azzero tutte le variabilli per iniziare barra successiva
|
||||||
ProdVariable.sValue = "0"
|
ProdVariable.sValue = "0"
|
||||||
MachGroupVariable.sValue = "0"
|
MachGroupVariable.sValue = "0"
|
||||||
PartVariable.sValue = "0"
|
PartVariable.sValue = "0"
|
||||||
StateVariable.sValue = "0"
|
StateVariable.sValue = "0"
|
||||||
|
' azzero variabile per far ripartire macchina
|
||||||
|
'Select Case CurrentMachine.NCType
|
||||||
|
' 'Case NCTypes.TPA
|
||||||
|
' ' Tpa.RWVariableManager.WriteVar(P_PROD, 0)
|
||||||
|
' ' Tpa.RWVariableManager.WriteVar(P_MACHGROUP, 0)
|
||||||
|
' ' Tpa.RWVariableManager.WriteVar(P_PART, 0)
|
||||||
|
' ' Tpa.RWVariableManager.WriteVar(P_STATE, 0)
|
||||||
|
'End Select
|
||||||
|
|
||||||
' se non impostata data start
|
|
||||||
If MachGroup.dtStartTime = DateTime.MinValue Then
|
|
||||||
' EgtOutLog("Start date not set on Prod " & nP_Prod & " Machgroup " & nP_Machgroup)
|
|
||||||
Dim dtStart As DateTime = MachGroup.dtEndTime - TimeSpan.FromSeconds(60)
|
|
||||||
' provo a recuperare tempo stimato
|
|
||||||
If MachGroup.nCALC_TIME > 0 Then
|
|
||||||
Dim MinPartStart As DateTime = MachGroup.PartVMList.Min(Function(x) x.dtStartTime)
|
|
||||||
If MinPartStart > DateTime.MinValue Then
|
|
||||||
dtStart = New DateTime(Math.Min((MachGroup.dtEndTime - TimeSpan.FromSeconds(MachGroup.nCALC_TIME)).Ticks, MinPartStart.Ticks))
|
|
||||||
Else
|
|
||||||
dtStart = MachGroup.dtEndTime - TimeSpan.FromSeconds(MachGroup.nCALC_TIME)
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
' scrivo data start su Db barra
|
|
||||||
DbControllers.m_MachGroupController.UpdateStart(nP_Prod, nP_Machgroup, dtStart)
|
|
||||||
MachGroup.dtStartTime = dtStart
|
|
||||||
End If
|
|
||||||
' resetto stati di produzione
|
' resetto stati di produzione
|
||||||
MachGroup.ResetProduce()
|
MachGroup.ResetProduce()
|
||||||
' se partenza pezzi uno a uno
|
' se partenza pezzi uno a uno
|
||||||
@@ -685,17 +460,13 @@ Public Class MachManaging
|
|||||||
End If
|
End If
|
||||||
' se pezzo = -1 stampo etichette di tutti i pezzi del MachGroup
|
' se pezzo = -1 stampo etichette di tutti i pezzi del MachGroup
|
||||||
If nP_Part = -1 Then
|
If nP_Part = -1 Then
|
||||||
If Not IsNothing(MachGroup) Then
|
For Each Part In MachGroup.PartVMList
|
||||||
For Each Part In MachGroup.PartVMList
|
Map.refLeftPanelVM.PrintLabel(MachGroup, Part)
|
||||||
Map.refLeftPanelVM.PrintLabel(MachGroup, Part)
|
Next
|
||||||
Next
|
|
||||||
End If
|
|
||||||
Else
|
Else
|
||||||
' recupero pezzo
|
' recupero pezzo
|
||||||
Dim Part As PartVM = MachGroup.PartVMList.FirstOrDefault(Function(x) x.nPartId = nP_Part)
|
Dim Part As PartVM = MachGroup.PartVMList.FirstOrDefault(Function(x) x.nPartId = nP_Part)
|
||||||
If Not IsNothing(Part) Then
|
Map.refLeftPanelVM.PrintLabel(MachGroup, Part)
|
||||||
Map.refLeftPanelVM.PrintLabel(MachGroup, Part)
|
|
||||||
End If
|
|
||||||
End If
|
End If
|
||||||
' attesa per essere sicuro che abbia scritto e riletto variabili
|
' attesa per essere sicuro che abbia scritto e riletto variabili
|
||||||
Threading.Thread.Sleep(300)
|
Threading.Thread.Sleep(300)
|
||||||
@@ -721,13 +492,11 @@ Public Class MachManaging
|
|||||||
For VParIndex = 1 To sVs.Length - 1
|
For VParIndex = 1 To sVs.Length - 1
|
||||||
Dim VPar() As String = sVs(VParIndex).Split("="c)
|
Dim VPar() As String = sVs(VParIndex).Split("="c)
|
||||||
VPar(1) = VPar(1).Trim
|
VPar(1) = VPar(1).Trim
|
||||||
StringToDoubleAdv(VPar(1), dVPars(VParIndex - 1))
|
StringToDouble(VPar(1), dVPars(VParIndex))
|
||||||
Next
|
Next
|
||||||
' li scrivo nel CN
|
' li scrivo nel CN
|
||||||
For Index As Integer = 1 To 10
|
For Index As Integer = 1 To 10
|
||||||
Dim sValue As String = ""
|
Tpa.RWVariableManager.WriteVarByName(VPAR & Index.ToString(), dVPars(Index))
|
||||||
sValue = DoubleToString(dVPars(Index - 1), 2)
|
|
||||||
Tpa.RWVariableManager.WriteVarByName(VPAR & Index.ToString(), sValue)
|
|
||||||
Next
|
Next
|
||||||
m_NextBarId = MyMachGroup.Id
|
m_NextBarId = MyMachGroup.Id
|
||||||
Return True
|
Return True
|
||||||
@@ -741,48 +510,37 @@ Public Class MachManaging
|
|||||||
End Function
|
End Function
|
||||||
|
|
||||||
Private Function SendNextProgram() As Boolean
|
Private Function SendNextProgram() As Boolean
|
||||||
' EgtOutLog("Inizio SendNextProgram")
|
|
||||||
Dim bSent As Boolean = False
|
Dim bSent As Boolean = False
|
||||||
If (CurrentMachine.NCType = NCTypes.TPA AndAlso Not m_bStartPending AndAlso Tpa.opState = MachineOperatingState.Pending) OrElse
|
If (CurrentMachine.NCType = NCTypes.TPA AndAlso Not m_bStartPending AndAlso Tpa.opState = MachineOperatingState.Pending) OrElse
|
||||||
(CurrentMachine.NCType = NCTypes.NUM_FLEXIUM AndAlso Not Num_Flexium.bIsTransferActive) OrElse
|
(CurrentMachine.NCType = NCTypes.NUM_FLEXIUM AndAlso Not Num_Flexium.bIsTransferActive) Then ' Or Tpa.opState = MachineOperatingState.Start) Then
|
||||||
(CurrentMachine.NCType = NCTypes.NUM_AXIUM_APSERVER AndAlso Not Num_Axium_APServer.bIsTransferActive) OrElse
|
|
||||||
(CurrentMachine.NCType = NCTypes.NUM_AXIUM_PCTOOLKIT AndAlso Not Num_Axium_PCToolkit.bIsTransferActive) Then ' Or Tpa.opState = MachineOperatingState.Start) Then
|
|
||||||
' verifico se c'e' un programma da lanciare
|
' verifico se c'e' un programma da lanciare
|
||||||
If Not IsNothing(Map.refProjectVM.SupervisorMachGroupPanelVM) Then
|
If Not IsNothing(Map.refProjectVM.SupervisorMachGroupPanelVM) Then
|
||||||
' EgtOutLog("Start " & DateTime.Now())
|
EgtOutLog("Start " & DateTime.Now())
|
||||||
Dim bMachGroupNotReady As Boolean = False
|
|
||||||
SyncLock m_Lock_SendProgram
|
SyncLock m_Lock_SendProgram
|
||||||
For Each MyMachGroup As MyMachGroupVM In Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList
|
For Each MyMachGroup As MyMachGroupVM In Map.refProjectVM.SupervisorMachGroupPanelVM.MachGroupVMList
|
||||||
' EgtOutLog("Ciclo su name: " & MyMachGroup.Name & " id: " & MyMachGroup.Id)
|
|
||||||
If Not MyMachGroup.bSentToMachine AndAlso (MyMachGroup.dtStartTime = DateTime.MinValue OrElse
|
If Not MyMachGroup.bSentToMachine AndAlso (MyMachGroup.dtStartTime = DateTime.MinValue OrElse
|
||||||
(Map.refSupervisorManagerVM.CurrProd.nType = BWType.WALL AndAlso MyMachGroup.bResetWhileCutting)) Then
|
(Map.refSupervisorManagerVM.CurrProd.nType = BWType.WALL AndAlso MyMachGroup.bResetWhileCutting)) Then
|
||||||
' EgtOutLog(MyMachGroup.Name & " id: " & MyMachGroup.Id & " è da fare")
|
|
||||||
' verifico se ricalcolo finito
|
' verifico se ricalcolo finito
|
||||||
If MyMachGroup.bReadyForMachining AndAlso If(CurrentMachine.NCType = NCTypes.NUM_FLEXIUM Or CurrentMachine.NCType = NCTypes.NUM_AXIUM_APSERVER OrElse CurrentMachine.NCType = NCTypes.NUM_AXIUM_PCTOOLKIT, Not MyMachGroup.bSendingToMachine, True) Then
|
If MyMachGroup.bReadyForMachining AndAlso If(CurrentMachine.NCType = NCTypes.NUM_FLEXIUM, Not MyMachGroup.bSendingToMachine, True) Then
|
||||||
' EgtOutLog(MyMachGroup.Name & " id: " & MyMachGroup.Id & " pronto per essere lavorato")
|
|
||||||
' lo lancio
|
' lo lancio
|
||||||
bSent = SendProgram(MyMachGroup.CnFilePath(), MyMachGroup.Name)
|
bSent = SendProgram(MyMachGroup.CnFilePath(), MyMachGroup.Name)
|
||||||
' EgtOutLog(MyMachGroup.Name & " id: " & MyMachGroup.Id & " mandato " & DateTime.Now() & " " & MyMachGroup.Name & " " & bSent.ToString())
|
EgtOutLog("Mandato " & DateTime.Now() & " " & MyMachGroup.Name & " " & bSent.ToString())
|
||||||
Select Case CurrentMachine.NCType
|
Select Case CurrentMachine.NCType
|
||||||
Case NCTypes.TPA
|
Case NCTypes.TPA
|
||||||
MyMachGroup.SetSentToMachine(bSent)
|
MyMachGroup.SetSentToMachine(bSent)
|
||||||
Case NCTypes.NUM_FLEXIUM, NCTypes.NUM_AXIUM_APSERVER, NCTypes.NUM_AXIUM_PCTOOLKIT
|
Case NCTypes.NUM_FLEXIUM
|
||||||
MyMachGroup.SetSendingToMachine(bSent)
|
MyMachGroup.SetSendingToMachine(bSent)
|
||||||
End Select
|
End Select
|
||||||
m_NextBarId = 0
|
m_NextBarId = 0
|
||||||
Exit For
|
Exit For
|
||||||
Else
|
Else
|
||||||
' programma non ancora pronto, esco per attendere
|
' programma non ancora pronto, esco per attendere
|
||||||
bMachGroupNotReady = True
|
Return False
|
||||||
' EgtOutLog(MyMachGroup.Name & " id: " & MyMachGroup.Id & " non ancora pronto per essere mandato")
|
|
||||||
Exit For
|
|
||||||
'Return False
|
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
End SyncLock
|
End SyncLock
|
||||||
If bMachGroupNotReady Then Return False
|
EgtOutLog("End " & DateTime.Now())
|
||||||
' EgtOutLog("End " & DateTime.Now())
|
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
Return bSent
|
Return bSent
|
||||||
@@ -790,17 +548,10 @@ Public Class MachManaging
|
|||||||
|
|
||||||
Private Sub CommandList_CollectionChanged(sender As Object, e As NotifyCollectionChangedEventArgs)
|
Private Sub CommandList_CollectionChanged(sender As Object, e As NotifyCollectionChangedEventArgs)
|
||||||
If Not IsNothing(e.NewItems) Then
|
If Not IsNothing(e.NewItems) Then
|
||||||
' EgtOutLog("Inizio ciclo esecuzione comandi")
|
For Each Command In e.NewItems
|
||||||
Dim nCommandCount As Integer = e.NewItems.Count
|
ExecuteCommand(DirectCast(Command, ThreadCommand))
|
||||||
For CommandIndex = 0 To nCommandCount - 1
|
m_CommandList.Remove(Command)
|
||||||
Dim Command As ThreadCommand = e.NewItems(CommandIndex)
|
|
||||||
If Command.ProcessingStatus = ThreadCommand.ProcessingStatuses.WAITING Then
|
|
||||||
Command.SetProcessingStatus(ThreadCommand.ProcessingStatuses.PROCESSING)
|
|
||||||
ExecuteCommand(DirectCast(Command, ThreadCommand))
|
|
||||||
Command.SetProcessingStatus(ThreadCommand.ProcessingStatuses.DONE)
|
|
||||||
End If
|
|
||||||
Next
|
Next
|
||||||
' EgtOutLog("Fine ciclo esecuzione di " & nCommandCount & " comandi")
|
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -829,7 +580,6 @@ Public Class MachManaging
|
|||||||
Case CommandTypes.READ_TPA
|
Case CommandTypes.READ_TPA
|
||||||
Tpa.RWVariableManager.RefreshVar(Command.sVariable)
|
Tpa.RWVariableManager.RefreshVar(Command.sVariable)
|
||||||
Case CommandTypes.WRITE
|
Case CommandTypes.WRITE
|
||||||
'EgtOutLog("Write" & Command.sVariable & " " & Command.sVariables(1) & " " & Command.nVariable)
|
|
||||||
WriteVar(Command.sVariable, Command.sVariables(1), Command.nVariable)
|
WriteVar(Command.sVariable, Command.sVariables(1), Command.nVariable)
|
||||||
Case CommandTypes.DELETEALARMS
|
Case CommandTypes.DELETEALARMS
|
||||||
DeleteAlarms()
|
DeleteAlarms()
|
||||||
@@ -842,9 +592,9 @@ Public Class MachManaging
|
|||||||
Num_Flexium.CloseReadList()
|
Num_Flexium.CloseReadList()
|
||||||
Num_Flexium.CloseReadELS()
|
Num_Flexium.CloseReadELS()
|
||||||
Case CommandTypes.MDI
|
Case CommandTypes.MDI
|
||||||
SendMDI(Command.sVariable)
|
Num_Flexium.MDI_Execute(Command.sVariable)
|
||||||
Case CommandTypes.SETCHANNEL
|
Case CommandTypes.SETCHANNEL
|
||||||
SetChannel(Command.nVariable)
|
Num_Flexium.SetChannel(Command.nVariable)
|
||||||
End Select
|
End Select
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -855,9 +605,6 @@ Public Class MachManaging
|
|||||||
m_CN = New TPAComm(Me)
|
m_CN = New TPAComm(Me)
|
||||||
m_bConnected = Tpa.remObject.OnConnect()
|
m_bConnected = Tpa.remObject.OnConnect()
|
||||||
m_ResultCallbackDlg(CommandTypes.CONNECT, CommandStates.OK, ResultTypes.EXECUTED, "")
|
m_ResultCallbackDlg(CommandTypes.CONNECT, CommandStates.OK, ResultTypes.EXECUTED, "")
|
||||||
' imposto stato manuale
|
|
||||||
Dim ManualMode As OPState = Map.refLeftPanelVM.OPModeList.FirstOrDefault(Function(x) x.Id = OPModes.Manual)
|
|
||||||
Map.refLeftPanelVM.SetOPMode(ManualMode)
|
|
||||||
' creo classe di gestione variabili
|
' creo classe di gestione variabili
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
m_ResultCallbackDlg(CommandTypes.CONNECT, CommandStates.ERROR_, ResultTypes.EXECUTED, "Errore: impossibile connettersi!")
|
m_ResultCallbackDlg(CommandTypes.CONNECT, CommandStates.ERROR_, ResultTypes.EXECUTED, "Errore: impossibile connettersi!")
|
||||||
@@ -873,31 +620,6 @@ Public Class MachManaging
|
|||||||
m_ResultCallbackDlg(CommandTypes.CONNECT, CommandStates.ERROR_, ResultTypes.EXECUTED, "Errore: impossibile connettersi!")
|
m_ResultCallbackDlg(CommandTypes.CONNECT, CommandStates.ERROR_, ResultTypes.EXECUTED, "Errore: impossibile connettersi!")
|
||||||
Return
|
Return
|
||||||
End Try
|
End Try
|
||||||
Case NCTypes.NUM_AXIUM_APSERVER
|
|
||||||
Try
|
|
||||||
m_CN = New NUMAxiumComm(Me)
|
|
||||||
Num_Axium_APServer.InitFxObjects()
|
|
||||||
m_ResultCallbackDlg(CommandTypes.CONNECT, CommandStates.OK, ResultTypes.EXECUTED, "")
|
|
||||||
' creo classe di gestione variabili
|
|
||||||
Catch ex As Exception
|
|
||||||
m_ResultCallbackDlg(CommandTypes.CONNECT, CommandStates.ERROR_, ResultTypes.EXECUTED, "Errore: impossibile connettersi!")
|
|
||||||
Return
|
|
||||||
End Try
|
|
||||||
Case NCTypes.NUM_AXIUM_PCTOOLKIT
|
|
||||||
Try
|
|
||||||
m_CN = New NUMAxiumPcToolkitComm(Me)
|
|
||||||
If Num_Axium_PCToolkit.InitConnection() Then
|
|
||||||
Num_Axium_PCToolkit.GetGeneralFunctions()
|
|
||||||
m_ResultCallbackDlg(CommandTypes.CONNECT, CommandStates.OK, ResultTypes.EXECUTED, "")
|
|
||||||
Else
|
|
||||||
m_ResultCallbackDlg(CommandTypes.CONNECT, CommandStates.ERROR_, ResultTypes.EXECUTED, "Errore: impossibile connettersi!")
|
|
||||||
Return
|
|
||||||
End If
|
|
||||||
' creo classe di gestione variabili
|
|
||||||
Catch ex As Exception
|
|
||||||
m_ResultCallbackDlg(CommandTypes.CONNECT, CommandStates.ERROR_, ResultTypes.EXECUTED, "Errore: impossibile connettersi!")
|
|
||||||
Return
|
|
||||||
End Try
|
|
||||||
End Select
|
End Select
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -916,20 +638,6 @@ Public Class MachManaging
|
|||||||
' chiudo classe Num_Flexium
|
' chiudo classe Num_Flexium
|
||||||
Me.OnDispose()
|
Me.OnDispose()
|
||||||
'Num_Flexium.OnDispose()
|
'Num_Flexium.OnDispose()
|
||||||
Case NCTypes.NUM_AXIUM_APSERVER
|
|
||||||
m_bConnected = False
|
|
||||||
Num_Axium_APServer.CloseFxObjects()
|
|
||||||
m_ResultCallbackDlg(CommandTypes.DISCONNECT, CommandStates.OK, ResultTypes.EXECUTED, "")
|
|
||||||
' chiudo classe Num_Flexium
|
|
||||||
Me.OnDispose()
|
|
||||||
'Num_Flexium.OnDispose()
|
|
||||||
Case NCTypes.NUM_AXIUM_PCTOOLKIT
|
|
||||||
m_bConnected = False
|
|
||||||
Num_Axium_PCToolkit.CloseFxObjects()
|
|
||||||
m_ResultCallbackDlg(CommandTypes.DISCONNECT, CommandStates.OK, ResultTypes.EXECUTED, "")
|
|
||||||
' chiudo classe Num_Flexium
|
|
||||||
Me.OnDispose()
|
|
||||||
'Num_Flexium.OnDispose()
|
|
||||||
End Select
|
End Select
|
||||||
' termino thread di comunicazione
|
' termino thread di comunicazione
|
||||||
MachineCommThread.StopThread()
|
MachineCommThread.StopThread()
|
||||||
@@ -939,10 +647,6 @@ Public Class MachManaging
|
|||||||
Select Case CurrentMachine.NCType
|
Select Case CurrentMachine.NCType
|
||||||
Case NCTypes.NUM_FLEXIUM
|
Case NCTypes.NUM_FLEXIUM
|
||||||
Num_Flexium.SetMode(CNMode)
|
Num_Flexium.SetMode(CNMode)
|
||||||
Case NCTypes.NUM_AXIUM_APSERVER
|
|
||||||
Num_Axium_APServer.SetMode(CNMode)
|
|
||||||
Case NCTypes.NUM_AXIUM_PCTOOLKIT
|
|
||||||
Num_Axium_PCToolkit.SetMode(CNMode)
|
|
||||||
End Select
|
End Select
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -982,10 +686,6 @@ Public Class MachManaging
|
|||||||
m_ResultCallbackDlg(CommandTypes.START, If(bOk, CommandStates.OK, CommandStates.ERROR_), ResultTypes.EXECUTED, "")
|
m_ResultCallbackDlg(CommandTypes.START, If(bOk, CommandStates.OK, CommandStates.ERROR_), ResultTypes.EXECUTED, "")
|
||||||
Case NCTypes.NUM_FLEXIUM
|
Case NCTypes.NUM_FLEXIUM
|
||||||
Num_Flexium.Start()
|
Num_Flexium.Start()
|
||||||
Case NCTypes.NUM_AXIUM_APSERVER
|
|
||||||
Num_Axium_APServer.Start()
|
|
||||||
Case NCTypes.NUM_AXIUM_PCTOOLKIT
|
|
||||||
Num_Axium_PCToolkit.Start()
|
|
||||||
End Select
|
End Select
|
||||||
' aggiorno stato bottoni in LeftPanel
|
' aggiorno stato bottoni in LeftPanel
|
||||||
Map.refLeftPanelVM.UpdateButtonIsEnabledState()
|
Map.refLeftPanelVM.UpdateButtonIsEnabledState()
|
||||||
@@ -998,10 +698,6 @@ Public Class MachManaging
|
|||||||
m_ResultCallbackDlg(CommandTypes.STOP_, If(bOk, CommandStates.OK, CommandStates.ERROR_), ResultTypes.EXECUTED, "")
|
m_ResultCallbackDlg(CommandTypes.STOP_, If(bOk, CommandStates.OK, CommandStates.ERROR_), ResultTypes.EXECUTED, "")
|
||||||
Case NCTypes.NUM_FLEXIUM
|
Case NCTypes.NUM_FLEXIUM
|
||||||
Num_Flexium.Stop_()
|
Num_Flexium.Stop_()
|
||||||
Case NCTypes.NUM_AXIUM_APSERVER
|
|
||||||
Num_Axium_APServer.Stop_()
|
|
||||||
Case NCTypes.NUM_AXIUM_PCTOOLKIT
|
|
||||||
Num_Axium_PCToolkit.Stop_()
|
|
||||||
End Select
|
End Select
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -1012,10 +708,6 @@ Public Class MachManaging
|
|||||||
m_ResultCallbackDlg(CommandTypes.RESET, If(bOk, CommandStates.OK, CommandStates.ERROR_), ResultTypes.EXECUTED, "")
|
m_ResultCallbackDlg(CommandTypes.RESET, If(bOk, CommandStates.OK, CommandStates.ERROR_), ResultTypes.EXECUTED, "")
|
||||||
Case NCTypes.NUM_FLEXIUM
|
Case NCTypes.NUM_FLEXIUM
|
||||||
Num_Flexium.Reset()
|
Num_Flexium.Reset()
|
||||||
Case NCTypes.NUM_AXIUM_APSERVER
|
|
||||||
Num_Axium_APServer.Reset()
|
|
||||||
Case NCTypes.NUM_AXIUM_PCTOOLKIT
|
|
||||||
Num_Axium_PCToolkit.Reset()
|
|
||||||
End Select
|
End Select
|
||||||
' aggiorno stato bottoni in LeftPanel
|
' aggiorno stato bottoni in LeftPanel
|
||||||
Map.refLeftPanelVM.UpdateButtonIsEnabledState()
|
Map.refLeftPanelVM.UpdateButtonIsEnabledState()
|
||||||
@@ -1038,10 +730,6 @@ Public Class MachManaging
|
|||||||
m_ResultCallbackDlg(CommandTypes.SETPOINT, If(bOk, CommandStates.OK, CommandStates.ERROR_), ResultTypes.EXECUTED, "")
|
m_ResultCallbackDlg(CommandTypes.SETPOINT, If(bOk, CommandStates.OK, CommandStates.ERROR_), ResultTypes.EXECUTED, "")
|
||||||
Case NCTypes.NUM_FLEXIUM
|
Case NCTypes.NUM_FLEXIUM
|
||||||
Map.refLeftPanelVM.SelOPMode = Map.refLeftPanelVM.OPModeList.Find(Function(x) x.Id = OPModes.Home)
|
Map.refLeftPanelVM.SelOPMode = Map.refLeftPanelVM.OPModeList.Find(Function(x) x.Id = OPModes.Home)
|
||||||
Case NCTypes.NUM_AXIUM_APSERVER
|
|
||||||
Map.refLeftPanelVM.SelOPMode = Map.refLeftPanelVM.OPModeList.Find(Function(x) x.Id = OPModes.Home)
|
|
||||||
Case NCTypes.NUM_AXIUM_PCTOOLKIT
|
|
||||||
Map.refLeftPanelVM.SelOPMode = Map.refLeftPanelVM.OPModeList.Find(Function(x) x.Id = OPModes.Home)
|
|
||||||
End Select
|
End Select
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -1064,20 +752,7 @@ Public Class MachManaging
|
|||||||
Num_Flexium.FileDownload(sFileType, ProgramPath)
|
Num_Flexium.FileDownload(sFileType, ProgramPath)
|
||||||
Num_Flexium.StartTransfer()
|
Num_Flexium.StartTransfer()
|
||||||
Return True
|
Return True
|
||||||
Case NCTypes.NUM_AXIUM_APSERVER
|
|
||||||
Dim sFileType As String = "%" & ProgramId.ToString()
|
|
||||||
Num_Axium_APServer.FileDownload(sFileType, ProgramPath)
|
|
||||||
Num_Axium_APServer.StartTransfer()
|
|
||||||
Return True
|
|
||||||
Case NCTypes.NUM_AXIUM_PCTOOLKIT
|
|
||||||
' EgtOutLog("Pre Download")
|
|
||||||
Dim nFileType As Integer = 0
|
|
||||||
If Integer.TryParse(ProgramId, nFileType) AndAlso nFileType > 0 Then
|
|
||||||
Num_Axium_PCToolkit.FileDownload(nFileType * 10, ProgramPath)
|
|
||||||
End If
|
|
||||||
Return True
|
|
||||||
End Select
|
End Select
|
||||||
Return False
|
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Sub RemoveProgram(ProgramIndex As Integer, ProgramPath As String, ProgramType As String)
|
Public Sub RemoveProgram(ProgramIndex As Integer, ProgramPath As String, ProgramType As String)
|
||||||
@@ -1097,11 +772,6 @@ Public Class MachManaging
|
|||||||
Case NCTypes.NUM_FLEXIUM
|
Case NCTypes.NUM_FLEXIUM
|
||||||
Num_Flexium.FileDelete(ProgramType, ProgramPath)
|
Num_Flexium.FileDelete(ProgramType, ProgramPath)
|
||||||
Num_Flexium.StartTransfer()
|
Num_Flexium.StartTransfer()
|
||||||
Case NCTypes.NUM_AXIUM_APSERVER
|
|
||||||
Num_Axium_APServer.FileDelete(ProgramType, ProgramPath)
|
|
||||||
Num_Axium_APServer.StartTransfer()
|
|
||||||
Case NCTypes.NUM_AXIUM_PCTOOLKIT
|
|
||||||
Num_Axium_PCToolkit.FileDelete(ProgramType, ProgramPath)
|
|
||||||
End Select
|
End Select
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -1121,28 +791,6 @@ Public Class MachManaging
|
|||||||
End Select
|
End Select
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Sub SetChannel(value As Integer)
|
|
||||||
Select Case CurrentMachine.NCType
|
|
||||||
Case NCTypes.NUM_FLEXIUM
|
|
||||||
Num_Flexium.SetChannel(value)
|
|
||||||
Case NCTypes.NUM_AXIUM_APSERVER
|
|
||||||
Num_Axium_APServer.SetChannel(value)
|
|
||||||
Case NCTypes.NUM_AXIUM_PCTOOLKIT
|
|
||||||
Num_Axium_PCToolkit.SetChannel(value)
|
|
||||||
End Select
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Sub SendMDI(value As String)
|
|
||||||
Select Case CurrentMachine.NCType
|
|
||||||
Case NCTypes.NUM_FLEXIUM
|
|
||||||
Num_Flexium.MDI_Execute(value)
|
|
||||||
Case NCTypes.NUM_AXIUM_APSERVER
|
|
||||||
Num_Axium_APServer.MDI_Execute(value)
|
|
||||||
Case NCTypes.NUM_AXIUM_PCTOOLKIT
|
|
||||||
Num_Axium_PCToolkit.MDI_Execute(value)
|
|
||||||
End Select
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Sub WriteVar(Address As String, Value As String, Type As CommVar.Types)
|
Public Sub WriteVar(Address As String, Value As String, Type As CommVar.Types)
|
||||||
Select Case CurrentMachine.NCType
|
Select Case CurrentMachine.NCType
|
||||||
Case NCTypes.TPA
|
Case NCTypes.TPA
|
||||||
@@ -1154,20 +802,6 @@ Public Class MachManaging
|
|||||||
Case CommVar.Types.CN
|
Case CommVar.Types.CN
|
||||||
Num_Flexium.WriteNCVariables(Address, Value)
|
Num_Flexium.WriteNCVariables(Address, Value)
|
||||||
End Select
|
End Select
|
||||||
Case NCTypes.NUM_AXIUM_APSERVER
|
|
||||||
Select Case Type
|
|
||||||
Case CommVar.Types.PLC
|
|
||||||
Num_Axium_APServer.WritePlcVariables(Address, Value)
|
|
||||||
Case CommVar.Types.CN
|
|
||||||
Num_Axium_APServer.WriteNCVariables(Address, Value)
|
|
||||||
End Select
|
|
||||||
Case NCTypes.NUM_AXIUM_PCTOOLKIT
|
|
||||||
Select Case Type
|
|
||||||
Case CommVar.Types.PLC
|
|
||||||
Num_Axium_PCToolkit.WritePlcVariables(Address, Value)
|
|
||||||
Case CommVar.Types.CN
|
|
||||||
Num_Axium_PCToolkit.WriteNCVariables(Address, Value)
|
|
||||||
End Select
|
|
||||||
End Select
|
End Select
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -1179,12 +813,7 @@ Public Class MachManaging
|
|||||||
Return RWVariableManager.InitVar(NewVar)
|
Return RWVariableManager.InitVar(NewVar)
|
||||||
Case NCTypes.NUM_FLEXIUM
|
Case NCTypes.NUM_FLEXIUM
|
||||||
Return NUMFlexiumComm.InitVar(NewVar)
|
Return NUMFlexiumComm.InitVar(NewVar)
|
||||||
Case NCTypes.NUM_AXIUM_APSERVER
|
|
||||||
Return NUMAxiumComm.InitVar(NewVar)
|
|
||||||
Case NCTypes.NUM_AXIUM_PCTOOLKIT
|
|
||||||
Return NUMAxiumPcToolkitComm.InitVar(NewVar)
|
|
||||||
End Select
|
End Select
|
||||||
Return Nothing
|
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Private Shared Function GetPrivateProfileVariable(IpAppName As String, IpKeyName As String, IpFileName As String) As CommVar
|
Private Shared Function GetPrivateProfileVariable(IpAppName As String, IpKeyName As String, IpFileName As String) As CommVar
|
||||||
@@ -1192,7 +821,7 @@ Public Class MachManaging
|
|||||||
EgtUILib.GetPrivateProfileString(IpAppName, IpKeyName, "", sVariable, IpFileName)
|
EgtUILib.GetPrivateProfileString(IpAppName, IpKeyName, "", sVariable, IpFileName)
|
||||||
If String.IsNullOrWhiteSpace(sVariable) Then Return Nothing
|
If String.IsNullOrWhiteSpace(sVariable) Then Return Nothing
|
||||||
Dim sVariableValues() As String = sVariable.Split(","c)
|
Dim sVariableValues() As String = sVariable.Split(","c)
|
||||||
'If Not sVariableValues.Count >= 4 Then Return Nothing
|
If Not sVariableValues.Count >= 4 Then Return Nothing
|
||||||
For Index As Integer = 0 To sVariableValues.Count - 1
|
For Index As Integer = 0 To sVariableValues.Count - 1
|
||||||
sVariableValues(Index) = sVariableValues(Index).Trim()
|
sVariableValues(Index) = sVariableValues(Index).Trim()
|
||||||
Next
|
Next
|
||||||
@@ -1223,56 +852,7 @@ Public Class MachManaging
|
|||||||
Case S_OUTPUTVARIABLES
|
Case S_OUTPUTVARIABLES
|
||||||
Paragraph = Paragraphs.OUTPUT
|
Paragraph = Paragraphs.OUTPUT
|
||||||
End Select
|
End Select
|
||||||
Dim sDescription As String = ""
|
Return New CommVar(sVariableValues(0), sVariableValues(1), ReadType, Type, Paragraph)
|
||||||
If sVariableValues.Length >= 5 Then
|
|
||||||
Dim nDescription As Integer
|
|
||||||
If Integer.TryParse(sVariableValues(4), nDescription) Then
|
|
||||||
Dim MsgParagraph As MsgParagraphs
|
|
||||||
Select Case Paragraph
|
|
||||||
Case Paragraphs.INPUT
|
|
||||||
MsgParagraph = MsgParagraphs.INPUT
|
|
||||||
Case Paragraphs.OUTPUT
|
|
||||||
MsgParagraph = MsgParagraphs.OUTPUT
|
|
||||||
Case Else
|
|
||||||
MsgParagraph = MsgParagraphs.INPUT
|
|
||||||
End Select
|
|
||||||
sDescription = MachMsg(MsgParagraph, nDescription)
|
|
||||||
Else
|
|
||||||
sDescription = sVariableValues(4)
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
Return New CommVar(sVariableValues(0), sVariableValues(1), ReadType, Type, Paragraph, sDescription)
|
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Private Sub ReadPLCMessages()
|
|
||||||
Dim nPlc_Msg(5) As Integer
|
|
||||||
For Index As Integer = 1 To 6
|
|
||||||
Dim nIndex As Integer = Index
|
|
||||||
Dim PLCMessagesVariable As Variable = Map.refMachCommandMessagePanelVM.MainVariablesList.FirstOrDefault(Function(x) x.sName = PLC_MESSAGES & nIndex)
|
|
||||||
If IsNothing(PLCMessagesVariable) OrElse IsNothing(PLCMessagesVariable.sValue) Then Return
|
|
||||||
Dim nTemp As Integer = 0
|
|
||||||
Integer.TryParse(PLCMessagesVariable.sValue, nTemp)
|
|
||||||
Dim Bytes As Byte() = BitConverter.GetBytes(nTemp)
|
|
||||||
Dim NewBytes As Byte() = BitConverter.GetBytes(nTemp)
|
|
||||||
For nBIndex = Bytes.Count - 1 To 0 Step -1
|
|
||||||
NewBytes(Bytes.Count - 1 - nBIndex) = Bytes(nBIndex)
|
|
||||||
Next
|
|
||||||
Dim Res = BitConverter.ToInt32(NewBytes, 0)
|
|
||||||
nPlc_Msg(nIndex - 1) = Res
|
|
||||||
Next
|
|
||||||
Dim BitArray As New BitArray(nPlc_Msg)
|
|
||||||
Dim ErrorList As New List(Of Integer)
|
|
||||||
For BitIndex = 0 To BitArray.Count - 1
|
|
||||||
If BitIndex <= 169 AndAlso BitArray(BitIndex) Then
|
|
||||||
ErrorList.Add(BitIndex)
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
Select Case CurrentMachine.NCType
|
|
||||||
Case NCTypes.NUM_AXIUM_APSERVER
|
|
||||||
Num_Axium_APServer.objErrorHandler_ErrorFromActiveCnc2(ErrorList)
|
|
||||||
Case NCTypes.NUM_AXIUM_PCTOOLKIT
|
|
||||||
Num_Axium_PCToolkit.objErrorHandler_ErrorFromActiveCnc2(ErrorList)
|
|
||||||
End Select
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -4,14 +4,10 @@ Class MachineCommThread
|
|||||||
|
|
||||||
' variabile che ferma il ciclo
|
' variabile che ferma il ciclo
|
||||||
Private Shared m_Stop As Boolean = False
|
Private Shared m_Stop As Boolean = False
|
||||||
Private Shared m_StartTick As Boolean = False
|
|
||||||
|
|
||||||
Friend Shared Sub StopThread()
|
Friend Shared Sub StopThread()
|
||||||
m_Stop = True
|
m_Stop = True
|
||||||
End Sub
|
End Sub
|
||||||
Friend Shared Sub StartTick()
|
|
||||||
m_StartTick = True
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
' variabile in cui ci sono stati inizio e fine pezzo
|
' variabile in cui ci sono stati inizio e fine pezzo
|
||||||
Private Shared sP1VarName As String = "0.FUNM.E81295"
|
Private Shared sP1VarName As String = "0.FUNM.E81295"
|
||||||
@@ -41,9 +37,7 @@ Class MachineCommThread
|
|||||||
|
|
||||||
While Not m_Stop
|
While Not m_Stop
|
||||||
' eseguo ciclo principale che tiene vivo il thread
|
' eseguo ciclo principale che tiene vivo il thread
|
||||||
If m_StartTick Then
|
m_MachManaging.Timer_Tick()
|
||||||
m_MachManaging.Timer_Tick()
|
|
||||||
End If
|
|
||||||
Threading.Thread.Sleep(TimeSpan.FromMilliseconds(1000))
|
Threading.Thread.Sleep(TimeSpan.FromMilliseconds(1000))
|
||||||
End While
|
End While
|
||||||
|
|
||||||
@@ -54,12 +48,6 @@ End Class
|
|||||||
|
|
||||||
Public Class ThreadCommand
|
Public Class ThreadCommand
|
||||||
|
|
||||||
Public Enum ProcessingStatuses
|
|
||||||
WAITING = 1
|
|
||||||
PROCESSING = 2
|
|
||||||
DONE = 3
|
|
||||||
End Enum
|
|
||||||
|
|
||||||
Private m_CommandType As CommandTypes
|
Private m_CommandType As CommandTypes
|
||||||
Public ReadOnly Property CommandType As CommandTypes
|
Public ReadOnly Property CommandType As CommandTypes
|
||||||
Get
|
Get
|
||||||
@@ -101,16 +89,6 @@ Public Class ThreadCommand
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Private m_ProcessingStatus As ProcessingStatuses = ProcessingStatuses.WAITING
|
|
||||||
Public ReadOnly Property ProcessingStatus As ProcessingStatuses
|
|
||||||
Get
|
|
||||||
Return m_ProcessingStatus
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
Friend Sub SetProcessingStatus(value As ProcessingStatuses)
|
|
||||||
m_ProcessingStatus = value
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Protected Sub New()
|
Protected Sub New()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ Public Class RWVariableManager
|
|||||||
|
|
||||||
Public Shared Function InitVar(Name As String, Address As String, Type As CommVar.ReadTypes) As Integer
|
Public Shared Function InitVar(Name As String, Address As String, Type As CommVar.ReadTypes) As Integer
|
||||||
Dim Index As Integer = Array.IndexOf(m_ReadingVars, Nothing)
|
Dim Index As Integer = Array.IndexOf(m_ReadingVars, Nothing)
|
||||||
m_ReadingVars(Index) = New CommVar(Name, Address, Type, CommVar.Types.NULL, CommVar.Paragraphs.NULL, "")
|
m_ReadingVars(Index) = New CommVar(Name, Address, Type, CommVar.Types.NULL, CommVar.Paragraphs.NULL)
|
||||||
Return Index
|
Return Index
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
@@ -101,7 +101,7 @@ Public Class RWVariableManager
|
|||||||
Case S_OUTPUTVARIABLES
|
Case S_OUTPUTVARIABLES
|
||||||
Paragraph = Paragraphs.OUTPUT
|
Paragraph = Paragraphs.OUTPUT
|
||||||
End Select
|
End Select
|
||||||
Return New CommVar(sVariableValues(0), sVariableValues(1), Type, CommVar.Types.NULL, Paragraph, "")
|
Return New CommVar(sVariableValues(0), sVariableValues(1), Type, CommVar.Types.NULL, Paragraph)
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Sub RefreshVar(Name As String)
|
Public Sub RefreshVar(Name As String)
|
||||||
@@ -148,7 +148,7 @@ Public Class RWVariableManager
|
|||||||
Public Sub ReadVar(Name As String, ByRef Value As Double)
|
Public Sub ReadVar(Name As String, ByRef Value As Double)
|
||||||
Dim nIndex As Integer = GetIndexFromName(Name)
|
Dim nIndex As Integer = GetIndexFromName(Name)
|
||||||
If nIndex >= 0 Then
|
If nIndex >= 0 Then
|
||||||
Value = StringToDoubleAdv(m_ReadedVars(nIndex), 5)
|
Value = StringToDouble(m_ReadedVars(nIndex), 5)
|
||||||
Else
|
Else
|
||||||
Value = -999999999
|
Value = -999999999
|
||||||
End If
|
End If
|
||||||
@@ -266,7 +266,6 @@ Public Class CommVar
|
|||||||
m_sName = value
|
m_sName = value
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Private m_sAddress As String
|
Private m_sAddress As String
|
||||||
Public Property sAddress As String
|
Public Property sAddress As String
|
||||||
Get
|
Get
|
||||||
@@ -276,14 +275,12 @@ Public Class CommVar
|
|||||||
m_sAddress = value
|
m_sAddress = value
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Private m_nReadType As ReadTypes
|
Private m_nReadType As ReadTypes
|
||||||
Public ReadOnly Property nReadType As ReadTypes
|
Public ReadOnly Property nReadType As ReadTypes
|
||||||
Get
|
Get
|
||||||
Return m_nReadType
|
Return m_nReadType
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Private m_nType As Types
|
Private m_nType As Types
|
||||||
Public ReadOnly Property nType As Types
|
Public ReadOnly Property nType As Types
|
||||||
Get
|
Get
|
||||||
@@ -301,21 +298,9 @@ Public Class CommVar
|
|||||||
Dim bNewValue As Boolean = m_sValue <> Value
|
Dim bNewValue As Boolean = m_sValue <> Value
|
||||||
m_sValue = Value
|
m_sValue = Value
|
||||||
m_bReaded = True
|
m_bReaded = True
|
||||||
If CurrentMachine.NCType = NCTypes.NUM_FLEXIUM AndAlso (sName = MACHINDEX OrElse sName = TOOLINDEX OrElse sName = TOOLINDEX2) Then
|
|
||||||
Map.refLeftPanelVM.NotifyPropertyChanged(NameOf(Map.refLeftPanelVM.sE80000))
|
|
||||||
Map.refLeftPanelVM.NotifyPropertyChanged(NameOf(Map.refLeftPanelVM.sE80001))
|
|
||||||
Map.refLeftPanelVM.NotifyPropertyChanged(NameOf(Map.refLeftPanelVM.sE80002))
|
|
||||||
End If
|
|
||||||
If bNewValue Then RaiseEvent NewValue(Me, New NewValueEventArgs(Value))
|
If bNewValue Then RaiseEvent NewValue(Me, New NewValueEventArgs(Value))
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private m_sDescription As String
|
|
||||||
Public ReadOnly Property sDescription As String
|
|
||||||
Get
|
|
||||||
Return m_sDescription
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Private m_bReaded As Boolean
|
Private m_bReaded As Boolean
|
||||||
Public ReadOnly Property bReaded As Boolean
|
Public ReadOnly Property bReaded As Boolean
|
||||||
Get
|
Get
|
||||||
@@ -334,13 +319,12 @@ Public Class CommVar
|
|||||||
' indice usato in liste lettura NUM
|
' indice usato in liste lettura NUM
|
||||||
Friend Index As Integer = -1
|
Friend Index As Integer = -1
|
||||||
|
|
||||||
Sub New(Name As String, Address As String, ReadType As ReadTypes, Type As Types, Paragraph As Paragraphs, sDescription As String)
|
Sub New(Name As String, Address As String, ReadType As ReadTypes, Type As Types, Paragraph As Paragraphs)
|
||||||
m_sName = Name
|
m_sName = Name
|
||||||
m_sAddress = Address
|
m_sAddress = Address
|
||||||
m_nReadType = ReadType
|
m_nReadType = ReadType
|
||||||
m_nType = Type
|
m_nType = Type
|
||||||
m_Paragraph = Paragraph
|
m_Paragraph = Paragraph
|
||||||
m_sDescription = sDescription
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Friend Sub ResetReading()
|
Friend Sub ResetReading()
|
||||||
|
|||||||
@@ -1,134 +0,0 @@
|
|||||||
<UserControl x:Class="MachineLogPageV"
|
|
||||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
||||||
xmlns:EgtBEAMWALL="clr-namespace:EgtBEAMWALL.Supervisor"
|
|
||||||
xmlns:EgtBEAMWALLCORE="clr-namespace:EgtBEAMWALL.Core;assembly=EgtBEAMWALL.Core">
|
|
||||||
<Grid>
|
|
||||||
<Grid.RowDefinitions>
|
|
||||||
<RowDefinition Height="Auto"/>
|
|
||||||
<RowDefinition Height="1*"/>
|
|
||||||
</Grid.RowDefinitions>
|
|
||||||
|
|
||||||
<Grid Visibility="Collapsed">
|
|
||||||
<Grid.ColumnDefinitions>
|
|
||||||
<ColumnDefinition Width="1*"/>
|
|
||||||
<ColumnDefinition Width="Auto"/>
|
|
||||||
</Grid.ColumnDefinitions>
|
|
||||||
<!--<ComboBox ItemsSource="MachLogTypeList"
|
|
||||||
SelectedItem="SelMachLogType"/>-->
|
|
||||||
<Button Grid.Column="1"
|
|
||||||
Command="{Binding Refresh_Command}"
|
|
||||||
Margin="2.5,0,5,0"
|
|
||||||
Style="{StaticResource ToolBar_Button}">
|
|
||||||
<Image Source="/Resources/MDIPage/Send.png" Stretch="Uniform"/>
|
|
||||||
</Button>
|
|
||||||
</Grid>
|
|
||||||
|
|
||||||
<StackPanel Orientation="Horizontal" Height="30">
|
|
||||||
<ComboBox ItemsSource="{Binding EntityTypeList}"
|
|
||||||
SelectedIndex="{Binding SelEntityType}"
|
|
||||||
Width="70"
|
|
||||||
Margin="0,0,2.5,0"
|
|
||||||
Style="{StaticResource PartParam_ComboBox}"/>
|
|
||||||
<ComboBox ItemsSource="{Binding PartEventTypeList}"
|
|
||||||
SelectedIndex="{Binding SelPartEventType}"
|
|
||||||
Width="70"
|
|
||||||
Margin="0,0,2.5,0"
|
|
||||||
Style="{StaticResource PartParam_ComboBox}"/>
|
|
||||||
<!--<TextBox Text="{Binding MaxRowNumber}"/>-->
|
|
||||||
<Button Grid.Column="1"
|
|
||||||
Command="{Binding Refresh_Command}"
|
|
||||||
Margin="2.5,0,5,0"
|
|
||||||
Style="{StaticResource ToolBar_Button}">
|
|
||||||
<Image Source="/Resources/MDIPage/Send.png" Stretch="Uniform"/>
|
|
||||||
</Button>
|
|
||||||
</StackPanel>
|
|
||||||
|
|
||||||
<EgtBEAMWALLCORE:EgtDataGrid ItemsSource="{Binding MachineLogList}"
|
|
||||||
Grid.Row="1"
|
|
||||||
AutoGenerateColumns="False"
|
|
||||||
CanUserDeleteRows="False"
|
|
||||||
CanUserResizeRows="False"
|
|
||||||
SelectionMode="Single"
|
|
||||||
ScrollViewer.CanContentScroll="True"
|
|
||||||
ScrollViewer.VerticalScrollBarVisibility="Auto"
|
|
||||||
ScrollViewer.HorizontalScrollBarVisibility="Auto"
|
|
||||||
Margin="0,0,0,5"
|
|
||||||
BindingColumns="{Binding MachineLogColumns}">
|
|
||||||
<DataGrid.Resources>
|
|
||||||
<!-- Data/ora -->
|
|
||||||
<DataGridTextColumn x:Key="colDATETIME" Binding="{Binding sEventDateTime}"
|
|
||||||
SortMemberPath="sEventTick">
|
|
||||||
<DataGridTextColumn.HeaderTemplate>
|
|
||||||
<DataTemplate>
|
|
||||||
<TextBlock Text="{Binding Path=DataContext.EventDateTime_Msg,
|
|
||||||
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:MachineLogPageV}}}"/>
|
|
||||||
</DataTemplate>
|
|
||||||
</DataGridTextColumn.HeaderTemplate>
|
|
||||||
</DataGridTextColumn>
|
|
||||||
<!-- Type -->
|
|
||||||
<DataGridTextColumn x:Key="colTYPE" Binding="{Binding sEventType}">
|
|
||||||
<DataGridTextColumn.HeaderTemplate>
|
|
||||||
<DataTemplate>
|
|
||||||
<TextBlock Text="{Binding Path=DataContext.EventType_Msg,
|
|
||||||
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:MachineLogPageV}}}"/>
|
|
||||||
</DataTemplate>
|
|
||||||
</DataGridTextColumn.HeaderTemplate>
|
|
||||||
</DataGridTextColumn>
|
|
||||||
<!-- Descrizione -->
|
|
||||||
<DataGridTextColumn x:Key="colDESCRIPTION" Binding="{Binding sEventValue}">
|
|
||||||
<DataGridTextColumn.HeaderTemplate>
|
|
||||||
<DataTemplate>
|
|
||||||
<TextBlock Text="{Binding Path=DataContext.EventValue_Msg,
|
|
||||||
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:MachineLogPageV}}}"/>
|
|
||||||
</DataTemplate>
|
|
||||||
</DataGridTextColumn.HeaderTemplate>
|
|
||||||
</DataGridTextColumn>
|
|
||||||
<!-- SupervisorId -->
|
|
||||||
<DataGridTextColumn x:Key="colSUPERVISORID" Binding="{Binding SupervisorId}">
|
|
||||||
<DataGridTextColumn.HeaderTemplate>
|
|
||||||
<DataTemplate>
|
|
||||||
<TextBlock Text="{Binding Path=DataContext.SupervisorId_Msg,
|
|
||||||
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:MachineLogPageV}}}"/>
|
|
||||||
</DataTemplate>
|
|
||||||
</DataGridTextColumn.HeaderTemplate>
|
|
||||||
</DataGridTextColumn>
|
|
||||||
<DataGridTextColumn x:Key="colPROD" Binding="{Binding ProdId}">
|
|
||||||
<DataGridTextColumn.HeaderTemplate>
|
|
||||||
<DataTemplate>
|
|
||||||
<TextBlock Text="{Binding Path=DataContext.ProdId_Msg,
|
|
||||||
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:MachineLogPageV}}}"/>
|
|
||||||
</DataTemplate>
|
|
||||||
</DataGridTextColumn.HeaderTemplate>
|
|
||||||
</DataGridTextColumn>
|
|
||||||
<DataGridTextColumn x:Key="colMACHGROUP" Binding="{Binding MachGroupId}">
|
|
||||||
<DataGridTextColumn.HeaderTemplate>
|
|
||||||
<DataTemplate>
|
|
||||||
<TextBlock Text="{Binding Path=DataContext.MachGroupId_Msg,
|
|
||||||
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:MachineLogPageV}}}"/>
|
|
||||||
</DataTemplate>
|
|
||||||
</DataGridTextColumn.HeaderTemplate>
|
|
||||||
</DataGridTextColumn>
|
|
||||||
<DataGridTextColumn x:Key="colPART" Binding="{Binding PartId}">
|
|
||||||
<DataGridTextColumn.HeaderTemplate>
|
|
||||||
<DataTemplate>
|
|
||||||
<TextBlock Text="{Binding Path=DataContext.PartId_Msg,
|
|
||||||
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:MachineLogPageV}}}"/>
|
|
||||||
</DataTemplate>
|
|
||||||
</DataGridTextColumn.HeaderTemplate>
|
|
||||||
</DataGridTextColumn>
|
|
||||||
<DataGridTextColumn x:Key="colSTATUS" Binding="{Binding Status}">
|
|
||||||
<DataGridTextColumn.HeaderTemplate>
|
|
||||||
<DataTemplate>
|
|
||||||
<TextBlock Text="{Binding Path=DataContext.Status_Msg,
|
|
||||||
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:MachineLogPageV}}}"/>
|
|
||||||
</DataTemplate>
|
|
||||||
</DataGridTextColumn.HeaderTemplate>
|
|
||||||
</DataGridTextColumn>
|
|
||||||
</DataGrid.Resources>
|
|
||||||
|
|
||||||
</EgtBEAMWALLCORE:EgtDataGrid>
|
|
||||||
|
|
||||||
</Grid>
|
|
||||||
|
|
||||||
</UserControl>
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user