121 lines
4.4 KiB
VB.net
121 lines
4.4 KiB
VB.net
Public Class cAuftraege
|
|
Property atr_id As Integer
|
|
Property atr_frachtpos As String = ""
|
|
Property atr_datum As Date
|
|
Property atr_speditionsbuchNr As Integer = -1
|
|
Property atr_frachtf_id As Integer = -1
|
|
Property atr_ladest_id As Integer = -1
|
|
Property atr_entladest_id As Integer = -1
|
|
Property atr_auftr_id As Integer = -1
|
|
Property atr_trans_id As Integer = -1
|
|
Property atr_altladest_id As Integer = -1
|
|
|
|
Property atr_frachtf_firma As String = ""
|
|
Property atr_frachtf_str As String = ""
|
|
Property atr_frachtf_strnr As String = ""
|
|
Property atr_frachtf_land As String = ""
|
|
Property atr_frachtf_plz As String = ""
|
|
Property atr_frachtf_ort As String = ""
|
|
Property atr_frachtf_anspr As String = ""
|
|
|
|
Property atr_ladest_firma As String = ""
|
|
Property atr_ladest_str As String = ""
|
|
Property atr_ladest_strnr As String = ""
|
|
Property atr_ladest_land As String = ""
|
|
Property atr_ladest_plz As String = ""
|
|
Property atr_ladest_ort As String = ""
|
|
Property atr_ladest_anspr As String = ""
|
|
Property atr_ladest_termin As Boolean = False
|
|
Property atr_ladest_terminDat As String = ""
|
|
Property atr_ladest_terminVon As String = ""
|
|
Property atr_ladest_terminBis As String = ""
|
|
Property atr_ladest_refNr As String = ""
|
|
Property atr_ladest_isRefNr As String = ""
|
|
|
|
Property atr_hasaltladest As Boolean = False
|
|
Property atr_altladest_firma As String = ""
|
|
Property atr_altladest_str As String = ""
|
|
Property atr_altladest_strnr As String = ""
|
|
Property atr_altladest_land As String = ""
|
|
Property atr_altladest_plz As String = ""
|
|
Property atr_altladest_ort As String = ""
|
|
Property atr_altladest_anspr As String = ""
|
|
|
|
Property atr_entladest_firma As String = ""
|
|
Property atr_entladest_str As String = ""
|
|
Property atr_entladest_strnr As String = ""
|
|
Property atr_entladest_land As String = ""
|
|
Property atr_entladest_plz As String = ""
|
|
Property atr_entladest_ort As String = ""
|
|
Property atr_entladest_anspr As String = ""
|
|
Property atr_entladest_termin As Boolean = False
|
|
Property atr_entladest_terminDat As String = ""
|
|
Property atr_entladest_terminVon As String = ""
|
|
Property atr_entladest_terminBis As String = ""
|
|
|
|
Property atr_trans_firma As String = ""
|
|
Property atr_trans_str As String = ""
|
|
Property atr_trans_strnr As String = ""
|
|
Property atr_trans_land As String = ""
|
|
Property atr_trans_plz As String = ""
|
|
Property atr_trans_ort As String = ""
|
|
Property atr_trans_anspr As String = ""
|
|
Property atr_lkwKz As String = ""
|
|
Property atr_lkwArt As String = ""
|
|
Property atr_lkwNutzlast As String = ""
|
|
Property atr_anhKz As String = ""
|
|
Property atr_anhNutzlast As String = ""
|
|
|
|
Property atr_auftr_firma As String = ""
|
|
Property atr_auftr_str As String = ""
|
|
Property atr_auftr_strnr As String = ""
|
|
Property atr_auftr_land As String = ""
|
|
Property atr_auftr_plz As String = ""
|
|
Property atr_auftr_ort As String = ""
|
|
Property atr_auftr_anspr As String = ""
|
|
|
|
Property atr_bemerkung As String = ""
|
|
Property atr_frachtkosten As String = ""
|
|
Property atr_gefahrengut As String = ""
|
|
Property atr_verzollungsadresse As String = ""
|
|
Property atr_frachtIsTrans As Boolean = False
|
|
|
|
Property atr_abliefernachweis As Boolean = False
|
|
Property atr_ladungen As List(Of cLadungen)
|
|
|
|
Property cmr_ausl_land As String = ""
|
|
Property cmr_ausl_ort As String = ""
|
|
Property cmr_beigefDok As String = ""
|
|
Property cmr_anwAbs As String = ""
|
|
Property cmr_rueckerst As String = ""
|
|
Property cmr_frZahlanwFrei As String = ""
|
|
Property cmr_frZahlanwUnfrei As String = ""
|
|
Property cmr_besVereinb As String = ""
|
|
Property cmr_ausgefIn As String = ""
|
|
Property cmr_uebergabe_land As String = ""
|
|
Property cmr_uebergabe_ort As String = ""
|
|
Property cmr_uebergabe_datum As String = ""
|
|
Property cmr_vorbehFrachtf As String = ""
|
|
|
|
Property bh_mon As String = ""
|
|
Property bh_unternkennz As List(Of cUnternKennz)
|
|
|
|
Property bh_vermerke As String = ""
|
|
Property atr_notes As String = ""
|
|
Property bh_rechnungen As List(Of cBuchhaltungRechnung)
|
|
|
|
|
|
|
|
End Class
|
|
|
|
Public Class cLadungen
|
|
Property lad_id As Integer
|
|
Property lad_ZeNr As String
|
|
Property lad_Anzahl As String
|
|
Property lad_Art As String
|
|
Property lad_Bezeichnung As String
|
|
Property lad_StatNr As String
|
|
Property lad_BruttoKg As String
|
|
Property lad_Umfang As String
|
|
End Class
|