@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.
- package/JSDOC.md +661 -0
- package/README.md +106 -17
- package/api/business/ablageApi.js +106 -0
- package/api/business/anpassungApi.js +74 -0
- package/api/business/artikelApi.js +242 -0
- package/api/business/authApi.js +63 -0
- package/api/business/avApi.js +458 -0
- package/api/business/belegApi.js +365 -0
- package/api/business/belegPositionenApi.js +52 -0
- package/api/business/benutzerApi.js +96 -0
- package/api/business/fakturaApi.js +88 -0
- package/api/business/farbeApi.js +129 -0
- package/api/business/fileApi.js +72 -0
- package/api/business/historieApi.js +144 -0
- package/api/business/index.js +63 -0
- package/api/business/kontaktApi.js +70 -0
- package/api/business/lagerApi.js +162 -0
- package/api/business/lieferungApi.js +127 -0
- package/api/business/mailApi.js +41 -0
- package/api/business/mandantApi.js +137 -0
- package/api/business/materialApi.js +37 -0
- package/api/business/printApi.js +49 -0
- package/api/business/produktionApi.js +141 -0
- package/api/business/rechnungApi.js +155 -0
- package/api/business/serienApi.js +375 -0
- package/api/business/settingsApi.js +168 -0
- package/api/business/systemApi.js +209 -0
- package/api/business/uiApi.js +256 -0
- package/api/business/utilityApi.js +288 -0
- package/api/business/vorgangApi.js +128 -0
- package/api/dtos/allgemein.js +107 -0
- package/api/dtos/artikel.js +46 -0
- package/api/dtos/av.js +171 -0
- package/api/dtos/belege.js +614 -0
- package/api/dtos/benutzer.js +101 -0
- package/api/dtos/druck.js +50 -0
- package/api/dtos/faktura.js +128 -0
- package/api/dtos/farben.js +93 -0
- package/api/dtos/index.js +501 -0
- package/api/dtos/kunden.js +217 -0
- package/api/dtos/lager.js +66 -0
- package/api/dtos/mail.js +30 -0
- package/api/dtos/mandanten.js +60 -0
- package/api/dtos/nachrichten.js +18 -0
- package/api/dtos/produktGruppen.js +18 -0
- package/api/dtos/produktion.js +564 -0
- package/api/dtos/settings.js +172 -0
- package/api/dtos/technik.js +163 -0
- package/api/dtos/ui.js +496 -0
- package/api/dtos/webjob.js +12 -0
- package/api/fluentApi.js +10 -8
- package/api/fluentAuthManager.js +22 -14
- package/api/fluentRestClient.js +7 -7
- package/api/idasFluentApi.js +458 -0
- package/index.js +53 -6
- package/package.json +1 -1
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
/** @typedef {import('./ui.js').PropertyValueCollection} PropertyValueCollection */
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @typedef {Object} KontaktDTO
|
|
5
|
+
* @property {string} KontaktGuid - Eindeutige GUID
|
|
6
|
+
* @property {string} Nachname - Nachname (für Endkunden)
|
|
7
|
+
* @property {string} Vorname - Vorname(n) (für Endkunden)
|
|
8
|
+
* @property {string} Firmenname - Firmierung (für jur. Personen)
|
|
9
|
+
* @property {string} KundenNummer - Kundennummer (alphanummerisch)
|
|
10
|
+
* @property {Date|null} Erstkontakt - Datum des ersten Kontakts
|
|
11
|
+
* @property {Date|null} LetzterKontakt - Datum des letzten Kontakts
|
|
12
|
+
* @property {boolean} IstEndkunde - Endkunde oder Firmenkunde
|
|
13
|
+
* @property {string} Kommentar - allg. Informationen
|
|
14
|
+
* @property {boolean} IstKunde - Status Kontakt oder Interessent
|
|
15
|
+
* @property {boolean} IstGesperrt - Gesperrt/Wird nicht beliefert
|
|
16
|
+
* @property {boolean} IstArchiviert - Archiviert, wird nicht mehr angezeigt, restliche Abhängigkeiten bleiben unberührt
|
|
17
|
+
* @property {boolean} IstSelbstabholer - Holt Ware normalerweise ab
|
|
18
|
+
* @property {boolean} IstVorkasse - Kunde muss in Vorkasse gehen.
|
|
19
|
+
* @property {boolean} IstUmsatzsteuerPflichtig
|
|
20
|
+
* @property {boolean} InnergemeinschaftOhneMwSt - Wenn der Kontakt ein Innergemeinschaftlicher Kontakt ist, kann durch dieses Flag die MwSt. Berechnung abgeschaltet werden.
|
|
21
|
+
* @property {Array<PersonDTO>} Personen - Zugeordnete Personen
|
|
22
|
+
* @property {Array<ZusatzanschriftDTO>} Zusatzanschriften - Zugeordnete Standard-Adressen
|
|
23
|
+
* @property {boolean} IstDummyKunde
|
|
24
|
+
* @property {number} ArtikelRabattVorgabe
|
|
25
|
+
* @property {number} ElementRabattVorgabe
|
|
26
|
+
* @property {string} UmsatzSteuerId
|
|
27
|
+
* @property {string} Branche
|
|
28
|
+
* @property {string} Nummernkreis - Kunden-Nummernkreis, z.B. 600, 0000, 000
|
|
29
|
+
* @property {string[]} Liefertage - Liefertage, Montag bis Freitag
|
|
30
|
+
* @property {boolean} ShowSonderetikett
|
|
31
|
+
* @property {string} Sonderetikett
|
|
32
|
+
* @property {string} Briefanrede
|
|
33
|
+
* @property {string} Titel
|
|
34
|
+
* @property {string} Anrede - Namensanrede, z.B. "Herr"/"Frau"/"Firma"
|
|
35
|
+
* @property {string} AdressZusatz1 - Adresszusatz, z.B. "c/o" (belegbezogen)
|
|
36
|
+
* @property {string} AdressZusatz2 - Adresszusatz, z.B. "c/o" (belegbezogen)
|
|
37
|
+
* @property {string} Strasse - Postalische Straße
|
|
38
|
+
* @property {string} Hausnummer - Postalische Hausnummer, ggf. mit Suffix/Prafix z.B. "16a" oder "77 (Hinterhaus)"
|
|
39
|
+
* @property {string} Postfach - Postfach (ersetzt Straße/Hausnummer in der Ausgabe)
|
|
40
|
+
* @property {string} Postleitzahl - Postalische Postleitzahl bezogen auf die Straßen- oder Postfachadresse
|
|
41
|
+
* @property {string} Ort - Postalische Ortsangabe
|
|
42
|
+
* @property {string} Ortsteil - Nicht-postalische Angabe zum Ortsteil
|
|
43
|
+
* @property {string} Land - Land als Textkürzel
|
|
44
|
+
* @property {boolean} IstInland
|
|
45
|
+
* @property {string} Mailadresse - E-Mail-Adresse
|
|
46
|
+
* @property {string} Landesvorwahl - Telefon: Ländervorwahl (kanonisch [+49] oder landesspezifisch [0049])
|
|
47
|
+
* @property {string} Vorwahl - Ortskennzahl mit führender "0" in Deutschland
|
|
48
|
+
* @property {string} Telefonnummer - Anschlussrufnummer
|
|
49
|
+
* @property {string} Durchwahl - Durchwahlzusatz
|
|
50
|
+
* @property {string} Webadresse - Internet-/Web-URL mit Protokoll-Präfix (https://...)
|
|
51
|
+
* @property {number|null} Transportkosten - Transportkosten für den Kunden
|
|
52
|
+
* @property {boolean} AbweichendeTransportkosten - Transportkosten für den Kunden
|
|
53
|
+
* @property {Record<string, PropertyValueCollection>} ApplicationSpecificProperties - Intern
|
|
54
|
+
* @property {Record<string, PropertyValueCollection>} AdditionalProperties - Intern
|
|
55
|
+
* @property {string} KontaktMandantGuid
|
|
56
|
+
* @property {boolean} KontaktMandantIstAktiv
|
|
57
|
+
* @property {number} Version
|
|
58
|
+
* @property {Date} ChangedDate
|
|
59
|
+
* @property {number} NettoTage - Zahleneintrag für Tage
|
|
60
|
+
* @property {number} Skonto - Zahleneintrag für Tage sowie Skonto in %
|
|
61
|
+
* @property {string} SchlussTextAngebotAB - Freitextfeld bei Vorkasse Kunden "Hinweis auf Zahlung" (Angebot + AB)
|
|
62
|
+
* @property {string} SchlussTextRechnung - Freitextfeld bei Vorkasse Kunden "Hinweis auf Zahlung" (Rechnung)
|
|
63
|
+
* @property {string} Zahlungsbedingung - Freitextfeld für die Zahlungsbedingung
|
|
64
|
+
* @property {boolean} HatWinterrabatt - Kunde hat Winterrabatt ja/nein
|
|
65
|
+
* @property {boolean} KeineAutofreigabe
|
|
66
|
+
* @property {boolean} ErbtAuswahlOhneSprosse
|
|
67
|
+
* @property {boolean} DigitalerRechnungsversand
|
|
68
|
+
* @property {boolean} IstSammelrechnungsKunde
|
|
69
|
+
* @property {boolean} IstInaktiv - Inaktiv Kennzeichen
|
|
70
|
+
* @property {string} AnzeigeName - Erzeugt einen Text aus den Namensfeldern für die Anzeige in Überschriften, Anschriftenfeldern usw.
|
|
71
|
+
* @property {string} ProduktionZusatzInfo
|
|
72
|
+
* @property {boolean} ProduktionZusatzInfoPrintZusatzEtikett
|
|
73
|
+
* @property {boolean} ProduktionZusatzInfoPrintOnReport
|
|
74
|
+
* @property {string} FremdfertigungMandantGuid
|
|
75
|
+
*/
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* @typedef {Object} ZusatzanschriftDTO
|
|
79
|
+
* @property {string} ZusatzanschriftGuid
|
|
80
|
+
* @property {string} Titel - Akad. Titel/Adelstitel
|
|
81
|
+
* @property {string} Anrede - Namensanrede, z.B. "Herr"/"Frau"/"Firma"
|
|
82
|
+
* @property {string} Nachname - Für natürliche Personen: Nachname
|
|
83
|
+
* @property {string} Vorname - Für natürliche Personen: Vorname(n)
|
|
84
|
+
* @property {string} Firmenname - Für juristische Personen/Körperschaften: exakte Firmierung mit Zusatz der Gesellschaftsform, z.B. "Fensterbau Maier GmbH & Co. KG"
|
|
85
|
+
* @property {string} AdressZusatz1 - Adresszusatz, z.B. "c/o" (belegbezogen)
|
|
86
|
+
* @property {string} AdressZusatz2 - Adresszusatz, z.B. "c/o" (belegbezogen)
|
|
87
|
+
* @property {string} Strasse - Postalische Straße
|
|
88
|
+
* @property {string} Hausnummer - Postalische Hausnummer, ggf. mit Suffix/Prafix z.B. "16a" oder "77 (Hinterhaus)"
|
|
89
|
+
* @property {string} Postfach - Postfach (ersetzt Straße/Hausnummer in der Ausgabe)
|
|
90
|
+
* @property {string} Postleitzahl - Postalische Postleitzahl bezogen auf die Straßen- oder Postfachadresse
|
|
91
|
+
* @property {string} Ort - Postalische Ortsangabe
|
|
92
|
+
* @property {string} Ortsteil - Nicht-postalische Angabe zum Ortsteil
|
|
93
|
+
* @property {string} Land - Land als Textkürzel
|
|
94
|
+
* @property {boolean} IstInland - Bezogen auf den Versender die Angabe, ob die hier ausgefertigte Adresse eine Inlandsadresse ist
|
|
95
|
+
* @property {string} Mailadresse - E-Mail-Adresse
|
|
96
|
+
* @property {string} Verwendungszweck - Verwendungszweck für diesen Adressdatensatz, mögliche Werte: Allgemein = 0, Angebot = 1, Rechnung = 3, Versand = 4, Bestellschein = 5, Newsletter = 6, Postversand = 7, Speditionsversand = 8, DigitalerDownload = 9, EmailDownload = 10, Firmensitz = 11
|
|
97
|
+
* @property {number} Prioritaet - Priorisierung der Adresse
|
|
98
|
+
* @property {Record<string, PropertyValueCollection>} ApplicationSpecificProperties - Intern
|
|
99
|
+
* @property {Record<string, PropertyValueCollection>} AdditionalProperties - Intern
|
|
100
|
+
* @property {boolean} IstInaktiv - Inaktiv Kennzeichen
|
|
101
|
+
*/
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* @typedef {Object} BeleganschriftDTO
|
|
105
|
+
* @property {string} AdressGuid
|
|
106
|
+
* @property {string} Art - Art der Adresse - "Anschrift", "Email", "Telefon" (nur relevant bei Adressen aus IBOS)
|
|
107
|
+
* @property {string} Titel - Akad. Titel/Adelstitel
|
|
108
|
+
* @property {string} Anrede - Namensanrede, z.B. "Herr"/"Frau"/"Firma"
|
|
109
|
+
* @property {string} Nachname - Für natürliche Personen: Nachname
|
|
110
|
+
* @property {string} Vorname - Für natürliche Personen: Vorname(n)
|
|
111
|
+
* @property {string} Firmenname - Für juristische Personen/Körperschaften: exakte Firmierung mit Zusatz der Gesellschaftsform, z.B. "Fensterbau Maier GmbH & Co. KG"
|
|
112
|
+
* @property {string} Zusatz - Zusätzliche Information zur Firma
|
|
113
|
+
* @property {string} AdressZusatz1 - Adresszusatz, z.B. "c/o" (belegbezogen)
|
|
114
|
+
* @property {string} AdressZusatz2 - Adresszusatz, z.B. "c/o" (belegbezogen)
|
|
115
|
+
* @property {string} Strasse - Postalische Straße
|
|
116
|
+
* @property {string} Hausnummer - Postalische Hausnummer, ggf. mit Suffix/Prafix z.B. "16a" oder "77 (Hinterhaus)"
|
|
117
|
+
* @property {string} Postfach - Postfach (ersetzt Straße/Hausnummer in der Ausgabe)
|
|
118
|
+
* @property {string} Postleitzahl - Postalische Postleitzahl bezogen auf die Straßen- oder Postfachadresse
|
|
119
|
+
* @property {string} Ort - Postalische Ortsangabe
|
|
120
|
+
* @property {string} Ortsteil - Nicht-postalische Angabe zum Ortsteil
|
|
121
|
+
* @property {string} Land - Land als Textkürzel
|
|
122
|
+
* @property {boolean} IstInland - Bezogen auf den Versender die Angabe, ob die hier ausgefertigte Adresse eine Inlandsadresse ist
|
|
123
|
+
* @property {string} Mailadresse - E-Mail-Adresse
|
|
124
|
+
* @property {string} Landesvorwahl - Telefon: Ländervorwahl (kanonisch [+49] oder landesspezifisch [0049])
|
|
125
|
+
* @property {string} Vorwahl - Ortskennzahl mit führender "0" in Deutschland
|
|
126
|
+
* @property {string} Telefonnummer - Anschlussrufnummer
|
|
127
|
+
* @property {string} Durchwahl - Durchwahlzusatz
|
|
128
|
+
* @property {string} Webadresse - Internet-/Web-URL mit Protokoll-Präfix (https://...)
|
|
129
|
+
* @property {string} Verwendungszweck - Ursprunglicher interner Verwendungszweck für diesen Adressdatensatz (nur für Adresse aus IBOS, z.B. "Rechnung", "AB"...)
|
|
130
|
+
* @property {number} Prioritaet - Priorisierung der Adresse
|
|
131
|
+
* @property {Record<string, PropertyValueCollection>} ApplicationSpecificProperties - Intern
|
|
132
|
+
* @property {Record<string, PropertyValueCollection>} AdditionalProperties - Intern
|
|
133
|
+
* @property {string} AnzeigeName - Erzeugt einen Text aus den Namensfeldern für die Anzeige in Überschriften, Anschriftenfeldern usw.
|
|
134
|
+
*/
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* @typedef {Object} KontaktListItemDTO
|
|
138
|
+
* @property {string} KontaktGuid
|
|
139
|
+
* @property {string} KontaktMandantGuid
|
|
140
|
+
* @property {string} FremdfertigungMandantGuid
|
|
141
|
+
* @property {boolean} KontaktMandantIstAktiv - Der KontaktMandant hat die App-Verwendung aktiv
|
|
142
|
+
* @property {string} Nachname - Nachname (für Endkunden)
|
|
143
|
+
* @property {string} Vorname - Vorname(n) (für Endkunden)
|
|
144
|
+
* @property {string} Firmenname - Firmierung (für jur. Personen)
|
|
145
|
+
* @property {string} KundenNummer - Kundennummer (alphanummerisch)
|
|
146
|
+
* @property {string} Strasse - Strasse
|
|
147
|
+
* @property {string} Hausnummer - Postalische Hausnummer, ggf. mit Suffix/Prafix z.B. "16a" oder "77 (Hinterhaus)"
|
|
148
|
+
* @property {string} Land - Land
|
|
149
|
+
* @property {string} Plz - Postleitzahl
|
|
150
|
+
* @property {string} Ort - Stadt / Ort
|
|
151
|
+
* @property {string} Ortsteil - Ortsteil
|
|
152
|
+
* @property {string} Telefon - Telefon (Zentrale)
|
|
153
|
+
* @property {string} Email - E-Mail (Zentrale)
|
|
154
|
+
* @property {boolean} IstEndkunde - Endkunde oder Firmenkunde
|
|
155
|
+
* @property {boolean} IstKunde
|
|
156
|
+
* @property {boolean} IstGesperrt - Kunde gesperrt?
|
|
157
|
+
* @property {boolean} IstArchiviert - Archivierte Kontakte werden nicht angezeigt
|
|
158
|
+
* @property {string} URL
|
|
159
|
+
* @property {Date} ChangedDate
|
|
160
|
+
* @property {Record<string, PropertyValueCollection>} ApplicationSpecificProperties
|
|
161
|
+
* @property {Record<string, PropertyValueCollection>} AdditionalProperties
|
|
162
|
+
*/
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* @typedef {Object} PersonDTO
|
|
166
|
+
* @property {string} PersonGuid - Eindeutige GUID
|
|
167
|
+
* @property {string} Nachname - Nachname der Person
|
|
168
|
+
* @property {string} Vorname - Vorname/Rufname der Person
|
|
169
|
+
* @property {string} WeitereVornamen - evtl. weitere Vornamen
|
|
170
|
+
* @property {Date|null} Geburtstag - Geburtstag
|
|
171
|
+
* @property {string} Briefanrede
|
|
172
|
+
* @property {string} Anrede
|
|
173
|
+
* @property {string} Mailadresse
|
|
174
|
+
* @property {string} Telefonnummer
|
|
175
|
+
* @property {string} MobileTelefonnummer
|
|
176
|
+
* @property {Record<string, PropertyValueCollection>} ApplicationSpecificProperties
|
|
177
|
+
* @property {Record<string, PropertyValueCollection>} AdditionalProperties
|
|
178
|
+
* @property {boolean} IstInaktiv - Inaktiv Kennzeichen
|
|
179
|
+
*/
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* @typedef {Object} AdresseDTO
|
|
183
|
+
* @property {string} AdressGuid
|
|
184
|
+
* @property {string} Titel - Akad. Titel/Adelstitel
|
|
185
|
+
* @property {string} Anrede - Namensanrede, z.B. "Herr"/"Frau"/"Firma"
|
|
186
|
+
* @property {string} Nachname - Für natürliche Personen: Nachname
|
|
187
|
+
* @property {string} Vorname - Für natürliche Personen: Vorname(n)
|
|
188
|
+
* @property {string} Firmenname - Für juristische Personen/Körperschaften: exakte Firmierung mit Zusatz der Gesellschaftsform, z.B. "Fensterbau Maier GmbH & Co. KG"
|
|
189
|
+
* @property {string} AdressZusatz1 - Adresszusatz, z.B. "c/o" (belegbezogen)
|
|
190
|
+
* @property {string} AdressZusatz2 - Adresszusatz, z.B. "c/o" (belegbezogen)
|
|
191
|
+
* @property {string} Strasse - Postalische Straße
|
|
192
|
+
* @property {string} Hausnummer - Postalische Hausnummer, ggf. mit Suffix/Prafix z.B. "16a" oder "77 (Hinterhaus)"
|
|
193
|
+
* @property {string} Postfach - Postfach (ersetzt Straße/Hausnummer in der Ausgabe)
|
|
194
|
+
* @property {string} Postleitzahl - Postalische Postleitzahl bezogen auf die Straßen- oder Postfachadresse
|
|
195
|
+
* @property {string} Ort - Postalische Ortsangabe
|
|
196
|
+
* @property {string} Ortsteil - Nicht-postalische Angabe zum Ortsteil
|
|
197
|
+
* @property {string} Land - Land als Textkürzel
|
|
198
|
+
* @property {boolean} IstInland - Bezogen auf den Versender die Angabe, ob die hier ausgefertigte Adresse eine Inlandsadresse ist
|
|
199
|
+
* @property {string} Mailadresse - E-Mail-Adresse
|
|
200
|
+
* @property {string} Landesvorwahl - Telefon: Ländervorwahl (kanonisch [+49] oder landesspezifisch [0049])
|
|
201
|
+
* @property {string} Vorwahl - Ortskennzahl mit führender "0" in Deutschland
|
|
202
|
+
* @property {string} Telefonnummer - Anschlussrufnummer
|
|
203
|
+
* @property {string} Durchwahl - Durchwahlzusatz
|
|
204
|
+
* @property {string} Webadresse - Internet-/Web-URL mit Protokoll-Präfix (https://...)
|
|
205
|
+
* @property {string} Verwendungszweck - Ursprunglicher interner Verwendungszweck für diesen Adressdatensatz (nur für Adresse aus IBOS, z.B. "Rechnung", "AB"...)
|
|
206
|
+
* @property {Record<string, PropertyValueCollection>} ApplicationSpecificProperties - Intern
|
|
207
|
+
* @property {Record<string, PropertyValueCollection>} AdditionalProperties
|
|
208
|
+
*/
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* @typedef {Object} AppActivationStatusDTO
|
|
212
|
+
* @property {string} KundeGuid
|
|
213
|
+
* @property {string} KundenMandantGuid
|
|
214
|
+
* @property {boolean} KundenMandantIstAktiv
|
|
215
|
+
*/
|
|
216
|
+
|
|
217
|
+
export {};
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview JSDoc type definitions for Lager (Warehouse) DTOs from Gandalan.IDAS.WebApi.Client
|
|
3
|
+
* Auto-generated from C# DTO files in Gandalan.IDAS.WebApi.Client/DTOs/Produktion/
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* @typedef {Object} LagerbestandDTO
|
|
8
|
+
* @property {string} LagerbestandGuid - Eindeutige GUID des Lagerbestands
|
|
9
|
+
* @property {string} KatalogArtikelGuid - GUID des Katalogartikels
|
|
10
|
+
* @property {string} KatalogNummer - Katalognummer
|
|
11
|
+
* @property {string} FarbGuid - GUID der Farbe (veraltet, verwende FarbKuerzelGuid)
|
|
12
|
+
* @property {string} FarbKuerzelGuid - GUID des Farbkürzels
|
|
13
|
+
* @property {string} FarbKuerzel - Farbkürzel
|
|
14
|
+
* @property {number} Lagerbestand - Aktueller Lagerbestand
|
|
15
|
+
* @property {number} Bestellbestand - Bestellbestand
|
|
16
|
+
* @property {number} Mindestbestand - Mindestbestand
|
|
17
|
+
* @property {number} Reserviert - Reservierte Menge
|
|
18
|
+
* @property {number} Maximalbestand - Maximalbestand
|
|
19
|
+
* @property {number} EisernerBestand - Eiserner Bestand
|
|
20
|
+
* @property {string} Einheit - Einheit (z.B. Stk, lfm)
|
|
21
|
+
* @property {string} Lagerplatz - Lagerplatz
|
|
22
|
+
* @property {string} Charge - Chargennummer
|
|
23
|
+
* @property {boolean} IstAktiv - Gibt an, ob der Lagerbestand aktiv ist
|
|
24
|
+
* @property {string} Seriennummer - Seriennummer
|
|
25
|
+
* @property {string} ChangedDate - ISO date string
|
|
26
|
+
* @property {string} WindowsUser - Windows-Benutzer
|
|
27
|
+
*/
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @typedef {Object} LagerbuchungDTO
|
|
31
|
+
* @property {string} KatalogArtikelGuid - GUID des Katalogartikels
|
|
32
|
+
* @property {string} FarbGuid - GUID der Farbe (veraltet, verwende FarbKuerzelGuid)
|
|
33
|
+
* @property {string} FarbKuerzelGuid - GUID des Farbkürzels
|
|
34
|
+
* @property {string} LagerbestandGuid - GUID des Lagerbestands
|
|
35
|
+
* @property {number} Betrag - Buchungsbetrag
|
|
36
|
+
* @property {boolean} IstReservierung - Gibt an, ob es sich um eine Reservierung handelt
|
|
37
|
+
* @property {string} Einheit - Einheit
|
|
38
|
+
* @property {string} Hinweis - Hinweistext
|
|
39
|
+
* @property {string} ArtosUser - Artos-Benutzer
|
|
40
|
+
* @property {string} WindowsUser - Windows-Benutzer
|
|
41
|
+
* @property {string} ChangedDate - ISO date string
|
|
42
|
+
* @property {number} BestandAlt - Alter Bestand
|
|
43
|
+
* @property {number} BestandNeu - Neuer Bestand
|
|
44
|
+
*/
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* @typedef {Object} LagerReservierungDTO
|
|
48
|
+
* @property {string} LagerReservierungGuid - Eindeutige GUID der Lagerreservierung
|
|
49
|
+
* @property {string | null} MaterialbedarfGuid - GUID des Materialbedarfs
|
|
50
|
+
* @property {string | null} LieferzusageGuid - GUID der Lieferzusage
|
|
51
|
+
* @property {string | null} GesamtLieferzusageGuid - GUID der Gesamtlieferzusage
|
|
52
|
+
* @property {string} Artikelnummer - Artikelnummer
|
|
53
|
+
* @property {string} FarbKuerzel - Farbkürzel
|
|
54
|
+
* @property {string} FarbCode - Farbcode
|
|
55
|
+
* @property {string} Oberflaeche - Oberfläche
|
|
56
|
+
* @property {string} Bezug - Bezug (z.B. Vorgangsnummer)
|
|
57
|
+
* @property {number} Menge - Reservierte Menge
|
|
58
|
+
* @property {string} Einheit - Einheit
|
|
59
|
+
* @property {string} ErstellDatum - ISO date string
|
|
60
|
+
* @property {string} WindowsUser - Windows-Benutzer
|
|
61
|
+
* @property {string} ArtosUser - Artos-Benutzer
|
|
62
|
+
* @property {string} ChangedDate - ISO date string
|
|
63
|
+
* @property {number} Version - Versionsnummer
|
|
64
|
+
*/
|
|
65
|
+
|
|
66
|
+
export {};
|
package/api/dtos/mail.js
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview JSDoc type definitions for Mail DTOs from Gandalan.IDAS.WebApi.Client
|
|
3
|
+
* Auto-generated from C# DTO files in Gandalan.IDAS.WebApi.Client/Mail/
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* @typedef {Object} MailJobInfo
|
|
8
|
+
* @property {string} JobGuid - UUID
|
|
9
|
+
* @property {Array<string>} ToAddresses
|
|
10
|
+
* @property {Array<string>} CCAddresses
|
|
11
|
+
* @property {string} ReplyToAddress
|
|
12
|
+
* @property {string} Subject
|
|
13
|
+
* @property {string} Content
|
|
14
|
+
* @property {string} BelegGuid - UUID
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* @typedef {Object} JobStatusEntryDTO
|
|
19
|
+
* @property {string} JobGuid - UUID
|
|
20
|
+
* @property {string} Timestamp - ISO date string
|
|
21
|
+
* @property {string} StatusText
|
|
22
|
+
* @property {string} RowKey - UUID (read-only)
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* @typedef {Object} JobStatusResponseDTO
|
|
27
|
+
* @property {string} JobGuid - UUID
|
|
28
|
+
*/
|
|
29
|
+
|
|
30
|
+
export {};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview JSDoc type definitions for Mandanten (Tenant) DTOs from Gandalan.IDAS.WebApi.Client
|
|
3
|
+
* Auto-generated from C# DTO files in Gandalan.IDAS.WebApi.Client/DTOs/Mandanten/
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* FreigabeLevel enum values
|
|
8
|
+
* @typedef {0|1|2|3|4} FreigabeLevel
|
|
9
|
+
* 0: Unbekannt
|
|
10
|
+
* 1: Gesperrt
|
|
11
|
+
* 2: Lesen
|
|
12
|
+
* 3: LesenSchreiben
|
|
13
|
+
* 4: LesenSchreibenLoeschen
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* FreigabeArt enum values
|
|
18
|
+
* @typedef {0|1|2} FreigabeArt
|
|
19
|
+
* 0: Unbekannt
|
|
20
|
+
* 1: ProgrammModul
|
|
21
|
+
* 2: Variante
|
|
22
|
+
*/
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* @typedef {Object} MandantDTO
|
|
26
|
+
* @property {string} Name - Name des Mandanten
|
|
27
|
+
* @property {string} Beschreibung - Beschreibung des Mandanten
|
|
28
|
+
* @property {string} ErstellDatum - ISO date string
|
|
29
|
+
* @property {string} AenderungsDatum - ISO date string
|
|
30
|
+
* @property {string} AdminEmail - E-Mail des Administrators
|
|
31
|
+
* @property {string} MandantGuid - Eindeutige GUID des Mandanten
|
|
32
|
+
* @property {number} SIC_CMS_Producer_Id - SIC CMS Producer ID
|
|
33
|
+
* @property {string} DongleNummer - Dongle-Nummer
|
|
34
|
+
* @property {string} ProduzentMandantGuid - GUID des Produzentenmandanten
|
|
35
|
+
* @property {string} KundenNummerBeimProduzenten - Kundennummer beim Produzenten
|
|
36
|
+
* @property {boolean} IstAktiv - Gibt an, ob der Mandant aktiv ist
|
|
37
|
+
* @property {boolean} IstHaendler - Gibt an, ob es sich um einen Händler handelt
|
|
38
|
+
* @property {boolean} IstProduzent - Gibt an, ob es sich um einen Produzenten handelt
|
|
39
|
+
* @property {boolean} ErbtAuswahlOhneSprosse - Erbt Auswahl ohne Sprosse
|
|
40
|
+
* @property {boolean} StammdatenbearbeitungGesperrt - Stammdatenbearbeitung gesperrt
|
|
41
|
+
* @property {string} NeherKundennummer - Neher Kundennummer
|
|
42
|
+
*/
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* @typedef {Object} MandantFreigabeDTO
|
|
46
|
+
* @property {string} Code - Freigabecode
|
|
47
|
+
* @property {string} GueltigAb - ISO date string
|
|
48
|
+
* @property {FreigabeLevel} Level - Freigabelevel
|
|
49
|
+
* @property {FreigabeArt} Art - Freigabeart
|
|
50
|
+
* @property {string} ZusatzDaten - Zusätzliche Daten
|
|
51
|
+
*/
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @typedef {Object} ProduzentAktivierenDTO
|
|
55
|
+
* @property {string} FreischaltCode - Freischaltcode
|
|
56
|
+
* @property {string} AdminEmail - E-Mail des Administrators
|
|
57
|
+
* @property {number} DongleNummer - Dongle-Nummer
|
|
58
|
+
*/
|
|
59
|
+
|
|
60
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview JSDoc type definitions for Nachrichten DTOs from Gandalan.IDAS.WebApi.Client
|
|
3
|
+
* Auto-generated from C# DTO files in Gandalan.IDAS.WebApi.Client/DTOs/Nachrichten/
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* @typedef {Object} NachrichtenDTO
|
|
8
|
+
* @property {string} NachrichtGuid - UUID
|
|
9
|
+
* @property {string} MandantGuid - UUID
|
|
10
|
+
* @property {string} BesitzerMandantGuid - UUID
|
|
11
|
+
* @property {string} Context
|
|
12
|
+
* @property {string} Nachricht
|
|
13
|
+
* @property {boolean} IstAktiv
|
|
14
|
+
* @property {string | null} GueltigAb - ISO date string
|
|
15
|
+
* @property {string | null} GueltigBis - ISO date string
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview JSDoc type definitions for ProduktGruppen DTOs from Gandalan.IDAS.WebApi.Client
|
|
3
|
+
* Auto-generated from C# DTO files in Gandalan.IDAS.WebApi.Client/DTOs/ProduktGruppen/
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/** @typedef {import('./ui.js').ProduktFamilieDTO} ProduktFamilieDTO */
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* @typedef {Object} ProduktGruppeDTO
|
|
10
|
+
* @property {string} ProduktGruppeGuid - UUID
|
|
11
|
+
* @property {string} KurzBezeichnung
|
|
12
|
+
* @property {string} Bezeichnung
|
|
13
|
+
* @property {Array<ProduktFamilieDTO>} ProduktSerien
|
|
14
|
+
* @property {number} Version
|
|
15
|
+
* @property {string} ChangedDate - ISO date string
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
export {};
|