@gandalan/weblibs 1.5.17 → 1.5.19

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.
Files changed (56) hide show
  1. package/JSDOC.md +661 -0
  2. package/README.md +106 -17
  3. package/api/business/ablageApi.js +106 -0
  4. package/api/business/anpassungApi.js +74 -0
  5. package/api/business/artikelApi.js +242 -0
  6. package/api/business/authApi.js +63 -0
  7. package/api/business/avApi.js +458 -0
  8. package/api/business/belegApi.js +365 -0
  9. package/api/business/belegPositionenApi.js +52 -0
  10. package/api/business/benutzerApi.js +96 -0
  11. package/api/business/fakturaApi.js +88 -0
  12. package/api/business/farbeApi.js +129 -0
  13. package/api/business/fileApi.js +72 -0
  14. package/api/business/historieApi.js +144 -0
  15. package/api/business/index.js +63 -0
  16. package/api/business/kontaktApi.js +70 -0
  17. package/api/business/lagerApi.js +162 -0
  18. package/api/business/lieferungApi.js +127 -0
  19. package/api/business/mailApi.js +41 -0
  20. package/api/business/mandantApi.js +137 -0
  21. package/api/business/materialApi.js +37 -0
  22. package/api/business/printApi.js +49 -0
  23. package/api/business/produktionApi.js +141 -0
  24. package/api/business/rechnungApi.js +155 -0
  25. package/api/business/serienApi.js +375 -0
  26. package/api/business/settingsApi.js +168 -0
  27. package/api/business/systemApi.js +209 -0
  28. package/api/business/uiApi.js +256 -0
  29. package/api/business/utilityApi.js +288 -0
  30. package/api/business/vorgangApi.js +128 -0
  31. package/api/dtos/allgemein.js +107 -0
  32. package/api/dtos/artikel.js +46 -0
  33. package/api/dtos/av.js +171 -0
  34. package/api/dtos/belege.js +614 -0
  35. package/api/dtos/benutzer.js +101 -0
  36. package/api/dtos/druck.js +50 -0
  37. package/api/dtos/faktura.js +128 -0
  38. package/api/dtos/farben.js +93 -0
  39. package/api/dtos/index.js +501 -0
  40. package/api/dtos/kunden.js +217 -0
  41. package/api/dtos/lager.js +66 -0
  42. package/api/dtos/mail.js +30 -0
  43. package/api/dtos/mandanten.js +60 -0
  44. package/api/dtos/nachrichten.js +18 -0
  45. package/api/dtos/produktGruppen.js +18 -0
  46. package/api/dtos/produktion.js +564 -0
  47. package/api/dtos/settings.js +172 -0
  48. package/api/dtos/technik.js +163 -0
  49. package/api/dtos/ui.js +496 -0
  50. package/api/dtos/webjob.js +12 -0
  51. package/api/fluentApi.js +10 -8
  52. package/api/fluentAuthManager.js +22 -14
  53. package/api/fluentRestClient.js +7 -7
  54. package/api/idasFluentApi.js +458 -0
  55. package/index.js +53 -6
  56. package/package.json +1 -1
