@topconsultnpm/sdkui-react 6.22.0-dev2.3 → 6.22.0-dev2.31
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 +4 -0
- package/lib/components/base/TMModal.js +42 -11
- 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/TMMultiMasterDetailDcmtsForm.d.ts +40 -0
- package/lib/components/features/documents/TMMultiMasterDetailDcmtsForm.js +296 -0
- package/lib/components/features/documents/TMMultiMasterDetailDcmtsUtils.d.ts +363 -0
- package/lib/components/features/documents/TMMultiMasterDetailDcmtsUtils.js +259 -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 +29 -16
- package/lib/components/features/search/TMSearchQueryEditor.js +5 -3
- package/lib/components/features/search/TMSearchQueryPanel.d.ts +1 -1
- package/lib/components/features/search/TMSearchQueryPanel.js +28 -7
- package/lib/components/features/search/TMSearchResult.d.ts +9 -0
- package/lib/components/features/search/TMSearchResult.js +419 -108
- 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/helper/SDKUI_Globals.d.ts +90 -0
- package/lib/helper/SDKUI_Globals.js +136 -0
- package/lib/helper/SDKUI_Localizator.d.ts +24 -0
- package/lib/helper/SDKUI_Localizator.js +240 -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 +2 -0
- package/lib/hooks/useDocumentOperations.js +28 -5
- package/lib/hooks/useMultiMasterDetailDcmts.d.ts +100 -0
- package/lib/hooks/useMultiMasterDetailDcmts.js +587 -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 +2 -0
- 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 +66 -66
|
@@ -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,49 @@ 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>;
|
|
98
155
|
export declare class ArchivingSettings {
|
|
99
156
|
mruTIDs: number[];
|
|
100
157
|
defaultTree: number;
|
|
158
|
+
/**
|
|
159
|
+
* Sezioni collassate dall'utente nel riepilogo, ripristinate alla riapertura. Assente finché
|
|
160
|
+
* l'utente non ne chiude una: le impostazioni di default non vanno scritte nel local storage
|
|
161
|
+
*/
|
|
162
|
+
multiDetailSectionsOpen?: MultiDetailSectionsOpen;
|
|
163
|
+
/**
|
|
164
|
+
* Altezze dei pannelli del riepilogo, gestite dal panel manager. Non comprende il collasso delle
|
|
165
|
+
* sezioni, che è in multiDetailSectionsOpen: assente finché l'utente non sposta un separatore.
|
|
166
|
+
*/
|
|
167
|
+
multiDetailPanelStates?: MultiDetailPanelStates;
|
|
101
168
|
}
|
|
169
|
+
/** Stato di apertura salvato delle sezioni: i default coprono l'impostazione mai modificata dall'utente */
|
|
170
|
+
export declare const getMultiDetailSectionsOpen: () => MultiDetailSectionsOpen;
|
|
171
|
+
export declare const saveMultiDetailSectionsOpen: (sectionsOpen: MultiDetailSectionsOpen) => void;
|
|
172
|
+
/** Stato salvato dei pannelli: vuoto finché l'utente non ne ha ridimensionato nessuno */
|
|
173
|
+
export declare const getMultiDetailPanelStates: () => MultiDetailPanelStates;
|
|
174
|
+
/** Il panel manager applica lo stato salvato solo se esiste: altrimenti riparte dalle quote di default */
|
|
175
|
+
export declare const hasMultiDetailPanelStates: () => boolean;
|
|
176
|
+
export declare const saveMultiDetailPanelStates: (panelStates: MultiDetailPanelStates) => void;
|
|
177
|
+
/** C'è un layout dell'utente da cancellare: nel local storage le due impostazioni ci sono solo se diverse dai default */
|
|
178
|
+
export declare const hasMultiDetailLayout: () => boolean;
|
|
179
|
+
/**
|
|
180
|
+
* Elimina dal local storage il layout configurato dall'utente per il riepilogo: altezze dei pannelli
|
|
181
|
+
* e sezioni collassate. Alla riapertura le sezioni sono tutte espanse con le quote di default.
|
|
182
|
+
*/
|
|
183
|
+
export declare const clearMultiDetailLayout: () => void;
|
|
102
184
|
export declare class FullTextSettings {
|
|
103
185
|
mruTerms: string[];
|
|
104
186
|
}
|
|
@@ -108,13 +190,21 @@ export declare class DevSettings {
|
|
|
108
190
|
export declare class AdvancedSettings {
|
|
109
191
|
private _expertMode;
|
|
110
192
|
private _scannerLicense;
|
|
193
|
+
private _showDossiersV5;
|
|
111
194
|
get expertMode(): number;
|
|
112
195
|
set expertMode(value: number);
|
|
113
196
|
get scannerLicense(): string;
|
|
114
197
|
set scannerLicense(value: string);
|
|
198
|
+
/**
|
|
199
|
+
* Mostra le pratiche "V5" (i dossier) accanto al CaseFlow che le sostituisce.
|
|
200
|
+
* 0 = nascoste (default), 1 = visibili.
|
|
201
|
+
*/
|
|
202
|
+
get showDossiersV5(): number;
|
|
203
|
+
set showDossiersV5(value: number);
|
|
115
204
|
toJSON(): {
|
|
116
205
|
expertMode: number;
|
|
117
206
|
scannerLicense: string;
|
|
207
|
+
showDossiersV5: number;
|
|
118
208
|
};
|
|
119
209
|
}
|
|
120
210
|
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,121 @@ 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
|
+
/** C'è un layout dell'utente da cancellare: nel local storage le due impostazioni ci sono solo se diverse dai default */
|
|
264
|
+
export const hasMultiDetailLayout = () => hasMultiDetailPanelStates() || SDKUI_Globals.userSettings.archivingSettings?.multiDetailSectionsOpen !== undefined;
|
|
265
|
+
/**
|
|
266
|
+
* Elimina dal local storage il layout configurato dall'utente per il riepilogo: altezze dei pannelli
|
|
267
|
+
* e sezioni collassate. Alla riapertura le sezioni sono tutte espanse con le quote di default.
|
|
268
|
+
*/
|
|
269
|
+
export const clearMultiDetailLayout = () => {
|
|
270
|
+
// Il proxy persiste solo intercettando l'assegnazione di una proprietà: entrambi i campi vanno riassegnati.
|
|
271
|
+
// Senza valore spariscono dal local storage e alla riapertura tornano validi i default
|
|
272
|
+
SDKUI_Globals.userSettings.archivingSettings.multiDetailPanelStates = undefined;
|
|
273
|
+
SDKUI_Globals.userSettings.archivingSettings.multiDetailSectionsOpen = undefined;
|
|
274
|
+
};
|
|
156
275
|
export class FullTextSettings {
|
|
157
276
|
constructor() {
|
|
158
277
|
this.mruTerms = [];
|
|
@@ -167,6 +286,7 @@ export class AdvancedSettings {
|
|
|
167
286
|
constructor() {
|
|
168
287
|
this._expertMode = 0;
|
|
169
288
|
this._scannerLicense = '';
|
|
289
|
+
this._showDossiersV5 = 0;
|
|
170
290
|
}
|
|
171
291
|
get expertMode() {
|
|
172
292
|
return this._expertMode;
|
|
@@ -185,11 +305,27 @@ export class AdvancedSettings {
|
|
|
185
305
|
set scannerLicense(value) {
|
|
186
306
|
this._scannerLicense = value;
|
|
187
307
|
}
|
|
308
|
+
/**
|
|
309
|
+
* Mostra le pratiche "V5" (i dossier) accanto al CaseFlow che le sostituisce.
|
|
310
|
+
* 0 = nascoste (default), 1 = visibili.
|
|
311
|
+
*/
|
|
312
|
+
get showDossiersV5() {
|
|
313
|
+
return this._showDossiersV5;
|
|
314
|
+
}
|
|
315
|
+
set showDossiersV5(value) {
|
|
316
|
+
if (this._showDossiersV5 !== value) {
|
|
317
|
+
this._showDossiersV5 = value;
|
|
318
|
+
// Come per expertMode: chi mostra la funzione può reagire subito.
|
|
319
|
+
const event = new CustomEvent('showDossiersV5Changed', { detail: value });
|
|
320
|
+
window.dispatchEvent(event);
|
|
321
|
+
}
|
|
322
|
+
}
|
|
188
323
|
// Override toJSON to control serialization (called by JSON.stringify)
|
|
189
324
|
toJSON() {
|
|
190
325
|
return {
|
|
191
326
|
expertMode: this._expertMode,
|
|
192
327
|
scannerLicense: this._scannerLicense,
|
|
328
|
+
showDossiersV5: this._showDossiersV5,
|
|
193
329
|
};
|
|
194
330
|
}
|
|
195
331
|
}
|
|
@@ -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";
|
|
@@ -167,10 +173,12 @@ export declare class SDKUI_Localizator {
|
|
|
167
173
|
static get Default(): "Standard" | "Default" | "Predeterminado" | "Defaultão";
|
|
168
174
|
static get DefaultFolder(): string;
|
|
169
175
|
static get Details(): "Einzelheiten" | "Details" | "Detalles" | "Détails" | "detalhes" | "Dettagli";
|
|
176
|
+
static get DetailsToArchive(): string;
|
|
170
177
|
static get Delete(): "Löschen" | "Delete" | "Borrar" | "Supprimer" | "Excluir" | "Elimina";
|
|
171
178
|
static get Delete_ConfirmFor1(): "Löschen Sie '{{0}}'?" | "Delete '{{0}}'?" | "¿Eliminar '{{0}}'?" | "Voulez-vous éliminer '{{0}}'?" | "Eliminar '{{0}}'?" | "Eliminare '{{0}}'?";
|
|
172
179
|
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
180
|
static get DeleteComment(): "Kommentar löschen?" | "Delete the comment?" | "¿Eliminar el comentario?" | "Supprimer le commentaire ?" | "Eliminar o comentário?" | "Eliminare il commento?";
|
|
181
|
+
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
182
|
static get DeleteDeletedMessages(): string;
|
|
175
183
|
static get DeleteSystemMessages(): string;
|
|
176
184
|
static get Deletion(): string;
|
|
@@ -404,11 +412,15 @@ export declare class SDKUI_Localizator {
|
|
|
404
412
|
static get Grids(): string;
|
|
405
413
|
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
414
|
static get HideAll(): "Alle ausblenden" | "Hide all" | "Ocultar todo" | "Masquer tout" | "Ocultar tudo" | "Nascondi tutti";
|
|
415
|
+
static get HideArchivedDetails(): string;
|
|
416
|
+
static get HideDcmtTypes(): string;
|
|
417
|
+
static get HideDetailsToArchive(): string;
|
|
407
418
|
static get HideDetailsWithZeroDocs(): string;
|
|
408
419
|
static get HideFloatingBar(): string;
|
|
409
420
|
static get HideFilters(): string;
|
|
410
421
|
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
422
|
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";
|
|
423
|
+
static get HideMasterInfo(): string;
|
|
412
424
|
static get HideMetadata(): string;
|
|
413
425
|
static get HideSearch(): "Suche ausblenden" | "Hide search" | "Ocultar búsqueda" | "Masquer la recherche" | "Ocultar pesquisa" | "Nascondi ricerca";
|
|
414
426
|
static get High(): "Hoch" | "High" | "Alta" | "Élevée";
|
|
@@ -655,6 +667,7 @@ export declare class SDKUI_Localizator {
|
|
|
655
667
|
static get QueryDefine(): "Abfrage definieren" | "Query define" | "Definir consulta" | "Défine query" | "Definir query" | "Definisci query";
|
|
656
668
|
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
669
|
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";
|
|
670
|
+
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
671
|
static get ReadOnly(): "Nur Lesen" | "Read only" | "Solo lectura" | "En lecture seule" | "Somente leitura" | "Solo lettura";
|
|
659
672
|
static get Reassign(): "Neu zuweisen" | "Reassign" | "Reasignar" | "Réaffecter" | "Reatribuir" | "Riassegna";
|
|
660
673
|
static get RefersTo(): string;
|
|
@@ -665,10 +678,13 @@ export declare class SDKUI_Localizator {
|
|
|
665
678
|
static get Reject(): "Ablehnen" | "Reject" | "Rechazar" | "Rejeter" | "Rejeitar" | "Rifiuta";
|
|
666
679
|
static get Relations(): "Korrelationen" | "Correlations" | "Correlaciones" | "Relations" | "Correlacionados" | "Correlazioni";
|
|
667
680
|
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";
|
|
681
|
+
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";
|
|
682
|
+
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
683
|
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
684
|
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
685
|
static get RelationType(): "Art der Beziehung" | "Relation type" | "Tipo de relación" | "Type de relation" | "Tipo de relacionamento" | "Tipo di relazione";
|
|
671
686
|
static get RemoveContextualFilter(): "Kontextbezogenen Filter entfernen" | "Remove contextual filter" | "Eliminar filtro contextual" | "Supprimer le filtre contextuel" | "Remover filtro contextual" | "Rimuovi filtro contestuale";
|
|
687
|
+
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
688
|
static get RemoveFromCache(): string;
|
|
673
689
|
static get RemoveFromList(): string;
|
|
674
690
|
static get RemoveFromWorkgroup(): string;
|
|
@@ -717,6 +733,7 @@ export declare class SDKUI_Localizator {
|
|
|
717
733
|
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
734
|
static get Search(): "Auf der Suche nach" | "Search" | "Búsqueda" | "Recherche" | "Pesquisa" | "Ricerca";
|
|
719
735
|
static get SearchAction(): "Search" | "Suche" | "Buscar" | "Chercher" | "Pesquisar" | "Cerca";
|
|
736
|
+
static get SearchAndAppend(): "Suchen und anhängen" | "Search and append" | "Buscar y añadir" | "Rechercher et ajouter" | "Pesquisar e acrescentar" | "Ricerca e accoda";
|
|
720
737
|
static get Search_Advanced(): "Erweiterte Suche" | "Advanced search" | "Búsqueda avanzada" | "Recherche avancée" | "Pesquisa Avançada" | "Ricerca avanzata";
|
|
721
738
|
static get Search_Easy(): "Einfache Suche" | "Easy search" | "Búsqueda fácil" | "Recherche facile" | "Pesquisa fácil" | "Ricerca facilitata";
|
|
722
739
|
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 +745,7 @@ export declare class SDKUI_Localizator {
|
|
|
728
745
|
static get Select(): "Wählen Sie Ihre" | "Select" | "Seleccionar" | "Sélectionne" | "Selecione" | "Seleziona";
|
|
729
746
|
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
747
|
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";
|
|
748
|
+
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
749
|
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
750
|
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
751
|
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 +779,21 @@ export declare class SDKUI_Localizator {
|
|
|
761
779
|
static get SharedDocuments(): "Gemeinsame Dokumente" | "Shared documents" | "Documentos compartidos" | "Documents partagés" | "Documentos compartilhados" | "Documenti condivisi";
|
|
762
780
|
static get Shortcuts(): "Tastenkombinationen" | "Shortcuts" | "Atajos" | "Raccourcis" | "Atalhos" | "Scorciatoie";
|
|
763
781
|
static get ShowAll(): "Alle anzeigen" | "Show all" | "Mostrar todo" | "Tout afficher" | "Mostrar tudo" | "Mostra tutti";
|
|
782
|
+
static get ShowArchivedDetails(): string;
|
|
764
783
|
static get ShowColumnSelection(): string;
|
|
784
|
+
static get ShowDcmtTypes(): string;
|
|
765
785
|
static get ShowFloatingBar(): string;
|
|
766
786
|
static get ShowLess(): "Weniger anzeigen" | "Show less" | "Mostrar menos" | "Afficher moins" | "Mostra meno";
|
|
767
787
|
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
788
|
static get ShowDetails(): "Details anzeigen" | "Show details" | "Mostrar detalles" | "Afficher les détails" | "Mostrar detalhes" | "Mostra dettagli";
|
|
789
|
+
static get ShowDetailsToArchive(): string;
|
|
769
790
|
static get ShowDetailsWithZeroDocs(): string;
|
|
770
791
|
static get ShowFilters(): string;
|
|
771
792
|
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
793
|
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
794
|
static get ShowLeftPanel(): "Linkes Panel anzeigen" | "Show left panel" | "Mostrar panel izquierdo" | "Afficher le panneau de gauche" | "Mostrar painel esquerdo" | "Mostra il pannello sinistro";
|
|
795
|
+
static get ShowMasterInfo(): string;
|
|
796
|
+
static get ShowPartialResults(): string;
|
|
774
797
|
static get ShowSearch(): "Suche anzeigen" | "Show search" | "Mostrar búsqueda" | "Afficher la recherche" | "Mostrar pesquisa" | "Mostra ricerca";
|
|
775
798
|
static get ShowSharedDocuments(): "Gemeinsame Dokumente anzeigen" | "Show shared documents" | "Mostrar documentos compartidos" | "Afficher les documents partagés" | "Mostrar documentos compartilhados" | "Mostra documenti condivisi";
|
|
776
799
|
static get ShowColumnSeparatingLines(): string;
|
|
@@ -797,6 +820,7 @@ export declare class SDKUI_Localizator {
|
|
|
797
820
|
static get Statistics(): "Statistiken" | "Statistics" | "Estadística" | "Statistiques" | "Estatísticas" | "Statistiche";
|
|
798
821
|
static get Status(): "Status" | "Estado" | "Statut" | "Stato";
|
|
799
822
|
static get StatusAndAnswer(): "Status und Antwort" | "Status and answer" | "Estado y respuesta" | "Statut et réponse" | "Estado e resposta" | "Stato e risposta";
|
|
823
|
+
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
824
|
static get Subject(): "Betreff" | "Subject" | "Asunto" | "Objet" | "Assunto" | "Oggetto";
|
|
801
825
|
static get Summary(): "Zusammenfassung" | "Summary" | "Resumen" | "Résumé" | "Resumo" | "Riepilogo";
|
|
802
826
|
static get SwitchUser(): "Benutzer wechseln" | "Switch user" | "Cambiar usuario" | "Changer d'utilisateur" | "Mudar de usuário" | "Cambia utente";
|