@topconsultnpm/sdkui-react 6.22.0-dev2.4 → 6.22.0-dev2.41
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/lib/components/NewComponents/ContextMenu/TMContextMenu.js +1 -1
- package/lib/components/NewComponents/FloatingMenuBar/TMFloatingMenuBar.js +1 -1
- package/lib/components/base/TMButton.d.ts +13 -0
- package/lib/components/base/TMButton.js +137 -5
- package/lib/components/base/TMDataGrid.d.ts +2 -0
- package/lib/components/base/TMDataGrid.js +81 -8
- package/lib/components/base/TMEditorBase.d.ts +2 -0
- package/lib/components/base/TMFileManager.js +5 -3
- package/lib/components/base/TMFileManagerUtils.d.ts +1 -0
- package/lib/components/base/TMFileManagerUtils.js +16 -0
- package/lib/components/base/TMModal.d.ts +11 -0
- package/lib/components/base/TMModal.js +47 -13
- package/lib/components/base/TMPanel.d.ts +1 -0
- package/lib/components/base/TMPanel.js +79 -20
- package/lib/components/base/TMPopUp.js +3 -0
- package/lib/components/base/TMTooltip.d.ts +2 -1
- package/lib/components/base/TMTooltip.js +23 -6
- package/lib/components/base/TMTreeView.js +108 -67
- package/lib/components/choosers/TMDcmtTypeChooser.js +4 -3
- package/lib/components/choosers/TMDistinctValues.d.ts +9 -7
- package/lib/components/choosers/TMDistinctValues.js +149 -142
- package/lib/components/choosers/TMMetadataChooser.js +1 -1
- package/lib/components/choosers/TMQuickSearchInfo.d.ts +12 -0
- package/lib/components/choosers/TMQuickSearchInfo.js +279 -0
- package/lib/components/choosers/TMQuickSearchSettingsForm.d.ts +16 -0
- package/lib/components/choosers/TMQuickSearchSettingsForm.js +94 -0
- package/lib/components/choosers/TMSelectedValuesSummary.d.ts +13 -0
- package/lib/components/choosers/TMSelectedValuesSummary.js +91 -0
- package/lib/components/editors/TMDropDown.d.ts +3 -0
- package/lib/components/editors/TMDropDown.js +197 -5
- package/lib/components/editors/TMMetadataEditor.d.ts +5 -1
- package/lib/components/editors/TMMetadataEditor.js +8 -3
- package/lib/components/editors/TMTextBox.js +2 -2
- package/lib/components/features/documents/TMBatchUpdateForm.js +19 -5
- package/lib/components/features/documents/TMDcmtBlog.d.ts +3 -0
- package/lib/components/features/documents/TMDcmtBlog.js +4 -4
- package/lib/components/features/documents/TMDcmtForm.d.ts +7 -0
- package/lib/components/features/documents/TMDcmtForm.js +112 -45
- package/lib/components/features/documents/TMDcmtFormActionButtons.d.ts +11 -0
- package/lib/components/features/documents/TMDcmtFormActionButtons.js +74 -7
- package/lib/components/features/documents/TMDcmtPreview.js +10 -6
- package/lib/components/features/documents/TMMasterDetailDcmts.js +95 -33
- package/lib/components/features/documents/TMMasterInfoFields.d.ts +19 -0
- package/lib/components/features/documents/TMMasterInfoFields.js +186 -0
- package/lib/components/features/documents/TMMergeToPdfForm.d.ts +1 -2
- package/lib/components/features/documents/TMMergeToPdfForm.js +30 -5
- package/lib/components/features/documents/TMMultiMasterDetailDcmtsForm.d.ts +45 -0
- package/lib/components/features/documents/TMMultiMasterDetailDcmtsForm.js +323 -0
- package/lib/components/features/documents/TMMultiMasterDetailDcmtsUtils.d.ts +370 -0
- package/lib/components/features/documents/TMMultiMasterDetailDcmtsUtils.js +283 -0
- package/lib/components/features/documents/TMRelationViewer.d.ts +14 -1
- package/lib/components/features/documents/TMRelationViewer.js +69 -20
- package/lib/components/features/search/TMSearch.js +31 -18
- package/lib/components/features/search/TMSearchQueryEditor.js +5 -3
- package/lib/components/features/search/TMSearchQueryPanel.d.ts +2 -1
- package/lib/components/features/search/TMSearchQueryPanel.js +45 -9
- package/lib/components/features/search/TMSearchResult.d.ts +15 -0
- package/lib/components/features/search/TMSearchResult.js +509 -187
- package/lib/components/features/search/TMTreeSelector.js +18 -5
- package/lib/components/features/workflow/TMWorkflowPopup.d.ts +10 -0
- package/lib/components/features/workflow/TMWorkflowPopup.js +8 -4
- package/lib/components/layout/panelManager/TMPanelManagerContainer.d.ts +1 -0
- package/lib/components/layout/panelManager/TMPanelManagerContainer.js +24 -14
- package/lib/components/layout/panelManager/TMPanelManagerContext.js +68 -93
- package/lib/components/layout/panelManager/TMPanelWrapper.js +2 -2
- package/lib/components/layout/panelManager/types.d.ts +3 -0
- package/lib/components/layout/panelManager/utils.js +13 -11
- package/lib/components/viewers/TMMidViewer.js +4 -1
- package/lib/components/viewers/TMTidViewer.js +25 -11
- package/lib/devextreme-license.d.ts +1 -0
- package/lib/devextreme-license.js +3 -0
- package/lib/helper/SDKUI_Globals.d.ts +109 -0
- package/lib/helper/SDKUI_Globals.js +150 -0
- package/lib/helper/SDKUI_Localizator.d.ts +34 -0
- package/lib/helper/SDKUI_Localizator.js +340 -0
- package/lib/helper/TMIcons.d.ts +1 -0
- package/lib/helper/TMIcons.js +3 -0
- package/lib/helper/dataGridSearchHelper.d.ts +28 -0
- package/lib/helper/dataGridSearchHelper.js +51 -0
- package/lib/helper/dcmtsHelper.d.ts +20 -0
- package/lib/helper/dcmtsHelper.js +58 -1
- package/lib/helper/helpers.d.ts +20 -0
- package/lib/helper/helpers.js +55 -1
- package/lib/helper/index.d.ts +1 -0
- package/lib/helper/index.js +1 -0
- package/lib/helper/queryHelper.d.ts +2 -0
- package/lib/helper/queryHelper.js +3 -1
- package/lib/hooks/tmDistinctValuesGridHelper.d.ts +16 -0
- package/lib/hooks/tmDistinctValuesGridHelper.js +31 -0
- package/lib/hooks/useArchiveListForm.d.ts +39 -0
- package/lib/hooks/useArchiveListForm.js +46 -0
- package/lib/hooks/useCaseFlowApprove.d.ts +56 -0
- package/lib/hooks/useCaseFlowApprove.js +157 -0
- package/lib/hooks/useDataUserIdItem.d.ts +1 -0
- package/lib/hooks/useDataUserIdItem.js +1 -0
- package/lib/hooks/useDocumentOperations.d.ts +4 -0
- package/lib/hooks/useDocumentOperations.js +41 -7
- package/lib/hooks/useMultiMasterDetailDcmts.d.ts +113 -0
- package/lib/hooks/useMultiMasterDetailDcmts.js +760 -0
- package/lib/hooks/useRelatedDocuments.js +2 -26
- package/lib/hooks/useShowDossiersV5.d.ts +12 -0
- package/lib/hooks/useShowDossiersV5.js +37 -0
- package/lib/hooks/useTMDistinctValuesMetadataDisplay.d.ts +18 -0
- package/lib/hooks/useTMDistinctValuesMetadataDisplay.js +103 -0
- package/lib/hooks/useTMDistinctValuesQuickSearch.d.ts +49 -0
- package/lib/hooks/useTMDistinctValuesQuickSearch.js +307 -0
- package/lib/hooks/useTMDistinctValuesSelection.d.ts +42 -0
- package/lib/hooks/useTMDistinctValuesSelection.js +103 -0
- package/lib/hooks/useTMDistinctValuesSource.d.ts +29 -0
- package/lib/hooks/useTMDistinctValuesSource.js +105 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +5 -2
- package/lib/services/caseflow/CaseFlowService.d.ts +236 -0
- package/lib/services/caseflow/CaseFlowService.js +693 -0
- package/lib/services/caseflow/CaseFlowTemplateCacheService.d.ts +28 -0
- package/lib/services/caseflow/CaseFlowTemplateCacheService.js +121 -0
- package/lib/services/caseflow/caseFlowNameCache.d.ts +32 -0
- package/lib/services/caseflow/caseFlowNameCache.js +116 -0
- package/lib/services/caseflow/caseFlowWorkItemUtils.d.ts +61 -0
- package/lib/services/caseflow/caseFlowWorkItemUtils.js +113 -0
- package/lib/services/index.d.ts +4 -0
- package/lib/services/index.js +4 -0
- package/lib/services/platform_services.d.ts +1 -1
- package/package.json +9 -5
|
@@ -67,6 +67,18 @@ export declare class ThemeSettings {
|
|
|
67
67
|
export declare const DEFAULT_PREVIEW_THRESHOLD = 500;
|
|
68
68
|
export declare const DEFAULT_PAGE_SIZE = 100;
|
|
69
69
|
export declare const DEFAULT_MAX_DCMTS_TO_BE_RETURNED = 200;
|
|
70
|
+
export declare const DEFAULT_QUICK_SEARCH_MAX_DCMTS = 1000;
|
|
71
|
+
/** Ricerca rapida configurata come sorgente alternativa dei valori distinti di un campo */
|
|
72
|
+
export declare class DistinctValuesQuickSearchSettings {
|
|
73
|
+
/** Tipo documento su cui viene eseguita la ricerca rapida */
|
|
74
|
+
tid: number | undefined;
|
|
75
|
+
/** ID della ricerca salvata (SavedQueryDescriptor) da eseguire; SYS_ALL_DCMTS_SQD_ID per la ricerca di sistema con tutti i documenti del tipo documento */
|
|
76
|
+
sqdId: number | undefined;
|
|
77
|
+
/** Metadato del risultato da cui viene prelevato il valore */
|
|
78
|
+
mid: number | undefined;
|
|
79
|
+
/** Numero massimo di documenti restituiti dalla ricerca rapida */
|
|
80
|
+
maxDcmtsToBeReturned: number;
|
|
81
|
+
}
|
|
70
82
|
export declare class SearchSettings {
|
|
71
83
|
autoFindReferences: ObjectClasses[];
|
|
72
84
|
invoiceRetrieveFormat: InvoiceRetrieveFormats;
|
|
@@ -85,7 +97,38 @@ export declare class SearchSettings {
|
|
|
85
97
|
};
|
|
86
98
|
};
|
|
87
99
|
relationExpandLevel: number;
|
|
100
|
+
relationShowZeroDcmts: boolean;
|
|
101
|
+
/** Layout dei pannelli del risultato di ricerca, condiviso dai contesti che lo gestiscono */
|
|
102
|
+
resultPanelLayout: SearchResultPanelStates;
|
|
103
|
+
/** Ricerche rapide configurate per i valori distinti: una per ogni campo, con chiave "tid_mid" */
|
|
104
|
+
distinctValuesQuickSearches: {
|
|
105
|
+
[fieldKey: string]: DistinctValuesQuickSearchSettings;
|
|
106
|
+
};
|
|
88
107
|
}
|
|
108
|
+
/** Visibilità e dimensioni dei pannelli, per id pannello */
|
|
109
|
+
export type SearchResultPanelStates = Record<string, {
|
|
110
|
+
visible: boolean;
|
|
111
|
+
width: string;
|
|
112
|
+
height: string;
|
|
113
|
+
}>;
|
|
114
|
+
/** Avvisa i risultati di ricerca già montati quando un altro salva il layout; ritorna la disiscrizione */
|
|
115
|
+
export declare const subscribeSearchResultPanelLayout: (onLayoutChanged: () => void) => (() => void);
|
|
116
|
+
/** Layout salvato; vuoto se non ne è stato salvato nessuno (anche per le impostazioni di versioni precedenti) */
|
|
117
|
+
export declare const getSearchResultPanelLayout: () => SearchResultPanelStates;
|
|
118
|
+
/** Il panel manager applica il layout salvato solo se esiste, altrimenti riparte dalle quote di default */
|
|
119
|
+
export declare const hasSearchResultPanelLayout: () => boolean;
|
|
120
|
+
/** Firma del layout salvato: un primitivo confrontabile, come richiede useSyncExternalStore */
|
|
121
|
+
export declare const getSearchResultPanelLayoutSignature: () => string;
|
|
122
|
+
/**
|
|
123
|
+
* @param disabledPanelIds Pannelli che il risultato chiamante non può mostrare: il loro stato resta quello
|
|
124
|
+
* già salvato, perché sono chiusi per via del tipo documento e non per scelta
|
|
125
|
+
* dell'utente. Sovrascriverlo li chiuderebbe anche dove sono attivi.
|
|
126
|
+
*/
|
|
127
|
+
export declare const saveSearchResultPanelLayout: (panelStates: SearchResultPanelStates, disabledPanelIds?: Array<string>) => void;
|
|
128
|
+
/** Ricerca rapida configurata per il campo, se presente */
|
|
129
|
+
export declare const getDistinctValuesQuickSearch: (tid: number | undefined, mid: number | undefined) => DistinctValuesQuickSearchSettings | undefined;
|
|
130
|
+
export declare const saveDistinctValuesQuickSearch: (tid: number | undefined, mid: number | undefined, settings: DistinctValuesQuickSearchSettings) => void;
|
|
131
|
+
export declare const removeDistinctValuesQuickSearch: (tid: number | undefined, mid: number | undefined) => void;
|
|
89
132
|
export declare class FloatingMenuBarSettings {
|
|
90
133
|
orientation?: 'horizontal' | 'vertical';
|
|
91
134
|
itemIds?: string[];
|
|
@@ -95,10 +138,68 @@ export declare class FloatingMenuBarSettings {
|
|
|
95
138
|
};
|
|
96
139
|
positionFormat?: 'pixels' | 'percentage';
|
|
97
140
|
}
|
|
141
|
+
/** Sezioni del riepilogo dell'archiviazione multipla dei dettagli, aperte o collassate */
|
|
142
|
+
export type MultiDetailSectionsOpen = {
|
|
143
|
+
masterInfo: boolean;
|
|
144
|
+
archivedDetails: boolean;
|
|
145
|
+
archiveList: boolean;
|
|
146
|
+
};
|
|
147
|
+
/** Stato persistito di un pannello del riepilogo: visibilità e dimensioni, nel formato del panel manager */
|
|
148
|
+
export type MultiDetailPanelState = {
|
|
149
|
+
visible: boolean;
|
|
150
|
+
width: string;
|
|
151
|
+
height: string;
|
|
152
|
+
};
|
|
153
|
+
/** Stato dei pannelli del riepilogo, indicizzato per id pannello */
|
|
154
|
+
export type MultiDetailPanelStates = Record<string, MultiDetailPanelState>;
|
|
155
|
+
/** Passi dell'archiviazione multipla di cui si ricordano le dimensioni del modale */
|
|
156
|
+
export type MultiDetailModalStep = 'selectDcmtType' | 'archiveSummary';
|
|
157
|
+
/** Dimensioni salvate del modale, in formato CSS (es. '1200px') */
|
|
158
|
+
export type MultiDetailModalSize = {
|
|
159
|
+
width: string;
|
|
160
|
+
height: string;
|
|
161
|
+
};
|
|
162
|
+
/** Dimensioni del modale indicizzate per passo */
|
|
163
|
+
export type MultiDetailModalSizes = Partial<Record<MultiDetailModalStep, MultiDetailModalSize>>;
|
|
98
164
|
export declare class ArchivingSettings {
|
|
99
165
|
mruTIDs: number[];
|
|
100
166
|
defaultTree: number;
|
|
167
|
+
/**
|
|
168
|
+
* Sezioni collassate dall'utente nel riepilogo, ripristinate alla riapertura. Assente finché
|
|
169
|
+
* l'utente non ne chiude una: le impostazioni di default non vanno scritte nel local storage
|
|
170
|
+
*/
|
|
171
|
+
multiDetailSectionsOpen?: MultiDetailSectionsOpen;
|
|
172
|
+
/**
|
|
173
|
+
* Altezze dei pannelli del riepilogo, gestite dal panel manager. Non comprende il collasso delle
|
|
174
|
+
* sezioni, che è in multiDetailSectionsOpen: assente finché l'utente non sposta un separatore.
|
|
175
|
+
*/
|
|
176
|
+
multiDetailPanelStates?: MultiDetailPanelStates;
|
|
177
|
+
/**
|
|
178
|
+
* Dimensioni del modale scelte dall'utente, distinte per passo (scelta del tipo e riepilogo partono
|
|
179
|
+
* da dimensioni molto diverse). Assenti finché non ridimensiona il modale in quel passo.
|
|
180
|
+
*/
|
|
181
|
+
multiDetailModalSizes?: MultiDetailModalSizes;
|
|
101
182
|
}
|
|
183
|
+
/** Stato di apertura salvato delle sezioni: i default coprono l'impostazione mai modificata dall'utente */
|
|
184
|
+
export declare const getMultiDetailSectionsOpen: () => MultiDetailSectionsOpen;
|
|
185
|
+
export declare const saveMultiDetailSectionsOpen: (sectionsOpen: MultiDetailSectionsOpen) => void;
|
|
186
|
+
/** Stato salvato dei pannelli: vuoto finché l'utente non ne ha ridimensionato nessuno */
|
|
187
|
+
export declare const getMultiDetailPanelStates: () => MultiDetailPanelStates;
|
|
188
|
+
/** Il panel manager applica lo stato salvato solo se esiste: altrimenti riparte dalle quote di default */
|
|
189
|
+
export declare const hasMultiDetailPanelStates: () => boolean;
|
|
190
|
+
export declare const saveMultiDetailPanelStates: (panelStates: MultiDetailPanelStates) => void;
|
|
191
|
+
/** Assenti se l'utente non ha mai ridimensionato il modale in quel passo */
|
|
192
|
+
export declare const getMultiDetailModalSize: (step: MultiDetailModalStep) => MultiDetailModalSize | undefined;
|
|
193
|
+
export declare const hasMultiDetailModalSizes: () => boolean;
|
|
194
|
+
/** Salva le dimensioni del passo indicato, lasciando invariate quelle degli altri */
|
|
195
|
+
export declare const saveMultiDetailModalSize: (step: MultiDetailModalStep, size: MultiDetailModalSize) => void;
|
|
196
|
+
/** C'è un layout dell'utente da cancellare: nel local storage le impostazioni ci sono solo se diverse dai default */
|
|
197
|
+
export declare const hasMultiDetailLayout: () => boolean;
|
|
198
|
+
/**
|
|
199
|
+
* Elimina dal local storage il layout configurato dall'utente: altezze dei pannelli, sezioni
|
|
200
|
+
* collassate e dimensioni del modale. Tutto torna ai default: modale, quote e sezioni espanse.
|
|
201
|
+
*/
|
|
202
|
+
export declare const clearMultiDetailLayout: () => void;
|
|
102
203
|
export declare class FullTextSettings {
|
|
103
204
|
mruTerms: string[];
|
|
104
205
|
}
|
|
@@ -108,13 +209,21 @@ export declare class DevSettings {
|
|
|
108
209
|
export declare class AdvancedSettings {
|
|
109
210
|
private _expertMode;
|
|
110
211
|
private _scannerLicense;
|
|
212
|
+
private _showDossiersV5;
|
|
111
213
|
get expertMode(): number;
|
|
112
214
|
set expertMode(value: number);
|
|
113
215
|
get scannerLicense(): string;
|
|
114
216
|
set scannerLicense(value: string);
|
|
217
|
+
/**
|
|
218
|
+
* Mostra le pratiche "V5" (i dossier) accanto al CaseFlow che le sostituisce.
|
|
219
|
+
* 0 = nascoste (default), 1 = visibili.
|
|
220
|
+
*/
|
|
221
|
+
get showDossiersV5(): number;
|
|
222
|
+
set showDossiersV5(value: number);
|
|
115
223
|
toJSON(): {
|
|
116
224
|
expertMode: number;
|
|
117
225
|
scannerLicense: string;
|
|
226
|
+
showDossiersV5: number;
|
|
118
227
|
};
|
|
119
228
|
}
|
|
120
229
|
export declare class CtrlWfSettings {
|
|
@@ -130,6 +130,20 @@ export class ThemeSettings {
|
|
|
130
130
|
export const DEFAULT_PREVIEW_THRESHOLD = 500; // KB
|
|
131
131
|
export const DEFAULT_PAGE_SIZE = 100;
|
|
132
132
|
export const DEFAULT_MAX_DCMTS_TO_BE_RETURNED = 200;
|
|
133
|
+
export const DEFAULT_QUICK_SEARCH_MAX_DCMTS = 1000;
|
|
134
|
+
/** Ricerca rapida configurata come sorgente alternativa dei valori distinti di un campo */
|
|
135
|
+
export class DistinctValuesQuickSearchSettings {
|
|
136
|
+
constructor() {
|
|
137
|
+
/** Tipo documento su cui viene eseguita la ricerca rapida */
|
|
138
|
+
this.tid = undefined;
|
|
139
|
+
/** ID della ricerca salvata (SavedQueryDescriptor) da eseguire; SYS_ALL_DCMTS_SQD_ID per la ricerca di sistema con tutti i documenti del tipo documento */
|
|
140
|
+
this.sqdId = undefined;
|
|
141
|
+
/** Metadato del risultato da cui viene prelevato il valore */
|
|
142
|
+
this.mid = undefined;
|
|
143
|
+
/** Numero massimo di documenti restituiti dalla ricerca rapida */
|
|
144
|
+
this.maxDcmtsToBeReturned = DEFAULT_QUICK_SEARCH_MAX_DCMTS;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
133
147
|
export class SearchSettings {
|
|
134
148
|
constructor() {
|
|
135
149
|
this.autoFindReferences = [];
|
|
@@ -143,16 +157,135 @@ export class SearchSettings {
|
|
|
143
157
|
this.floatingMenuBar = new FloatingMenuBarSettings();
|
|
144
158
|
this.panelLayout = {};
|
|
145
159
|
this.relationExpandLevel = 4; // Livello di espansione predefinito per le correlazioni
|
|
160
|
+
this.relationShowZeroDcmts = false;
|
|
161
|
+
/** Layout dei pannelli del risultato di ricerca, condiviso dai contesti che lo gestiscono */
|
|
162
|
+
this.resultPanelLayout = {};
|
|
163
|
+
/** Ricerche rapide configurate per i valori distinti: una per ogni campo, con chiave "tid_mid" */
|
|
164
|
+
this.distinctValuesQuickSearches = {};
|
|
146
165
|
}
|
|
147
166
|
}
|
|
167
|
+
const resultPanelLayoutSubscribers = new Set();
|
|
168
|
+
/** Avvisa i risultati di ricerca già montati quando un altro salva il layout; ritorna la disiscrizione */
|
|
169
|
+
export const subscribeSearchResultPanelLayout = (onLayoutChanged) => {
|
|
170
|
+
resultPanelLayoutSubscribers.add(onLayoutChanged);
|
|
171
|
+
return () => { resultPanelLayoutSubscribers.delete(onLayoutChanged); };
|
|
172
|
+
};
|
|
173
|
+
/** Layout salvato; vuoto se non ne è stato salvato nessuno (anche per le impostazioni di versioni precedenti) */
|
|
174
|
+
export const getSearchResultPanelLayout = () => SDKUI_Globals.userSettings.searchSettings?.resultPanelLayout ?? {};
|
|
175
|
+
/** Il panel manager applica il layout salvato solo se esiste, altrimenti riparte dalle quote di default */
|
|
176
|
+
export const hasSearchResultPanelLayout = () => Object.keys(getSearchResultPanelLayout()).length > 0;
|
|
177
|
+
/** Riassume un layout in una stringa: ordinata per id, così due layout uguali danno la stessa firma */
|
|
178
|
+
const searchResultPanelLayoutSignature = (panelStates) => Object.entries(panelStates)
|
|
179
|
+
.sort(([firstId], [secondId]) => firstId.localeCompare(secondId))
|
|
180
|
+
.map(([id, state]) => `${id}:${state?.visible ? 1 : 0}:${state?.width ?? ''}:${state?.height ?? ''}`)
|
|
181
|
+
.join('|');
|
|
182
|
+
/** Firma del layout salvato: un primitivo confrontabile, come richiede useSyncExternalStore */
|
|
183
|
+
export const getSearchResultPanelLayoutSignature = () => searchResultPanelLayoutSignature(getSearchResultPanelLayout());
|
|
184
|
+
/**
|
|
185
|
+
* @param disabledPanelIds Pannelli che il risultato chiamante non può mostrare: il loro stato resta quello
|
|
186
|
+
* già salvato, perché sono chiusi per via del tipo documento e non per scelta
|
|
187
|
+
* dell'utente. Sovrascriverlo li chiuderebbe anche dove sono attivi.
|
|
188
|
+
*/
|
|
189
|
+
export const saveSearchResultPanelLayout = (panelStates, disabledPanelIds = []) => {
|
|
190
|
+
if (!panelStates || Object.keys(panelStates).length === 0)
|
|
191
|
+
return;
|
|
192
|
+
const savedLayout = getSearchResultPanelLayout();
|
|
193
|
+
const layout = { ...panelStates };
|
|
194
|
+
disabledPanelIds.forEach(id => { if (savedLayout[id])
|
|
195
|
+
layout[id] = { ...savedLayout[id] }; });
|
|
196
|
+
// Layout identico: senza questo controllo ogni scrittura avviserebbe a vuoto gli altri risultati aperti
|
|
197
|
+
if (searchResultPanelLayoutSignature(layout) === getSearchResultPanelLayoutSignature())
|
|
198
|
+
return;
|
|
199
|
+
// Il proxy persiste solo intercettando l'assegnazione di una proprietà: va riassegnata l'intera mappa
|
|
200
|
+
SDKUI_Globals.userSettings.searchSettings.resultPanelLayout = layout;
|
|
201
|
+
resultPanelLayoutSubscribers.forEach(onLayoutChanged => onLayoutChanged());
|
|
202
|
+
};
|
|
203
|
+
/** Il campo da cui viene aperto il pannello dei valori distinti è identificato dalla coppia (tid, mid) */
|
|
204
|
+
const distinctValuesFieldKey = (tid, mid) => `${tid}_${mid}`;
|
|
205
|
+
/** Ricerca rapida configurata per il campo, se presente */
|
|
206
|
+
export const getDistinctValuesQuickSearch = (tid, mid) => {
|
|
207
|
+
if (!tid || !mid)
|
|
208
|
+
return undefined;
|
|
209
|
+
// Le impostazioni salvate da versioni precedenti non hanno la mappa: va gestita l'assenza
|
|
210
|
+
return SDKUI_Globals.userSettings.searchSettings.distinctValuesQuickSearches?.[distinctValuesFieldKey(tid, mid)];
|
|
211
|
+
};
|
|
212
|
+
export const saveDistinctValuesQuickSearch = (tid, mid, settings) => {
|
|
213
|
+
if (!tid || !mid)
|
|
214
|
+
return;
|
|
215
|
+
// Il proxy delle impostazioni persiste solo intercettando l'assegnazione di una proprietà: la mappa va riassegnata per intero
|
|
216
|
+
SDKUI_Globals.userSettings.searchSettings.distinctValuesQuickSearches = {
|
|
217
|
+
...SDKUI_Globals.userSettings.searchSettings.distinctValuesQuickSearches,
|
|
218
|
+
[distinctValuesFieldKey(tid, mid)]: settings,
|
|
219
|
+
};
|
|
220
|
+
};
|
|
221
|
+
export const removeDistinctValuesQuickSearch = (tid, mid) => {
|
|
222
|
+
if (!tid || !mid)
|
|
223
|
+
return;
|
|
224
|
+
const fieldKey = distinctValuesFieldKey(tid, mid);
|
|
225
|
+
const quickSearches = SDKUI_Globals.userSettings.searchSettings.distinctValuesQuickSearches;
|
|
226
|
+
if (!quickSearches?.[fieldKey])
|
|
227
|
+
return;
|
|
228
|
+
const { [fieldKey]: removedSettings, ...remainingQuickSearches } = quickSearches;
|
|
229
|
+
SDKUI_Globals.userSettings.searchSettings.distinctValuesQuickSearches = remainingQuickSearches;
|
|
230
|
+
};
|
|
148
231
|
export class FloatingMenuBarSettings {
|
|
149
232
|
}
|
|
233
|
+
/** Alla prima apertura le sezioni sono tutte espanse */
|
|
234
|
+
const DEFAULT_MULTI_DETAIL_SECTIONS_OPEN = { masterInfo: true, archivedDetails: true, archiveList: true };
|
|
150
235
|
export class ArchivingSettings {
|
|
151
236
|
constructor() {
|
|
152
237
|
this.mruTIDs = [];
|
|
153
238
|
this.defaultTree = -1;
|
|
154
239
|
}
|
|
155
240
|
}
|
|
241
|
+
/** Stato di apertura salvato delle sezioni: i default coprono l'impostazione mai modificata dall'utente */
|
|
242
|
+
export const getMultiDetailSectionsOpen = () => ({
|
|
243
|
+
...DEFAULT_MULTI_DETAIL_SECTIONS_OPEN,
|
|
244
|
+
...SDKUI_Globals.userSettings.archivingSettings?.multiDetailSectionsOpen,
|
|
245
|
+
});
|
|
246
|
+
export const saveMultiDetailSectionsOpen = (sectionsOpen) => {
|
|
247
|
+
const isDefault = Object.keys(DEFAULT_MULTI_DETAIL_SECTIONS_OPEN)
|
|
248
|
+
.every(section => sectionsOpen[section] === DEFAULT_MULTI_DETAIL_SECTIONS_OPEN[section]);
|
|
249
|
+
// Il proxy persiste solo intercettando l'assegnazione di una proprietà: la mappa va riassegnata per intero.
|
|
250
|
+
// Tornata ai default l'impostazione va rimossa, così nel local storage restano solo le modifiche dell'utente
|
|
251
|
+
SDKUI_Globals.userSettings.archivingSettings.multiDetailSectionsOpen = isDefault ? undefined : { ...sectionsOpen };
|
|
252
|
+
};
|
|
253
|
+
/** Stato salvato dei pannelli: vuoto finché l'utente non ne ha ridimensionato nessuno */
|
|
254
|
+
export const getMultiDetailPanelStates = () => SDKUI_Globals.userSettings.archivingSettings?.multiDetailPanelStates ?? {};
|
|
255
|
+
/** Il panel manager applica lo stato salvato solo se esiste: altrimenti riparte dalle quote di default */
|
|
256
|
+
export const hasMultiDetailPanelStates = () => Object.keys(getMultiDetailPanelStates()).length > 0;
|
|
257
|
+
export const saveMultiDetailPanelStates = (panelStates) => {
|
|
258
|
+
if (!panelStates || Object.keys(panelStates).length === 0)
|
|
259
|
+
return;
|
|
260
|
+
// Il proxy persiste solo intercettando l'assegnazione di una proprietà: la mappa va riassegnata per intero
|
|
261
|
+
SDKUI_Globals.userSettings.archivingSettings.multiDetailPanelStates = { ...panelStates };
|
|
262
|
+
};
|
|
263
|
+
/** Assenti se l'utente non ha mai ridimensionato il modale in quel passo */
|
|
264
|
+
export const getMultiDetailModalSize = (step) => SDKUI_Globals.userSettings.archivingSettings?.multiDetailModalSizes?.[step];
|
|
265
|
+
export const hasMultiDetailModalSizes = () => Object.keys(SDKUI_Globals.userSettings.archivingSettings?.multiDetailModalSizes ?? {}).length > 0;
|
|
266
|
+
/** Salva le dimensioni del passo indicato, lasciando invariate quelle degli altri */
|
|
267
|
+
export const saveMultiDetailModalSize = (step, size) => {
|
|
268
|
+
if (!size?.width || !size?.height)
|
|
269
|
+
return;
|
|
270
|
+
// Il proxy persiste solo intercettando l'assegnazione di una proprietà: la mappa va riassegnata per intero
|
|
271
|
+
SDKUI_Globals.userSettings.archivingSettings.multiDetailModalSizes = {
|
|
272
|
+
...SDKUI_Globals.userSettings.archivingSettings?.multiDetailModalSizes,
|
|
273
|
+
[step]: { ...size },
|
|
274
|
+
};
|
|
275
|
+
};
|
|
276
|
+
/** C'è un layout dell'utente da cancellare: nel local storage le impostazioni ci sono solo se diverse dai default */
|
|
277
|
+
export const hasMultiDetailLayout = () => hasMultiDetailPanelStates() || hasMultiDetailModalSizes() || SDKUI_Globals.userSettings.archivingSettings?.multiDetailSectionsOpen !== undefined;
|
|
278
|
+
/**
|
|
279
|
+
* Elimina dal local storage il layout configurato dall'utente: altezze dei pannelli, sezioni
|
|
280
|
+
* collassate e dimensioni del modale. Tutto torna ai default: modale, quote e sezioni espanse.
|
|
281
|
+
*/
|
|
282
|
+
export const clearMultiDetailLayout = () => {
|
|
283
|
+
// Il proxy persiste solo intercettando l'assegnazione di una proprietà: tutti i campi vanno riassegnati.
|
|
284
|
+
// Senza valore spariscono dal local storage e alla riapertura tornano validi i default
|
|
285
|
+
SDKUI_Globals.userSettings.archivingSettings.multiDetailPanelStates = undefined;
|
|
286
|
+
SDKUI_Globals.userSettings.archivingSettings.multiDetailSectionsOpen = undefined;
|
|
287
|
+
SDKUI_Globals.userSettings.archivingSettings.multiDetailModalSizes = undefined;
|
|
288
|
+
};
|
|
156
289
|
export class FullTextSettings {
|
|
157
290
|
constructor() {
|
|
158
291
|
this.mruTerms = [];
|
|
@@ -167,6 +300,7 @@ export class AdvancedSettings {
|
|
|
167
300
|
constructor() {
|
|
168
301
|
this._expertMode = 0;
|
|
169
302
|
this._scannerLicense = '';
|
|
303
|
+
this._showDossiersV5 = 0;
|
|
170
304
|
}
|
|
171
305
|
get expertMode() {
|
|
172
306
|
return this._expertMode;
|
|
@@ -185,11 +319,27 @@ export class AdvancedSettings {
|
|
|
185
319
|
set scannerLicense(value) {
|
|
186
320
|
this._scannerLicense = value;
|
|
187
321
|
}
|
|
322
|
+
/**
|
|
323
|
+
* Mostra le pratiche "V5" (i dossier) accanto al CaseFlow che le sostituisce.
|
|
324
|
+
* 0 = nascoste (default), 1 = visibili.
|
|
325
|
+
*/
|
|
326
|
+
get showDossiersV5() {
|
|
327
|
+
return this._showDossiersV5;
|
|
328
|
+
}
|
|
329
|
+
set showDossiersV5(value) {
|
|
330
|
+
if (this._showDossiersV5 !== value) {
|
|
331
|
+
this._showDossiersV5 = value;
|
|
332
|
+
// Come per expertMode: chi mostra la funzione può reagire subito.
|
|
333
|
+
const event = new CustomEvent('showDossiersV5Changed', { detail: value });
|
|
334
|
+
window.dispatchEvent(event);
|
|
335
|
+
}
|
|
336
|
+
}
|
|
188
337
|
// Override toJSON to control serialization (called by JSON.stringify)
|
|
189
338
|
toJSON() {
|
|
190
339
|
return {
|
|
191
340
|
expertMode: this._expertMode,
|
|
192
341
|
scannerLicense: this._scannerLicense,
|
|
342
|
+
showDossiersV5: this._showDossiersV5,
|
|
193
343
|
};
|
|
194
344
|
}
|
|
195
345
|
}
|
|
@@ -49,10 +49,15 @@ export declare class SDKUI_Localizator {
|
|
|
49
49
|
static get ArchiveConstraints_ContentCompulsory(): "Archivierung nur mit Dateien erlauben" | "Allow file only archiving" | "Permitir solo almacenamientos con archivo" | "Autorise uniquement l'archivage de fichiers" | "Permitir somente depósitos com arquivos" | "Consenti solo archiviazioni con file";
|
|
50
50
|
static get ArchiveConstraints_None(): "Alles zulassen" | "Allow everything" | "Permitir todo" | "Autorise tout" | "Permitir que todos" | "Consenti tutto";
|
|
51
51
|
static get ArchiveConstraints_OnlyMetadata(): "Nur Methadatenarchivierung erlauben" | "Allow metadata only archiving" | "Permitir solo almacenamiento de metadatos" | "Autorise uniquement l'archivage de métadonnées" | "Permitir somente os metadados de arquivamento" | "Consenti solo archiviazioni di metadati";
|
|
52
|
+
static get ArchivedDetails(): string;
|
|
52
53
|
static get ArchivedDocuments(): string;
|
|
53
54
|
static get ArchiveID(): "Armazena" | "Dokumentarisches Archiv" | "Documental archive" | "Archivo de documentos" | "Archivage des documents" | "Archivio documentale";
|
|
54
55
|
static get ArchiveDetailDocument(): "Detaildokument archivieren" | "Archive detail document" | "Archivar documento de detalle" | "Archiver le document détail" | "Arquivar documento de detalhe" | "Archivia documento dettaglio";
|
|
55
56
|
static get ArchiveMasterDocument(): "Master-Dokument archivieren" | "Archive master document" | "Archivar documento maestro" | "Archiver le document maître" | "Arquivar documento mestre" | "Archivia documento master";
|
|
57
|
+
static get ArchiveMultipleDetailDocuments(): "Mehrere Details archivieren" | "Archive multiple details" | "Archivar múltiples detalles" | "Archiver plusieurs détails" | "Arquivar múltiplos detalhes" | "Archivia dettagli multipli";
|
|
58
|
+
static get ArchiveMasterAndMultipleDetailDocuments(): "Master mit mehreren Details archivieren" | "Archive master with multiple details" | "Archivar maestro con múltiples detalles" | "Archiver le maître avec plusieurs détails" | "Arquivar mestre com múltiplos detalhes" | "Archivia master con dettagli multipli";
|
|
59
|
+
static get ArchiveMasterAndDetails_Confirm(): "Master archivieren und mit den Details fortfahren?" | "Archive the master and proceed with the details?" | "¿Archivar el maestro y continuar con los detalles?" | "Archiver le maître et poursuivre avec les détails ?" | "Arquivar o mestre e prosseguir com os detalhes?" | "Archiviare il master e proseguire con i dettagli?";
|
|
60
|
+
static get ExitWithoutArchiving_Confirm(): "Möchten Sie wirklich beenden? Die eingegebenen Dokumente werden nicht archiviert. Fortfahren?" | "Are you sure you want to exit? The entered documents will not be archived. Continue?" | "¿Está seguro de que desea salir? Los documentos introducidos no se archivarán. ¿Continuar?" | "Êtes-vous sûr de vouloir quitter ? Les documents saisis ne seront pas archivés. Continuer ?" | "Tem a certeza de que pretende sair? Os documentos introduzidos não serão arquivados. Continuar?" | "Sei sicuro di voler uscire? I documenti inseriti non verranno archiviati. Continuare?";
|
|
56
61
|
static get Archiving(): string;
|
|
57
62
|
static get ArchivingCompletionInProgress(): string;
|
|
58
63
|
static get Arguments(): "Themen" | "Arguments" | "Argumentos" | "Sujets" | "Tópicos" | "Argomenti";
|
|
@@ -76,6 +81,7 @@ export declare class SDKUI_Localizator {
|
|
|
76
81
|
static get CustomButtonAction(): string;
|
|
77
82
|
static get CustomButtonActions(): string;
|
|
78
83
|
static get Back(): "Zurück" | "Back" | "Atrás" | "Dos" | "Voltar" | "Indietro";
|
|
84
|
+
static get BackToResult(): "Zum Ergebnis" | "Go to result" | "Ir al resultado" | "Aller au résultat" | "Ir para o resultado" | "Vai a risultato";
|
|
79
85
|
static get BatchUpdate(): "Mehrfachbearbeitung" | "Multiple modification" | "Modificación múltiple" | "Modifie multiple" | "Editar múltipla" | "Modifica multipla";
|
|
80
86
|
static get BlogCase(): "Anschlagbrett" | "Blog board" | "Tablón" | "Tableau d'affichage" | "Bakeca" | "Bacheca";
|
|
81
87
|
static get Blog_Read(): "Anzeigebrett lesen" | "Reading blog board" | "Lectura tablón" | "Lire le tableau d'affichage" | "Quadro de avisos leitura" | "Lettura bacheca";
|
|
@@ -90,6 +96,7 @@ export declare class SDKUI_Localizator {
|
|
|
90
96
|
static get CancelCheckOut(): string;
|
|
91
97
|
static get Cancel(): "Abbrechen" | "Cancel" | "Anular" | "Annuler" | "Cancelar" | "Annulla";
|
|
92
98
|
static get CancelAndClose(): string;
|
|
99
|
+
static get ChangeMasterWithoutArchiving_Confirm(): "Beim Wechsel des Dokuments werden die eingegebenen Details verworfen und nicht archiviert. Fortfahren?" | "Changing document will discard the entered details without archiving them. Continue?" | "Al cambiar de documento, los detalles introducidos se descartarán sin archivarse. ¿Continuar?" | "En changeant de document, les détails saisis seront abandonnés sans être archivés. Continuer ?" | "Ao mudar de documento, os detalhes introduzidos serão descartados sem serem arquivados. Continuar?" | "Cambiando documento, i dettagli inseriti verranno scartati senza essere archiviati. Continuare?";
|
|
93
100
|
static get ChangePassword(): "Kennwort ändern" | "Change password" | "Cambiar la contraseña" | "Changer le mot de passe" | "Alterar a senha" | "Cambia password";
|
|
94
101
|
static get ChangeStatusTo(): string;
|
|
95
102
|
static get CharactersRemaining(): "verbleibende Zeichen" | "characters remaining" | "caracteres restantes" | "caractères restants" | "caratteri rimanenti";
|
|
@@ -166,11 +173,19 @@ export declare class SDKUI_Localizator {
|
|
|
166
173
|
static get DcmtTypeSelectOrQuickSearch(): "Wählen Sie einen Dokumenttyp oder eine Schnellsuche aus" | "Select a document type or quick search" | "Seleccione un tipo de documento o búsqueda rápida" | "Sélectionnez un type de document ou une recherche rapide" | "Selecione um tipo de documento ou pesquisa rápida" | "Selezionare un tipo documento o ricerca rapida";
|
|
167
174
|
static get Default(): "Standard" | "Default" | "Predeterminado" | "Defaultão";
|
|
168
175
|
static get DefaultFolder(): string;
|
|
176
|
+
static get DcmtTypeStructureNotRetrieved(): "Die Struktur des Dokumenttyps konnte nicht abgerufen werden." | "Unable to retrieve the document type structure." | "No se ha podido recuperar la estructura del tipo de documento." | "Impossible de récupérer la structure du type de document." | "Não foi possível recuperar a estrutura do tipo de documento." | "Non è stato possibile recuperare la struttura del tipo documento.";
|
|
177
|
+
static get DetailCopiedToArchiveList(): "Detail zu den zu archivierenden Details kopiert" | "Detail copied to the details to archive" | "Detalle copiado a los detalles a archivar" | "Détail copié dans les détails à archiver" | "Detalhe copiado para os detalhes a arquivar" | "Dettaglio copiato tra i dettagli da archiviare";
|
|
178
|
+
static get DetailFileNotRetrieved(): "Datei des Details nicht abgerufen" | "Detail file not retrieved" | "Archivo del detalle no recuperado" | "Fichier du détail non récupéré" | "Ficheiro do detalhe não recuperado" | "File del dettaglio non recuperato";
|
|
179
|
+
static get DetailFileToAddFromRowForm(): "Der Dokumenttyp erfordert eine Datei: Fügen Sie sie über das Formular der Zeile hinzu." | "The document type requires a file: add it from the row form." | "El tipo de documento requiere un archivo: añádelo desde el formulario de la fila." | "Le type de document exige un fichier : ajoutez-le depuis le formulaire de la ligne." | "O tipo de documento exige um ficheiro: adicione-o a partir do formulário da linha." | "Il tipo documento richiede un file: aggiungilo dal form della riga.";
|
|
180
|
+
static get DetailMetadataNotRetrieved(): "Die Metadaten des Details konnten nicht abgerufen werden." | "Unable to retrieve the detail metadata." | "No se han podido recuperar los metadatos del detalle." | "Impossible de récupérer les métadonnées du détail." | "Não foi possível recuperar os metadados do detalhe." | "Non è stato possibile recuperare i metadati del dettaglio.";
|
|
181
|
+
static get DetailNotOfSelectedDcmtType(): "Das Detail gehört nicht zum ausgewählten Dokumenttyp." | "The detail does not belong to the selected document type." | "El detalle no pertenece al tipo de documento seleccionado." | "Le détail n'appartient pas au type de document sélectionné." | "O detalhe não pertence ao tipo de documento selecionado." | "Il dettaglio non è del tipo documento selezionato.";
|
|
169
182
|
static get Details(): "Einzelheiten" | "Details" | "Detalles" | "Détails" | "detalhes" | "Dettagli";
|
|
183
|
+
static get DetailsToArchive(): string;
|
|
170
184
|
static get Delete(): "Löschen" | "Delete" | "Borrar" | "Supprimer" | "Excluir" | "Elimina";
|
|
171
185
|
static get Delete_ConfirmFor1(): "Löschen Sie '{{0}}'?" | "Delete '{{0}}'?" | "¿Eliminar '{{0}}'?" | "Voulez-vous éliminer '{{0}}'?" | "Eliminar '{{0}}'?" | "Eliminare '{{0}}'?";
|
|
172
186
|
static get Delete_ConfirmForN(): "{{0}} Ausgewählte Objekte. Alle löschen?" | "{{0}} selected objects. Delete them all?" | "{{0}} objetos seleccionados. ¿Eliminarlos todos?" | "{{0}} objets sélectionnés. Éliminez-les tous?" | "{{0}} objetos selecionados. Eliminá-los todos?" | "{{0}} oggetti selezionati. Eliminarli tutti?";
|
|
173
187
|
static get DeleteComment(): "Kommentar löschen?" | "Delete the comment?" | "¿Eliminar el comentario?" | "Supprimer le commentaire ?" | "Eliminar o comentário?" | "Eliminare il commento?";
|
|
188
|
+
static get DeleteAllRowsToChangeDcmtType(): "Löschen Sie alle Zeilen, um den Dokumenttyp zu ändern" | "Delete all rows to change the document type" | "Elimine todas las filas para poder cambiar el tipo de documento" | "Supprimez toutes les lignes pour pouvoir changer le type de document" | "Elimine todas as linhas para poder alterar o tipo de documento" | "Elimina tutte le righe per poter cambiare tipo documento";
|
|
174
189
|
static get DeleteDeletedMessages(): string;
|
|
175
190
|
static get DeleteSystemMessages(): string;
|
|
176
191
|
static get Deletion(): string;
|
|
@@ -404,11 +419,15 @@ export declare class SDKUI_Localizator {
|
|
|
404
419
|
static get Grids(): string;
|
|
405
420
|
static get Hide_CompleteName(): "Vollständigen Namen ausblenden" | "Hide full name" | "Ocultar nombre completo" | "Masquer le nom complet" | "Ocultar nome completo" | "Nascondi nome completo";
|
|
406
421
|
static get HideAll(): "Alle ausblenden" | "Hide all" | "Ocultar todo" | "Masquer tout" | "Ocultar tudo" | "Nascondi tutti";
|
|
422
|
+
static get HideArchivedDetails(): string;
|
|
423
|
+
static get HideDcmtTypes(): string;
|
|
424
|
+
static get HideDetailsToArchive(): string;
|
|
407
425
|
static get HideDetailsWithZeroDocs(): string;
|
|
408
426
|
static get HideFloatingBar(): string;
|
|
409
427
|
static get HideFilters(): string;
|
|
410
428
|
static get HideLeftPanel(): "Linkes Panel ausblenden" | "Hide left panel" | "Ocultar panel izquierdo" | "Masquer le panneau de gauche" | "Ocultar painel esquerdo" | "Nascondi il pannello sinistro";
|
|
411
429
|
static get HideFormattingOptions(): "Formatierungsoptionen ausblenden" | "Hide formatting options" | "Ocultar opciones de formato" | "Masquer les options de formatage" | "Ocultar opções de formatação" | "Nascondi opzioni di formattazione";
|
|
430
|
+
static get HideMasterInfo(): string;
|
|
412
431
|
static get HideMetadata(): string;
|
|
413
432
|
static get HideSearch(): "Suche ausblenden" | "Hide search" | "Ocultar búsqueda" | "Masquer la recherche" | "Ocultar pesquisa" | "Nascondi ricerca";
|
|
414
433
|
static get High(): "Hoch" | "High" | "Alta" | "Élevée";
|
|
@@ -442,6 +461,7 @@ export declare class SDKUI_Localizator {
|
|
|
442
461
|
static get LastUpdateTime(): "Letzte Änderung" | "Last update Time" | "Última modificación" | "Dernière modifie" | "Última modificação" | "Ultima modifica";
|
|
443
462
|
static get LastVersion(): string;
|
|
444
463
|
static get Latest(): string;
|
|
464
|
+
static get LayoutRemoved(): string;
|
|
445
465
|
static get LexProt(): "Lex-Schutz" | "Lex protection" | "Protección Lex" | "Protection Lex" | "Proteção Lex" | "Protezione Lex";
|
|
446
466
|
static get Line(): "Linie" | "Line" | "Línea" | "Ligne" | "Linha" | "Linea";
|
|
447
467
|
static get List(): "Liste" | "List" | "Lista";
|
|
@@ -655,6 +675,7 @@ export declare class SDKUI_Localizator {
|
|
|
655
675
|
static get QueryDefine(): "Abfrage definieren" | "Query define" | "Definir consulta" | "Défine query" | "Definir query" | "Definisci query";
|
|
656
676
|
static get Query_EnterAlias(): "Geben Sie einen Alias ein" | "Enter an alias" | "Introducir un alias" | "Entrez un alias" | "Digite um nome de alias" | "Inserire un alias";
|
|
657
677
|
static get QueryParamBind(): "Query-Parameter erweitern" | "Fill query parameters" | "Valorizar parámetros consulta" | "Ajoute la valeur à les paramètres de la query" | "Melhora parâmetros de query" | "Valorizza parametri query";
|
|
678
|
+
static get QuickSearchSettings_DeleteConfirmFor1(): "Schnellsuche-Konfiguration für '{{0}}' löschen?" | "Delete the quick search setup for '{{0}}'?" | "¿Eliminar la configuración de la búsqueda rápida de '{{0}}'?" | "Supprimer la configuration de la recherche rapide de '{{0}}' ?" | "Eliminar a configuração da pesquisa rápida de '{{0}}'?" | "Eliminare la configurazione della ricerca rapida di '{{0}}'?";
|
|
658
679
|
static get ReadOnly(): "Nur Lesen" | "Read only" | "Solo lectura" | "En lecture seule" | "Somente leitura" | "Solo lettura";
|
|
659
680
|
static get Reassign(): "Neu zuweisen" | "Reassign" | "Reasignar" | "Réaffecter" | "Reatribuir" | "Riassegna";
|
|
660
681
|
static get RefersTo(): string;
|
|
@@ -665,15 +686,19 @@ export declare class SDKUI_Localizator {
|
|
|
665
686
|
static get Reject(): "Ablehnen" | "Reject" | "Rechazar" | "Rejeter" | "Rejeitar" | "Rifiuta";
|
|
666
687
|
static get Relations(): "Korrelationen" | "Correlations" | "Correlaciones" | "Relations" | "Correlacionados" | "Correlazioni";
|
|
667
688
|
static get RelationsNotFound(): "Keine Korrelationen gefunden" | "No correlations found" | "No se encontraron correlaciones" | "Aucune corrélation trouvée" | "Nenhuma correlação encontrada" | "Nessuna correlazione trovata";
|
|
689
|
+
static get StopRelationsCalculation(): "Berechnung unterbrechen und die bereits berechneten Korrelationen anzeigen" | "Stop the calculation and show the already calculated correlations" | "Interrumpir el cálculo y mostrar las correlaciones ya calculadas" | "Interrompre le calcul et afficher les corrélations déjà calculées" | "Interromper o cálculo e mostrar as correlações já calculadas" | "Interrompi il calcolo e mostra le correlazioni già calcolate";
|
|
690
|
+
static get RelationsCalculationStopped(): "Berechnung der Korrelationen unterbrochen: Es werden nur die bereits berechneten Korrelationen angezeigt." | "Correlations calculation stopped: only the already calculated correlations are shown." | "Cálculo de correlaciones interrumpido: solo se muestran las correlaciones ya calculadas." | "Calcul des corrélations interrompu : seules les corrélations déjà calculées sont affichées." | "Cálculo das correlações interrompido: são mostradas apenas as correlações já calculadas." | "Calcolo delle correlazioni interrotto: vengono mostrate solo le correlazioni già calcolate.";
|
|
668
691
|
static get RelatedDcmtsNotFound(): "Für das ausgewählte Dokument wurden keine zugehörigen Dokumente gefunden." | "No related documents were found for the selected document." | "No se encontraron documentos relacionados para el documento seleccionado." | "Aucun document associé n'a été trouvé pour le document sélectionné." | "Nenhum documento relacionado foi encontrado para o documento selecionado." | "Non sono stati trovati documenti correlati per il documento selezionato.";
|
|
669
692
|
static get RelationManyToMany(): "Folge viele mit vielen" | "Relation many to many" | "Correlación muchos a muchos" | "Corrélation plusieurs à plusieurs" | "Muitos para muitos relação" | "Correlazione molti a molti";
|
|
670
693
|
static get RelationType(): "Art der Beziehung" | "Relation type" | "Tipo de relación" | "Type de relation" | "Tipo de relacionamento" | "Tipo di relazione";
|
|
671
694
|
static get RemoveContextualFilter(): "Kontextbezogenen Filter entfernen" | "Remove contextual filter" | "Eliminar filtro contextual" | "Supprimer le filtre contextuel" | "Remover filtro contextual" | "Rimuovi filtro contestuale";
|
|
695
|
+
static get RemoveDetailFromSummary_Confirm(): "Detail entfernen? Es wird nicht archiviert." | "Remove this detail? It won't be archived." | "¿Eliminar este detalle? No se archivará." | "Supprimer ce détail ? Il ne sera pas archivé." | "Remover este detalhe? Não será arquivado." | "Rimuovere questo dettaglio? Non verrà archiviato.";
|
|
672
696
|
static get RemoveFromCache(): string;
|
|
673
697
|
static get RemoveFromList(): string;
|
|
674
698
|
static get RemoveFromWorkgroup(): string;
|
|
675
699
|
static get RemoveNamedPreferredCredentials(): "Möchten Sie die Anmeldedaten '{{0}}' entfernen, die als bevorzugt festgelegt wurden?" | "Do you want to remove the '{{0}}' credentials set as preferred?" | "¿Quieres eliminar las credenciales '{{0}}' configuradas como preferidas?" | "Voulez-vous supprimer les identifiants '{{0}}' définis comme préférés ?" | "Deseja remover as credenciais '{{0}}' definidas como preferidas?" | "Vuoi rimuovere le credenziali '{{0}}' impostate come preferite?";
|
|
676
700
|
static get RemoveLayout(): string;
|
|
701
|
+
static get RemoveLayout_Confirm(): string;
|
|
677
702
|
static get RemovingFromList(): string;
|
|
678
703
|
static get RemoveSignatureIfPresent(): string;
|
|
679
704
|
static get RememberCredentials(): "Anmeldedaten merken" | "Remember credentials" | "Recordar credenciales" | "Se souvenir des identifiants" | "Lembrar credenciais" | "Ricorda credenziali";
|
|
@@ -717,6 +742,7 @@ export declare class SDKUI_Localizator {
|
|
|
717
742
|
static get ScanFeatureUnavailableInThisContext(): "Scanfunktionen sind in diesem Kontext nicht verfugbar." | "Scanning features are not available in this context." | "Las funciones de escaneo no estan disponibles en este contexto." | "Les fonctionnalites de numerisation ne sont pas disponibles dans ce contexte." | "Os recursos de digitalizacao nao estao disponiveis neste contexto." | "Funzionalita di scansione non disponibili in questo contesto.";
|
|
718
743
|
static get Search(): "Auf der Suche nach" | "Search" | "Búsqueda" | "Recherche" | "Pesquisa" | "Ricerca";
|
|
719
744
|
static get SearchAction(): "Search" | "Suche" | "Buscar" | "Chercher" | "Pesquisar" | "Cerca";
|
|
745
|
+
static get SearchAndAppend(): "Suchen und anhängen" | "Search and append" | "Buscar y añadir" | "Rechercher et ajouter" | "Pesquisar e acrescentar" | "Ricerca e accoda";
|
|
720
746
|
static get Search_Advanced(): "Erweiterte Suche" | "Advanced search" | "Búsqueda avanzada" | "Recherche avancée" | "Pesquisa Avançada" | "Ricerca avanzata";
|
|
721
747
|
static get Search_Easy(): "Einfache Suche" | "Easy search" | "Búsqueda fácil" | "Recherche facile" | "Pesquisa fácil" | "Ricerca facilitata";
|
|
722
748
|
static get Search_EnterValue(): "Geben Sie einen Wert ein, nach dem gesucht werden soll" | "Enter a value to search" | "Introducir un valor para buscar" | "Entrez une valeur à rechercher" | "Digite um valor para pesquisar" | "Inserire un valore da ricercare";
|
|
@@ -728,6 +754,7 @@ export declare class SDKUI_Localizator {
|
|
|
728
754
|
static get Select(): "Wählen Sie Ihre" | "Select" | "Seleccionar" | "Sélectionne" | "Selecione" | "Seleziona";
|
|
729
755
|
static get SelectAnOperationBetween(): "Wählen Sie eine Operation zwischen" | "Select an operation between" | "Selecciona una operación entre" | "Sélectionnez une opération entre" | "Selecione uma operação entre" | "Seleziona un'operazione tra";
|
|
730
756
|
static get SelectDocumentToViewSearchResults(): "Wählen Sie ein Dokument aus, um die Details anzuzeigen" | "Select a document to view details" | "Selecciona un documento para ver los detalles" | "Sélectionnez un document pour afficher les détails" | "Selecione um documento para visualizar os detalhes" | "Seleziona un documento per visualizzare i dettagli";
|
|
757
|
+
static get SelectDcmtTypeForDetailArchiving(): "Dokumenttyp auswählen, für den die Details archiviert werden sollen" | "Select the document type for which to archive the details" | "Seleccionar el tipo de documento sobre el cual archivar los detalles" | "Sélectionner le type de document sur lequel archiver les détails" | "Selecionar o tipo de documento no qual arquivar os detalhes" | "Selezionare il tipo documento sul quale effettuare l'archiviazione dei dettagli";
|
|
731
758
|
static get SelectArchiveToStart(): "Klicken Sie auf Archivieren, um zu beginnen." | "Click on Archive button to start." | "Haz clic en el botón Archivar para comenzar." | "Cliquez sur le bouton Archiver pour commencer." | "Clique no botão Arquivar para iniciar." | "Clicca sul pulsante Archivia per iniziare.";
|
|
732
759
|
static get SelectAttachToStart(): "Sie können Dateien zu Ihrer E-Mail hinzufügen, klicken Sie auf Anhängen, um zu beginnen." | "You can attach files to your email, click on Attach button to start." | "Puedes adjuntar archivos a tu correo electrónico, haz clic en el botón Adjuntar para comenzar." | "Vous pouvez joindre des fichiers à votre e-mail, cliquez sur le bouton Joindre pour commencer." | "Você pode anexar arquivos ao seu e-mail, clique no botão Anexar para iniciar." | "Puoi allegare file alla tua email, clicca sul pulsante Allega per iniziare.";
|
|
733
760
|
static get SelectFromAttachments(): "Aus Anhängen auswählen" | "Select from attachments" | "Seleccionar de archivos adjuntos" | "Sélectionner parmi les pièces jointes" | "Selecionar dos anexos" | "Seleziona dagli allegati";
|
|
@@ -761,16 +788,21 @@ export declare class SDKUI_Localizator {
|
|
|
761
788
|
static get SharedDocuments(): "Gemeinsame Dokumente" | "Shared documents" | "Documentos compartidos" | "Documents partagés" | "Documentos compartilhados" | "Documenti condivisi";
|
|
762
789
|
static get Shortcuts(): "Tastenkombinationen" | "Shortcuts" | "Atajos" | "Raccourcis" | "Atalhos" | "Scorciatoie";
|
|
763
790
|
static get ShowAll(): "Alle anzeigen" | "Show all" | "Mostrar todo" | "Tout afficher" | "Mostrar tudo" | "Mostra tutti";
|
|
791
|
+
static get ShowArchivedDetails(): string;
|
|
764
792
|
static get ShowColumnSelection(): string;
|
|
793
|
+
static get ShowDcmtTypes(): string;
|
|
765
794
|
static get ShowFloatingBar(): string;
|
|
766
795
|
static get ShowLess(): "Weniger anzeigen" | "Show less" | "Mostrar menos" | "Afficher moins" | "Mostra meno";
|
|
767
796
|
static get Show_CompleteName(): "Vollständigen Namen anzeigen" | "View full name" | "Mostrar nombre completo" | "Afficher le nom complet" | "Mostrar nome completo" | "Visualizza nome completo";
|
|
768
797
|
static get ShowDetails(): "Details anzeigen" | "Show details" | "Mostrar detalles" | "Afficher les détails" | "Mostrar detalhes" | "Mostra dettagli";
|
|
798
|
+
static get ShowDetailsToArchive(): string;
|
|
769
799
|
static get ShowDetailsWithZeroDocs(): string;
|
|
770
800
|
static get ShowFilters(): string;
|
|
771
801
|
static get ShowFormattingOptions(): "Formatierungsoptionen anzeigen" | "Show formatting options" | "Mostrar opciones de formato" | "Afficher les options de formatage" | "Mostrar opções de formatação" | "Mostra opzioni di formattazione";
|
|
772
802
|
static get ShowHideMetadataSystemDesc(): "Anzeigen oder Verbergen von Methadaten des Dokumententypsystems" | "Shows/hides system metadata of selected document type" | "Ver u ocultar los metadatos de sistema del tipo de documento" | "Visualise ou cache les métadonnées de système du type de document" | "Mostra ou oculta o tipo de documento de metadados do sistema" | "Visualizza o nasconde i metadati di sistema del tipo documento";
|
|
773
803
|
static get ShowLeftPanel(): "Linkes Panel anzeigen" | "Show left panel" | "Mostrar panel izquierdo" | "Afficher le panneau de gauche" | "Mostrar painel esquerdo" | "Mostra il pannello sinistro";
|
|
804
|
+
static get ShowMasterInfo(): string;
|
|
805
|
+
static get ShowPartialResults(): string;
|
|
774
806
|
static get ShowSearch(): "Suche anzeigen" | "Show search" | "Mostrar búsqueda" | "Afficher la recherche" | "Mostrar pesquisa" | "Mostra ricerca";
|
|
775
807
|
static get ShowSharedDocuments(): "Gemeinsame Dokumente anzeigen" | "Show shared documents" | "Mostrar documentos compartidos" | "Afficher les documents partagés" | "Mostrar documentos compartilhados" | "Mostra documenti condivisi";
|
|
776
808
|
static get ShowColumnSeparatingLines(): string;
|
|
@@ -797,6 +829,7 @@ export declare class SDKUI_Localizator {
|
|
|
797
829
|
static get Statistics(): "Statistiken" | "Statistics" | "Estadística" | "Statistiques" | "Estatísticas" | "Statistiche";
|
|
798
830
|
static get Status(): "Status" | "Estado" | "Statut" | "Stato";
|
|
799
831
|
static get StatusAndAnswer(): "Status und Antwort" | "Status and answer" | "Estado y respuesta" | "Statut et réponse" | "Estado e resposta" | "Stato e risposta";
|
|
832
|
+
static get StopOnFirstError(): "Beim ersten Fehler abbrechen" | "Stop at the first error" | "Detener en el primer error" | "Arrêter à la première erreur" | "Parar no primeiro erro" | "Interrompi al primo errore";
|
|
800
833
|
static get Subject(): "Betreff" | "Subject" | "Asunto" | "Objet" | "Assunto" | "Oggetto";
|
|
801
834
|
static get Summary(): "Zusammenfassung" | "Summary" | "Resumen" | "Résumé" | "Resumo" | "Riepilogo";
|
|
802
835
|
static get SwitchUser(): "Benutzer wechseln" | "Switch user" | "Cambiar usuario" | "Changer d'utilisateur" | "Mudar de usuário" | "Cambia utente";
|
|
@@ -946,6 +979,7 @@ export declare class SDKUI_Localizator {
|
|
|
946
979
|
static get WrittenOn(): "Geschrieben am" | "Written on" | "Escrito el" | "Écrit le" | "Escrito em" | "Scritto il";
|
|
947
980
|
static get YouDoNotHavePermissionsToArchiveDetailDocumentsOfThisType(): "Sie haben keine Berechtigung, Detaildokumente dieses Typs zu archivieren." | "You do not have permissions to archive detail documents of this type." | "No tienes permisos para archivar documentos de detalle de este tipo." | "Vous n'avez pas les permissions pour archiver les documents détail de ce type." | "Você não tem permissões para arquivar documentos de detalhe deste tipo." | "Non hai i permessi per archiviare documenti di dettaglio di questo tipo.";
|
|
948
981
|
static get YouDoNotHavePermissionsToArchiveMasterDocumentsOfThisType(): "Sie haben keine Berechtigung, Master-Dokumente dieses Typs zu archivieren." | "You do not have permissions to archive master documents of this type." | "No tienes permisos para archivar documentos maestros de este tipo." | "Vous n'avez pas les permissions pour archiver les documents maîtres de ce type." | "Você não tem permissões para arquivar documentos mestres deste tipo." | "Non hai i permessi per archiviare documenti master di questo tipo.";
|
|
982
|
+
static get YouDoNotHavePermissionsToRetrieveTheFile(): "Sie haben keine Berechtigung, die Datei abzurufen." | "You do not have permissions to retrieve the file." | "No tienes permisos para recuperar el archivo." | "Vous n'avez pas les permissions pour récupérer le fichier." | "Você não tem permissões para recuperar o ficheiro." | "Non hai i permessi per recuperare il file.";
|
|
949
983
|
static get Yes(): "Ja" | "Yes" | "Sí" | "Oui" | "Sim" | "Sì";
|
|
950
984
|
static get ZipFileName(): string;
|
|
951
985
|
static get ZipCreatedSavedInFolder(): string;
|