@@ -0,0 +1,564 @@
1
+ // This file was auto-generated from C# DTOs in Gandalan.IDAS.WebApi.Client/DTOs/Produktion/
2
+ // Do not modify manually - changes will be overwritten
3
+
4
+ // ============================================================================
5
+ // Imports from other DTO files
6
+ // ============================================================================
7
+
8
+ /** @typedef {import('./av.js').BelegPositionAVDTO} BelegPositionAVDTO */
9
+ /** @typedef {import('./belege.js').BelegPositionDTO} BelegPositionDTO */
10
+ /** @typedef {import('./av.js').SerieDTO} SerieDTO */
11
+ /** @typedef {import('./settings.js').ProduktionsSettingsDTO} ProduktionsSettingsDTO */
12
+ /** @typedef {import('./index.js').PositionsDatenDTO} PositionsDatenDTO */
13
+ /** @typedef {import('./index.js').KatalogArtikelArt} KatalogArtikelArt */
14
+
15
+ // ============================================================================
16
+ // Enums
17
+ // ============================================================================
18
+
19
+ /**
20
+ * @typedef {('Unbekannt'|'Angefragt'|'Beschafft'|'NachSaege'|'NachSLK'|'Abgeschlossen')} MaterialbedarfStatiDTO
21
+ */
22
+
23
+ /**
24
+ * @typedef {('Unbekannt'|'FuerAVBereitgestellt'|'AVBerechnet'|'AVAbgeschlossen'|'SerieZugeordnet'|'InProduktion'|'ProduktionAbgeschlossen'|'VersandVorbereitung'|'VersandAbgeschlossen'|'ProduktionUnterbrochen'|'Fehler')} ProduktionsStatiWerteDTO
25
+ */
26
+
27
+ /**
28
+ * @typedef {('Unbekannt'|'Lieferdatum'|'Serienzuordnung'|'ArtikelnummerFrabeOberflaeche'|'Vorgang'|'FarbeOberflaeche'|'Keine')} ZusammenfassungsOptionen
29
+ */
30
+
31
+ /**
32
+ * @typedef {('Keine'|'Lieferdatum'|'Serie'|'FarbeOberflaeche')} SchnittoptimierungsOptionen
33
+ */
34
+
35
+ // ============================================================================
36
+ // DTOs
37
+ // ============================================================================
38
+
39
+ /**
40
+ * DTO für die IBOS3 Ablageverwaltung
41
+ * @typedef {Object} AblageDTO
42
+ * @property {string} AblageGuid
43
+ * @property {Date} ChangedDate
44
+ * @property {Array<AblageFachDTO>} AblageFaecher
45
+ * @property {string} Standort
46
+ * @property {string} Bezeichnung
47
+ * @property {string} Kuerzel
48
+ */
49
+
50
+ /**
51
+ * DTO für die IBOS3 Ablageverwaltung
52
+ * @typedef {Object} AblageFachDTO
53
+ * @property {string} AblageFachGuid
54
+ * @property {boolean} Belegt - Fach ist belegt wenn BelegPositionAVGuid nicht leer ist
55
+ * @property {number} FachNr
56
+ * @property {Array<string>} ProduktGruppenGuids - GUIDs der ProduktGruppenDTOs, die im Ablagefach abgelegt werden können
57
+ * @property {Array<string>} MaterialBedarfGuids - GUIDs der aktuell im Ablagefach abgelegten MaterialbedarfDTOs
58
+ * @property {string} BelegPositionAVGuid - Guid der BelegPositionAV - Ist diese Guid schon gesetzt, aber noch kein Material zugeordnet, dann ist das Fach für die Position reserviert
59
+ */
60
+
61
+ /**
62
+ * @typedef {Object} BearbeitungDTO
63
+ * @property {string} BearbeitungGuid
64
+ * @property {string} Kennzeichen - Eindeutiges Kennzeichen der Bearbeitung (aus GUID)
65
+ * @property {string} ZielKennzeichen - Ziel der Bearbeitung
66
+ * @property {string} BearbeitungsName - Artikelbezeichnung
67
+ * @property {number} X - Anzahl des Artikels (gleiche Artikel werden per Standard nicht zusammengefasst; schließt sich aus mit Laufmeter!)
68
+ * @property {number} Y - Laufmeter des Artikels (gleiche Artikel werden per Standard nicht zusammengefasst; schließt sich aus mit Stückzahl!)
69
+ * @property {string} ProfilName
70
+ * @property {number} ProfilLaenge
71
+ * @property {number} ProfilBreite
72
+ * @property {string} KatalogNummer
73
+ * @property {string} StammdatenDateiFuerBearbeitung
74
+ * @property {string} Spannsituation
75
+ * @property {string} SpannSituationAlternativ
76
+ * @property {string} StartXRegel
77
+ * @property {string} FraesBild
78
+ * @property {string} TextHP
79
+ * @property {string} TextNP
80
+ * @property {number} LLBreite
81
+ * @property {number} LLBreiteAmBildschirm
82
+ * @property {number} LLHoehe
83
+ * @property {number} DurchmesserBohrung
84
+ * @property {number} LochAbstand
85
+ * @property {number} LochAbstandAmBildschirm
86
+ * @property {number} Winkel
87
+ * @property {boolean} ManuellGeloescht
88
+ * @property {boolean} Passiv
89
+ * @property {boolean} NichtFreigegeben
90
+ * @property {boolean} MassXEditierbar
91
+ * @property {boolean} GroesseEditierbar
92
+ */
93
+
94
+ /**
95
+ * @typedef {Object} BerechnungParameterDTO
96
+ * @property {string} MandantGuid
97
+ * @property {boolean} SaveResultData - Default: true
98
+ * @property {BelegPositionAVDTO} BelegPositionAVDTO
99
+ * @property {ProduktionsSettingsDTO} ProduktionsSettingsDTO
100
+ * @property {number} VorgangsNummer - Default: -999
101
+ * @property {number} BelegNummer - Default: -999
102
+ * @property {boolean} IgnoreSonderwuensche
103
+ * @property {boolean} ReturnRawDataFile
104
+ * @property {string} RawDataFileContent
105
+ */
106
+
107
+ /**
108
+ * @typedef {Object} BerechnungResultDTO
109
+ * @property {BelegPositionDTO} OriginalBelegPosition
110
+ * @property {string} BelegPositionGuid
111
+ * @property {string} RawDataFileContent
112
+ * @property {ProduktionsDatenDTO} ProduktionsDaten
113
+ */
114
+
115
+ /**
116
+ * @typedef {Object} EtikettDatenDTO
117
+ * @property {string} EtikettDatenGuid
118
+ * @property {string} Position
119
+ * @property {string} Typ
120
+ * @property {string} Inhalt
121
+ */
122
+
123
+ /**
124
+ * @typedef {Object} EtikettDTO
125
+ * @property {string} EtikettGuid
126
+ * @property {string} Kuerzel
127
+ * @property {string} Text
128
+ * @property {string} ZielKennzeichen
129
+ * @property {boolean} IstSonderEtikett
130
+ * @property {boolean} IstZusatzEtikett - Zusatzetiketten sind manuell angelegte Etiketten, welche über die AppSpecificProperties gepflegt wurden und sich nun in den AdditionalProperties befinden.
131
+ * @property {string} Typ - Default: "Produktionsetikett"
132
+ * @property {Array<EtikettDatenDTO>} EtikettDaten
133
+ * @property {boolean} EtikettenProfilVorbiegen
134
+ * @property {string} EtikettenSonderKuerzel
135
+ */
136
+
137
+ /**
138
+ * @typedef {Object} FachzuordnungResultDTO
139
+ * @property {Array<string>} ProduktfamilienOverCapacity
140
+ * @property {boolean} OverCapacity
141
+ */
142
+
143
+ /**
144
+ * @typedef {Object} GesamtLieferzusageBuchungDTO
145
+ * @property {string} GesamtLieferzusageBuchungGuid
146
+ * @property {string} MandantGuid
147
+ * @property {string} GesamtMaterialbedarfGuid
148
+ * @property {number} Stueckzahl
149
+ * @property {number} Laufmeter
150
+ * @property {Date} Buchungsdatum
151
+ */
152
+
153
+ /**
154
+ * @typedef {Object} GesamtLieferzusageDTO
155
+ * @property {string} GesamtLieferzusageGuid
156
+ * @property {string} MandantGuid
157
+ * @property {Date} Liefertermin
158
+ * @property {string} KatalogNummer
159
+ * @property {string} BestellNummer
160
+ * @property {string} Einheit
161
+ * @property {number} Stueckzahl
162
+ * @property {number} UngedeckteStueckzahl
163
+ * @property {number} Laufmeter
164
+ * @property {number} UngedeckteLaufmeter
165
+ * @property {string} FarbBezeichnung
166
+ * @property {string} FarbZusatzText
167
+ * @property {string} FarbKuerzel
168
+ * @property {string} FarbKuerzelGuid
169
+ * @property {string} FarbCode
170
+ * @property {string} PulverCode
171
+ * @property {string} FarbeItem
172
+ * @property {string} FarbItemGuid
173
+ * @property {string} OberFlaeche
174
+ * @property {string} OberFlaecheGuid
175
+ * @property {boolean} IstSonderfarbe
176
+ * @property {boolean} IstVE
177
+ * @property {number} [VE_Menge]
178
+ * @property {Array<GesamtLieferzusageBuchungDTO>} Buchungen
179
+ */
180
+
181
+ /**
182
+ * @typedef {Object} GesamtMaterialbedarfDTO
183
+ * @property {string} GesamtMaterialbedarfGuid
184
+ * @property {string} MandantGuid
185
+ * @property {boolean} IsGruppe
186
+ * @property {Array<GesamtMaterialbedarfDTO>} Children
187
+ * @property {string} ProduktionsMaterialbedarfGuid
188
+ * @property {MaterialbedarfDTO} ProduktionsMaterialbedarf
189
+ * @property {string} SerieGuid
190
+ * @property {SerieDTO} Serie
191
+ * @property {string} SerienName
192
+ * @property {string} BelegPositionGuid
193
+ * @property {BelegPositionDTO} BelegPosition
194
+ * @property {string} BelegPositionAVGuid
195
+ * @property {BelegPositionAVDTO} BelegPositionAV
196
+ * @property {Date} Liefertermin
197
+ * @property {string} KatalogNummer
198
+ * @property {string} Vorgangsnummer
199
+ * @property {string} ArtikelBezeichnung
200
+ * @property {string} Einheit
201
+ * @property {number} Stueckzahl
202
+ * @property {number} GedeckteStueckzahl
203
+ * @property {number} UngedeckteStueckzahl
204
+ * @property {number} Laufmeter
205
+ * @property {number} GedeckteLaufmeter
206
+ * @property {number} UngedeckteLaufmeter
207
+ * @property {string} FarbBezeichnung
208
+ * @property {string} FarbZusatzText
209
+ * @property {string} FarbKuerzel
210
+ * @property {string} FarbKuerzelGuid
211
+ * @property {string} FarbCode
212
+ * @property {string} FarbeItem
213
+ * @property {string} FarbItemGuid
214
+ * @property {string} OberFlaeche
215
+ * @property {string} OberFlaecheGuid
216
+ * @property {string} PulverCode
217
+ * @property {boolean} IstZuschnitt
218
+ * @property {number} ZuschnittLaenge
219
+ * @property {boolean} IstStangenoptimiert
220
+ * @property {string} ZuschnittWinkel
221
+ * @property {boolean} IstSonderfarbe
222
+ * @property {KatalogArtikelArt} KatalogArtikelArt
223
+ * @property {number} DeckungInPercent
224
+ * @property {boolean} IstVE
225
+ * @property {number} [VE_Menge]
226
+ */
227
+
228
+ /**
229
+ * @typedef {Object} GesamtMaterialbedarfGetReturn
230
+ * @property {Array<GesamtMaterialbedarfDTO>} Bedarfe
231
+ * @property {Array<GesamtMaterialbedarfDTO>} Fehlliste
232
+ * @property {Array<GesamtLieferzusageDTO>} Ueberliste
233
+ * @property {Array<GesamtLieferzusageDTO>} Zusagen
234
+ */
235
+
236
+ /**
237
+ * @typedef {Object} ILagerLogikDTO
238
+ * @property {string} KatalogArtikelGuid
239
+ * @property {string} FarbKuerzelGuid
240
+ * @property {string} FarbGuid - Deprecated: FarbKuerzelGuid verwenden
241
+ * @property {string} LagerbestandGuid
242
+ */
243
+
244
+ /**
245
+ * DTO für die Lagerverwaltung
246
+ * @typedef {Object} LagerbestandDTO
247
+ * @property {string} LagerbestandGuid
248
+ * @property {string} KatalogArtikelGuid
249
+ * @property {string} KatalogNummer
250
+ * @property {string} FarbGuid - Deprecated: FarbKuerzelGuid verwenden
251
+ * @property {string} FarbKuerzelGuid
252
+ * @property {string} FarbKuerzel
253
+ * @property {number} Lagerbestand
254
+ * @property {number} Bestellbestand
255
+ * @property {number} Mindestbestand
256
+ * @property {number} Reserviert
257
+ * @property {number} Maximalbestand
258
+ * @property {number} EisernerBestand
259
+ * @property {string} Einheit
260
+ * @property {string} Lagerplatz
261
+ * @property {string} Charge
262
+ * @property {boolean} IstAktiv
263
+ * @property {string} Seriennummer
264
+ * @property {Date} ChangedDate
265
+ * @property {string} WindowsUser
266
+ */
267
+
268
+ /**
269
+ * DTO für eine Lagerbuchung
270
+ * @typedef {Object} LagerbuchungDTO
271
+ * @property {string} KatalogArtikelGuid
272
+ * @property {string} FarbGuid - Deprecated: FarbKuerzelGuid verwenden
273
+ * @property {string} FarbKuerzelGuid
274
+ * @property {string} LagerbestandGuid
275
+ * @property {number} Betrag
276
+ * @property {boolean} IstReservierung
277
+ * @property {string} Einheit
278
+ * @property {string} Hinweis
279
+ * @property {string} ArtosUser
280
+ * @property {string} WindowsUser
281
+ * @property {Date} ChangedDate
282
+ * @property {number} BestandAlt
283
+ * @property {number} BestandNeu
284
+ */
285
+
286
+ /**
287
+ * DTO für die LagerReservierungen
288
+ * @typedef {Object} LagerReservierungDTO
289
+ * @property {string} LagerReservierungGuid
290
+ * @property {string} [MaterialbedarfGuid]
291
+ * @property {string} [LieferzusageGuid]
292
+ * @property {string} [GesamtLieferzusageGuid]
293
+ * @property {string} Artikelnummer
294
+ * @property {string} FarbKuerzel
295
+ * @property {string} FarbCode
296
+ * @property {string} Oberflaeche
297
+ * @property {string} Bezug
298
+ * @property {number} Menge
299
+ * @property {string} Einheit
300
+ * @property {Date} ErstellDatum
301
+ * @property {string} WindowsUser
302
+ * @property {string} ArtosUser
303
+ * @property {Date} ChangedDate
304
+ * @property {number} Version
305
+ */
306
+
307
+ /**
308
+ * @typedef {Object} LieferzusageDTO
309
+ * @property {string} LieferzusageGuid
310
+ * @property {string} MaterialBedarfGuid
311
+ * @property {number} Stueckzahl
312
+ * @property {number} Laufmeter
313
+ * @property {string} Lieferant
314
+ * @property {number} Version
315
+ * @property {Date} ChangedDate
316
+ */
317
+
318
+ /**
319
+ * @typedef {Object} MaterialbedarfDTO
320
+ * @property {string} MaterialBedarfGuid
321
+ * @property {string} Kennzeichen - Eindeutiges Kennzeichen des Items (aus GUID)
322
+ * @property {string} InternerName
323
+ * @property {string} InternerName_Backup - InternerName wird derzeit an vielen Stellen verwendet weshalb wir jetzt die Backup Property hinzufügen welche den echten InternenNamen aus dem Modell beinhaltet
324
+ * @property {string} KatalogNummer - Neher-Katalognummer des Artikels
325
+ * @property {string} Bezeichnung - Artikelbezeichnung
326
+ * @property {string} Einheit - Einheit des Artikels (lfm=Laufmeter, Stk=Stück, qm=Quadratmeter)
327
+ * @property {boolean} Beipacken
328
+ * @property {string} Vorgangsnummer - Vorgangsnummer die gesetzt ist, wenn es sich um Sonderfarbartikel handelt die nicht zusammengefasst wurden.
329
+ * @property {number} Stueckzahl - Anzahl des Artikels (gleiche Artikel werden per Standard nicht zusammengefasst; schließt sich aus mit Laufmeter!)
330
+ * @property {number} Laufmeter - Laufmeter des Artikels (gleiche Artikel werden per Standard nicht zusammengefasst; schließt sich aus mit Stückzahl!)
331
+ * @property {boolean} IstVE
332
+ * @property {number} [VE_Menge]
333
+ * @property {string} FarbBezeichnung - FarbBezeichnung (Bezeichnung der Farbe)
334
+ * @property {string} FarbZusatzText - FarbZusatzText, hauptsächlich für (Trend-)Farbkürzel (z.B. B7)
335
+ * @property {string} FarbKuerzel - FarbeKuerzel (Neher-Kürzel oder Sonderfarbton)
336
+ * @property {string} FarbKuerzelGuid
337
+ * @property {string} FarbCode - FarbeCode der Farbe
338
+ * @property {string} FarbeItem
339
+ * @property {string} FarbItemGuid
340
+ * @property {string} OberflaecheBezeichnung
341
+ * @property {string} OberFlaecheGuid
342
+ * @property {string} PulverCode
343
+ * @property {boolean} IstZuschnitt - Kennzeichen für Zuschnittartikel
344
+ * @property {number} ZuschnittLaenge
345
+ * @property {string} ZuschnittWinkel
346
+ * @property {string} PositionsAngabe
347
+ * @property {string} MaterialBezeichnung
348
+ * @property {boolean} MaterialBearbeitungSaegen
349
+ * @property {boolean} MaterialBearbeitungFraesen
350
+ * @property {boolean} MaterialBearbeitungStanzen
351
+ * @property {boolean} MaterialBearbeitungBeschichten
352
+ * @property {boolean} MaterialBearbeitungBohren
353
+ * @property {boolean} MaterialBearbeitungEloxieren
354
+ * @property {boolean} AufPackListe
355
+ * @property {string} CADKennung
356
+ * @property {string} EtikettenSonderS
357
+ * @property {string} IndiSonderInfo1
358
+ * @property {string} IndiSonderInfo2
359
+ * @property {string} IndiSonderInfo3
360
+ * @property {string} PIText
361
+ * @property {boolean} SchraegElement
362
+ * @property {string} SonderFormInfo
363
+ * @property {string} ZusatzEtikettText
364
+ * @property {boolean} AufMaterialListe
365
+ * @property {boolean} NurLieferscheinAnzeige
366
+ * @property {boolean} FromSonderWunsch
367
+ * @property {boolean} IstBeschichtbar
368
+ * @property {KatalogArtikelArt} KatalogArtikelArt
369
+ * @property {MaterialbedarfStatiDTO} AktuellerStatus
370
+ * @property {boolean} ProfilGedrehtSaegen - Kennzeichen, ob das Profil gedreht gesägt wird (z.B. bei PT2/46)
371
+ * @property {boolean} IstSonderfarbe
372
+ * @property {string} MaterialPCode
373
+ * @property {string} Bemerkung
374
+ * @property {string} [AVPositionGuid]
375
+ * @property {string} ZielKennzeichen
376
+ * @property {string} [AblageGuid]
377
+ * @property {string} [AblageFachGuid]
378
+ * @property {string} Lagerfach
379
+ */
380
+
381
+ /**
382
+ * Produktionsdaten für ein Fertigelement
383
+ * @typedef {Object} ProduktionsDatenDTO
384
+ * @property {string} ProduktionsDatenGuid - Eindeutige ID
385
+ * @property {Array<MaterialbedarfDTO>} Material - Gesamtliste des benötigten Materials (immer für Stückzahl 1)
386
+ * @property {Array<EtikettDTO>} Etiketten - Produktionsetiketten
387
+ * @property {Array<BearbeitungDTO>} Bearbeitungen - CNC-Bearbeitungen
388
+ * @property {PositionsDatenDTO} PositionsDaten - Daten der Original-Belegposition
389
+ * @property {Array<SonderwuenscheDTO>} Sonderwuensche
390
+ * @property {Array<string>} Log
391
+ */
392
+
393
+ /**
394
+ * @typedef {Object} ProduktionsfreigabeItemDTO
395
+ * @property {string} VorgangGuid
396
+ * @property {number} VorgangsNummer
397
+ * @property {string} BelegGuid
398
+ * @property {Date} Belegdatum
399
+ * @property {Date} FreigabeDatum
400
+ * @property {string} Kundenname
401
+ * @property {string} Kommission
402
+ * @property {string} Besitzer
403
+ * @property {string} Besteller
404
+ * @property {string} Bearbeiter
405
+ * @property {ProduktionsInfoDTO} ProduktionsInfos
406
+ */
407
+
408
+ /**
409
+ * @typedef {Object} ProduktionsInfoDTO
410
+ * @property {number} VorgangsNummer
411
+ * @property {string} VorgangsGuid
412
+ * @property {Array<ProduktionsInfoBelegDTO>} BelegInfos
413
+ */
414
+
415
+ /**
416
+ * @typedef {Object} ProduktionsInfoBelegDTO
417
+ * @property {string} BelegGuid
418
+ * @property {string} BelegTitel - z.B. 'AB vom 17.07.2021'
419
+ * @property {Date} ErstellDatum
420
+ * @property {Array<ProduktionsInfoBelegPositionDTO>} PositionenInfos
421
+ */
422
+
423
+ /**
424
+ * @typedef {Object} ProduktionsInfoBelegPositionDTO
425
+ * @property {string} BelegPosGuid
426
+ * @property {string} NachfolgeBelegPosGuid
427
+ * @property {number} BelegPositionsNummer
428
+ * @property {string} VariantenName
429
+ * @property {string} Katalognummer
430
+ * @property {number} Menge
431
+ * @property {string} BelegPositionInfos
432
+ * @property {string} [SerieGuid]
433
+ * @property {boolean} IstGeplanteSerie
434
+ * @property {string} SerieName
435
+ * @property {boolean} IsAktiv
436
+ * @property {boolean} IstAlternativPosition
437
+ * @property {Date} [LieferDatum]
438
+ * @property {Date} [ProduktionsDatum]
439
+ * @property {Array<ProduktionsInfoBelegPositionAVDTO>} AvBelegPositionenInfos
440
+ */
441
+
442
+ /**
443
+ * @typedef {Object} ProduktionsInfoBelegPositionAVDTO
444
+ * @property {string} AvBelegPositionGuid
445
+ * @property {string} PCode
446
+ * @property {string} [ZugeodneteSerie]
447
+ * @property {string} ZugeodneteSerieName
448
+ * @property {ProduktionsStatiWerteDTO} AktuellerStatus
449
+ * @property {boolean} IstFuerAVBereitgestellt
450
+ * @property {boolean} IstAVBerechnet
451
+ * @property {boolean} IstAVAbgeschlossen
452
+ * @property {boolean} IstSerieZugeordnet
453
+ * @property {boolean} IstInProduktion
454
+ * @property {boolean} IstProduktionAbgeschlossen
455
+ * @property {boolean} IstVersandVorbereitung
456
+ * @property {boolean} IstVersandAbgeschlossen
457
+ * @property {boolean} IstProduktionUnterbrochen
458
+ * @property {boolean} IstFehler
459
+ * @property {number} AktuelleProzent
460
+ * @property {string} AktuellerText
461
+ * @property {number} GesamtMinuten
462
+ * @property {Array<ProduktionsStatusHistorieDTO>} Historie
463
+ */
464
+
465
+ /**
466
+ * @typedef {Object} ProduktionsStatusDTO
467
+ * @property {string} ProduktionsStatusGuid
468
+ * @property {string} BelegPositionAVGuid
469
+ * @property {Date} Erstellt
470
+ * @property {string} Ersteller
471
+ * @property {string} SerieGuid
472
+ * @property {string} SerieBezeichnung
473
+ * @property {ProduktionsStatiWerteDTO} AktuellerStatus
474
+ * @property {number} AktuelleProzent
475
+ * @property {string} AktuellerText
476
+ * @property {number} GesamtMinuten
477
+ * @property {Array<ProduktionsStatusHistorieDTO>} Historie
478
+ * @property {Date} ChangedDate
479
+ */
480
+
481
+ /**
482
+ * @typedef {Object} ProduktionsStatusHistorieDTO
483
+ * @property {string} ProduktionsStatusHistorieGuid
484
+ * @property {ProduktionsStatiWerteDTO} Status
485
+ * @property {string} Text
486
+ * @property {number} Produktionsminuten
487
+ * @property {string} ProduktionsStatusInfoText
488
+ * @property {number} ProduktionsStatusInProzent
489
+ * @property {Date} Zeitstempel
490
+ * @property {string} Benutzer
491
+ */
492
+
493
+ /**
494
+ * @typedef {Object} SaegeDatenHistorieDTO
495
+ * @property {string} SaegeDatenHistorieGuid
496
+ * @property {string} SerieGuid
497
+ * @property {string} SerienName
498
+ * @property {Date} ErstelltAm
499
+ * @property {string} DateiName
500
+ * @property {string} DateiPfad
501
+ * @property {string} SaegeModell
502
+ * @property {string} Benutzername
503
+ * @property {string} SaegeDatei
504
+ * @property {string} Meldungen
505
+ */
506
+
507
+ /**
508
+ * @typedef {Object} SaegeDatenResultDTO
509
+ * @property {string} Content
510
+ * @property {string} Meldungen
511
+ * @property {string} Modell
512
+ * @property {string} Dateipfad
513
+ * @property {string} Dateiname
514
+ */
515
+
516
+ /**
517
+ * DTO für die Konfiguration von Sägen in IBOS3
518
+ * @typedef {Object} SaegeKonfigurationDTO
519
+ * @property {string} Bezeichnung - Bezeichnung der Säge
520
+ * @property {string} Modell - Modellbezeichnung des ISaegeDatenGenerator, der genutzt werden soll
521
+ * @property {string} DisplayName - DisplayName des ISaegeDatenGenerator, der genutzt werden soll
522
+ * @property {string} KorrekturSatz - Bezeichnung des SaegemassKorrekturSatzDTO, das genutzt werden soll
523
+ * @property {boolean} DoppelGeradSchnitt - Angabe, ob die Säge Schnitte mit 90-90 Grad sägen kann
524
+ * @property {boolean} DoppelGehrungsSchnitt - Angabe, ob die Säge Schnitte mit 45-45 Grad sägen kann
525
+ * @property {boolean} GeradGehrungsSchnitt - Angabe, ob die Säge Schnitte mit 45-90 Grad sägen kann
526
+ * @property {boolean} FreierSchnitt - Angabe, ob die Säge Schnitte mit anderen Winkeln sägen kann
527
+ * @property {string} Ausgabeverzeichnis_Geradschnitt - Ausgabeverzeichnis für die Datei mit Geradschnitten (90-90)
528
+ * @property {string} Ausgabeverzeichnis_GeradGehrung - Ausgabeverzeichnis für die Datei mit GeradGehrungsschnitten (45-90; 90-45)
529
+ * @property {string} Ausgabeverzeichnis_DoppelGehrung - Ausgabeverzeichnis für die Datei mit Doppelgehrungsschnitten (45-45)
530
+ * @property {boolean} KombinierteSaegeDatei - Kennzeichen, ob alle Schnitte in einer Datei ausgegeben werden sollen
531
+ * @property {string} Ausgabverzeichnis_kombiniert - Ausgabeverzeichnis für kombinierte Sägedatei
532
+ * @property {string} FarbKuerzel_SF - FarbKuerzel für Sonderfarbschnitte - Default: "SF"
533
+ */
534
+
535
+ /**
536
+ * DTO für die Verwaltung der Sägemaßkorrekturen
537
+ * @typedef {Object} SaegemassKorrekturDTO
538
+ * @property {string} KatalogNummer - Katalognummer des Profils, für das die Sägemaßkorrektur gilt
539
+ * @property {number} Korrektur90Grad - Korrekturmaß bei 90° Schnitt (in mm)
540
+ * @property {number} Korrektur45Grad - Korrekturmaß bei 45° Schnitt (in mm)
541
+ * @property {number} WinkelKorrektur45Grad - Winkelkorrektur bei 45° Schnitt (in °)
542
+ * @property {number} WinkelKorrektur90Grad - Winkelkorrektur bei 90° Schnitt (in °)
543
+ */
544
+
545
+ /**
546
+ * DTO für die Verwaltung der Sägemaßkorrekturen
547
+ * @typedef {Object} SaegemassKorrekturSatzDTO
548
+ * @property {string} Bezeichnung - Bezeichnung des Sägemaßkorrektursatzes
549
+ * @property {Array<SaegemassKorrekturDTO>} SaegemassKorrekturen - Liste mit profilbezogenen Sägemaßkorrekturen
550
+ */
551
+
552
+ /**
553
+ * @typedef {Object} SonderwuenscheDTO
554
+ * @property {string} Bezeichnung
555
+ * @property {string} Wert
556
+ */
557
+
558
+ /**
559
+ * Represents optimization output for one material item.
560
+ * Keys and values are backend-defined and may vary by optimization strategy.
561
+ * @typedef {Object.<string, any>} MaterialbedarfCutOptimization
562
+ */
563
+
564
+ export {};