iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAABGdBTUEAALGPC/xhBQAAAHtJREFUSEvt
@@ -2059,6 +2074,9 @@
174, 17
+
+ 404, 17
+
596, 17
diff --git a/Aviso/frmSendungsdetailsNEU.vb b/Aviso/frmSendungsdetailsNEU.vb
index 5cc16d8..335955a 100644
--- a/Aviso/frmSendungsdetailsNEU.vb
+++ b/Aviso/frmSendungsdetailsNEU.vb
@@ -6638,4 +6638,82 @@ Public Class frmSendungsdetailsNEU
f.ShowDialog(Me)
initAnhang()
End Sub
+
+ Private Sub CMRBestätigungToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles CMRBestätigungToolStripMenuItem.Click
+
+
+ Try
+ Dim outl As New Outlook.Application
+ Dim Mail As Microsoft.Office.Interop.Outlook.MailItem
+ Mail = outl.CreateItem(0)
+
+ Mail.Subject &= AVISO.LKW_Nr & " Fiskal CMR/packing List"
+
+ Dim firstTextHTMLDE = ""
+ firstTextHTMLDE &= "Sehr geehrte Damen und Herren,
"
+ firstTextHTMLDE &= "
"
+ firstTextHTMLDE &= "o.g. LKW ist bei uns zur Zollabfertigung eingetroffen.
"
+ firstTextHTMLDE &= "Um die Ware im Zollverfahren 4200 (Fiskal) abfertigen zu können, ist es notwendig dass Sie beigefügten CMR im Feld 22 gegenstempeln und unterzeichnen.
"
+ firstTextHTMLDE &= "Es ist von äußerster Wichtigkeit, dass Sie den angefügten CMR verwenden. Bitte verwenden Sie keinen anderen CMR.
"
+
+ firstTextHTMLDE &= "Alternativ können Sie uns auch eine Packliste mit Original-Stempel und Signatur per Mail übersenden.
"
+ firstTextHTMLDE &= " Auf der Packliste müssen folgende Merkmale vorhanden sein:
"
+ firstTextHTMLDE &= "
"
+ firstTextHTMLDE &= "Versender mit kompletter Anschrift
"
+ firstTextHTMLDE &= "Empfänger mit kompletter Anschrift
"
+ firstTextHTMLDE &= "Warenbezeichnung
"
+ firstTextHTMLDE &= "Packstück + Gewicht
"
+ firstTextHTMLDE &= "Stempel + Signatur
"
+
+ '-----------------------------------------------
+
+ firstTextHTMLDE &= "Dear Sir or Madam,
"
+ firstTextHTMLDE &= "
"
+ firstTextHTMLDE &= "The above-mentioned lorry has arrived at our premises for customs clearance.
"
+ firstTextHTMLDE &= "In order to be able to clear the goods in customs procedure 4200 (fiscal), it is necessary that you stamp and sign the attached CMR in field 22.
"
+ firstTextHTMLDE &= "It is of utmost importance that you use the attached CMR. Please do not use any other CMR.
"
+
+ firstTextHTMLDE &= "Alternatively, you can send us a packing list with original stamp and signature by mail.
"
+ firstTextHTMLDE &= " The following features must be present on the packing list:
"
+ firstTextHTMLDE &= "
"
+ firstTextHTMLDE &= "Consignor with complete address
"
+ firstTextHTMLDE &= "Consignee with complete address
"
+ firstTextHTMLDE &= "Description of goods
"
+ firstTextHTMLDE &= "Package + weight
"
+ firstTextHTMLDE &= "Stamp + signature
"
+
+ '-----------------------------------------------
+
+ firstTextHTMLDE &= "Sayin Bay veya Bayan,
"
+ firstTextHTMLDE &= "
"
+ firstTextHTMLDE &= "Yukarida belirtilen arac gümrük islemleri için bize varis yapmistir.
"
+ firstTextHTMLDE &= "Mallarin 4200 (Fiskal) gümrük prosedürüne göre gümrükten çekilebilmesi için, ekteki CMR'yi 22 hanesinin imzlayip ve kaseleyip bize gönderici tarafindan posta yolu ile iletilmesi gerekiyor.
"
+ firstTextHTMLDE &= "Ekteki CMR'yi kullanmaniz büyük önem tasimaktadir. Lütfen baska bir CMR kullanmayin.
"
+
+ firstTextHTMLDE &= "Alternatif olarak, bize posta yoluyla orijinal kaşe ve imzalı bir çeki listesi gönderebilirsiniz.
"
+ firstTextHTMLDE &= "Çeki listesinde aşağıdaki özellikler bulunmalıdır:
"
+ firstTextHTMLDE &= "
"
+ firstTextHTMLDE &= "Tam adresli gönderici
"
+ firstTextHTMLDE &= "Tam adresli alıcı
"
+ firstTextHTMLDE &= "Malların tanımı
"
+ firstTextHTMLDE &= "Paket + ağırlık
"
+ firstTextHTMLDE &= "Damga + imza
"
+
+
+
+ Mail.HTMLBody = "" & firstTextHTMLDE & SDL.cFakturierung.getSignature("DE") & "
"
+
+
+ AvisoStatusFunctions.insertSendungsVermerk(SENDUNG_LIST(CURRENT_INDEX).tblSnd_SendungID, AvisoId, "Absenderbestätigung angefordert", 76)
+
+ Mail.Display()
+
+
+ Catch ex As Exception
+ VERAG_PROG_ALLGEMEIN.cErrorHandler.ERR(ex.Message, ex.StackTrace, System.Reflection.MethodInfo.GetCurrentMethod.Name,, "Fehler beim Öffnen der Mail!")
+ End Try
+
+ End Sub
+
+
End Class