Hallo zusammen,
ich habe von einem Kollegen vor einiger Zeit den Bereich Notes in der Firma übernommen und wurde damit ins eiskalte Wasser geworfen. Vieles konnte ich schon lösen, aber jetzt bin ich bei einem Problem an meine Grenzen gestoßen. Hoffe Ihr könnt mir helfen.
Ich habe ein "Hauptfenster", von dort wird eine Dialogbox ausgewählt, in der der User in einer Ansicht eine Auswahl treffen kann. Bisher wurde dort nur Text ausgewählt und an das Hauptfenster zurückgeschreiben. Jetzt habe ich die Ansicht um das Feld fdArtikelPreis erweitert. Bei Auswahl soll jetzt dieser Preis ebenfalls zurück ins Hauptfenster geschreiben werden... Aber irgendwie komme ich mit dem vorhandenen Quelltext nicht klar. Könnt Ihr mir da irgendwie helfen?! Bin recht am verzweifeln...
Function ArtikelZugriff(sZeile As String, sKategorie As String) As Integer
Dim ws As New NotesUiWorkspace
Dim session As New NotesSession
Dim db As NotesDatabase
Dim note As NotesDocument
Dim uiNote As NotesUIDocument
Dim uiDoc As NotesUIDocument
Dim xArray As Variant
Dim sText As String
Dim sView As String
Dim oView As NotesView
Dim notesDoc As NotesDocument
Dim notesDoc2 As NotesDocument
Dim sArtText As String
Dim rtitem As NotesRichTextItem
Dim rtitem2 As NotesRichTextItem
Dim nItem As Notesitem
Dim newdoc As NotesDocument
Dim sField As String
Dim item As NotesItem
Set UiNote = ws.CurrentDocument
sFirma = UiNote.FieldGetText("fdProduktFirma")
If sFirma = "" Then
sFirma = "ZAPF"
End If
sField = "fdArtikel_" + sZeile
sView = "viwArtikel"
If sFirma = "ZAPF" Then
sView = "viwArtikelZ"
Else
sView = "viwArtikelK"
End If
ArtikelZugriff = 0
Set db = session.CurrentDatabase
Set oView = db.GetView("viwArt")
If sView = "viwArtikelZ" Or sView = "viwArtikelK" Then
xArray = ws.picklistStrings(PICKLIST_CUSTOM, False, db.server, db.FilePath, sView, _
sKategorie, "Bitte wählen Sie einen Artikel aus", 5, "")
Else
xArray = ws.picklistStrings(PICKLIST_CUSTOM, False, db.server, db.FilePath, sView, _
sKategorie, "Bitte wählen Sie einen Artikel aus", 5, sFirma)
End If
If Isempty(xArray) Then Exit Function
Set NotesDoc = oView.GetDocumentByKey(xArray(0))
If Notesdoc Is Nothing Then Exit Function
Set item = Notesdoc.GetFirstItem("fdArtikelHinweis")
Set rtitem = Notesdoc.GetFirstItem("fdArtikelTextRTF")
Set rtitem2 = Notesdoc.GetFirstItem("fdTechBeschreibung")
If rtitem2.text <> "" Then
Call rtitem.AddNewLine(1)
Call rtitem.AppendRTItem(rtitem2)
End If
Set NotesDoc2 = db.GetProfileDocument("Artikelauswahl", session.CommonUserName)
Call NotesDoc2.removeItem("fdArtikelTextRTF")
Call NotesDoc2.removeItem("fdArtikelHinweis")
' Set NotesDoc2 = db.CreateDocument
Call NotesDoc2.CopyItem( rtitem, "fdArtikelTextRTF" )
Call NotesDoc2.CopyItem( item, "fdArtikelHinweis" )
success = ws.Dialogbox("faRTF", True, True, False, False, False, False, "Artikelauswahl", NotesDoc2, True, False)
' Call NotesDoc2.Remove(True)
Call uinote.Gotofield(sField)
Call UiNote.Paste
' Call UiNote.FieldSetText("fdPos_"+sZeile, sZeile)
Call NotesDoc2.Save( False, True )
If NotesDoc.FieldGetText("fdPreisl_" + sZeile) = "" Then
Set NotesDoc2 = NotesDoc.Document
Call NotesDoc.ReplaceItemValue("fdPreis_" + sZeile, NotesDoc2.fdPreis(0))
Call NotesDoc.Save(False, True)
Call NotesDoc.Reload()
Call NotesDoc.Refresh()
End If
ArtikelZugriff = 1
End Function