@konfuzio/document-validation-ui 0.1.14 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -0
- package/cypress.config.js +13 -0
- package/dist/css/app.css +1 -1
- package/dist/index.html +1 -1
- package/dist/js/app.js +1 -1
- package/dist/js/app.js.map +1 -1
- package/dist/js/chunk-vendors.js +3 -3
- package/dist/js/chunk-vendors.js.map +1 -1
- package/package.json +5 -1
- package/src/api.js +53 -23
- package/src/assets/images/DraggableIcon.vue +14 -0
- package/src/assets/images/GridIcon.vue +16 -0
- package/src/assets/images/MagicWandIcon.vue +16 -0
- package/src/assets/images/NotFoundIcon.vue +16 -0
- package/src/assets/images/ServerImage.vue +19 -9
- package/src/assets/images/SettingsIcon.vue +14 -0
- package/src/assets/images/SplitZigZag.vue +47 -14
- package/src/assets/images/StarIcon.vue +16 -0
- package/src/assets/scss/ann_set_table_options.scss +26 -0
- package/src/assets/scss/annotation_details.scss +86 -71
- package/src/assets/scss/choose_label_set_modal.scss +1 -1
- package/src/assets/scss/document_annotations.scss +242 -229
- package/src/assets/scss/document_category.scss +12 -7
- package/src/assets/scss/document_dashboard.scss +7 -2
- package/src/assets/scss/document_edit.scss +151 -173
- package/src/assets/scss/document_name.scss +0 -2
- package/src/assets/scss/document_thumbnails.scss +1 -1
- package/src/assets/scss/document_toolbar.scss +23 -1
- package/src/assets/scss/document_top_bar.scss +40 -1
- package/src/assets/scss/edit_page_thumbnail.scss +53 -0
- package/src/assets/scss/multi_ann_table_overlay.scss +38 -0
- package/src/assets/scss/new_annotation.scss +17 -3
- package/src/assets/scss/scrolling_document.scss +1 -1
- package/src/assets/scss/theme.scss +801 -0
- package/src/assets/scss/variables.scss +5 -663
- package/src/components/App.cy.js +7 -0
- package/src/components/App.vue +98 -11
- package/src/components/DocumentAnnotations/AnnotationActionButtons.vue +168 -0
- package/src/components/DocumentAnnotations/AnnotationContent.vue +50 -84
- package/src/components/DocumentAnnotations/AnnotationDetails.vue +37 -12
- package/src/components/DocumentAnnotations/AnnotationRow.vue +244 -199
- package/src/components/DocumentAnnotations/AnnotationSetActionButtons.vue +89 -0
- package/src/components/DocumentAnnotations/ChooseLabelSetModal.vue +4 -2
- package/src/components/DocumentAnnotations/DocumentAnnotations.cy.js +295 -0
- package/src/components/DocumentAnnotations/DocumentAnnotations.vue +195 -146
- package/src/components/DocumentAnnotations/DocumentLabel.vue +46 -9
- package/src/components/DocumentAnnotations/EmptyAnnotation.vue +59 -88
- package/src/components/DocumentAnnotations/ExtractingData.vue +18 -6
- package/src/components/DocumentAnnotations/MultiAnnotationTableOverlay.vue +337 -0
- package/src/components/DocumentAnnotations/index.js +1 -1
- package/src/components/DocumentCategory.vue +89 -65
- package/src/components/DocumentDashboard.vue +59 -48
- package/src/components/DocumentEdit/DocumentEdit.vue +302 -105
- package/src/components/DocumentEdit/EditConfirmationModal.vue +55 -0
- package/src/components/DocumentEdit/EditPageThumbnail.vue +114 -0
- package/src/components/DocumentEdit/EditPages.vue +60 -103
- package/src/components/DocumentEdit/EditSidebar.vue +101 -48
- package/src/components/DocumentEdit/{SplitOverview.vue → RenameAndCategorize.vue} +15 -13
- package/src/components/DocumentEdit/SidebarButtons.vue +53 -0
- package/src/components/DocumentEdit/SplitInfoBar.vue +21 -0
- package/src/components/DocumentEdit/index.js +1 -1
- package/src/components/{DocumentError.vue → DocumentModals/DocumentErrorModal.vue} +9 -8
- package/src/components/{NotOptimizedViewportModal.vue → DocumentModals/NotOptimizedViewportModal.vue} +2 -2
- package/src/components/DocumentPage/ActionBar.vue +3 -3
- package/src/components/DocumentPage/AnnSetTableOptions.vue +110 -0
- package/src/components/DocumentPage/BoxSelection.vue +4 -1
- package/src/components/DocumentPage/DocumentPage.vue +92 -68
- package/src/components/DocumentPage/DocumentToolbar.vue +105 -16
- package/src/components/DocumentPage/DummyPage.vue +9 -7
- package/src/components/DocumentPage/MultiAnnSelection.vue +96 -27
- package/src/components/DocumentPage/NewAnnotation.vue +31 -35
- package/src/components/DocumentPage/ScrollingDocument.vue +46 -5
- package/src/components/DocumentPage/ScrollingPage.vue +5 -6
- package/src/components/DocumentThumbnails/DocumentThumbnails.cy.js +64 -0
- package/src/components/DocumentThumbnails/DocumentThumbnails.vue +53 -13
- package/src/components/DocumentTopBar/DocumentName.vue +16 -4
- package/src/components/DocumentTopBar/DocumentTopBar.vue +86 -15
- package/src/components/DocumentTopBar/DocumentTopBarButtons.vue +99 -72
- package/src/components/DocumentTopBar/KeyboardActionsDescription.vue +6 -3
- package/src/components/DocumentsList/DocumentsList.vue +6 -2
- package/src/components/index.js +1 -0
- package/src/constants.js +2 -1
- package/src/icons.js +45 -0
- package/src/locales/de.json +48 -21
- package/src/locales/en.json +37 -11
- package/src/locales/es.json +41 -13
- package/src/main.js +5 -66
- package/src/store/category.js +20 -36
- package/src/store/display.js +74 -1
- package/src/store/document.js +305 -109
- package/src/store/edit.js +160 -61
- package/src/store/project.js +46 -16
- package/src/store/selection.js +42 -10
- package/src/utils/utils.js +36 -0
- package/dist/css/chunk-vendors.css +0 -5
- package/src/assets/scss/categorize_modal.scss +0 -45
- package/src/assets/scss/main.scss +0 -24
- package/src/components/DocumentAnnotations/ActionButtons.vue +0 -250
- package/src/components/DocumentAnnotations/CategorizeModal.vue +0 -219
- package/src/components/DocumentAnnotations/RejectedLabels.vue +0 -96
- package/src/components/DocumentPage/MultiAnnotationTablePopup.vue +0 -253
package/src/constants.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export const PIXEL_RATIO = window.devicePixelRatio || 1;
|
|
2
2
|
export const VIEWPORT_RATIO = 0.98;
|
|
3
3
|
export const MINIMUM_APP_WIDTH = 600;
|
|
4
|
-
export const MINIMUM_OPTIMIZED_APP_WIDTH =
|
|
4
|
+
export const MINIMUM_OPTIMIZED_APP_WIDTH = 950;
|
|
5
|
+
export const MULTI_ANN_TABLE_FEATURE = false;
|
package/src/icons.js
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// internal icons
|
|
2
|
+
import { library } from "@fortawesome/fontawesome-svg-core";
|
|
3
|
+
import {
|
|
4
|
+
faArrowUp,
|
|
5
|
+
faAngleRight,
|
|
6
|
+
faAngleLeft,
|
|
7
|
+
faAngleUp,
|
|
8
|
+
faAngleDown,
|
|
9
|
+
faSpinner,
|
|
10
|
+
faPlus,
|
|
11
|
+
faXmark,
|
|
12
|
+
faEllipsisVertical,
|
|
13
|
+
faCircleInfo,
|
|
14
|
+
faArrowRotateLeft,
|
|
15
|
+
faArrowRotateRight,
|
|
16
|
+
faScissors,
|
|
17
|
+
faRepeat,
|
|
18
|
+
faArrowLeft,
|
|
19
|
+
faArrowRight,
|
|
20
|
+
faDownload,
|
|
21
|
+
} from "@fortawesome/free-solid-svg-icons";
|
|
22
|
+
import { FontAwesomeIcon as Icons } from "@fortawesome/vue-fontawesome";
|
|
23
|
+
|
|
24
|
+
library.add(
|
|
25
|
+
faArrowUp,
|
|
26
|
+
faAngleRight,
|
|
27
|
+
faAngleLeft,
|
|
28
|
+
faAngleUp,
|
|
29
|
+
faAngleDown,
|
|
30
|
+
faSpinner,
|
|
31
|
+
faXmark,
|
|
32
|
+
faSpinner,
|
|
33
|
+
faPlus,
|
|
34
|
+
faEllipsisVertical,
|
|
35
|
+
faCircleInfo,
|
|
36
|
+
faArrowRotateLeft,
|
|
37
|
+
faArrowRotateRight,
|
|
38
|
+
faScissors,
|
|
39
|
+
faRepeat,
|
|
40
|
+
faArrowLeft,
|
|
41
|
+
faArrowRight,
|
|
42
|
+
faDownload
|
|
43
|
+
);
|
|
44
|
+
|
|
45
|
+
export default Icons;
|
package/src/locales/de.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"no_label_sets_found_description": "In diesem Dokument sind keine Label Sets vorhanden.",
|
|
4
4
|
"no_labels_found": "Keine Labels vorhanden",
|
|
5
5
|
"no_labels_description": "In diesem Label Set sind keine Labels vorhanden.",
|
|
6
|
-
"resolution_not_supported": "Die
|
|
6
|
+
"resolution_not_supported": "Die aktuelle Auflösung wird nicht unterstützt",
|
|
7
7
|
"upload_documents": "Laden Sie Ihre Dokumente hoch",
|
|
8
8
|
"request_trial": "Fordern Sie Ihren Probezugang an",
|
|
9
9
|
"warning_message": "Die KI kann nicht trainiert werden, wenn Sie den Text manuell ändern.",
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
"invalid_email": "Bitte geben Sie eine gültige E-Mail-Adresse ein.",
|
|
27
27
|
"members": "Mitglieder",
|
|
28
28
|
"select": "Auswählen",
|
|
29
|
-
"document_successfully_handed": "Dokument erfolgreich
|
|
30
|
-
"handover_not_possible": "Eine
|
|
31
|
-
"small_viewport_title": "Kleine
|
|
32
|
-
"small_viewport_info": "Es tut uns leid, aber Konfuzio ist nicht für diese
|
|
33
|
-
"ok": "Ok
|
|
29
|
+
"document_successfully_handed": "Dokument erfolgreich zugewiesen an",
|
|
30
|
+
"handover_not_possible": "Eine Zuweisung war nicht möglich. Bitte versuchen Sie es später erneut.",
|
|
31
|
+
"small_viewport_title": "Kleine Fenstergröße",
|
|
32
|
+
"small_viewport_info": "Es tut uns leid, aber Konfuzio ist nicht für diese Fenstergröße optimiert. Für eine bessere Bedienbarkeit öffnen Sie es bitte in einem größeren Ansichtsfenster.",
|
|
33
|
+
"ok": "Ok",
|
|
34
34
|
"no_data_found": "Zum Bearbeiten anklicken...",
|
|
35
35
|
"draw_box_document": "Find <i>{label_name}</i> in the document",
|
|
36
36
|
"confidence": "Konfidenz",
|
|
@@ -49,25 +49,25 @@
|
|
|
49
49
|
"data_being_extracted": "Neue Daten werden extrahiert",
|
|
50
50
|
"analysing_document": "Wir analysieren Ihr Dokument.",
|
|
51
51
|
"few_minutes": "Dies könnte ein paar Minuten dauern.",
|
|
52
|
-
"
|
|
53
|
-
"rejected": "Abgelehnt",
|
|
52
|
+
"missing_annotation": "Als fehlend markieren",
|
|
54
53
|
"ann_exists": "Eine Annotation für dieses Label und Label-Set existiert bereits.",
|
|
55
54
|
"lite_mode": "Schreibgeschützt",
|
|
56
|
-
"limited_functionalities": "Sie verwenden die schreibgeschützte Version mit
|
|
55
|
+
"limited_functionalities": "Sie verwenden die schreibgeschützte Version mit begrenzte Funktionalität.",
|
|
57
56
|
"split": "Aufteilen",
|
|
58
|
-
"reorder": "
|
|
57
|
+
"reorder": "Sortieren",
|
|
58
|
+
"rotate": "Rotieren",
|
|
59
59
|
"edit_error": "Die Änderungen konnten nicht gespeichert werden. Bitte versuchen Sie es später erneut.",
|
|
60
|
-
"
|
|
61
|
-
"select_pages": "Sie können nun Seiten drehen, neu sortieren und Dokumente splitten.",
|
|
60
|
+
"select_pages": "Sie können nun Seiten drehen, neu sortieren und Dokumente teilen.",
|
|
62
61
|
"edit_document": "Dokument bearbeiten (Early Access)",
|
|
63
62
|
"edit_early_access": "Sie sind einer der Nutzer, die Zugang zu diesen Funktionalitäten vor dem offiziellen Erscheinungstermin erhalten.",
|
|
64
63
|
"selected": "ausgewählt",
|
|
65
64
|
"rotate_selected": "Ausgewählte Seite drehen",
|
|
66
65
|
"edit_not_available": "Dokumente mit dem Status 'Vorbereitung', 'Training' oder 'Test' sowie Dokumente mit dem Status 'Geprüft' können nicht bearbeitet werden.",
|
|
67
|
-
"
|
|
68
|
-
"
|
|
66
|
+
"rotate_split_reorder": "Rotieren, teilen oder sortieren",
|
|
67
|
+
"rename_and_categorize": "Umbenennen und kategorisieren",
|
|
69
68
|
"submit": "Senden",
|
|
70
|
-
"next": "
|
|
69
|
+
"next": "Nächster Schritt: Umbenennen und kategorisieren",
|
|
70
|
+
"back_to_annotations": "Züruck zur Hauptansicht",
|
|
71
71
|
"select_label": "Label auswählen",
|
|
72
72
|
"select_annotation_set": "Wähle Annotation Set",
|
|
73
73
|
"accept": "Akzeptieren",
|
|
@@ -83,20 +83,19 @@
|
|
|
83
83
|
"categorized_as": "Dieses Dokument ist kategorisiert als",
|
|
84
84
|
"not_categorized": "Nicht kategorisiert. Bitte wählen Sie vor dem Annotieren eine Kategorie aus: ",
|
|
85
85
|
"choose_category": "Wählen Sie bitte eine Kategorie",
|
|
86
|
-
"select_category": "Wählen Sie bitte die richtige Kategorie aus
|
|
86
|
+
"select_category": "Wählen Sie bitte die richtige Kategorie aus",
|
|
87
87
|
"categorized_error": "Wenn dies nicht die richtige Kategorie ist, ändern Sie diese bitte und wir fahren mit der erneuten Extraktion fort.",
|
|
88
88
|
"categorize_document_no_category_description": "Bitten Sie den Projektmanager, eine Beschreibung dieser Kategorie hinzuzufügen, um mehr über diese Kategorie zu erfahren.",
|
|
89
89
|
"annotations_pending": "Ausstehende Annotationen",
|
|
90
90
|
"annotations_accepted": "Akzeptierte Annotationen",
|
|
91
|
-
"
|
|
91
|
+
"mark_all_missing": "Alle leeren als fehlend markieren",
|
|
92
92
|
"no_labels_to_choose": "Keine Labels",
|
|
93
93
|
"accept_group": "Alle akzeptieren",
|
|
94
94
|
"use_your_keyboard": "Benutze deine Tastatur",
|
|
95
95
|
"arrow_keys": "Navigieren",
|
|
96
96
|
"esc_key": "Exit",
|
|
97
97
|
"enter_key": "Akzeptieren oder Speichern",
|
|
98
|
-
"
|
|
99
|
-
"decline": "Decline",
|
|
98
|
+
"decline": "Ablehnen",
|
|
100
99
|
"server_error": "Wir haben derzeit ein Serverproblem. Bitte versuchen Sie es später noch einmal oder",
|
|
101
100
|
"get_support": "Hole dir Unterstützung",
|
|
102
101
|
"no_labels_available": "Das ausgewählte Annotations-Set enthält keine nicht ausgefüllten oder multiplen Labels. Weitere Informationen finden Sie unter <a href='https://help.konfuzio.com/modules/labels/index.html#multiple' target='_blank'>diesem Link</a>.",
|
|
@@ -110,8 +109,36 @@
|
|
|
110
109
|
"new_multi_ann_description": "Wählen Sie ein Datenmodell aus den vorhandenen aus und deaktivieren Sie dann die Labels, die in diesem Dokument nicht vorhanden sind.",
|
|
111
110
|
"drag_drop_columns_multi_ann": "Drag and Drop, um die Reihenfolge der Labels zu ändern",
|
|
112
111
|
"error_creating_multi_ann": "Nicht alle Annotationen wurden erfolgreich erstellt.",
|
|
113
|
-
"disabled_finish_review": "Der Abschluss der Dokumentenprüfung ist erst möglich, nachdem alle Annotationen überarbeitet wurden, unabhängig davon, ob sie akzeptiert oder abgelehnt wurden.",
|
|
114
112
|
"no_multi_ann_labelset_model": "Es gibt keine verfügbaren Label Sets, die mehrfach in diesem Dokument zu finden sind. Weitere Informationen finden Sie unter <a href='https://help.konfuzio.com/tutorials/advanced-document-extraction/index.html#multiple-annotation-sets' target='_blank'>diesem Link</a>.",
|
|
115
113
|
"single_category_in_project": "Das aktuelle Projekt hat nur eine Kategorie. Um sie ändern zu können, sollte die neue zuerst dem Projekt hinzugefügt werden. Einzelheiten dazu finden Sie unter <a href='https://help.konfuzio.com/modules/categories/index.html#add-a-category' target='_blank'>diesem Link</a>.",
|
|
116
|
-
"approved_annotations": "Die Kategorie kann nicht geändert werden, da bereits akzeptierte Annotationen oder manuell erstellte Annotationen zu diesem Dokument vorhanden sind."
|
|
114
|
+
"approved_annotations": "Die Kategorie kann nicht geändert werden, da bereits akzeptierte Annotationen oder manuell erstellte Annotationen zu diesem Dokument vorhanden sind.",
|
|
115
|
+
"restore": "Wiederherstellen",
|
|
116
|
+
"disabled_finish_review": "Das Beenden der Dokumentenprüfung ist erst möglich, nachdem alle Annotationen überarbeitet wurden, unabhängig davon, ob sie akzeptiert oder als fehlend markiert wurden.",
|
|
117
|
+
"split_modal_title": "Dokument aufteilen",
|
|
118
|
+
"split_modal_body": "Wir haben Ihre Datei gescannt und <strong>{number_of_split_documents}</strong> verschiedene Dokumente gefunde. <strong>Wir empfehlen dringend,</strong> sie zu diesem Zeitpunkt aufzuteilen, da sonst alle Fortschritte, die Sie gemacht haben, aufgrund der erneuten Extraktion der Dokumentdaten verloren gehen.",
|
|
119
|
+
"do_it_later": "Ich werde es später machen",
|
|
120
|
+
"review_now": "Jetzt überprüfen",
|
|
121
|
+
"recommended": "Empfohlen",
|
|
122
|
+
"smart_split": "Smart Split",
|
|
123
|
+
"smart_split_suggestions": "Unsere Smart Split-Vorschläge sind grün hervorgehoben",
|
|
124
|
+
"no_splitting_suggestions": "Dieses Dokument enthält keine Split-Vorschläge",
|
|
125
|
+
"confirm_splitting": "Sind Sie sicher, dass Sie die Änderungen bestätigen möchten?",
|
|
126
|
+
"splitting_warning": "Beachten Sie bitte, dass alle Annotationen, die Sie in diesem Dokument gemacht haben, nicht gespeichert werden, wenn Sie fortfahren.",
|
|
127
|
+
"no": "Nein",
|
|
128
|
+
"yes": "Ja",
|
|
129
|
+
"split_modal_no_suggestions": "Soll das Dokument geteilt werden? Wir <strong>empfehlen</strong> das Dokument jetzt zuteilen, da sonst alle Fortschritte, die in der Zwischenzeit gemacht werden,verloren gehen.",
|
|
130
|
+
"missing_from_document": "Fehlt im Dokument",
|
|
131
|
+
"edit_label": "Label editieren",
|
|
132
|
+
"delete_label": "Label löschen",
|
|
133
|
+
"table": "Tabelle",
|
|
134
|
+
"prepare_document": "Dokument vorbereiten",
|
|
135
|
+
"delete_table": "Tabelle löschen",
|
|
136
|
+
"error_downloading_file": "Die Datei konnte nicht heruntergeladen werden.",
|
|
137
|
+
"original_file": "Originaldatei",
|
|
138
|
+
"pdf_file": "PDF Datei",
|
|
139
|
+
"no_labels_in_set": "Dieser Annotationssatz hat keine Beschriftungen.",
|
|
140
|
+
"link_to_add_labels": "Sehen Sie <a href='https://help.konfuzio.com/modules/labels/index.html#add-a-label' target='_blank'>hier</a>, wie Sie sie hinzufügen.",
|
|
141
|
+
"no_annotations_in_annotation_set": "Dieser Annotationssatz enthält keine extrahierten Annotationen für die jeweiligen Beschriftungen.",
|
|
142
|
+
"wait_title": "Bitte warten...",
|
|
143
|
+
"redirecting_to_documents_list": "Wir führen Sie zur Dokumentenliste, sodass Sie Ihre Dokumente weiter überprüfen können, während wir die vorgenommenen Änderungen verarbeiten."
|
|
117
144
|
}
|
package/src/locales/en.json
CHANGED
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"rotate_all": "Rotate all",
|
|
47
47
|
"cancel": "Cancel",
|
|
48
48
|
"apply": "Apply",
|
|
49
|
-
"next": "Next",
|
|
49
|
+
"next": "Next: Rename and Categorize",
|
|
50
|
+
"back_to_annotations": "Back to annotation view",
|
|
50
51
|
"submit": "Submit",
|
|
51
52
|
"data_being_extracted": "New data is being extracted",
|
|
52
53
|
"analysing_document": "We are analysing your document.",
|
|
53
54
|
"few_minutes": "This might take a few minutes.",
|
|
54
|
-
"
|
|
55
|
-
"rejected": "Rejected",
|
|
55
|
+
"missing_annotation": "Mark as Missing",
|
|
56
56
|
"ann_exists": "An annotation for this label and label set already exists.",
|
|
57
57
|
"lite_mode": "Read Only",
|
|
58
58
|
"limited_functionalities": "You are using the Read Only version with limited functionalities.",
|
|
@@ -61,15 +61,14 @@
|
|
|
61
61
|
"reorder": "Reorder",
|
|
62
62
|
"rotate": "Rotate",
|
|
63
63
|
"edit_error": "The changes couldn’t be saved, please try again later.",
|
|
64
|
-
"overview": "Overview",
|
|
65
64
|
"select_pages": "You can now rotate pages, reorder and split documents.",
|
|
66
65
|
"edit_document": "Edit document (Early Access)",
|
|
67
66
|
"edit_early_access": "You are one of the users who have access to these functionalities before the release date.",
|
|
68
67
|
"selected": "selected",
|
|
69
68
|
"rotate_selected": "Rotate selected",
|
|
70
69
|
"edit_not_available": "Editing is not possible for documents with a status of 'Preparation', 'Training' or 'Test', or documents that are 'Reviewed'",
|
|
71
|
-
"
|
|
72
|
-
"
|
|
70
|
+
"rotate_split_reorder": "Rotate, split or reorder",
|
|
71
|
+
"rename_and_categorize": "Rename and Categorize",
|
|
73
72
|
"select_label": "Select Label",
|
|
74
73
|
"select_annotation_set": "Select Annotation Set",
|
|
75
74
|
"document_error_title": "Document error",
|
|
@@ -84,12 +83,12 @@
|
|
|
84
83
|
"categorized_as": "This document is currently categorized as",
|
|
85
84
|
"not_categorized": "This document is currently not categorized. Please select a category before annotating: ",
|
|
86
85
|
"choose_category": "Choose a category",
|
|
87
|
-
"select_category": "Select the correct category
|
|
86
|
+
"select_category": "Select the correct category",
|
|
88
87
|
"categorized_error": "If this is not the correct category, please change it and we'll proceed with the re-extraction.",
|
|
89
88
|
"categorize_document_no_category_description": "Ask the Project Manager to add a description of this Category to know more about this category.",
|
|
90
89
|
"annotations_pending": "pending",
|
|
91
90
|
"annotations_accepted": "accepted",
|
|
92
|
-
"
|
|
91
|
+
"mark_all_missing": "Mark all empty as Missing",
|
|
93
92
|
"no_labels_to_choose": "No Labels",
|
|
94
93
|
"accept_group": "Accept all",
|
|
95
94
|
"new_ann_set_title": "New annotation set",
|
|
@@ -102,7 +101,6 @@
|
|
|
102
101
|
"arrow_keys": "to Navigate",
|
|
103
102
|
"esc_key": "Exit",
|
|
104
103
|
"enter_key": "Accept or Save",
|
|
105
|
-
"delete_key": "Reject",
|
|
106
104
|
"decline": "Decline",
|
|
107
105
|
"server_error": "We are currently experiencing a server issue. Please try again later or",
|
|
108
106
|
"get_support": "Get Support",
|
|
@@ -111,8 +109,36 @@
|
|
|
111
109
|
"new_multi_ann_description": "Select a data model from the existing ones, then deselect the labels that don't exist in this document.",
|
|
112
110
|
"drag_drop_columns_multi_ann": "Drag and drop to change the order of the labels",
|
|
113
111
|
"error_creating_multi_ann": "Not all annotation sets were created successfully.",
|
|
114
|
-
"disabled_finish_review": "Finishing the document review is only possible after all annotations have been revised, whether they are accepted or
|
|
112
|
+
"disabled_finish_review": "Finishing the document review is only possible after all annotations have been revised, whether they are accepted or marked as missing.",
|
|
115
113
|
"no_multi_ann_labelset_model": "There are no available label sets that can be found multiple times in this document. For more details, you can visit <a href='https://help.konfuzio.com/tutorials/advanced-document-extraction/index.html#multiple-annotation-sets' target='_blank'>this link</a>.",
|
|
116
114
|
"single_category_in_project": "The current project has only one category. To be able to change it, the new one should be first added to the project. For details on how to do this, visit <a href='https://help.konfuzio.com/modules/categories/index.html#add-a-category' target='_blank'>this link</a>.",
|
|
117
|
-
"approved_annotations": "It is not possible to change the current category since the document has approved or manually created annotations."
|
|
115
|
+
"approved_annotations": "It is not possible to change the current category since the document has approved or manually created annotations.",
|
|
116
|
+
"restore": "Restore",
|
|
117
|
+
"split_modal_title": "Split the document",
|
|
118
|
+
"split_modal_body": "We've scanned your file and found <strong>{number_of_split_documents}</strong> different documents. <strong>We strongly recommend</strong> splitting it at this stage, otherwise all the progress you’ve made will be lost due to document data re-extraction.",
|
|
119
|
+
"do_it_later": "I'll do it later",
|
|
120
|
+
"review_now": "Review now",
|
|
121
|
+
"recommended": "Recommended",
|
|
122
|
+
"smart_split": "Smart Split",
|
|
123
|
+
"smart_split_suggestions": "Our Smart Split suggestions are highlighted in green",
|
|
124
|
+
"no_splitting_suggestions": "This document does not have splitting suggestions",
|
|
125
|
+
"confirm_splitting": "Are you sure you want to confirm the changes?",
|
|
126
|
+
"splitting_warning": "Be aware that any annotations you have made in this document will not be saved if you proceed.",
|
|
127
|
+
"no": "No",
|
|
128
|
+
"yes": "Yes",
|
|
129
|
+
"prepare_document": "Prepare the document",
|
|
130
|
+
"split_modal_no_suggestions": "Do you need to split the document? <strong>We strongly recommend</strong> splitting it at this stage, otherwise all the progress you’ve made will be lost in the future.",
|
|
131
|
+
"missing_from_document": "Missing from the document",
|
|
132
|
+
"edit_label": "Edit label",
|
|
133
|
+
"delete_label": "Delete label",
|
|
134
|
+
"table": "Table",
|
|
135
|
+
"delete_table": "Delete table",
|
|
136
|
+
"error_downloading_file": "The file could not be downloaded.",
|
|
137
|
+
"original_file": "Original file",
|
|
138
|
+
"pdf_file": "PDF file",
|
|
139
|
+
"no_labels_in_set": "This annotation set has no labels.",
|
|
140
|
+
"link_to_add_labels": "See how to add them <a href='https://help.konfuzio.com/modules/labels/index.html#add-a-label' target='_blank'>here</a>.",
|
|
141
|
+
"no_annotations_in_annotation_set": "This annotation set has no annotations extracted for its respective labels.",
|
|
142
|
+
"wait_title": "Please wait...",
|
|
143
|
+
"redirecting_to_documents_list": "We are taking you to the documents list, so you can continue reviewing your documents while we process the changes made."
|
|
118
144
|
}
|
package/src/locales/es.json
CHANGED
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"rotate_all": "Rotar todas",
|
|
47
47
|
"cancel": "Cancelar",
|
|
48
48
|
"apply": "Aplicar",
|
|
49
|
-
"next": "Siguiente",
|
|
49
|
+
"next": "Siguiente: Cambiar nombre y categoría",
|
|
50
|
+
"back_to_annotations": "Volver a la vista de anotaciones",
|
|
50
51
|
"submit": "Enviar",
|
|
51
52
|
"data_being_extracted": "Se están extrayendo nuevos datos",
|
|
52
53
|
"analysing_document": "Estamos analizando el documento.",
|
|
53
54
|
"few_minutes": "Esto puede tardar unos minutos.",
|
|
54
|
-
"
|
|
55
|
-
"rejected": "Rechazadas",
|
|
55
|
+
"missing_annotation": "Marcar como Faltante",
|
|
56
56
|
"ann_exists": "Ya existe una anotación para esta etiqueta y grupo de etiquetas.",
|
|
57
57
|
"lite_mode": "Sólo lectura",
|
|
58
58
|
"limited_functionalities": "Está utilizando la versión de sólo lectura con funcionalidad limitada.",
|
|
@@ -61,15 +61,14 @@
|
|
|
61
61
|
"reorder": "Reordenar",
|
|
62
62
|
"rotate": "Rotar",
|
|
63
63
|
"edit_error": "No se han podido guardar los cambios, por favor, inténtelo de nuevo más tarde.",
|
|
64
|
-
"
|
|
65
|
-
"select_pages": "Ahora puedes rotar, reordenar o dividir los documentos.",
|
|
64
|
+
"select_pages": "Ahora puede rotar, reordenar o dividir los documentos.",
|
|
66
65
|
"edit_document": "Editar documento (Early Access)",
|
|
67
66
|
"edit_early_access": "Eres uno de los usuarios que tiene acceso a estas funcionalidades antes de la fecha de lanzamiento.",
|
|
68
67
|
"selected": "seleccionadas",
|
|
69
68
|
"rotate_selected": "Rotar seleccionadas",
|
|
70
69
|
"edit_not_available": "No es posible editar documentos con estado en 'Preparación', 'Entrenamiento' o 'Pruebas', así como documentos que han sido 'Revisados'",
|
|
71
|
-
"
|
|
72
|
-
"
|
|
70
|
+
"rotate_split_reorder": "Rotar, dividir or reordenar",
|
|
71
|
+
"rename_and_categorize": "Cambiar nombre y categoría",
|
|
73
72
|
"select_label": "Seleccionar etiqueta",
|
|
74
73
|
"select_annotation_set": "Seleccionar grupo de etiquetas",
|
|
75
74
|
"document_error_title": "Error en el documento",
|
|
@@ -84,19 +83,18 @@
|
|
|
84
83
|
"categorized_as": "Este documento ha sido categorizado como",
|
|
85
84
|
"not_categorized": "Este documento no ha sido categorizado. Por favor, seleccione una categoría antes de realizar anotaciones: ",
|
|
86
85
|
"choose_category": "Seleccione una categoría",
|
|
87
|
-
"select_category": "Seleccione la categoría correcta
|
|
86
|
+
"select_category": "Seleccione la categoría correcta",
|
|
88
87
|
"categorized_error": "Si esta no es la categoría correcta, por favor cámbiela y procederemos a realizar de nuevo la extracción.",
|
|
89
88
|
"categorize_document_no_category_description": "Solicite a su Gestor de Proyecto que agregue una descripción a esta Categoría para saber más sobre ella.",
|
|
90
89
|
"annotations_pending": "pendientes",
|
|
91
90
|
"annotations_accepted": "aceptadas",
|
|
92
|
-
"
|
|
91
|
+
"mark_all_missing": "Marcar todas las anotaciones vacías como Faltantes",
|
|
93
92
|
"no_labels_to_choose": "Sin etiquetas",
|
|
94
93
|
"accept_group": "Aceptar todas",
|
|
95
94
|
"use_your_keyboard": "Use su teclado",
|
|
96
95
|
"arrow_keys": "para Navegar",
|
|
97
96
|
"esc_key": "Salir del modo de edición",
|
|
98
97
|
"enter_key": "Aceptar o Guardar",
|
|
99
|
-
"delete_key": "Rechazar",
|
|
100
98
|
"decline": "Declinar",
|
|
101
99
|
"server_error": "Estamos experimentando problemas con el servidor. Por favor, repita la operación o ",
|
|
102
100
|
"get_support": "Contacte al Soporte",
|
|
@@ -109,8 +107,38 @@
|
|
|
109
107
|
"continue": "Continuar",
|
|
110
108
|
"drag_drop_columns_multi_ann": "Arrastre y suelte las columnas para ordenar las etiquetas",
|
|
111
109
|
"error_creating_multi_ann": "No todos los grupos de anotaciones fueron creados de manera exitosa.",
|
|
112
|
-
"disabled_finish_review": "Solo es posible finalizar la revisión del documento si todas las anotaciones han sido revisadas, ya sea aceptadas o
|
|
113
|
-
"no_multi_ann_labelset_model": "En este documento no hay grupos de etiquetas múltiples disponibles. Para más información,
|
|
110
|
+
"disabled_finish_review": "Solo es posible finalizar la revisión del documento si todas las anotaciones han sido revisadas, ya sea aceptadas o marcadas como faltantes.",
|
|
111
|
+
"no_multi_ann_labelset_model": "En este documento no hay grupos de etiquetas múltiples disponibles. Para más información, haga clic en <a href='https://help.konfuzio.com/tutorials/advanced-document-extraction/index.html#multiple-annotation-sets' target='_blank'>este enlace</a>.",
|
|
114
112
|
"single_category_in_project": "Este proyecto solo tiene una categoría. Para poder modificarla, es necesario agregar esta nueva categoría al proyecto. Para más información, visita <a href='https://help.konfuzio.com/modules/categories/index.html#add-a-category' target='_blank'>este enlace</a>.",
|
|
115
|
-
"approved_annotations": "No es posible cambiar la categoría
|
|
113
|
+
"approved_annotations": "No es posible cambiar la categoría ya que existen anotaciones aceptadas o creadas manualmente en este documento.",
|
|
114
|
+
"restore": "Restaurar",
|
|
115
|
+
"split_modal_title": "Dividir el documento",
|
|
116
|
+
"split_modal_body": "Hemos escaneado su documento y hemos encontrado <strong>{number_of_split_documents}</strong> documentos diferentes. <strong>Le recomendamos</strong> dividir el documento en esta etapa, ya que de lo contrario se perderá el progreso logrado debido a una nueva extracción de los datos del documento.",
|
|
117
|
+
"do_it_later": "Lo haré luego",
|
|
118
|
+
"review_now": "Revisar ahora",
|
|
119
|
+
"recommended": "Recomendado",
|
|
120
|
+
"smart_split": "División Inteligente",
|
|
121
|
+
"smart_split_suggestions": "Nuestras sugerencias de División Inteligente están marcadas en color verde",
|
|
122
|
+
"no_splitting_suggestions": "Este documento no tiene sugerencias de división",
|
|
123
|
+
"confirm_splitting": "¿Seguro que quiere confirmar los cambios?",
|
|
124
|
+
"splitting_warning": "Tenga en cuenta que se perderán las anotaciones que haya confirmado en el documento.",
|
|
125
|
+
"no": "No",
|
|
126
|
+
"yes": "Sí",
|
|
127
|
+
"split_modal_no_suggestions": "¿Necesita dividir el documento? <strong>Te recomendamos</strong> hacerlo en este momento, o de lo contrario se perderán los cambios realizados.",
|
|
128
|
+
"missing_from_document": "Falta en el documento",
|
|
129
|
+
"edit_label": "Editar etiqueta",
|
|
130
|
+
"delete_label": "Eliminar etiqueta",
|
|
131
|
+
"table": "Tabla",
|
|
132
|
+
"new_multi_ann_description": "Seleccione un modelo de datos de los existentes, luego deseleccione las etiquetas que no existen en este documento.",
|
|
133
|
+
"new_multi_ann_title": "Crear múltiples anotaciones",
|
|
134
|
+
"prepare_document": "Prepare el documento",
|
|
135
|
+
"delete_table": "Eliminar tabla",
|
|
136
|
+
"error_downloading_file": "El documento no pudo ser descargado.",
|
|
137
|
+
"original_file": "Documento original",
|
|
138
|
+
"pdf_file": "Documento PDF",
|
|
139
|
+
"no_labels_in_set": "Este grupo de anotaciones no tiene etiquetas.",
|
|
140
|
+
"link_to_add_labels": "Para ver cómo agregarlas haga clic <a href='https://help.konfuzio.com/modules/labels/index.html#add-a-label' target='_blank'>aquí</a>.",
|
|
141
|
+
"no_annotations_in_annotation_set": "Este grupo de anotaciones no tiene anotaciones encontradas para sus respectivas etiquetas.",
|
|
142
|
+
"wait_title": "Por favor espere...",
|
|
143
|
+
"redirecting_to_documents_list": "Lo estamos redirigiendo a la lista de documentos, para que pueda continuar la revisión de sus documentos mientras procesamos los cambios realizados."
|
|
116
144
|
}
|
package/src/main.js
CHANGED
|
@@ -1,81 +1,20 @@
|
|
|
1
|
+
import App from "./components/App";
|
|
1
2
|
import Vue from "vue";
|
|
2
3
|
import Buefy from "buefy";
|
|
3
|
-
import "buefy/dist/buefy.css";
|
|
4
4
|
import VueKonva from "vue-konva";
|
|
5
|
-
import App from "./components/App";
|
|
6
|
-
import * as Sentry from "@sentry/vue";
|
|
7
|
-
import { Integrations } from "@sentry/tracing";
|
|
8
5
|
import i18n from "./i18n";
|
|
9
6
|
import store from "./store";
|
|
10
|
-
import
|
|
11
|
-
|
|
12
|
-
import {
|
|
13
|
-
faArrowUp,
|
|
14
|
-
faAngleRight,
|
|
15
|
-
faAngleLeft,
|
|
16
|
-
faAngleUp,
|
|
17
|
-
faAngleDown,
|
|
18
|
-
faSpinner,
|
|
19
|
-
faPlus,
|
|
20
|
-
faXmark,
|
|
21
|
-
faEllipsisVertical,
|
|
22
|
-
faCircleInfo,
|
|
23
|
-
faArrowRotateLeft,
|
|
24
|
-
faArrowRotateRight,
|
|
25
|
-
faScissors,
|
|
26
|
-
faRepeat,
|
|
27
|
-
faArrowLeft,
|
|
28
|
-
faArrowRight,
|
|
29
|
-
} from "@fortawesome/free-solid-svg-icons";
|
|
30
|
-
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
|
|
7
|
+
import VueObserveVisibility from "vue-observe-visibility";
|
|
8
|
+
import Icons from "./icons";
|
|
31
9
|
|
|
32
|
-
|
|
33
|
-
faArrowUp,
|
|
34
|
-
faAngleRight,
|
|
35
|
-
faAngleLeft,
|
|
36
|
-
faAngleUp,
|
|
37
|
-
faAngleDown,
|
|
38
|
-
faSpinner,
|
|
39
|
-
faXmark,
|
|
40
|
-
faSpinner,
|
|
41
|
-
faPlus,
|
|
42
|
-
faEllipsisVertical,
|
|
43
|
-
faCircleInfo,
|
|
44
|
-
faArrowRotateLeft,
|
|
45
|
-
faArrowRotateRight,
|
|
46
|
-
faScissors,
|
|
47
|
-
faRepeat,
|
|
48
|
-
faArrowLeft,
|
|
49
|
-
faArrowRight
|
|
50
|
-
);
|
|
51
|
-
Vue.component("VueFontawesome", FontAwesomeIcon);
|
|
10
|
+
Vue.component("VueFontawesome", Icons);
|
|
52
11
|
Vue.component("App", App);
|
|
53
12
|
Vue.use(VueKonva);
|
|
54
13
|
Vue.use(Buefy, {
|
|
55
14
|
defaultIconPack: "fas",
|
|
56
15
|
defaultIconComponent: "vue-fontawesome",
|
|
57
16
|
});
|
|
58
|
-
|
|
59
|
-
// Sentry config
|
|
60
|
-
if (process.env.NODE_ENV != "development") {
|
|
61
|
-
Sentry.init({
|
|
62
|
-
Vue,
|
|
63
|
-
dsn: process.env.VUE_APP_SENTRY_DSN,
|
|
64
|
-
integrations: [new Integrations.BrowserTracing()],
|
|
65
|
-
environment: process.env.VUE_APP_SENTRY_ENVIRONMENT,
|
|
66
|
-
|
|
67
|
-
// We recommend adjusting this value in production, or using tracesSampler
|
|
68
|
-
// for finer control
|
|
69
|
-
tracesSampleRate: 1.0,
|
|
70
|
-
|
|
71
|
-
// If false, errors won't show up in devtools
|
|
72
|
-
logErrors: true,
|
|
73
|
-
|
|
74
|
-
tracingOptions: {
|
|
75
|
-
trackComponents: true,
|
|
76
|
-
},
|
|
77
|
-
});
|
|
78
|
-
}
|
|
17
|
+
Vue.use(VueObserveVisibility);
|
|
79
18
|
|
|
80
19
|
/**
|
|
81
20
|
* Main entrypoint for the App
|
package/src/store/category.js
CHANGED
|
@@ -3,7 +3,7 @@ import myImports from "../api";
|
|
|
3
3
|
const HTTP = myImports.HTTP;
|
|
4
4
|
|
|
5
5
|
const state = {
|
|
6
|
-
|
|
6
|
+
createAvailableListOfDocuments: false,
|
|
7
7
|
documentsAvailableToReview: [], // filtered by user
|
|
8
8
|
categories: null,
|
|
9
9
|
};
|
|
@@ -39,37 +39,21 @@ const getters = {
|
|
|
39
39
|
};
|
|
40
40
|
|
|
41
41
|
const actions = {
|
|
42
|
-
setDocumentsInProject: ({ commit }, documents) => {
|
|
43
|
-
commit("SET_DOCUMENTS_IN_PROJECT", documents);
|
|
44
|
-
},
|
|
45
42
|
setDocumentsAvailableToReview: ({ commit }, documentsAvailableToReview) => {
|
|
46
43
|
commit("SET_AVAILABLE_DOCUMENTS", documentsAvailableToReview);
|
|
47
44
|
},
|
|
48
45
|
setCategories: ({ commit }, categories) => {
|
|
49
46
|
commit("SET_CATEGORIES", categories);
|
|
50
47
|
},
|
|
51
|
-
/**
|
|
52
|
-
* Actions that use HTTP requests always return the axios promise,
|
|
53
|
-
* so they can be `await`ed (useful to set the `loading` status).
|
|
54
|
-
*/
|
|
55
|
-
fetchDocumentList: ({ commit, rootState }, categoryId) => {
|
|
56
|
-
return HTTP.get(
|
|
57
|
-
`documents/?category=${categoryId}&assignee=${rootState.project.currentUser}`
|
|
58
|
-
)
|
|
59
|
-
.then((response) => {
|
|
60
|
-
if (response.data.results) {
|
|
61
|
-
commit("SET_DOCUMENTS_IN_PROJECT", response.data.results);
|
|
62
|
-
}
|
|
63
|
-
})
|
|
64
|
-
.catch((error) => {
|
|
65
|
-
console.log(error, "Could not fetch document list from the backend");
|
|
66
|
-
});
|
|
67
|
-
},
|
|
68
48
|
|
|
69
49
|
createAvailableDocumentsList: (
|
|
70
|
-
{ commit, state, dispatch, rootGetters },
|
|
50
|
+
{ commit, state, dispatch, rootState, rootGetters },
|
|
71
51
|
{ categoryId, user, poll }
|
|
72
52
|
) => {
|
|
53
|
+
if (!state.createAvailableListOfDocuments) return;
|
|
54
|
+
|
|
55
|
+
const parameters = `category=${categoryId}`;
|
|
56
|
+
|
|
73
57
|
const sleep = (duration) =>
|
|
74
58
|
new Promise((resolve) => setTimeout(resolve, duration));
|
|
75
59
|
|
|
@@ -80,10 +64,10 @@ const actions = {
|
|
|
80
64
|
let errors = 0;
|
|
81
65
|
count += 1;
|
|
82
66
|
|
|
83
|
-
return dispatch("fetchDocumentList",
|
|
84
|
-
for (let i = 0; i <
|
|
67
|
+
return dispatch("project/fetchDocumentList", parameters).then(() => {
|
|
68
|
+
for (let i = 0; i < rootState.project.documentsInProject.length; i++) {
|
|
85
69
|
const found = state.documentsAvailableToReview.find(
|
|
86
|
-
(doc) => doc.id ===
|
|
70
|
+
(doc) => doc.id === rootState.project.documentsInProject[i].id
|
|
87
71
|
);
|
|
88
72
|
|
|
89
73
|
if (found) {
|
|
@@ -92,17 +76,20 @@ const actions = {
|
|
|
92
76
|
continue;
|
|
93
77
|
} else if (
|
|
94
78
|
rootGetters["document/isDocumentReadyToBeReviewed"](
|
|
95
|
-
|
|
79
|
+
rootState.project.documentsInProject[i]
|
|
96
80
|
)
|
|
97
81
|
) {
|
|
98
82
|
// add available doc to the end of the array
|
|
99
|
-
commit(
|
|
83
|
+
commit(
|
|
84
|
+
"ADD_AVAILABLE_DOCUMENT",
|
|
85
|
+
rootState.project.documentsInProject[i]
|
|
86
|
+
);
|
|
100
87
|
} else if (
|
|
101
88
|
rootGetters["document/documentHadErrorDuringExtraction"](
|
|
102
|
-
|
|
89
|
+
rootState.project.documentsInProject[i]
|
|
103
90
|
)
|
|
104
91
|
) {
|
|
105
|
-
dispatch("document/setDocumentError", true);
|
|
92
|
+
dispatch("document/setDocumentError", null, { root: true });
|
|
106
93
|
// If error, add 1
|
|
107
94
|
// Then go to next item
|
|
108
95
|
errors += 1;
|
|
@@ -118,10 +105,10 @@ const actions = {
|
|
|
118
105
|
// And if the difference is due to errors or to docs not ready
|
|
119
106
|
if (
|
|
120
107
|
poll &&
|
|
121
|
-
|
|
108
|
+
rootState.project.documentsInProject.length !==
|
|
122
109
|
state.documentsAvailableToReview.length &&
|
|
123
110
|
state.documentsAvailableToReview.length + errors !==
|
|
124
|
-
|
|
111
|
+
rootState.project.documentsInProject.length
|
|
125
112
|
) {
|
|
126
113
|
if (count >= 10) return true;
|
|
127
114
|
|
|
@@ -137,8 +124,8 @@ const actions = {
|
|
|
137
124
|
|
|
138
125
|
// Poll as long as the lengths are different
|
|
139
126
|
if (
|
|
140
|
-
|
|
141
|
-
|
|
127
|
+
rootState.project.documentsInProject.length === 0 ||
|
|
128
|
+
rootState.project.documentsInProject.length !==
|
|
142
129
|
state.documentsAvailableToReview.length
|
|
143
130
|
) {
|
|
144
131
|
let duration;
|
|
@@ -169,9 +156,6 @@ const actions = {
|
|
|
169
156
|
};
|
|
170
157
|
|
|
171
158
|
const mutations = {
|
|
172
|
-
SET_DOCUMENTS_IN_PROJECT: (state, documents) => {
|
|
173
|
-
state.documentsInProject = documents;
|
|
174
|
-
},
|
|
175
159
|
SET_AVAILABLE_DOCUMENTS: (state, documentsAvailableToReview) => {
|
|
176
160
|
state.documentsAvailableToReview = documentsAvailableToReview;
|
|
177
161
|
},
|