@gandalan/weblibs 2.0.4 → 2.0.6
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/api/business/avApi.js +3 -10
- package/api/business/serienApi.js +2 -201
- package/api/neherApp3Types.js +1 -0
- package/index.d.ts +2 -20
- package/package.json +1 -1
package/api/business/avApi.js
CHANGED
|
@@ -128,18 +128,11 @@ export function createAvApi(fluentApi) {
|
|
|
128
128
|
* @param {string} pcode
|
|
129
129
|
* @param {boolean} [includeOriginalBeleg=true]
|
|
130
130
|
* @param {boolean} [includeProdDaten=true]
|
|
131
|
+
* @param {boolean} [includeI3Etiketten=false]
|
|
131
132
|
* @returns {Promise<BelegPositionAVDTO[]>}
|
|
132
133
|
*/
|
|
133
|
-
getByPCode: (pcode, includeOriginalBeleg = true, includeProdDaten = true) =>
|
|
134
|
-
fluentApi.get(`BelegPositionenAVByPCode/${pcode}?includeOriginalBeleg=${includeOriginalBeleg}&includeProdDaten=${includeProdDaten}`),
|
|
135
|
-
|
|
136
|
-
/**
|
|
137
|
-
* Search AV positions by PCode
|
|
138
|
-
* @param {string} search
|
|
139
|
-
* @returns {Promise<BelegPositionAVDTO[]>}
|
|
140
|
-
*/
|
|
141
|
-
searchByPCode: (search) =>
|
|
142
|
-
fluentApi.get(`BelegPositionenAVSearchByPCode?search=${encodeURIComponent(search)}`),
|
|
134
|
+
getByPCode: (pcode, includeOriginalBeleg = true, includeProdDaten = true, includeI3Etiketten = false) =>
|
|
135
|
+
fluentApi.get(`BelegPositionenAVByPCode/${encodeURIComponent(pcode)}?includeOriginalBeleg=${includeOriginalBeleg}&includeProdDaten=${includeProdDaten}&includeI3Etiketten=${includeI3Etiketten}`),
|
|
143
136
|
|
|
144
137
|
/**
|
|
145
138
|
* Save AV position
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Serien API - Combined API for Serien (Series)
|
|
3
|
-
* Combines functionality from SerienWebRoutinen
|
|
2
|
+
* Serien API - Combined API for Serien (Series) operations
|
|
3
|
+
* Combines functionality from SerienWebRoutinen
|
|
4
4
|
*
|
|
5
5
|
* @module api/business/serienApi
|
|
6
6
|
*/
|
|
@@ -152,185 +152,6 @@ export function createSerienApi(fluentApi) {
|
|
|
152
152
|
async getAuslastungVorgang(startVorgangsnummer, endVorgangsnummer) {
|
|
153
153
|
return await this.fluentApi.get(`AuslastungVorgang/?startVorgangsnummer=${startVorgangsnummer}&endVorgangsnummer=${endVorgangsnummer}`);
|
|
154
154
|
},
|
|
155
|
-
|
|
156
|
-
// ============================================================================
|
|
157
|
-
// AV Position Operations (from AVWebRoutinen)
|
|
158
|
-
// ============================================================================
|
|
159
|
-
|
|
160
|
-
/**
|
|
161
|
-
* Gets all AV positions
|
|
162
|
-
* @returns {Promise<BelegPositionAVDTO[]>}
|
|
163
|
-
*/
|
|
164
|
-
async getAllBelegPositionenAV() {
|
|
165
|
-
return await this.fluentApi.get("BelegPositionenAV");
|
|
166
|
-
},
|
|
167
|
-
|
|
168
|
-
/**
|
|
169
|
-
* Gets all AV positions changed since a specific date
|
|
170
|
-
* @param {Date} changedSince - Date to filter changes since
|
|
171
|
-
* @returns {Promise<BelegPositionAVDTO[]>}
|
|
172
|
-
*/
|
|
173
|
-
async getAllBelegPositionenAVChangedSince(changedSince) {
|
|
174
|
-
return await this.fluentApi.get(`BelegPositionenAV/?changedSince=${changedSince.toISOString()}`);
|
|
175
|
-
},
|
|
176
|
-
|
|
177
|
-
/**
|
|
178
|
-
* Gets all AV positions with optional filtering
|
|
179
|
-
* @param {boolean} [includeOriginalBeleg=true] - Whether to include original order data
|
|
180
|
-
* @param {boolean} [includeProdDaten=true] - Whether to include production data
|
|
181
|
-
* @returns {Promise<BelegPositionAVDTO[]>}
|
|
182
|
-
*/
|
|
183
|
-
async getAllBelegPositionenAVWithOptions(includeOriginalBeleg = true, includeProdDaten = true) {
|
|
184
|
-
return await this.fluentApi.get(`BelegPositionenAV?includeOriginalBeleg=${includeOriginalBeleg}&includeProdDaten=${includeProdDaten}`);
|
|
185
|
-
},
|
|
186
|
-
|
|
187
|
-
/**
|
|
188
|
-
* Gets all AV positions changed since a specific date with optional filtering
|
|
189
|
-
* @param {Date} changedSince - Date to filter changes since
|
|
190
|
-
* @param {boolean} [includeOriginalBeleg=true] - Whether to include original order data
|
|
191
|
-
* @param {boolean} [includeProdDaten=true] - Whether to include production data
|
|
192
|
-
* @returns {Promise<BelegPositionAVDTO[]>}
|
|
193
|
-
*/
|
|
194
|
-
async getAllBelegPositionenAVChangedSinceWithOptions(changedSince, includeOriginalBeleg = true, includeProdDaten = true) {
|
|
195
|
-
return await this.fluentApi.get(`BelegPositionenAV/?changedSince=${changedSince.toISOString()}&includeOriginalBeleg=${includeOriginalBeleg}&includeProdDaten=${includeProdDaten}`);
|
|
196
|
-
},
|
|
197
|
-
|
|
198
|
-
/**
|
|
199
|
-
* Gets AV positions for a specific series
|
|
200
|
-
* @param {string} serieGuid - GUID of the series
|
|
201
|
-
* @param {boolean} [includeOriginalBeleg=true] - Whether to include original order data
|
|
202
|
-
* @param {boolean} [includeProdDaten=true] - Whether to include production data
|
|
203
|
-
* @returns {Promise<BelegPositionAVDTO[]>}
|
|
204
|
-
*/
|
|
205
|
-
async getSerieBelegPositionenAV(serieGuid, includeOriginalBeleg = true, includeProdDaten = true) {
|
|
206
|
-
return await this.fluentApi.get(`BelegPositionenAV/?serieGuid=${serieGuid}&includeOriginalBeleg=${includeOriginalBeleg}&includeProdDaten=${includeProdDaten}`);
|
|
207
|
-
},
|
|
208
|
-
|
|
209
|
-
/**
|
|
210
|
-
* Gets AV positions for a specific order (Vorgang)
|
|
211
|
-
* @param {string} vorgangGuid - GUID of the order
|
|
212
|
-
* @param {boolean} [includeOriginalBeleg=true] - Whether to include original order data
|
|
213
|
-
* @param {boolean} [includeProdDaten=true] - Whether to include production data
|
|
214
|
-
* @returns {Promise<BelegPositionAVDTO[]>}
|
|
215
|
-
*/
|
|
216
|
-
async getVorgangBelegPositionenAV(vorgangGuid, includeOriginalBeleg = true, includeProdDaten = true) {
|
|
217
|
-
return await this.fluentApi.get(`BelegPositionenAV/?vorgangGuid=${vorgangGuid}&includeOriginalBeleg=${includeOriginalBeleg}&includeProdDaten=${includeProdDaten}`);
|
|
218
|
-
},
|
|
219
|
-
|
|
220
|
-
/**
|
|
221
|
-
* Gets AV positions for multiple orders
|
|
222
|
-
* @param {string[]} vorgangGuids - Array of order GUIDs
|
|
223
|
-
* @param {boolean} [includeOriginalBeleg=true] - Whether to include original order data
|
|
224
|
-
* @param {boolean} [includeProdDaten=true] - Whether to include production data
|
|
225
|
-
* @returns {Promise<BelegPositionAVDTO[]>}
|
|
226
|
-
*/
|
|
227
|
-
async getVorgaengeBelegPositionenAV(vorgangGuids, includeOriginalBeleg = true, includeProdDaten = true) {
|
|
228
|
-
const vorgangGuidsString = vorgangGuids.map(g => `vorgangGuids=${encodeURIComponent(g)}`).join("&");
|
|
229
|
-
return await this.fluentApi.get(`BelegPositionenAVByVorgangIds/?${vorgangGuidsString}&includeOriginalBeleg=${includeOriginalBeleg}&includeProdDaten=${includeProdDaten}`);
|
|
230
|
-
},
|
|
231
|
-
|
|
232
|
-
/**
|
|
233
|
-
* Gets AV positions for a specific order position
|
|
234
|
-
* @param {string} belegpositionGuid - GUID of the order position
|
|
235
|
-
* @returns {Promise<BelegPositionAVDTO[]>}
|
|
236
|
-
*/
|
|
237
|
-
async getBelegPositionenAV(belegpositionGuid) {
|
|
238
|
-
return await this.fluentApi.get(`BelegPositionenAV/${belegpositionGuid}`);
|
|
239
|
-
},
|
|
240
|
-
|
|
241
|
-
/**
|
|
242
|
-
* Gets a single AV position by its GUID
|
|
243
|
-
* @param {string} avGuid - GUID of the AV position
|
|
244
|
-
* @returns {Promise<BelegPositionAVDTO>}
|
|
245
|
-
*/
|
|
246
|
-
async getBelegPositionAVById(avGuid) {
|
|
247
|
-
return await this.fluentApi.get(`BelegPositionenAVById/${avGuid}`);
|
|
248
|
-
},
|
|
249
|
-
|
|
250
|
-
/**
|
|
251
|
-
* Gets AV positions by PCode
|
|
252
|
-
* @param {string} pcode - The PCode to search for
|
|
253
|
-
* @param {boolean} [includeOriginalBeleg=true] - Whether to include original order data
|
|
254
|
-
* @param {boolean} [includeProdDaten=true] - Whether to include production data
|
|
255
|
-
* @returns {Promise<BelegPositionAVDTO[]>}
|
|
256
|
-
*/
|
|
257
|
-
async getBelegPositionAVByPCode(pcode, includeOriginalBeleg = true, includeProdDaten = true) {
|
|
258
|
-
return await this.fluentApi.get(`BelegPositionenAVByPCode/${encodeURIComponent(pcode)}?includeOriginalBeleg=${includeOriginalBeleg}&includeProdDaten=${includeProdDaten}`);
|
|
259
|
-
},
|
|
260
|
-
|
|
261
|
-
/**
|
|
262
|
-
* Searches AV positions by PCode with wildcard search
|
|
263
|
-
* @param {string} search - The search string
|
|
264
|
-
* @returns {Promise<BelegPositionAVDTO[]>}
|
|
265
|
-
*/
|
|
266
|
-
async searchBelegPositionAVByPCode(search) {
|
|
267
|
-
return await this.fluentApi.get(`BelegPositionenAVSearchByPCode?search=${encodeURIComponent(search)}`);
|
|
268
|
-
},
|
|
269
|
-
|
|
270
|
-
/**
|
|
271
|
-
* Saves a single AV position
|
|
272
|
-
* @param {BelegPositionAVDTO} position - The AV position to save
|
|
273
|
-
* @returns {Promise<void>}
|
|
274
|
-
*/
|
|
275
|
-
async saveBelegPositionenAV(position) {
|
|
276
|
-
await this.fluentApi.put("BelegPositionenAV", position);
|
|
277
|
-
},
|
|
278
|
-
|
|
279
|
-
/**
|
|
280
|
-
* Saves multiple AV positions
|
|
281
|
-
* @param {BelegPositionAVDTO[]} positionen - Array of AV positions to save
|
|
282
|
-
* @returns {Promise<BelegPositionAVDTO[]>}
|
|
283
|
-
*/
|
|
284
|
-
async saveBelegPositionenAVBulk(positionen) {
|
|
285
|
-
return await this.fluentApi.put("BelegPositionenAVBulk", positionen);
|
|
286
|
-
},
|
|
287
|
-
|
|
288
|
-
/**
|
|
289
|
-
* Saves AV positions to a specific series
|
|
290
|
-
* @param {string} serieGuid - GUID of the target series
|
|
291
|
-
* @param {string[]} positionen - Array of AV position GUIDs to add
|
|
292
|
-
* @returns {Promise<BelegPositionAVDTO[]>}
|
|
293
|
-
*/
|
|
294
|
-
async saveBelegPositionenAVToSerie(serieGuid, positionen) {
|
|
295
|
-
return await this.fluentApi.put(`BelegPositionenAVBulk/AddToSerie/${serieGuid}`, positionen);
|
|
296
|
-
},
|
|
297
|
-
|
|
298
|
-
/**
|
|
299
|
-
* Triggers AV calculation for the specified positions
|
|
300
|
-
* @param {string[]} guids - Array of AV position GUIDs to calculate
|
|
301
|
-
* @returns {Promise<void>}
|
|
302
|
-
*/
|
|
303
|
-
async belegPositionenAVBerechnen(guids) {
|
|
304
|
-
await this.fluentApi.put("BelegPositionenAVBulk/AVBerechnung", guids);
|
|
305
|
-
},
|
|
306
|
-
|
|
307
|
-
/**
|
|
308
|
-
* Deletes a single AV position
|
|
309
|
-
* @param {string} guid - GUID of the AV position to delete
|
|
310
|
-
* @returns {Promise<void>}
|
|
311
|
-
*/
|
|
312
|
-
async deleteBelegPositionenAV(guid) {
|
|
313
|
-
await this.fluentApi.delete(`BelegPositionenAV/${guid}`);
|
|
314
|
-
},
|
|
315
|
-
|
|
316
|
-
/**
|
|
317
|
-
* Deletes multiple AV positions
|
|
318
|
-
* @param {string[]} guids - Array of AV position GUIDs to delete
|
|
319
|
-
* @returns {Promise<void>}
|
|
320
|
-
*/
|
|
321
|
-
async deleteBelegPositionenAVBulk(guids) {
|
|
322
|
-
await this.fluentApi.delete("BelegPositionenAVBulk", guids);
|
|
323
|
-
},
|
|
324
|
-
|
|
325
|
-
/**
|
|
326
|
-
* Assigns order positions to series
|
|
327
|
-
* @param {string} belegGuid - GUID of the order
|
|
328
|
-
* @param {PositionSerieItemDTO[]} positionSerieItems - Array of position-to-series assignments
|
|
329
|
-
* @returns {Promise<void>}
|
|
330
|
-
*/
|
|
331
|
-
async belegPositionenSerienZuordnen(belegGuid, positionSerieItems) {
|
|
332
|
-
await this.fluentApi.put(`BelegPositionenAVBulk/SerienZuorden/${belegGuid}`, positionSerieItems);
|
|
333
|
-
},
|
|
334
155
|
};
|
|
335
156
|
}
|
|
336
157
|
|
|
@@ -352,24 +173,4 @@ export function createSerienApi(fluentApi) {
|
|
|
352
173
|
* @property {(startDate?: Date, endDate?: Date, includeStaendige?: boolean) => Promise<Record<string, SerieAuslastungDTO[]>>} getSerienKapazitaeten
|
|
353
174
|
* @property {(startDate?: Date, endDate?: Date) => Promise<VirtualSerieWithAuslastungDTO[]>} getAuslastungVirtualSerien
|
|
354
175
|
* @property {(startVorgangsnummer: number, endVorgangsnummer: number) => Promise<SerieAuslastungDTO[]>} getAuslastungVorgang
|
|
355
|
-
*
|
|
356
|
-
* // AV Position Operations
|
|
357
|
-
* @property {() => Promise<BelegPositionAVDTO[]>} getAllBelegPositionenAV
|
|
358
|
-
* @property {(changedSince: Date) => Promise<BelegPositionAVDTO[]>} getAllBelegPositionenAVChangedSince
|
|
359
|
-
* @property {(includeOriginalBeleg?: boolean, includeProdDaten?: boolean) => Promise<BelegPositionAVDTO[]>} getAllBelegPositionenAVWithOptions
|
|
360
|
-
* @property {(changedSince: Date, includeOriginalBeleg?: boolean, includeProdDaten?: boolean) => Promise<BelegPositionAVDTO[]>} getAllBelegPositionenAVChangedSinceWithOptions
|
|
361
|
-
* @property {(serieGuid: string, includeOriginalBeleg?: boolean, includeProdDaten?: boolean) => Promise<BelegPositionAVDTO[]>} getSerieBelegPositionenAV
|
|
362
|
-
* @property {(vorgangGuid: string, includeOriginalBeleg?: boolean, includeProdDaten?: boolean) => Promise<BelegPositionAVDTO[]>} getVorgangBelegPositionenAV
|
|
363
|
-
* @property {(vorgangGuids: string[], includeOriginalBeleg?: boolean, includeProdDaten?: boolean) => Promise<BelegPositionAVDTO[]>} getVorgaengeBelegPositionenAV
|
|
364
|
-
* @property {(belegpositionGuid: string) => Promise<BelegPositionAVDTO[]>} getBelegPositionenAV
|
|
365
|
-
* @property {(avGuid: string) => Promise<BelegPositionAVDTO>} getBelegPositionAVById
|
|
366
|
-
* @property {(pcode: string, includeOriginalBeleg?: boolean, includeProdDaten?: boolean) => Promise<BelegPositionAVDTO[]>} getBelegPositionAVByPCode
|
|
367
|
-
* @property {(search: string) => Promise<BelegPositionAVDTO[]>} searchBelegPositionAVByPCode
|
|
368
|
-
* @property {(position: BelegPositionAVDTO) => Promise<void>} saveBelegPositionenAV
|
|
369
|
-
* @property {(positionen: BelegPositionAVDTO[]) => Promise<BelegPositionAVDTO[]>} saveBelegPositionenAVBulk
|
|
370
|
-
* @property {(serieGuid: string, positionen: string[]) => Promise<BelegPositionAVDTO[]>} saveBelegPositionenAVToSerie
|
|
371
|
-
* @property {(guids: string[]) => Promise<void>} belegPositionenAVBerechnen
|
|
372
|
-
* @property {(guid: string) => Promise<void>} deleteBelegPositionenAV
|
|
373
|
-
* @property {(guids: string[]) => Promise<void>} deleteBelegPositionenAVBulk
|
|
374
|
-
* @property {(belegGuid: string, positionSerieItems: PositionSerieItemDTO[]) => Promise<void>} belegPositionenSerienZuordnen
|
|
375
176
|
*/
|
package/api/neherApp3Types.js
CHANGED
|
@@ -63,6 +63,7 @@
|
|
|
63
63
|
* @property {string} [id] - Unique identifier for the menu item (auto-generated if not provided)
|
|
64
64
|
* @property {boolean} [selected] - Indicates if the menu item is currently selected (managed by the menu system)
|
|
65
65
|
* @property {string} [icon] - URL to an icon
|
|
66
|
+
* @property {boolean} [iconAdaptive] - If true, the icon adapts to the active theme (e.g. inverted in dark mode via the host's `icon-adaptive` styling).
|
|
66
67
|
* @property {string | null} [url] - Relative URL to use for routes
|
|
67
68
|
* @property {string} [text] - Display text (ignored for separator items)
|
|
68
69
|
* @property {string | null} [parent] - Parent menu item (optional). If not set, the item will be added to the top level menu.
|
package/index.d.ts
CHANGED
|
@@ -200,8 +200,7 @@ export type AvApi = {
|
|
|
200
200
|
getByVorgangGuids: (vorgangGuids: string[], includeOriginalBeleg?: boolean, includeProdDaten?: boolean) => Promise<BelegPositionAVDTO[]>;
|
|
201
201
|
getByBelegPosition: (belegpositionGuid: string) => Promise<BelegPositionAVDTO[]>;
|
|
202
202
|
getById: (avGuid: string) => Promise<BelegPositionAVDTO>;
|
|
203
|
-
getByPCode: (pcode: string, includeOriginalBeleg?: boolean, includeProdDaten?: boolean) => Promise<BelegPositionAVDTO[]>;
|
|
204
|
-
searchByPCode: (search: string) => Promise<BelegPositionAVDTO[]>;
|
|
203
|
+
getByPCode: (pcode: string, includeOriginalBeleg?: boolean, includeProdDaten?: boolean, includeI3Etiketten?: boolean) => Promise<BelegPositionAVDTO[]>;
|
|
205
204
|
save: (position: BelegPositionAVDTO) => Promise<void>;
|
|
206
205
|
saveList: (positionen: BelegPositionAVDTO[]) => Promise<BelegPositionAVDTO[]>;
|
|
207
206
|
saveToSerie: (serieGuid: string, positionGuids: string[]) => Promise<BelegPositionAVDTO[]>;
|
|
@@ -2085,6 +2084,7 @@ export type NeherApp3MenuItem = {
|
|
|
2085
2084
|
id?: string;
|
|
2086
2085
|
selected?: boolean;
|
|
2087
2086
|
icon?: string;
|
|
2087
|
+
iconAdaptive?: boolean;
|
|
2088
2088
|
url?: string | null;
|
|
2089
2089
|
text?: string;
|
|
2090
2090
|
parent?: string | null;
|
|
@@ -2741,24 +2741,6 @@ export type SerienApi = {
|
|
|
2741
2741
|
getSerienKapazitaeten: (startDate?: Date, endDate?: Date, includeStaendige?: boolean) => Promise<Record<string, SerieAuslastungDTO[]>>;
|
|
2742
2742
|
getAuslastungVirtualSerien: (startDate?: Date, endDate?: Date) => Promise<VirtualSerieWithAuslastungDTO[]>;
|
|
2743
2743
|
getAuslastungVorgang: (startVorgangsnummer: number, endVorgangsnummer: number) => Promise<SerieAuslastungDTO[]>;
|
|
2744
|
-
getAllBelegPositionenAV: () => Promise<BelegPositionAVDTO[]>;
|
|
2745
|
-
getAllBelegPositionenAVChangedSince: (changedSince: Date) => Promise<BelegPositionAVDTO[]>;
|
|
2746
|
-
getAllBelegPositionenAVWithOptions: (includeOriginalBeleg?: boolean, includeProdDaten?: boolean) => Promise<BelegPositionAVDTO[]>;
|
|
2747
|
-
getAllBelegPositionenAVChangedSinceWithOptions: (changedSince: Date, includeOriginalBeleg?: boolean, includeProdDaten?: boolean) => Promise<BelegPositionAVDTO[]>;
|
|
2748
|
-
getSerieBelegPositionenAV: (serieGuid: string, includeOriginalBeleg?: boolean, includeProdDaten?: boolean) => Promise<BelegPositionAVDTO[]>;
|
|
2749
|
-
getVorgangBelegPositionenAV: (vorgangGuid: string, includeOriginalBeleg?: boolean, includeProdDaten?: boolean) => Promise<BelegPositionAVDTO[]>;
|
|
2750
|
-
getVorgaengeBelegPositionenAV: (vorgangGuids: string[], includeOriginalBeleg?: boolean, includeProdDaten?: boolean) => Promise<BelegPositionAVDTO[]>;
|
|
2751
|
-
getBelegPositionenAV: (belegpositionGuid: string) => Promise<BelegPositionAVDTO[]>;
|
|
2752
|
-
getBelegPositionAVById: (avGuid: string) => Promise<BelegPositionAVDTO>;
|
|
2753
|
-
getBelegPositionAVByPCode: (pcode: string, includeOriginalBeleg?: boolean, includeProdDaten?: boolean) => Promise<BelegPositionAVDTO[]>;
|
|
2754
|
-
searchBelegPositionAVByPCode: (search: string) => Promise<BelegPositionAVDTO[]>;
|
|
2755
|
-
saveBelegPositionenAV: (position: BelegPositionAVDTO) => Promise<void>;
|
|
2756
|
-
saveBelegPositionenAVBulk: (positionen: BelegPositionAVDTO[]) => Promise<BelegPositionAVDTO[]>;
|
|
2757
|
-
saveBelegPositionenAVToSerie: (serieGuid: string, positionen: string[]) => Promise<BelegPositionAVDTO[]>;
|
|
2758
|
-
belegPositionenAVBerechnen: (guids: string[]) => Promise<void>;
|
|
2759
|
-
deleteBelegPositionenAV: (guid: string) => Promise<void>;
|
|
2760
|
-
deleteBelegPositionenAVBulk: (guids: string[]) => Promise<void>;
|
|
2761
|
-
belegPositionenSerienZuordnen: (belegGuid: string, positionSerieItems: PositionSerieItemDTO[]) => Promise<void>;
|
|
2762
2744
|
};
|
|
2763
2745
|
|
|
2764
2746
|
export type SerienMaterialEditDTO = {
|