@vario-software/types 2026.15.6 → 2026.16.1

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.
@@ -83,14 +83,14 @@ export interface Account {
83
83
  businessRelationType: BusinessRelationType;
84
84
 
85
85
  /**
86
- * Zeitzone (bzw. Zeitzonen-Offset) des Accounts
86
+ * first contact type for this account
87
87
  */
88
- accountZoneId: AccountZoneId;
88
+ initialContactTypeRef: ApiCreatableReference;
89
89
 
90
90
  /**
91
- * first contact type for this account
91
+ * Zeitzone (bzw. Zeitzonen-Offset) des Accounts
92
92
  */
93
- initialContactTypeRef: ApiCreatableReference;
93
+ accountZoneId: AccountZoneId;
94
94
 
95
95
  /**
96
96
  * Supplier of this account
@@ -143,14 +143,14 @@ export interface Account {
143
143
  payablesSum: number;
144
144
 
145
145
  /**
146
- * Kostenstelle
146
+ * Summe Forderungen
147
147
  */
148
- costCenter: string;
148
+ receivablesSum: number;
149
149
 
150
150
  /**
151
- * Summe Forderungen
151
+ * Kostenstelle
152
152
  */
153
- receivablesSum: number;
153
+ costCenter: string;
154
154
 
155
155
  /**
156
156
  * companyLegal for this account
@@ -315,6 +315,11 @@ export interface AccountAddress {
315
315
  */
316
316
  id: number;
317
317
 
318
+ /**
319
+ * EORI-Nummer
320
+ */
321
+ eoriNumber: string;
322
+
318
323
  /**
319
324
  * Longitude
320
325
  */
@@ -331,14 +336,14 @@ export interface AccountAddress {
331
336
  types: Array<ApiCreatableReference>;
332
337
 
333
338
  /**
334
- * Leitweg-ID
339
+ * GLN/ILN as location identifier for this address
335
340
  */
336
- buyerReference: string;
341
+ globalLocationNumber: string;
337
342
 
338
343
  /**
339
- * GLN/ILN as location identifier for this address
344
+ * Leitweg-ID
340
345
  */
341
- globalLocationNumber: string;
346
+ buyerReference: string;
342
347
 
343
348
  /**
344
349
  * abweichende Zahlungsart
@@ -494,14 +499,14 @@ export interface AccountBankdetail {
494
499
  bankCity: string;
495
500
 
496
501
  /**
497
- * Is default bank?
502
+ * origin type
498
503
  */
499
- defaultBank: boolean;
504
+ originType: AccountBankdetail$OriginType;
500
505
 
501
506
  /**
502
- * origin type
507
+ * Is default bank?
503
508
  */
504
- originType: AccountBankdetail$OriginType;
509
+ defaultBank: boolean;
505
510
 
506
511
  /**
507
512
  * IBAN
@@ -965,11 +970,6 @@ export interface Article {
965
970
  */
966
971
  baseCapacityUnit: UnitTypeReference;
967
972
 
968
- /**
969
- * Durchschnittl. EKP (Startwert)
970
- */
971
- initialAvgPurchasePrice: number;
972
-
973
973
  /**
974
974
  * is this product sellable without any quantity at the stock
975
975
  */
@@ -980,6 +980,11 @@ export interface Article {
980
980
  */
981
981
  serialNumberLabelingType: ArticleSerialNumberLabelingType;
982
982
 
983
+ /**
984
+ * Durchschnittl. EKP (Startwert)
985
+ */
986
+ initialAvgPurchasePrice: number;
987
+
983
988
  /**
984
989
  * gross Volume in cubic meters
985
990
  */
@@ -1076,14 +1081,14 @@ export interface Article {
1076
1081
  deliveryMethodRef: ApiObjectReference;
1077
1082
 
1078
1083
  /**
1079
- * Soll-Handelsspanne
1084
+ * Produktion
1080
1085
  */
1081
- targetTradingMargin: number;
1086
+ fabrication: boolean;
1082
1087
 
1083
1088
  /**
1084
- * Produktion
1089
+ * Soll-Handelsspanne
1085
1090
  */
1086
- fabrication: boolean;
1091
+ targetTradingMargin: number;
1087
1092
 
1088
1093
  /**
1089
1094
  * active
@@ -1116,14 +1121,14 @@ export interface Article {
1116
1121
  solvable: boolean;
1117
1122
 
1118
1123
  /**
1119
- * Verkaufseinheit
1124
+ * weight and size inc. packaging
1120
1125
  */
1121
- salesUnit: number;
1126
+ grossMetric: Article$Metric;
1122
1127
 
1123
1128
  /**
1124
- * weight and size inc. packaging
1129
+ * Verkaufseinheit
1125
1130
  */
1126
- grossMetric: Article$Metric;
1131
+ salesUnit: number;
1127
1132
 
1128
1133
  /**
1129
1134
  * name of this product
@@ -1136,14 +1141,14 @@ export interface Article {
1136
1141
  listingStateChangeTime: ScriptingDateTime;
1137
1142
 
1138
1143
  /**
1139
- * Arbeitseinheit in Minuten
1144
+ * Country code
1140
1145
  */
1141
- workUnitInMinutes: number;
1146
+ countryOfOriginRef: CountryReference;
1142
1147
 
1143
1148
  /**
1144
- * Country code
1149
+ * Arbeitseinheit in Minuten
1145
1150
  */
1146
- countryOfOriginRef: CountryReference;
1151
+ workUnitInMinutes: number;
1147
1152
 
1148
1153
  /**
1149
1154
  * Frei kommissionierbar
@@ -1215,11 +1220,6 @@ export interface Article {
1215
1220
  */
1216
1221
  permissibleForOrderProposal: boolean;
1217
1222
 
1218
- /**
1219
- * Artikel ist Gefahrgut
1220
- */
1221
- isDangerousGood: boolean;
1222
-
1223
1223
  /**
1224
1224
  * reference to Product
1225
1225
  */
@@ -1231,20 +1231,25 @@ export interface Article {
1231
1231
  shippingLabelPrinting: boolean;
1232
1232
 
1233
1233
  /**
1234
- * alternative name of this product
1234
+ * Artikel ist Gefahrgut
1235
1235
  */
1236
- alternativeName: string;
1236
+ isDangerousGood: boolean;
1237
1237
 
1238
1238
  /**
1239
- * Kontingentartikel
1239
+ * alternative name of this product
1240
1240
  */
1241
- contingentArticleRef: ApiObjectReference;
1241
+ alternativeName: string;
1242
1242
 
1243
1243
  /**
1244
1244
  * rabattierbarer Artikel?
1245
1245
  */
1246
1246
  discountable: boolean;
1247
1247
 
1248
+ /**
1249
+ * Kontingentartikel
1250
+ */
1251
+ contingentArticleRef: ApiObjectReference;
1252
+
1248
1253
  /**
1249
1254
  * base capacity
1250
1255
  */
@@ -1276,14 +1281,14 @@ export interface Article {
1276
1281
  custom: EavArticle;
1277
1282
 
1278
1283
  /**
1279
- * Bedarfsermittlung nur über Reservierungen
1284
+ * Art des Haltbarkeitsdatums
1280
1285
  */
1281
- needsAssessmentOnlyOnReservationBasis: boolean;
1286
+ expiryDateType: ArticleSerialExpiryDateType;
1282
1287
 
1283
1288
  /**
1284
- * Art des Haltbarkeitsdatums
1289
+ * Bedarfsermittlung nur über Reservierungen
1285
1290
  */
1286
- expiryDateType: ArticleSerialExpiryDateType;
1291
+ needsAssessmentOnlyOnReservationBasis: boolean;
1287
1292
 
1288
1293
  /**
1289
1294
  * Hersteller
@@ -1311,14 +1316,14 @@ export interface Article {
1311
1316
  listed: boolean;
1312
1317
 
1313
1318
  /**
1314
- * Nur manuelle Produktion
1319
+ * provisionsberechtiger Artikel?
1315
1320
  */
1316
- onlyManualFabrication: boolean;
1321
+ commissionable: boolean;
1317
1322
 
1318
1323
  /**
1319
- * provisionsberechtiger Artikel?
1324
+ * Nur manuelle Produktion
1320
1325
  */
1321
- commissionable: boolean;
1326
+ onlyManualFabrication: boolean;
1322
1327
 
1323
1328
  /**
1324
1329
  * Preisbasis
@@ -1691,14 +1696,14 @@ export interface ArticleSupplier {
1691
1696
  supplierReportingStock: number;
1692
1697
 
1693
1698
  /**
1694
- * Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
1699
+ * Lieferzeit in (Werk-)Tagen
1695
1700
  */
1696
- useSupplierArticleIdentifier: boolean;
1701
+ deliveryTime: number;
1697
1702
 
1698
1703
  /**
1699
- * Lieferzeit in (Werk-)Tagen
1704
+ * Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
1700
1705
  */
1701
- deliveryTime: number;
1706
+ useSupplierArticleIdentifier: boolean;
1702
1707
 
1703
1708
  /**
1704
1709
  * Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
@@ -2056,14 +2061,14 @@ export interface CrmActivity {
2056
2061
  info: MetaInfo;
2057
2062
 
2058
2063
  /**
2059
- * geplante Dauer
2064
+ * Aktivität intern abgerechnet?
2060
2065
  */
2061
- plannedDurationInSeconds: number;
2066
+ internalBilled: boolean;
2062
2067
 
2063
2068
  /**
2064
- * Aktivität intern abgerechnet?
2069
+ * geplante Dauer
2065
2070
  */
2066
- internalBilled: boolean;
2071
+ plannedDurationInSeconds: number;
2067
2072
 
2068
2073
  /**
2069
2074
  * Freie Felder der CRM-Aktivität
@@ -2333,14 +2338,14 @@ export interface CrmDeal {
2333
2338
  info: MetaInfo;
2334
2339
 
2335
2340
  /**
2336
- * Zu Erledigen von Benutzer (zugeordneter Benutzer)
2341
+ * Weitere Teilnehmer vom Auftraggeber
2337
2342
  */
2338
- assignedUserRef: ApiObjectReference;
2343
+ additionalParticipantsOfCustomer: Array<CrmParticipant>;
2339
2344
 
2340
2345
  /**
2341
- * Weitere Teilnehmer vom Auftraggeber
2346
+ * Zu Erledigen von Benutzer (zugeordneter Benutzer)
2342
2347
  */
2343
- additionalParticipantsOfCustomer: Array<CrmParticipant>;
2348
+ assignedUserRef: ApiObjectReference;
2344
2349
 
2345
2350
  /**
2346
2351
  * Chance (in Prozent)
@@ -2614,14 +2619,14 @@ export interface CrmProject {
2614
2619
  priorityRef: ApiObjectReference;
2615
2620
 
2616
2621
  /**
2617
- * Phase
2622
+ * Projektleiter vom Auftragnehmer
2618
2623
  */
2619
- phaseRef: ApiObjectReference;
2624
+ projectManagerOfContractor: CrmParticipant;
2620
2625
 
2621
2626
  /**
2622
- * Projektleiter vom Auftragnehmer
2627
+ * Phase
2623
2628
  */
2624
- projectManagerOfContractor: CrmParticipant;
2629
+ phaseRef: ApiObjectReference;
2625
2630
 
2626
2631
  /**
2627
2632
  * Aufgaben-Nummer
@@ -2674,14 +2679,14 @@ export interface CrmProject {
2674
2679
  info: MetaInfo;
2675
2680
 
2676
2681
  /**
2677
- * Projektleiter vom Auftraggeber
2682
+ * Weitere Teilnehmer vom Auftraggeber
2678
2683
  */
2679
- projectManagerOfCustomer: CrmParticipant;
2684
+ additionalParticipantsOfCustomer: Array<CrmParticipant>;
2680
2685
 
2681
2686
  /**
2682
- * Weitere Teilnehmer vom Auftraggeber
2687
+ * Projektleiter vom Auftraggeber
2683
2688
  */
2684
- additionalParticipantsOfCustomer: Array<CrmParticipant>;
2689
+ projectManagerOfCustomer: CrmParticipant;
2685
2690
 
2686
2691
  /**
2687
2692
  * Gesamt beauftragte Zeit in Sekunden
@@ -2813,6 +2818,11 @@ export interface CrmReminder {
2813
2818
 
2814
2819
  export interface CrmState {
2815
2820
 
2821
+ /**
2822
+ * Typ zu dem dieser Status gehört
2823
+ */
2824
+ crmSubType: CrmSubType;
2825
+
2816
2826
  /**
2817
2827
  * active
2818
2828
  */
@@ -2864,14 +2874,14 @@ export interface CrmState {
2864
2874
  readyToBill: boolean;
2865
2875
 
2866
2876
  /**
2867
- * Handelt es sich um einen Anfang-Status
2877
+ * Kommentar bei negativem Abschluß erforderlich
2868
2878
  */
2869
- startState: boolean;
2879
+ needsCommentOnNegativeFinish: boolean;
2870
2880
 
2871
2881
  /**
2872
- * Kommentar bei negativem Abschluß erforderlich
2882
+ * Handelt es sich um einen Anfang-Status
2873
2883
  */
2874
- needsCommentOnNegativeFinish: boolean;
2884
+ startState: boolean;
2875
2885
 
2876
2886
  /**
2877
2887
  * MetaInformations for this Object
@@ -2920,14 +2930,14 @@ export interface CrmSubType {
2920
2930
  export interface CrmTask {
2921
2931
 
2922
2932
  /**
2923
- * Liste von Erinnerungen
2933
+ * Angebot
2924
2934
  */
2925
- reminders: Array<CrmReminder>;
2935
+ customerOfferRef: DocumentRef;
2926
2936
 
2927
2937
  /**
2928
- * Angebot
2938
+ * Liste von Erinnerungen
2929
2939
  */
2930
- customerOfferRef: DocumentRef;
2940
+ reminders: Array<CrmReminder>;
2931
2941
 
2932
2942
  /**
2933
2943
  * Notizen
@@ -2939,6 +2949,11 @@ export interface CrmTask {
2939
2949
  */
2940
2950
  references: Array<CrmReference>;
2941
2951
 
2952
+ /**
2953
+ * Zu Erledigen von Teilnehmer
2954
+ */
2955
+ assignedParticipant: ApiObjectReference;
2956
+
2942
2957
  /**
2943
2958
  * Beobachter
2944
2959
  */
@@ -2964,6 +2979,11 @@ export interface CrmTask {
2964
2979
  */
2965
2980
  mainResponsibleUserRef: ApiObjectReference;
2966
2981
 
2982
+ /**
2983
+ * Verantwortlicher Teilnehmer
2984
+ */
2985
+ mainResponsibleParticipant: ApiObjectReference;
2986
+
2967
2987
  /**
2968
2988
  * Auftrag
2969
2989
  */
@@ -2992,7 +3012,7 @@ export interface CrmTask {
2992
3012
  /**
2993
3013
  * Weitere Teilnehmer vom Auftraggeber
2994
3014
  */
2995
- additionalParticipantsOfCustomer: Array<CrmParticipant>;
3015
+ additionalParticipantsOfCustomer: Array<CrmTaskParticipant>;
2996
3016
 
2997
3017
  /**
2998
3018
  * Zugewiesen von
@@ -3030,7 +3050,7 @@ export interface CrmTask {
3030
3050
  assignedGroupRef: ApiObjectReference;
3031
3051
 
3032
3052
  /**
3033
- * Fälligkeit
3053
+ * Zu erledigen
3034
3054
  */
3035
3055
  dueDateTime: ScriptingDateTime;
3036
3056
 
@@ -3054,6 +3074,11 @@ export interface CrmTask {
3054
3074
  */
3055
3075
  externalBilledTimes: number;
3056
3076
 
3077
+ /**
3078
+ * Kanban-Sortierreihenfolge
3079
+ */
3080
+ kanbanSortOrder: number;
3081
+
3057
3082
  /**
3058
3083
  * Steht mit diesen Aufgaben im Zusammenhang
3059
3084
  */
@@ -3084,6 +3109,11 @@ export interface CrmTask {
3084
3109
  */
3085
3110
  salesDocumentRefs: Array<DocumentRef>;
3086
3111
 
3112
+ /**
3113
+ * Zu erledigen ab
3114
+ */
3115
+ toBeDoneStartingFrom: ScriptingDateTime;
3116
+
3087
3117
  /**
3088
3118
  * Typ der Aufgabe
3089
3119
  */
@@ -3145,14 +3175,14 @@ export interface CrmTask {
3145
3175
  blocksTaskRefs: Array<ApiObjectReference>;
3146
3176
 
3147
3177
  /**
3148
- * Soll die Aufgabe veröffentlicht werden?
3178
+ * Weitere Teilnehmer vom Auftragnehmer
3149
3179
  */
3150
- publish: boolean;
3180
+ additionalParticipantsOfContractor: Array<CrmTaskParticipant>;
3151
3181
 
3152
3182
  /**
3153
- * Weitere Teilnehmer vom Auftragnehmer
3183
+ * Soll die Aufgabe veröffentlicht werden?
3154
3184
  */
3155
- additionalParticipantsOfContractor: Array<CrmParticipant>;
3185
+ publish: boolean;
3156
3186
 
3157
3187
  /**
3158
3188
  * Fortschritt in Prozent
@@ -3177,6 +3207,49 @@ export const enum CrmTaskBillingType {
3177
3207
  INTERNAL = 'INTERNAL'
3178
3208
  }
3179
3209
 
3210
+ export interface CrmTaskParticipant {
3211
+
3212
+ /**
3213
+ * Beobachter
3214
+ */
3215
+ observer: boolean;
3216
+
3217
+ /**
3218
+ * Beschreibung
3219
+ */
3220
+ description: string;
3221
+
3222
+ /**
3223
+ * Unique identifier of the Object
3224
+ */
3225
+ id: number;
3226
+
3227
+ /**
3228
+ * Kommentar zur Abstimmung
3229
+ */
3230
+ voteComment: string;
3231
+
3232
+ /**
3233
+ * Ansprechpartner
3234
+ */
3235
+ accountPersonRef: ApiObjectReference;
3236
+
3237
+ /**
3238
+ * Abstimmung
3239
+ */
3240
+ vote: boolean;
3241
+
3242
+ /**
3243
+ * Version Identifier for this Object (for PUT)
3244
+ */
3245
+ version: number;
3246
+
3247
+ /**
3248
+ * MetaInformations for this Object
3249
+ */
3250
+ info: MetaInfo;
3251
+ }
3252
+
3180
3253
  export const enum CrmType {
3181
3254
  TASK = 'TASK',
3182
3255
  DEAL = 'DEAL',
@@ -3251,14 +3324,14 @@ export interface Customer {
3251
3324
  maximalLoan: number;
3252
3325
 
3253
3326
  /**
3254
- * Maximal mögliche Lieferungen
3327
+ * collective billable
3255
3328
  */
3256
- maxDeliveries: number;
3329
+ collectiveBillable: boolean;
3257
3330
 
3258
3331
  /**
3259
- * collective billable
3332
+ * Maximal mögliche Lieferungen
3260
3333
  */
3261
- collectiveBillable: boolean;
3334
+ maxDeliveries: number;
3262
3335
 
3263
3336
  /**
3264
3337
  * Hat der Kunde eine Liefersperre?
@@ -3301,14 +3374,14 @@ export interface Customer {
3301
3374
  info: MetaInfo;
3302
3375
 
3303
3376
  /**
3304
- * tax able or tax free
3377
+ * reference to the delivery method
3305
3378
  */
3306
- taxable: boolean;
3379
+ deliveryMethodRef: ApiObjectReference;
3307
3380
 
3308
3381
  /**
3309
- * reference to the delivery method
3382
+ * tax able or tax free
3310
3383
  */
3311
- deliveryMethodRef: ApiObjectReference;
3384
+ taxable: boolean;
3312
3385
 
3313
3386
  /**
3314
3387
  * active true/false
@@ -3365,20 +3438,21 @@ export const enum DealNotificationEventConfig {
3365
3438
  DEAL_CHANGED = 'DEAL_CHANGED',
3366
3439
  DEAL_COMMENT_MENTIONED = 'DEAL_COMMENT_MENTIONED',
3367
3440
  DEAL_CLOSED_LOOSE = 'DEAL_CLOSED_LOOSE',
3368
- DEAL_CLOSED_WON = 'DEAL_CLOSED_WON'
3441
+ DEAL_CLOSED_WON = 'DEAL_CLOSED_WON',
3442
+ DEAL_REMINDER = 'DEAL_REMINDER'
3369
3443
  }
3370
3444
 
3371
3445
  export interface DeliveryMethod {
3372
3446
 
3373
3447
  /**
3374
- * E-Mail an Versender übergeben
3448
+ * Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
3375
3449
  */
3376
- forwardEmailToShipper: boolean;
3450
+ splitIntoNewDocument: boolean;
3377
3451
 
3378
3452
  /**
3379
- * Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
3453
+ * E-Mail an Versender übergeben
3380
3454
  */
3381
- splitIntoNewDocument: boolean;
3455
+ forwardEmailToShipper: boolean;
3382
3456
 
3383
3457
  /**
3384
3458
  * Min. Gewicht pro Paket
@@ -3509,14 +3583,14 @@ export interface DeliveryTerm {
3509
3583
  label: string;
3510
3584
 
3511
3585
  /**
3512
- * Sprache des Accounts
3586
+ * information, when the shipping charges should be calculated
3513
3587
  */
3514
- languageCode: string;
3588
+ calculateFreightChargesWithType: CalculateFreightChargesWithType;
3515
3589
 
3516
3590
  /**
3517
- * information, when the shipping charges should be calculated
3591
+ * Sprache des Accounts
3518
3592
  */
3519
- calculateFreightChargesWithType: CalculateFreightChargesWithType;
3593
+ languageCode: string;
3520
3594
 
3521
3595
  /**
3522
3596
  * calculate shipping charges per parcel
@@ -3655,14 +3729,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
3655
3729
  deliveryQuantityPackages: number;
3656
3730
 
3657
3731
  /**
3658
- * Bestellnummer aus Vorbeleg
3732
+ * Leitweg-ID
3659
3733
  */
3660
- referencedOrderNumber: string;
3734
+ buyerReference: string;
3661
3735
 
3662
3736
  /**
3663
- * Leitweg-ID
3737
+ * Bestellnummer aus Vorbeleg
3664
3738
  */
3665
- buyerReference: string;
3739
+ referencedOrderNumber: string;
3666
3740
 
3667
3741
  /**
3668
3742
  * Steuerpflichtig oder steuerfrei
@@ -3831,20 +3905,15 @@ true wenn die Quittung bezahlt ist
3831
3905
  */
3832
3906
  fabricationDetail: DocumentFabricationDetail;
3833
3907
 
3834
- /**
3835
- * Kontonummer der zugehörigen Organisationseinheit
3836
- */
3837
- accountNumber: string;
3838
-
3839
3908
  /**
3840
3909
  * Berechnungsmodus
3841
3910
  */
3842
3911
  calculationMode: CalculationMode;
3843
3912
 
3844
3913
  /**
3845
- * Wird vom Workflow verarbeitet?
3914
+ * Kontonummer der zugehörigen Organisationseinheit
3846
3915
  */
3847
- processedByWorkflow: boolean;
3916
+ accountNumber: string;
3848
3917
 
3849
3918
  /**
3850
3919
  * Referenz auf Zahlungsbedingung
@@ -3852,15 +3921,20 @@ true wenn die Quittung bezahlt ist
3852
3921
  paymentTermRef: PaymentTermRef;
3853
3922
 
3854
3923
  /**
3855
- * Preisanpassungen - Beleg Basiswährung
3924
+ * Wird vom Workflow verarbeitet?
3856
3925
  */
3857
- baseTotalDocumentPriceModifier: number;
3926
+ processedByWorkflow: boolean;
3858
3927
 
3859
3928
  /**
3860
3929
  * Telefon an Versender übergeben
3861
3930
  */
3862
3931
  forwardPhoneToShipper: boolean;
3863
3932
 
3933
+ /**
3934
+ * Preisanpassungen - Beleg Basiswährung
3935
+ */
3936
+ baseTotalDocumentPriceModifier: number;
3937
+
3864
3938
  /**
3865
3939
  * Liste der Belegtexte
3866
3940
  */
@@ -3881,26 +3955,26 @@ true wenn die Quittung bezahlt ist
3881
3955
  */
3882
3956
  defaultAddress: DocumentAddress;
3883
3957
 
3884
- /**
3885
- * Leistungsdatum
3886
- */
3887
- performanceDate: ScriptingDate;
3888
-
3889
3958
  /**
3890
3959
  * Verarbeitungsoption für Stapel
3891
3960
  */
3892
3961
  stackProcessingType: OrderStackProcessingType;
3893
3962
 
3894
3963
  /**
3895
- * Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
3964
+ * Leistungsdatum
3896
3965
  */
3897
- dropShippingInvoiceApproved: boolean;
3966
+ performanceDate: ScriptingDate;
3898
3967
 
3899
3968
  /**
3900
3969
  * EN16931-Profil für elektronische Rechnungen
3901
3970
  */
3902
3971
  en16931Profile: EN16931Profile;
3903
3972
 
3973
+ /**
3974
+ * Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
3975
+ */
3976
+ dropShippingInvoiceApproved: boolean;
3977
+
3904
3978
  /**
3905
3979
  * Ort der steuerlichen Leistungserbringung
3906
3980
  */
@@ -4067,20 +4141,25 @@ true wenn die Quittung bezahlt ist
4067
4141
  shippingCosts: Array<DocumentShippingCost>;
4068
4142
 
4069
4143
  /**
4070
- * Statusinstanz des Belegs
4144
+ * Umsatzsteuer-Identifikationsnummer
4071
4145
  */
4072
- documentState: DocumentTypeState;
4146
+ taxIdentificationNumber: string;
4073
4147
 
4074
4148
  /**
4075
- * Umsatzsteuer-Identifikationsnummer
4149
+ * Statusinstanz des Belegs
4076
4150
  */
4077
- taxIdentificationNumber: string;
4151
+ documentState: DocumentTypeState;
4078
4152
 
4079
4153
  /**
4080
4154
  * Rückgeld
4081
4155
  */
4082
4156
  posReceiptChangeAmount: number;
4083
4157
 
4158
+ /**
4159
+ * Referenz auf Lieferbedingung
4160
+ */
4161
+ deliveryTermRef: ApiObjectReference;
4162
+
4084
4163
  /**
4085
4164
  * Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
4086
4165
  true wenn die Quittung ausbalanciert ist
@@ -4088,11 +4167,6 @@ true wenn die Quittung ausbalanciert ist
4088
4167
  */
4089
4168
  posReceiptBalanced: boolean;
4090
4169
 
4091
- /**
4092
- * Referenz auf Lieferbedingung
4093
- */
4094
- deliveryTermRef: ApiObjectReference;
4095
-
4096
4170
  /**
4097
4171
  * Gesamtbruttogewicht
4098
4172
  */
@@ -4347,14 +4421,14 @@ export interface DocumentAddress {
4347
4421
  additionalAddressLine2: string;
4348
4422
 
4349
4423
  /**
4350
- * Street address number
4424
+ * Lieferbedingungen
4351
4425
  */
4352
- streetAddressNumber: string;
4426
+ deliveryTermRef: ApiObjectReference;
4353
4427
 
4354
4428
  /**
4355
- * Lieferbedingungen
4429
+ * Street address number
4356
4430
  */
4357
- deliveryTermRef: ApiObjectReference;
4431
+ streetAddressNumber: string;
4358
4432
 
4359
4433
  /**
4360
4434
  * address line 3
@@ -4372,14 +4446,14 @@ export interface DocumentAddress {
4372
4446
  paymentMethodRef: ApiObjectReference;
4373
4447
 
4374
4448
  /**
4375
- * salutation for this address
4449
+ * Referenz zum Account
4376
4450
  */
4377
- salutation: string;
4451
+ accountRef: ApiObjectReference;
4378
4452
 
4379
4453
  /**
4380
- * Referenz zum Account
4454
+ * salutation for this address
4381
4455
  */
4382
- accountRef: ApiObjectReference;
4456
+ salutation: string;
4383
4457
 
4384
4458
  /**
4385
4459
  * address line 2
@@ -4399,12 +4473,14 @@ export const enum DocumentCategory {
4399
4473
  CUSTOMER_INVOICE = 'CUSTOMER_INVOICE',
4400
4474
  CUSTOMER_PROFORMA_INVOICE = 'CUSTOMER_PROFORMA_INVOICE',
4401
4475
  CUSTOMER_DELIVERY_INVOICE = 'CUSTOMER_DELIVERY_INVOICE',
4402
- CUSTOMER_PARTIAL_INVOICE = 'CUSTOMER_PARTIAL_INVOICE',
4476
+ CUSTOMER_PROGRESS_INVOICE = 'CUSTOMER_PROGRESS_INVOICE',
4403
4477
  CUSTOMER_FINAL_INVOICE = 'CUSTOMER_FINAL_INVOICE',
4478
+ CUSTOMER_PARTIAL_INVOICE = 'CUSTOMER_PARTIAL_INVOICE',
4404
4479
  CUSTOMER_INVOICE_CANCELLATION = 'CUSTOMER_INVOICE_CANCELLATION',
4405
4480
  CUSTOMER_DELIVERY_INVOICE_CANCELLATION = 'CUSTOMER_DELIVERY_INVOICE_CANCELLATION',
4406
- CUSTOMER_PARTIAL_INVOICE_CANCELLATION = 'CUSTOMER_PARTIAL_INVOICE_CANCELLATION',
4481
+ CUSTOMER_PROGRESS_INVOICE_CANCELLATION = 'CUSTOMER_PROGRESS_INVOICE_CANCELLATION',
4407
4482
  CUSTOMER_FINAL_INVOICE_CANCELLATION = 'CUSTOMER_FINAL_INVOICE_CANCELLATION',
4483
+ CUSTOMER_PARTIAL_INVOICE_CANCELLATION = 'CUSTOMER_PARTIAL_INVOICE_CANCELLATION',
4408
4484
  CUSTOMER_DEPOSIT_INVOICE = 'CUSTOMER_DEPOSIT_INVOICE',
4409
4485
  CUSTOMER_DEPOSIT_INVOICE_CANCELLATION = 'CUSTOMER_DEPOSIT_INVOICE_CANCELLATION',
4410
4486
  CUSTOMER_CREDIT_NOTE_WITH_STOCK = 'CUSTOMER_CREDIT_NOTE_WITH_STOCK',
@@ -4418,6 +4494,10 @@ export const enum DocumentCategory {
4418
4494
  SUPPLIER_DELIVERY_INVOICE = 'SUPPLIER_DELIVERY_INVOICE',
4419
4495
  SUPPLIER_CREDIT_NOTE_WITH_STOCK = 'SUPPLIER_CREDIT_NOTE_WITH_STOCK',
4420
4496
  SUPPLIER_CREDIT_NOTE_WITHOUT_STOCK = 'SUPPLIER_CREDIT_NOTE_WITHOUT_STOCK',
4497
+ SUPPLIER_DEPOSIT_INVOICE = 'SUPPLIER_DEPOSIT_INVOICE',
4498
+ SUPPLIER_PROGRESS_INVOICE = 'SUPPLIER_PROGRESS_INVOICE',
4499
+ SUPPLIER_PARTIAL_INVOICE = 'SUPPLIER_PARTIAL_INVOICE',
4500
+ SUPPLIER_FINAL_INVOICE = 'SUPPLIER_FINAL_INVOICE',
4421
4501
  COMMISSION_SETTLEMENT = 'COMMISSION_SETTLEMENT',
4422
4502
  COMMISSION_SETTLEMENT_CANCELLATION = 'COMMISSION_SETTLEMENT_CANCELLATION',
4423
4503
  SUPPLIER_COMMISSION_CREDIT_NOTE = 'SUPPLIER_COMMISSION_CREDIT_NOTE',
@@ -4425,7 +4505,7 @@ export const enum DocumentCategory {
4425
4505
  CUSTOMER_SUBSCRIPTION_CONTRACT = 'CUSTOMER_SUBSCRIPTION_CONTRACT',
4426
4506
  POS_CASH_JOURNAL_OPENING = 'POS_CASH_JOURNAL_OPENING',
4427
4507
  POS_CASH_RECEIPT = 'POS_CASH_RECEIPT',
4428
- POS_CASH_RECEIPT_CANCELLATION = 'POS_CASH_RECEIPT_CANCELLATION',
4508
+ POS_RETURN_CASH_RECEIPT = 'POS_RETURN_CASH_RECEIPT',
4429
4509
  POS_CASH_JOURNAL_DEPOSIT = 'POS_CASH_JOURNAL_DEPOSIT',
4430
4510
  POS_CASH_JOURNAL_EXPENSE = 'POS_CASH_JOURNAL_EXPENSE',
4431
4511
  POS_CASH_JOURNAL_CLOSING = 'POS_CASH_JOURNAL_CLOSING',
@@ -4714,6 +4794,11 @@ export interface DocumentLine {
4714
4794
  */
4715
4795
  confirmedDeliveryDate: ScriptingDate;
4716
4796
 
4797
+ /**
4798
+ * Abschlagsposition?
4799
+ */
4800
+ progressInvoice: boolean;
4801
+
4717
4802
  /**
4718
4803
  * Versenderspezifische Informationen
4719
4804
  */
@@ -4805,14 +4890,14 @@ export interface DocumentLine {
4805
4890
  externalReferenceVds: string;
4806
4891
 
4807
4892
  /**
4808
- * Serientyp
4893
+ * Preis pro Einheit in Basiswährung
4809
4894
  */
4810
- serialType: ArticleSerialType;
4895
+ basePrice: number;
4811
4896
 
4812
4897
  /**
4813
- * Preis pro Einheit in Basiswährung
4898
+ * Serientyp
4814
4899
  */
4815
- basePrice: number;
4900
+ serialType: ArticleSerialType;
4816
4901
 
4817
4902
  /**
4818
4903
  * MetaInformations for this Object
@@ -4849,6 +4934,11 @@ export interface DocumentLine {
4849
4934
  */
4850
4935
  vat: number;
4851
4936
 
4937
+ /**
4938
+ * Referenz zur Hauptartikel-Position des Zubehörs
4939
+ */
4940
+ mainArticleLineRef: ApiObjectReference;
4941
+
4852
4942
  /**
4853
4943
  * Version Identifier for this Object (for PUT)
4854
4944
  */
@@ -4960,14 +5050,14 @@ export interface DocumentLine {
4960
5050
  revenueCalculation: RevenueCalculation;
4961
5051
 
4962
5052
  /**
4963
- * Einheitentyp
5053
+ * Positionssumme [Brutto, Netto], also Preis*Menge ./. Positionsrabatte
4964
5054
  */
4965
- unitType: UnitTypeReference;
5055
+ totalLinePrice: number;
4966
5056
 
4967
5057
  /**
4968
- * Positionssumme [Brutto, Netto], also Preis*Menge ./. Positionsrabatte
5058
+ * Einheitentyp
4969
5059
  */
4970
- totalLinePrice: number;
5060
+ unitType: UnitTypeReference;
4971
5061
 
4972
5062
  /**
4973
5063
  * Referenz zur Basiszeile
@@ -5049,11 +5139,6 @@ export interface DocumentLine {
5049
5139
  */
5050
5140
  articleId: number;
5051
5141
 
5052
- /**
5053
- * Abschlagsposition?
5054
- */
5055
- partialInvoice: boolean;
5056
-
5057
5142
  /**
5058
5143
  * Interne Preisänderungsinformationen
5059
5144
  */
@@ -5383,14 +5468,14 @@ export interface DocumentLineFabricationDetail {
5383
5468
  quantityFinished: number;
5384
5469
 
5385
5470
  /**
5386
- * Produzierte Seriennummern
5471
+ * Menge defekt
5387
5472
  */
5388
- serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
5473
+ quantityDefective: number;
5389
5474
 
5390
5475
  /**
5391
- * Menge defekt
5476
+ * Produzierte Seriennummern
5392
5477
  */
5393
- quantityDefective: number;
5478
+ serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
5394
5479
 
5395
5480
  /**
5396
5481
  * Freifeld
@@ -5478,16 +5563,36 @@ export interface DocumentLineFabricationDetailSerialNumber {
5478
5563
 
5479
5564
  export interface DocumentLinePosDetail {
5480
5565
 
5566
+ /**
5567
+ * Art der Zahlungsoperation (PAYMENT, CANCEL, REFUND)
5568
+ */
5569
+ paymentOperation: PosPaymentOperation;
5570
+
5481
5571
  /**
5482
5572
  * Zahlungsart
5483
5573
  */
5484
5574
  paymentMethodId: number;
5485
5575
 
5576
+ /**
5577
+ * Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
5578
+ */
5579
+ externalPaymentErrorMessage: string;
5580
+
5486
5581
  /**
5487
5582
  * Typ der Einlage/Ausgabe
5488
5583
  */
5489
5584
  depositExpenseTypeId: number;
5490
5585
 
5586
+ /**
5587
+ * Status der externen Zahlung
5588
+ */
5589
+ externalPaymentStatus: PosPaymentStatus;
5590
+
5591
+ /**
5592
+ * Externe Payment-ID für Verbindung zum Payment-Backend
5593
+ */
5594
+ externalPaymentId: string;
5595
+
5491
5596
  /**
5492
5597
  * Typ der Position
5493
5598
  */
@@ -5498,6 +5603,11 @@ export interface DocumentLinePosDetail {
5498
5603
  */
5499
5604
  id: number;
5500
5605
 
5606
+ /**
5607
+ * Externe Payment-ID der zu stornierenden Zahlung (nur bei CANCEL)
5608
+ */
5609
+ cancelledExternalPaymentId: string;
5610
+
5501
5611
  /**
5502
5612
  * Version Identifier for this Object (for PUT)
5503
5613
  */
@@ -5522,14 +5632,14 @@ export interface DocumentLineRef {
5522
5632
  quantity: number;
5523
5633
 
5524
5634
  /**
5525
- * Artikelnummer
5635
+ * Belegart
5526
5636
  */
5527
- articleNumber: string;
5637
+ documentType: string;
5528
5638
 
5529
5639
  /**
5530
- * Belegart
5640
+ * Artikelnummer
5531
5641
  */
5532
- documentType: string;
5642
+ articleNumber: string;
5533
5643
 
5534
5644
  /**
5535
5645
  * price per quantity [GROSS, NET]
@@ -5794,14 +5904,14 @@ export interface DocumentShippingCost {
5794
5904
  name: string;
5795
5905
 
5796
5906
  /**
5797
- * Steuern
5907
+ * Artikelbeschreibung
5798
5908
  */
5799
- taxes: Array<DocumentTax>;
5909
+ description: string;
5800
5910
 
5801
5911
  /**
5802
- * Artikelbeschreibung
5912
+ * Steuern
5803
5913
  */
5804
- description: string;
5914
+ taxes: Array<DocumentTax>;
5805
5915
 
5806
5916
  /**
5807
5917
  * Einkaufspreis
@@ -5904,14 +6014,14 @@ export interface DocumentText {
5904
6014
  transferableIntoSubsequentDocuments: boolean;
5905
6015
 
5906
6016
  /**
5907
- * Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
6017
+ * position relative to the product line OR Document. For usage within text-line, this position is irrelevant
5908
6018
  */
5909
- deleted: boolean;
6019
+ textPosition: TextPosition;
5910
6020
 
5911
6021
  /**
5912
- * position relative to the product line OR Document. For usage within text-line, this position is irrelevant
6022
+ * Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
5913
6023
  */
5914
- textPosition: TextPosition;
6024
+ deleted: boolean;
5915
6025
 
5916
6026
  /**
5917
6027
  * textBaustein Vorlage
@@ -6241,6 +6351,8 @@ export const enum EDocumentCategory {
6241
6351
  CUSTOMER_DELIVERY_INVOICE = 'CUSTOMER_DELIVERY_INVOICE',
6242
6352
  CUSTOMER_DEPOSIT_INVOICE = 'CUSTOMER_DEPOSIT_INVOICE',
6243
6353
  CUSTOMER_DEPOSIT_INVOICE_CANCELLATION = 'CUSTOMER_DEPOSIT_INVOICE_CANCELLATION',
6354
+ CUSTOMER_PROGRESS_INVOICE = 'CUSTOMER_PROGRESS_INVOICE',
6355
+ CUSTOMER_PROGRESS_INVOICE_CANCELLATION = 'CUSTOMER_PROGRESS_INVOICE_CANCELLATION',
6244
6356
  CUSTOMER_PARTIAL_INVOICE = 'CUSTOMER_PARTIAL_INVOICE',
6245
6357
  CUSTOMER_PARTIAL_INVOICE_CANCELLATION = 'CUSTOMER_PARTIAL_INVOICE_CANCELLATION',
6246
6358
  CUSTOMER_FINAL_INVOICE = 'CUSTOMER_FINAL_INVOICE',
@@ -6258,6 +6370,10 @@ export const enum EDocumentCategory {
6258
6370
  SUPPLIER_DELIVERY_INVOICE = 'SUPPLIER_DELIVERY_INVOICE',
6259
6371
  SUPPLIER_CREDIT_NOTE_WITH_STOCK = 'SUPPLIER_CREDIT_NOTE_WITH_STOCK',
6260
6372
  SUPPLIER_CREDIT_NOTE_WITHOUT_STOCK = 'SUPPLIER_CREDIT_NOTE_WITHOUT_STOCK',
6373
+ SUPPLIER_DEPOSIT_INVOICE = 'SUPPLIER_DEPOSIT_INVOICE',
6374
+ SUPPLIER_PROGRESS_INVOICE = 'SUPPLIER_PROGRESS_INVOICE',
6375
+ SUPPLIER_PARTIAL_INVOICE = 'SUPPLIER_PARTIAL_INVOICE',
6376
+ SUPPLIER_FINAL_INVOICE = 'SUPPLIER_FINAL_INVOICE',
6261
6377
  COMMISSION_SETTLEMENT = 'COMMISSION_SETTLEMENT',
6262
6378
  COMMISSION_SETTLEMENT_CANCELLATION = 'COMMISSION_SETTLEMENT_CANCELLATION',
6263
6379
  SUPPLIER_COMMISSION_CREDIT_NOTE = 'SUPPLIER_COMMISSION_CREDIT_NOTE',
@@ -6265,7 +6381,7 @@ export const enum EDocumentCategory {
6265
6381
  CUSTOMER_SUBSCRIPTION_CONTRACT = 'CUSTOMER_SUBSCRIPTION_CONTRACT',
6266
6382
  POS_CASH_JOURNAL_OPENING = 'POS_CASH_JOURNAL_OPENING',
6267
6383
  POS_CASH_RECEIPT = 'POS_CASH_RECEIPT',
6268
- POS_CASH_RECEIPT_CANCELLATION = 'POS_CASH_RECEIPT_CANCELLATION',
6384
+ POS_RETURN_CASH_RECEIPT = 'POS_RETURN_CASH_RECEIPT',
6269
6385
  POS_CASH_JOURNAL_DEPOSIT = 'POS_CASH_JOURNAL_DEPOSIT',
6270
6386
  POS_CASH_JOURNAL_EXPENSE = 'POS_CASH_JOURNAL_EXPENSE',
6271
6387
  POS_CASH_JOURNAL_CLOSING = 'POS_CASH_JOURNAL_CLOSING',
@@ -6301,6 +6417,8 @@ export const enum EDocumentTransition {
6301
6417
  ORDER_RESET_FROM_PICKING = 'ORDER_RESET_FROM_PICKING',
6302
6418
  /**Beleg auflösen **/
6303
6419
  DISSOLVE = 'DISSOLVE',
6420
+ /**Quittung abbrechen **/
6421
+ CANCEL_POS_RECEIPT = 'CANCEL_POS_RECEIPT',
6304
6422
  /**Produktion starten **/
6305
6423
  START_FABRICATION = 'START_FABRICATION',
6306
6424
  /**Produktion stornieren **/
@@ -6499,14 +6617,14 @@ export interface FabricationRevertRequest {
6499
6617
  quantity: number;
6500
6618
 
6501
6619
  /**
6502
- * ID der zu stornierenden Position
6620
+ * Material automatisch stornieren
6503
6621
  */
6504
- documentLineId: number;
6622
+ autoRevertComponents: boolean;
6505
6623
 
6506
6624
  /**
6507
- * Material automatisch stornieren
6625
+ * ID der zu stornierenden Position
6508
6626
  */
6509
- autoRevertComponents: boolean;
6627
+ documentLineId: number;
6510
6628
 
6511
6629
  /**
6512
6630
  * Zu stornierende Seriennummern
@@ -6736,14 +6854,14 @@ export interface PaymentMethod {
6736
6854
  daysToAddForFollowup: number;
6737
6855
 
6738
6856
  /**
6739
- * external Payment Id
6857
+ * Die Business Transaction
6740
6858
  */
6741
- externalPaymentId: string;
6859
+ businessTransaction: ApiObjectReference;
6742
6860
 
6743
6861
  /**
6744
- * Die Business Transaction
6862
+ * external Payment Id
6745
6863
  */
6746
- businessTransaction: ApiObjectReference;
6864
+ externalPaymentId: string;
6747
6865
 
6748
6866
  /**
6749
6867
  * Unique identifier of the Object
@@ -6769,14 +6887,14 @@ export interface PaymentTerm {
6769
6887
  paymentDiscount2: number;
6770
6888
 
6771
6889
  /**
6772
- * Percent for Discount 1
6890
+ * printDescription
6773
6891
  */
6774
- paymentDiscount1: number;
6892
+ printDescription: string;
6775
6893
 
6776
6894
  /**
6777
- * printDescription
6895
+ * Percent for Discount 1
6778
6896
  */
6779
- printDescription: string;
6897
+ paymentDiscount1: number;
6780
6898
 
6781
6899
  /**
6782
6900
  * for deposit: remaining term
@@ -6907,14 +7025,14 @@ export interface PickTrolley {
6907
7025
  pickTrolleyBoxes: Array<PickTrolleyBox>;
6908
7026
 
6909
7027
  /**
6910
- * Bearbeiter der Pickliste
7028
+ * Lagerplatz, dem dieser Pickwagen zugeordnet ist
6911
7029
  */
6912
- processedByUserRef: ApiObjectReference;
7030
+ storageBinRef: StorageBinRef;
6913
7031
 
6914
7032
  /**
6915
- * Lagerplatz, dem dieser Pickwagen zugeordnet ist
7033
+ * Bearbeiter der Pickliste
6916
7034
  */
6917
- storageBinRef: StorageBinRef;
7035
+ processedByUserRef: ApiObjectReference;
6918
7036
 
6919
7037
  /**
6920
7038
  * Beschreibung des Wagens
@@ -7170,14 +7288,14 @@ export interface PicklistLine {
7170
7288
  articleNumber: string;
7171
7289
 
7172
7290
  /**
7173
- * Lagernummer
7291
+ * Art der Position
7174
7292
  */
7175
- storageNumber: string;
7293
+ lineType: PicklistLineType;
7176
7294
 
7177
7295
  /**
7178
- * Art der Position
7296
+ * Lagernummer
7179
7297
  */
7180
- lineType: PicklistLineType;
7298
+ storageNumber: string;
7181
7299
 
7182
7300
  /**
7183
7301
  * ID der Ziel-Dokumentposition
@@ -7316,14 +7434,14 @@ export interface PicklistLineComponent {
7316
7434
  targetDocumentLineComponentId: number;
7317
7435
 
7318
7436
  /**
7319
- * abweichende Artikelbezeichnung
7437
+ * Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
7320
7438
  */
7321
- articleAlternativeName: string;
7439
+ quantityPerAssemblyGroup: number;
7322
7440
 
7323
7441
  /**
7324
- * Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
7442
+ * abweichende Artikelbezeichnung
7325
7443
  */
7326
- quantityPerAssemblyGroup: number;
7444
+ articleAlternativeName: string;
7327
7445
 
7328
7446
  /**
7329
7447
  * Verpackte Menge der Position
@@ -7499,11 +7617,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
7499
7617
  */
7500
7618
  alternativeSelectionInVql: string;
7501
7619
 
7502
- /**
7503
- * Selektion über den Bereich vom Lieferdatum
7504
- */
7505
- deliveryDateRange: PicklistTemplate$DateRange;
7506
-
7507
7620
  /**
7508
7621
  * Nur vollständig lieferbare Positionen
7509
7622
  */
@@ -7514,6 +7627,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
7514
7627
  */
7515
7628
  maxOrderCount: number;
7516
7629
 
7630
+ /**
7631
+ * Selektion über den Bereich vom Lieferdatum
7632
+ */
7633
+ deliveryDateRange: PicklistTemplate$DateRange;
7634
+
7517
7635
  /**
7518
7636
  * Selektion über den Bereich vom Belegdatum
7519
7637
  */
@@ -7651,14 +7769,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
7651
7769
  alwaysShowDeliveryMethod: boolean;
7652
7770
 
7653
7771
  /**
7654
- * Überschreitung vom maximalen Paketgewicht blockieren?
7772
+ * Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
7655
7773
  */
7656
- blockIfMaximumPackageWeightIsExceeded: boolean;
7774
+ autoPrintDeliveryDocument: boolean;
7657
7775
 
7658
7776
  /**
7659
- * Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
7777
+ * Überschreitung vom maximalen Paketgewicht blockieren?
7660
7778
  */
7661
- autoPrintDeliveryDocument: boolean;
7779
+ blockIfMaximumPackageWeightIsExceeded: boolean;
7662
7780
 
7663
7781
  /**
7664
7782
  * Versand-Dialog beim Abschluss zeigen
@@ -7724,6 +7842,20 @@ export const enum PosLineType {
7724
7842
  CASH_EXPENSE = 'CASH_EXPENSE'
7725
7843
  }
7726
7844
 
7845
+ export const enum PosPaymentOperation {
7846
+ PAYMENT = 'PAYMENT',
7847
+ CANCEL = 'CANCEL',
7848
+ REFUND = 'REFUND'
7849
+ }
7850
+
7851
+ export const enum PosPaymentStatus {
7852
+ PENDING = 'PENDING',
7853
+ PROCESSING = 'PROCESSING',
7854
+ SUCCESSFUL = 'SUCCESSFUL',
7855
+ CANCELLED = 'CANCELLED',
7856
+ REJECTED = 'REJECTED'
7857
+ }
7858
+
7727
7859
  export const enum PossibleUsingType {
7728
7860
  ACCOUNT = 'ACCOUNT',
7729
7861
  CRM_DEAL = 'CRM_DEAL',
@@ -7877,14 +8009,14 @@ export interface Product {
7877
8009
  bundle: boolean;
7878
8010
 
7879
8011
  /**
7880
- * Serientyp
8012
+ * Variantenwerte
7881
8013
  */
7882
- serialType: ArticleSerialType;
8014
+ variantValues: Array<VariantValueReference>;
7883
8015
 
7884
8016
  /**
7885
- * Variantenwerte
8017
+ * Serientyp
7886
8018
  */
7887
- variantValues: Array<VariantValueReference>;
8019
+ serialType: ArticleSerialType;
7888
8020
 
7889
8021
  /**
7890
8022
  * MetaInformations for this Object
@@ -7912,6 +8044,11 @@ export interface ProductArticleRef {
7912
8044
 
7913
8045
  export interface ProductDiscount {
7914
8046
 
8047
+ /**
8048
+ * Hauptartikel, für welchen dieser Rabatt gültig ist
8049
+ */
8050
+ accessoryMainArticleRef: ApiObjectReference;
8051
+
7915
8052
  /**
7916
8053
  * Kundengruppe
7917
8054
  */
@@ -7938,14 +8075,14 @@ export interface ProductDiscount {
7938
8075
  validFrom: ScriptingDate;
7939
8076
 
7940
8077
  /**
7941
- * Bestimmt die Art des Rabatts
8078
+ * Warengruppe
7942
8079
  */
7943
- modifierType: PriceModifierType;
8080
+ productGroupRef: ApiObjectReference;
7944
8081
 
7945
8082
  /**
7946
- * Warengruppe
8083
+ * Bestimmt die Art des Rabatts
7947
8084
  */
7948
- productGroupRef: ApiObjectReference;
8085
+ modifierType: PriceModifierType;
7949
8086
 
7950
8087
  /**
7951
8088
  * Version Identifier for this Object (for PUT)
@@ -7993,14 +8130,14 @@ export interface ProductDiscount {
7993
8130
  validUntil: ScriptingDate;
7994
8131
 
7995
8132
  /**
7996
- * Name des Rabatts
8133
+ * Account, für den der Rabatt gültig ist
7997
8134
  */
7998
- modifierName: string;
8135
+ accountRef: ApiObjectReference;
7999
8136
 
8000
8137
  /**
8001
- * Account, für den der Rabatt gültig ist
8138
+ * Name des Rabatts
8002
8139
  */
8003
- accountRef: ApiObjectReference;
8140
+ modifierName: string;
8004
8141
 
8005
8142
  /**
8006
8143
  * Unique identifier of the Object
@@ -8116,6 +8253,11 @@ export interface ProductMainGroup {
8116
8253
 
8117
8254
  export interface ProductPrice {
8118
8255
 
8256
+ /**
8257
+ * Hauptartikel, für welches dieser Preis gültig ist
8258
+ */
8259
+ accessoryMainArticleRef: ApiObjectReference;
8260
+
8119
8261
  /**
8120
8262
  * Kundengruppe
8121
8263
  */
@@ -8137,14 +8279,14 @@ export interface ProductPrice {
8137
8279
  fromQuantity: number;
8138
8280
 
8139
8281
  /**
8140
- * Netto-Preis
8282
+ * Produkt, für welches dieser Preis gültig ist
8141
8283
  */
8142
- netPrice: number;
8284
+ articleRef: ApiObjectReference;
8143
8285
 
8144
8286
  /**
8145
- * Produkt, für welches dieser Preis gültig ist
8287
+ * Netto-Preis
8146
8288
  */
8147
- articleRef: ApiObjectReference;
8289
+ netPrice: number;
8148
8290
 
8149
8291
  /**
8150
8292
  * Brutto-Preis
@@ -8250,15 +8392,20 @@ export interface Referenceable {
8250
8392
 
8251
8393
  export interface RequestDocument {
8252
8394
 
8395
+ /**
8396
+ * ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
8397
+ */
8398
+ incomingGoodsStorageBinId: number;
8399
+
8253
8400
  /**
8254
8401
  * Belegdatum
8255
8402
  */
8256
8403
  documentDate: ScriptingDate;
8257
8404
 
8258
8405
  /**
8259
- * ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
8406
+ * ID der Kassenschublade (bei POS)
8260
8407
  */
8261
- incomingGoodsStorageBinId: number;
8408
+ cashDrawerId: number;
8262
8409
 
8263
8410
  /**
8264
8411
  * Der Anzahlungsbetrag
@@ -8270,11 +8417,6 @@ export interface RequestDocument {
8270
8417
  */
8271
8418
  performanceDate: ScriptingDate;
8272
8419
 
8273
- /**
8274
- * ID der Kassenschublade (bei POS)
8275
- */
8276
- cashDrawerId: number;
8277
-
8278
8420
  /**
8279
8421
  * Für interne Zwecke: Liefermethode für das Document
8280
8422
  */
@@ -8320,6 +8462,11 @@ export interface RequestDocument {
8320
8462
  */
8321
8463
  deliveryTermId: number;
8322
8464
 
8465
+ /**
8466
+ * IDs der zu übernehmenden Abschlagsrechnungen (für Teilrechnungen)
8467
+ */
8468
+ progressInvoiceIds: Array<number>;
8469
+
8323
8470
  /**
8324
8471
  * Für interne Zwecke: Währung für das Document
8325
8472
  */
@@ -8331,14 +8478,14 @@ export interface RequestDocument {
8331
8478
  lines: Array<RequestDocumentLine>;
8332
8479
 
8333
8480
  /**
8334
- * Die Vertragsdetails
8481
+ * ID der Kasse (bei POS)
8335
8482
  */
8336
- contractDetail: DocumentContractDetail;
8483
+ posRegisterId: number;
8337
8484
 
8338
8485
  /**
8339
- * ID der Kasse (bei POS)
8486
+ * Die Vertragsdetails
8340
8487
  */
8341
- posRegisterId: number;
8488
+ contractDetail: DocumentContractDetail;
8342
8489
 
8343
8490
  /**
8344
8491
  * Für interne Zwecke: Zahlungsbedingung für das Document
@@ -8404,6 +8551,11 @@ export interface RequestDocument {
8404
8551
  * Die Rabatte des Beleges
8405
8552
  */
8406
8553
  priceModifiers: Array<RequestDocumentPriceModifier>;
8554
+
8555
+ /**
8556
+ * IDs der zu übernehmenden Anzahlungsrechnungen (für Teilrechnungen)
8557
+ */
8558
+ depositInvoiceIds: Array<number>;
8407
8559
  }
8408
8560
 
8409
8561
  export interface RequestDocumentLine {
@@ -8473,6 +8625,11 @@ export interface RequestDocumentLine {
8473
8625
  */
8474
8626
  dropShippingPolicy: DropShippingPolicy;
8475
8627
 
8628
+ /**
8629
+ * Positionsnummer der Artikel
8630
+ */
8631
+ positionOfArticleLine: number;
8632
+
8476
8633
  /**
8477
8634
  * (optional) Lager-ID
8478
8635
  */
@@ -8488,6 +8645,11 @@ export interface RequestDocumentLine {
8488
8645
  */
8489
8646
  supplierAccountId: number;
8490
8647
 
8648
+ /**
8649
+ * Position der Hauptartikel-Position einer Zubehör-Position
8650
+ */
8651
+ mainArticleLinePosition: number;
8652
+
8491
8653
  /**
8492
8654
  * Menge, die in dieser Transaktion verarbeitet werden soll
8493
8655
  */
@@ -8544,14 +8706,14 @@ export interface RequestDocumentLine {
8544
8706
  name: string;
8545
8707
 
8546
8708
  /**
8547
- * Für interne Zwecke: Externe Artikelnummer
8709
+ * ID der Quell-Belegposition
8548
8710
  */
8549
- externalArticleNumber: string;
8711
+ sourceLineId: number;
8550
8712
 
8551
8713
  /**
8552
- * ID der Quell-Belegposition
8714
+ * Für interne Zwecke: Externe Artikelnummer
8553
8715
  */
8554
- sourceLineId: number;
8716
+ externalArticleNumber: string;
8555
8717
 
8556
8718
  /**
8557
8719
  * Buchungen zu dieser Belegposition
@@ -9048,14 +9210,14 @@ export interface SequencerConfiguration {
9048
9210
  key: string;
9049
9211
 
9050
9212
  /**
9051
- * Contains details about the sequencer configuration
9213
+ * Alternative configuration used to generate sequences instead of this configuration
9052
9214
  */
9053
- configurationDetail: SequencerConfigurationDetail;
9215
+ alternativeConfiguration: ApiObjectReference;
9054
9216
 
9055
9217
  /**
9056
- * Alternative configuration used to generate sequences instead of this configuration
9218
+ * Contains details about the sequencer configuration
9057
9219
  */
9058
- alternativeConfiguration: ApiObjectReference;
9220
+ configurationDetail: SequencerConfigurationDetail;
9059
9221
 
9060
9222
  /**
9061
9223
  * MetaInformations for this Object
@@ -9306,14 +9468,14 @@ export interface ShelfDocumentType {
9306
9468
  active: boolean;
9307
9469
 
9308
9470
  /**
9309
- * access level or reading
9471
+ * label of type
9310
9472
  */
9311
- accessLevelRead: number;
9473
+ label: string;
9312
9474
 
9313
9475
  /**
9314
- * label of type
9476
+ * access level or reading
9315
9477
  */
9316
- label: string;
9478
+ accessLevelRead: number;
9317
9479
 
9318
9480
  /**
9319
9481
  * storage rule for revisions
@@ -9359,14 +9521,14 @@ export interface ShelfFile {
9359
9521
  subFiles: Array<SubFileInfo>;
9360
9522
 
9361
9523
  /**
9362
- * revision number of this file
9524
+ * fileSize
9363
9525
  */
9364
- revisionNumber: number;
9526
+ fileSize: number;
9365
9527
 
9366
9528
  /**
9367
- * fileSize
9529
+ * revision number of this file
9368
9530
  */
9369
- fileSize: number;
9531
+ revisionNumber: number;
9370
9532
 
9371
9533
  /**
9372
9534
  * file-extension of this entry
@@ -9445,14 +9607,14 @@ export interface ShelfShare {
9445
9607
  publishState: ShelfSharePublishState;
9446
9608
 
9447
9609
  /**
9448
- * wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
9610
+ * Freifelder
9449
9611
  */
9450
- publicUrlDurationInMinutes: number;
9612
+ custom: EavShelfshare;
9451
9613
 
9452
9614
  /**
9453
- * Freifelder
9615
+ * wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
9454
9616
  */
9455
- custom: EavShelfshare;
9617
+ publicUrlDurationInMinutes: number;
9456
9618
 
9457
9619
  /**
9458
9620
  * der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
@@ -9672,6 +9834,11 @@ export interface Supplier {
9672
9834
  */
9673
9835
  info: MetaInfo;
9674
9836
 
9837
+ /**
9838
+ * reference to the delivery method
9839
+ */
9840
+ deliveryMethodRef: ApiObjectReference;
9841
+
9675
9842
  /**
9676
9843
  * Lieferantengruppe
9677
9844
  */
@@ -9682,11 +9849,6 @@ export interface Supplier {
9682
9849
  */
9683
9850
  taxable: boolean;
9684
9851
 
9685
- /**
9686
- * reference to the delivery method
9687
- */
9688
- deliveryMethodRef: ApiObjectReference;
9689
-
9690
9852
  /**
9691
9853
  * Mahnen?
9692
9854
  */
@@ -9766,14 +9928,14 @@ export interface TagDto {
9766
9928
  editColor: string;
9767
9929
 
9768
9930
  /**
9769
- * Farbe in Such-GUI
9931
+ * Farbe für die Anzeige des Tags
9770
9932
  */
9771
- searchColor: string;
9933
+ color: string;
9772
9934
 
9773
9935
  /**
9774
- * Farbe für die Anzeige des Tags
9936
+ * Farbe in Such-GUI
9775
9937
  */
9776
- color: string;
9938
+ searchColor: string;
9777
9939
 
9778
9940
  /**
9779
9941
  * Beschriftung des Tags
@@ -10067,14 +10229,14 @@ export interface User {
10067
10229
  roles: Array<ApiObjectReference>;
10068
10230
 
10069
10231
  /**
10070
- * Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
10232
+ * Gruppen
10071
10233
  */
10072
- referencedCustomerUserId: number;
10234
+ groups: Array<ApiObjectReference>;
10073
10235
 
10074
10236
  /**
10075
- * Gruppen
10237
+ * Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
10076
10238
  */
10077
- groups: Array<ApiObjectReference>;
10239
+ referencedCustomerUserId: number;
10078
10240
 
10079
10241
  /**
10080
10242
  * Is the user active?