ATEZ EZA, Vermerke

This commit is contained in:
2026-04-08 13:45:46 +02:00
parent a981d01414
commit e545a16bfd
4 changed files with 158 additions and 41 deletions

View File

@@ -146,6 +146,14 @@ Public Class frmATEZ_EZA
If btnAgg_Unit.Tag = 1 Then AdditionalSettings.Add("unit_type")
Dim combineItemsPriorityDocumentType As String = ""
If btnPrio_CommInv.Tag = 1 Then combineItemsPriorityDocumentType = "commercial_invoice"
If btnPrio_eFatura.Tag = 1 Then combineItemsPriorityDocumentType = "invoice"
If btnPrio_Export.Tag = 1 Then combineItemsPriorityDocumentType = "tr_export_declaration"
If btnPrio_ftz.Tag = 1 Then combineItemsPriorityDocumentType = "ftz"
'If btnPrio_CommInv.Tag = 1 Then combineItemsPriorityDocumentType = "packing_list"
Dim ATEZ_RH_EZA As New VERAG_PROG_ALLGEMEIN.cRelayHub.cRelayHubJobOrderRequest With {
.referenceNo = ioReference,
.outputApplication = "dakosy/sftp/verg",'.outputApplication = "dakosy/sftp/vera",
@@ -183,7 +191,8 @@ Public Class frmATEZ_EZA
}
},
.additionalSettings = New cRelayHubAdditionalSettings With {
.combineOptions = AdditionalSettings
.combineOptions = AdditionalSettings,
.combineItemsPriorityDocumentType = combineItemsPriorityDocumentType
}
}
@@ -801,6 +810,22 @@ Public Class frmATEZ_EZA
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles btnAgg_Tnr.Click, btnAgg_desc.Click, btnAgg_Origin.Click, btnAgg_Unit.Click
If sender.Tag = 0 Then
sender.Tag = 1
sender.BackColor = Color.DeepSkyBlue
Else
sender.Tag = 0
sender.BackColor = SystemColors.Control
End If
End Sub
Private Sub Buttonprio_Click(sender As Object, e As EventArgs) Handles btnPrio_CommInv.Click, btnPrio_ftz.Click, btnPrio_eFatura.Click, btnPrio_Export.Click
If sender Is Not btnPrio_CommInv.Tag Then btnPrio_CommInv.Tag = 0 : btnPrio_CommInv.BackColor = SystemColors.Control
If sender Is Not btnPrio_eFatura.Tag Then btnPrio_eFatura.Tag = 0 : btnPrio_eFatura.BackColor = SystemColors.Control
If sender Is Not btnPrio_Export.Tag Then btnPrio_Export.Tag = 0 : btnPrio_Export.BackColor = SystemColors.Control
If sender Is Not btnPrio_ftz.Tag Then btnPrio_ftz.Tag = 0 : btnPrio_ftz.BackColor = SystemColors.Control
If sender.Tag = 0 Then
sender.Tag = 1
sender.BackColor = Color.DeepSkyBlue