Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Unbeantwortet
Attachment aus Prozesstabelle eines abgeschlossenen Prozesses laden


Hallo Karim,

willst du die Datei tatsächlich in ein Element schreiben oder diese nur zum Anzeigen öffnen?

Zweiteres wäre möglich über die Funktion jr_popup. Hier unsere Fnuktion, welche wir nutzen um Dateien aus einem beliebigen Prozess / Vorgang in einem anderen aufzurufen:

function popUpAttachment(filePath) {

    const workflowId = $JRSTEP.workflowId;

    const path = `attachment.php?id=${btoa(workflowId)}&url=${encodeURIComponent(filePath)}&mode=3&jobViewer=3&editMode=0&allowAnnotations=0&allowDownload=0&allowPrint=0&enableOcr=0&width=800&height=600&action=show`;

    jr_popup(path, "Document", { top: 100, left: 100, width: 800, height: 600 });
}

Als filePath wird der Pfad aus der JR-DB übergeben, den wir uns z.B. per SQL-Element ermitteln.

Viele Grüße
Jan

  
  
Gepostet vor 2 Jahren
pic
Gelöschter Benutzer
662 Ansichten
0 Antworten
vor 2 Jahren
vor 2 Jahren