@erp-galoper/types 1.0.1674 → 1.0.1676
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/openapi.ts +234 -147
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -41619,8 +41619,37 @@ export interface components {
|
|
|
41619
41619
|
unitPrice: number;
|
|
41620
41620
|
itemPackage: components["schemas"]["ItemPackageSummarySchema"] | null;
|
|
41621
41621
|
purchaseInvoice: components["schemas"]["PurchaseInvoiceForReturnOrderReturnSchema"];
|
|
41622
|
-
/**
|
|
41622
|
+
/**
|
|
41623
|
+
* Discount
|
|
41624
|
+
* @description Combined percentage of both line and header discounts
|
|
41625
|
+
* @default 0
|
|
41626
|
+
*/
|
|
41623
41627
|
discount: number;
|
|
41628
|
+
/**
|
|
41629
|
+
* Lineitemdiscount
|
|
41630
|
+
* @description Line item discount percentage
|
|
41631
|
+
*/
|
|
41632
|
+
lineItemDiscount?: number | null;
|
|
41633
|
+
/**
|
|
41634
|
+
* Overalldiscount
|
|
41635
|
+
* @description Overall discount percentage from header
|
|
41636
|
+
*/
|
|
41637
|
+
overallDiscount?: number | null;
|
|
41638
|
+
/**
|
|
41639
|
+
* Netsubtotal
|
|
41640
|
+
* @description Subtotal after line discount
|
|
41641
|
+
*/
|
|
41642
|
+
netSubtotal?: number | null;
|
|
41643
|
+
/**
|
|
41644
|
+
* Usdnetsubtotal
|
|
41645
|
+
* @description Subtotal after line discount in secondary currency
|
|
41646
|
+
*/
|
|
41647
|
+
usdNetSubtotal?: number | null;
|
|
41648
|
+
/**
|
|
41649
|
+
* Companynetsubtotal
|
|
41650
|
+
* @description Subtotal after line discount in company currency
|
|
41651
|
+
*/
|
|
41652
|
+
companyNetSubtotal?: number | null;
|
|
41624
41653
|
/** Subtotal */
|
|
41625
41654
|
subtotal: number;
|
|
41626
41655
|
/**
|
|
@@ -41633,7 +41662,10 @@ export interface components {
|
|
|
41633
41662
|
* @default 0
|
|
41634
41663
|
*/
|
|
41635
41664
|
companySubtotal: number;
|
|
41636
|
-
/**
|
|
41665
|
+
/**
|
|
41666
|
+
* Discountedtotal
|
|
41667
|
+
* @description Subtotal after line and header discounts
|
|
41668
|
+
*/
|
|
41637
41669
|
discountedTotal: string;
|
|
41638
41670
|
/**
|
|
41639
41671
|
* Usddiscountedtotal
|
|
@@ -41998,21 +42030,6 @@ export interface components {
|
|
|
41998
42030
|
* @default []
|
|
41999
42031
|
*/
|
|
42000
42032
|
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
42001
|
-
/**
|
|
42002
|
-
* Linediscountamount
|
|
42003
|
-
* @description Total line item discount amount
|
|
42004
|
-
*/
|
|
42005
|
-
lineDiscountAmount?: string | null;
|
|
42006
|
-
/**
|
|
42007
|
-
* Usdlinediscountamount
|
|
42008
|
-
* @description Total line item discount amount in secondary currency
|
|
42009
|
-
*/
|
|
42010
|
-
usdLineDiscountAmount?: string | null;
|
|
42011
|
-
/**
|
|
42012
|
-
* Companylinediscountamount
|
|
42013
|
-
* @description Total line item discount amount in company currency
|
|
42014
|
-
*/
|
|
42015
|
-
companyLineDiscountAmount?: string | null;
|
|
42016
42033
|
/** @description visible when project module is active */
|
|
42017
42034
|
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
42018
42035
|
};
|
|
@@ -42026,10 +42043,37 @@ export interface components {
|
|
|
42026
42043
|
quantity: number;
|
|
42027
42044
|
/**
|
|
42028
42045
|
* Discount
|
|
42029
|
-
* @description
|
|
42046
|
+
* @description Combined percentage of both line and header discounts
|
|
42030
42047
|
* @default 0
|
|
42031
42048
|
*/
|
|
42032
42049
|
discount: number;
|
|
42050
|
+
/**
|
|
42051
|
+
* Lineitemdiscount
|
|
42052
|
+
* @description Line item discount percentage
|
|
42053
|
+
* @default 0
|
|
42054
|
+
*/
|
|
42055
|
+
lineItemDiscount: number;
|
|
42056
|
+
/**
|
|
42057
|
+
* Overalldiscount
|
|
42058
|
+
* @description Overall discount percentage from header
|
|
42059
|
+
* @default 0
|
|
42060
|
+
*/
|
|
42061
|
+
overallDiscount: number;
|
|
42062
|
+
/**
|
|
42063
|
+
* Netsubtotal
|
|
42064
|
+
* @description Subtotal after line discount
|
|
42065
|
+
*/
|
|
42066
|
+
netSubtotal: number;
|
|
42067
|
+
/**
|
|
42068
|
+
* Usdnetsubtotal
|
|
42069
|
+
* @description Subtotal after line discount in secondary currency
|
|
42070
|
+
*/
|
|
42071
|
+
usdNetSubtotal: number;
|
|
42072
|
+
/**
|
|
42073
|
+
* Companynetsubtotal
|
|
42074
|
+
* @description Subtotal after line discount in company currency
|
|
42075
|
+
*/
|
|
42076
|
+
companyNetSubtotal: number;
|
|
42033
42077
|
/**
|
|
42034
42078
|
* Taxes
|
|
42035
42079
|
* @description this field is always disabled
|
|
@@ -43686,8 +43730,37 @@ export interface components {
|
|
|
43686
43730
|
unitPrice: number;
|
|
43687
43731
|
itemPackage: components["schemas"]["ItemPackageSummarySchema"] | null;
|
|
43688
43732
|
purchaseInvoice: components["schemas"]["PurchaseInvoiceForReturnInvoiceReturnSchema"];
|
|
43689
|
-
/**
|
|
43733
|
+
/**
|
|
43734
|
+
* Discount
|
|
43735
|
+
* @description Combined percentage of both line and header discounts
|
|
43736
|
+
* @default 0
|
|
43737
|
+
*/
|
|
43690
43738
|
discount: number;
|
|
43739
|
+
/**
|
|
43740
|
+
* Lineitemdiscount
|
|
43741
|
+
* @description Line item discount percentage
|
|
43742
|
+
*/
|
|
43743
|
+
lineItemDiscount?: number | null;
|
|
43744
|
+
/**
|
|
43745
|
+
* Overalldiscount
|
|
43746
|
+
* @description Overall discount percentage from header
|
|
43747
|
+
*/
|
|
43748
|
+
overallDiscount?: number | null;
|
|
43749
|
+
/**
|
|
43750
|
+
* Netsubtotal
|
|
43751
|
+
* @description Subtotal after line discount
|
|
43752
|
+
*/
|
|
43753
|
+
netSubtotal?: number | null;
|
|
43754
|
+
/**
|
|
43755
|
+
* Usdnetsubtotal
|
|
43756
|
+
* @description Subtotal after line discount in secondary currency
|
|
43757
|
+
*/
|
|
43758
|
+
usdNetSubtotal?: number | null;
|
|
43759
|
+
/**
|
|
43760
|
+
* Companynetsubtotal
|
|
43761
|
+
* @description Subtotal after line discount in company currency
|
|
43762
|
+
*/
|
|
43763
|
+
companyNetSubtotal?: number | null;
|
|
43691
43764
|
/** Subtotal */
|
|
43692
43765
|
subtotal: number;
|
|
43693
43766
|
/**
|
|
@@ -43700,7 +43773,10 @@ export interface components {
|
|
|
43700
43773
|
* @default 0
|
|
43701
43774
|
*/
|
|
43702
43775
|
companySubtotal: number;
|
|
43703
|
-
/**
|
|
43776
|
+
/**
|
|
43777
|
+
* Discountedtotal
|
|
43778
|
+
* @description Subtotal after line and header discounts
|
|
43779
|
+
*/
|
|
43704
43780
|
discountedTotal: string;
|
|
43705
43781
|
/**
|
|
43706
43782
|
* Usddiscountedtotal
|
|
@@ -43853,21 +43929,6 @@ export interface components {
|
|
|
43853
43929
|
* @default []
|
|
43854
43930
|
*/
|
|
43855
43931
|
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
43856
|
-
/**
|
|
43857
|
-
* Linediscountamount
|
|
43858
|
-
* @description Total line item discount amount
|
|
43859
|
-
*/
|
|
43860
|
-
lineDiscountAmount?: string | null;
|
|
43861
|
-
/**
|
|
43862
|
-
* Usdlinediscountamount
|
|
43863
|
-
* @description Total line item discount amount in secondary currency
|
|
43864
|
-
*/
|
|
43865
|
-
usdLineDiscountAmount?: string | null;
|
|
43866
|
-
/**
|
|
43867
|
-
* Companylinediscountamount
|
|
43868
|
-
* @description Total line item discount amount in company currency
|
|
43869
|
-
*/
|
|
43870
|
-
companyLineDiscountAmount?: string | null;
|
|
43871
43932
|
/** @description visible when project module is active */
|
|
43872
43933
|
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
43873
43934
|
/** Linkeddocuments */
|
|
@@ -44106,21 +44167,6 @@ export interface components {
|
|
|
44106
44167
|
* @default []
|
|
44107
44168
|
*/
|
|
44108
44169
|
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
44109
|
-
/**
|
|
44110
|
-
* Linediscountamount
|
|
44111
|
-
* @description Total line item discount amount
|
|
44112
|
-
*/
|
|
44113
|
-
lineDiscountAmount?: string | null;
|
|
44114
|
-
/**
|
|
44115
|
-
* Usdlinediscountamount
|
|
44116
|
-
* @description Total line item discount amount in secondary currency
|
|
44117
|
-
*/
|
|
44118
|
-
usdLineDiscountAmount?: string | null;
|
|
44119
|
-
/**
|
|
44120
|
-
* Companylinediscountamount
|
|
44121
|
-
* @description Total line item discount amount in company currency
|
|
44122
|
-
*/
|
|
44123
|
-
companyLineDiscountAmount?: string | null;
|
|
44124
44170
|
/** @description visible when project module is active */
|
|
44125
44171
|
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
44126
44172
|
};
|
|
@@ -44134,10 +44180,37 @@ export interface components {
|
|
|
44134
44180
|
quantity: number;
|
|
44135
44181
|
/**
|
|
44136
44182
|
* Discount
|
|
44137
|
-
* @description
|
|
44183
|
+
* @description Combined percentage of both line and header discounts
|
|
44138
44184
|
* @default 0
|
|
44139
44185
|
*/
|
|
44140
44186
|
discount: number;
|
|
44187
|
+
/**
|
|
44188
|
+
* Lineitemdiscount
|
|
44189
|
+
* @description Line item discount percentage
|
|
44190
|
+
* @default 0
|
|
44191
|
+
*/
|
|
44192
|
+
lineItemDiscount: number;
|
|
44193
|
+
/**
|
|
44194
|
+
* Overalldiscount
|
|
44195
|
+
* @description Overall discount percentage from header
|
|
44196
|
+
* @default 0
|
|
44197
|
+
*/
|
|
44198
|
+
overallDiscount: number;
|
|
44199
|
+
/**
|
|
44200
|
+
* Netsubtotal
|
|
44201
|
+
* @description Subtotal after line discount
|
|
44202
|
+
*/
|
|
44203
|
+
netSubtotal: number;
|
|
44204
|
+
/**
|
|
44205
|
+
* Usdnetsubtotal
|
|
44206
|
+
* @description Subtotal after line discount in secondary currency
|
|
44207
|
+
*/
|
|
44208
|
+
usdNetSubtotal: number;
|
|
44209
|
+
/**
|
|
44210
|
+
* Companynetsubtotal
|
|
44211
|
+
* @description Subtotal after line discount in company currency
|
|
44212
|
+
*/
|
|
44213
|
+
companyNetSubtotal: number;
|
|
44141
44214
|
/**
|
|
44142
44215
|
* Taxes
|
|
44143
44216
|
* @description this field is always disabled
|
|
@@ -53502,10 +53575,35 @@ export interface components {
|
|
|
53502
53575
|
itemPackage: components["schemas"]["ItemPackageSummarySchema"] | null;
|
|
53503
53576
|
/**
|
|
53504
53577
|
* Discount
|
|
53505
|
-
* @description
|
|
53578
|
+
* @description Combined percentage of both line and header discounts
|
|
53506
53579
|
* @default 0
|
|
53507
53580
|
*/
|
|
53508
53581
|
discount: number;
|
|
53582
|
+
/**
|
|
53583
|
+
* Lineitemdiscount
|
|
53584
|
+
* @description Line item discount percentage
|
|
53585
|
+
*/
|
|
53586
|
+
lineItemDiscount?: number | null;
|
|
53587
|
+
/**
|
|
53588
|
+
* Overalldiscount
|
|
53589
|
+
* @description Overall discount percentage from header
|
|
53590
|
+
*/
|
|
53591
|
+
overallDiscount?: number | null;
|
|
53592
|
+
/**
|
|
53593
|
+
* Netsubtotal
|
|
53594
|
+
* @description Subtotal after line discount
|
|
53595
|
+
*/
|
|
53596
|
+
netSubtotal?: string | null;
|
|
53597
|
+
/**
|
|
53598
|
+
* Secondarynetsubtotal
|
|
53599
|
+
* @description Subtotal after line discount in secondary currency
|
|
53600
|
+
*/
|
|
53601
|
+
secondaryNetSubtotal?: string | null;
|
|
53602
|
+
/**
|
|
53603
|
+
* Companynetsubtotal
|
|
53604
|
+
* @description Subtotal after line discount in company currency
|
|
53605
|
+
*/
|
|
53606
|
+
companyNetSubtotal?: string | null;
|
|
53509
53607
|
/**
|
|
53510
53608
|
* Promotionsandoffers
|
|
53511
53609
|
* @default []
|
|
@@ -53530,7 +53628,7 @@ export interface components {
|
|
|
53530
53628
|
companySubtotal: string;
|
|
53531
53629
|
/**
|
|
53532
53630
|
* Discountedtotal
|
|
53533
|
-
* @description
|
|
53631
|
+
* @description Subtotal after line and header discounts
|
|
53534
53632
|
*/
|
|
53535
53633
|
discountedTotal: string;
|
|
53536
53634
|
/**
|
|
@@ -53686,21 +53784,6 @@ export interface components {
|
|
|
53686
53784
|
* @default []
|
|
53687
53785
|
*/
|
|
53688
53786
|
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
53689
|
-
/**
|
|
53690
|
-
* Linediscountamount
|
|
53691
|
-
* @description Total line item discount amount
|
|
53692
|
-
*/
|
|
53693
|
-
lineDiscountAmount?: string | null;
|
|
53694
|
-
/**
|
|
53695
|
-
* Secondarylinediscountamount
|
|
53696
|
-
* @description Total line item discount amount in secondary currency
|
|
53697
|
-
*/
|
|
53698
|
-
secondaryLineDiscountAmount?: string | null;
|
|
53699
|
-
/**
|
|
53700
|
-
* Companylinediscountamount
|
|
53701
|
-
* @description Total line item discount amount in company currency
|
|
53702
|
-
*/
|
|
53703
|
-
companyLineDiscountAmount?: string | null;
|
|
53704
53787
|
/** @description visible when project module is active */
|
|
53705
53788
|
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
53706
53789
|
/**
|
|
@@ -53916,21 +53999,6 @@ export interface components {
|
|
|
53916
53999
|
* @default []
|
|
53917
54000
|
*/
|
|
53918
54001
|
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
53919
|
-
/**
|
|
53920
|
-
* Linediscountamount
|
|
53921
|
-
* @description Total line item discount amount
|
|
53922
|
-
*/
|
|
53923
|
-
lineDiscountAmount?: string | null;
|
|
53924
|
-
/**
|
|
53925
|
-
* Secondarylinediscountamount
|
|
53926
|
-
* @description Total line item discount amount in secondary currency
|
|
53927
|
-
*/
|
|
53928
|
-
secondaryLineDiscountAmount?: string | null;
|
|
53929
|
-
/**
|
|
53930
|
-
* Companylinediscountamount
|
|
53931
|
-
* @description Total line item discount amount in company currency
|
|
53932
|
-
*/
|
|
53933
|
-
companyLineDiscountAmount?: string | null;
|
|
53934
54002
|
/** @description visible when project module is active */
|
|
53935
54003
|
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
53936
54004
|
};
|
|
@@ -53944,10 +54012,37 @@ export interface components {
|
|
|
53944
54012
|
quantity: number;
|
|
53945
54013
|
/**
|
|
53946
54014
|
* Discount
|
|
53947
|
-
* @description
|
|
54015
|
+
* @description Combined percentage of both line and header discounts
|
|
53948
54016
|
* @default 0
|
|
53949
54017
|
*/
|
|
53950
54018
|
discount: number;
|
|
54019
|
+
/**
|
|
54020
|
+
* Lineitemdiscount
|
|
54021
|
+
* @description Line item discount percentage
|
|
54022
|
+
* @default 0
|
|
54023
|
+
*/
|
|
54024
|
+
lineItemDiscount: number;
|
|
54025
|
+
/**
|
|
54026
|
+
* Overalldiscount
|
|
54027
|
+
* @description Overall discount percentage from header
|
|
54028
|
+
* @default 0
|
|
54029
|
+
*/
|
|
54030
|
+
overallDiscount: number;
|
|
54031
|
+
/**
|
|
54032
|
+
* Netsubtotal
|
|
54033
|
+
* @description Subtotal after line discount
|
|
54034
|
+
*/
|
|
54035
|
+
netSubtotal: string;
|
|
54036
|
+
/**
|
|
54037
|
+
* Secondarynetsubtotal
|
|
54038
|
+
* @description Subtotal after line discount in secondary currency
|
|
54039
|
+
*/
|
|
54040
|
+
secondaryNetSubtotal: string;
|
|
54041
|
+
/**
|
|
54042
|
+
* Companynetsubtotal
|
|
54043
|
+
* @description Subtotal after line discount in company currency
|
|
54044
|
+
*/
|
|
54045
|
+
companyNetSubtotal: string;
|
|
53951
54046
|
/**
|
|
53952
54047
|
* Taxes
|
|
53953
54048
|
* @description this field is always disabled
|
|
@@ -53983,21 +54078,6 @@ export interface components {
|
|
|
53983
54078
|
companyTotal?: string | null;
|
|
53984
54079
|
/** @description visible when customer is not resident */
|
|
53985
54080
|
tax?: components["schemas"]["TaxSharedSchema"];
|
|
53986
|
-
/**
|
|
53987
|
-
* Linediscountamount
|
|
53988
|
-
* @description Total line item discount amount
|
|
53989
|
-
*/
|
|
53990
|
-
lineDiscountAmount?: string | null;
|
|
53991
|
-
/**
|
|
53992
|
-
* Secondarylinediscountamount
|
|
53993
|
-
* @description Total line item discount amount in secondary currency
|
|
53994
|
-
*/
|
|
53995
|
-
secondaryLineDiscountAmount?: string | null;
|
|
53996
|
-
/**
|
|
53997
|
-
* Companylinediscountamount
|
|
53998
|
-
* @description Total line item discount amount in company currency
|
|
53999
|
-
*/
|
|
54000
|
-
companyLineDiscountAmount?: string | null;
|
|
54001
54081
|
/** Items */
|
|
54002
54082
|
items: components["schemas"]["SalesReturnOrderItemTotalCalculated"][];
|
|
54003
54083
|
};
|
|
@@ -54072,10 +54152,35 @@ export interface components {
|
|
|
54072
54152
|
itemPackage: components["schemas"]["ItemPackageSummarySchema"] | null;
|
|
54073
54153
|
/**
|
|
54074
54154
|
* Discount
|
|
54075
|
-
* @description
|
|
54155
|
+
* @description Combined percentage of both line and header discounts
|
|
54076
54156
|
* @default 0
|
|
54077
54157
|
*/
|
|
54078
54158
|
discount: number;
|
|
54159
|
+
/**
|
|
54160
|
+
* Lineitemdiscount
|
|
54161
|
+
* @description Line item discount percentage
|
|
54162
|
+
*/
|
|
54163
|
+
lineItemDiscount?: number | null;
|
|
54164
|
+
/**
|
|
54165
|
+
* Overalldiscount
|
|
54166
|
+
* @description Overall discount percentage from header
|
|
54167
|
+
*/
|
|
54168
|
+
overallDiscount?: number | null;
|
|
54169
|
+
/**
|
|
54170
|
+
* Netsubtotal
|
|
54171
|
+
* @description Subtotal after line discount
|
|
54172
|
+
*/
|
|
54173
|
+
netSubtotal?: string | null;
|
|
54174
|
+
/**
|
|
54175
|
+
* Secondarynetsubtotal
|
|
54176
|
+
* @description Subtotal after line discount in secondary currency
|
|
54177
|
+
*/
|
|
54178
|
+
secondaryNetSubtotal?: string | null;
|
|
54179
|
+
/**
|
|
54180
|
+
* Companynetsubtotal
|
|
54181
|
+
* @description Subtotal after line discount in company currency
|
|
54182
|
+
*/
|
|
54183
|
+
companyNetSubtotal?: string | null;
|
|
54079
54184
|
/**
|
|
54080
54185
|
* Promotionsandoffers
|
|
54081
54186
|
* @default []
|
|
@@ -54100,7 +54205,7 @@ export interface components {
|
|
|
54100
54205
|
companySubtotal: string;
|
|
54101
54206
|
/**
|
|
54102
54207
|
* Discountedtotal
|
|
54103
|
-
* @description
|
|
54208
|
+
* @description Subtotal after line and header discounts
|
|
54104
54209
|
*/
|
|
54105
54210
|
discountedTotal: string;
|
|
54106
54211
|
/**
|
|
@@ -54251,21 +54356,6 @@ export interface components {
|
|
|
54251
54356
|
* @default []
|
|
54252
54357
|
*/
|
|
54253
54358
|
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
54254
|
-
/**
|
|
54255
|
-
* Linediscountamount
|
|
54256
|
-
* @description Total line item discount amount
|
|
54257
|
-
*/
|
|
54258
|
-
lineDiscountAmount?: string | null;
|
|
54259
|
-
/**
|
|
54260
|
-
* Secondarylinediscountamount
|
|
54261
|
-
* @description Total line item discount amount in secondary currency
|
|
54262
|
-
*/
|
|
54263
|
-
secondaryLineDiscountAmount?: string | null;
|
|
54264
|
-
/**
|
|
54265
|
-
* Companylinediscountamount
|
|
54266
|
-
* @description Total line item discount amount in company currency
|
|
54267
|
-
*/
|
|
54268
|
-
companyLineDiscountAmount?: string | null;
|
|
54269
54359
|
/** @description visible when project module is active */
|
|
54270
54360
|
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
54271
54361
|
/**
|
|
@@ -54505,21 +54595,6 @@ export interface components {
|
|
|
54505
54595
|
* @default []
|
|
54506
54596
|
*/
|
|
54507
54597
|
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
54508
|
-
/**
|
|
54509
|
-
* Linediscountamount
|
|
54510
|
-
* @description Total line item discount amount
|
|
54511
|
-
*/
|
|
54512
|
-
lineDiscountAmount?: string | null;
|
|
54513
|
-
/**
|
|
54514
|
-
* Secondarylinediscountamount
|
|
54515
|
-
* @description Total line item discount amount in secondary currency
|
|
54516
|
-
*/
|
|
54517
|
-
secondaryLineDiscountAmount?: string | null;
|
|
54518
|
-
/**
|
|
54519
|
-
* Companylinediscountamount
|
|
54520
|
-
* @description Total line item discount amount in company currency
|
|
54521
|
-
*/
|
|
54522
|
-
companyLineDiscountAmount?: string | null;
|
|
54523
54598
|
/** @description visible when project module is active */
|
|
54524
54599
|
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
54525
54600
|
};
|
|
@@ -54533,10 +54608,37 @@ export interface components {
|
|
|
54533
54608
|
unitPrice: string;
|
|
54534
54609
|
/**
|
|
54535
54610
|
* Discount
|
|
54536
|
-
* @description
|
|
54611
|
+
* @description Combined percentage of both line and header discounts
|
|
54537
54612
|
* @default 0
|
|
54538
54613
|
*/
|
|
54539
54614
|
discount: number;
|
|
54615
|
+
/**
|
|
54616
|
+
* Lineitemdiscount
|
|
54617
|
+
* @description Line item discount percentage
|
|
54618
|
+
* @default 0
|
|
54619
|
+
*/
|
|
54620
|
+
lineItemDiscount: number;
|
|
54621
|
+
/**
|
|
54622
|
+
* Overalldiscount
|
|
54623
|
+
* @description Overall discount percentage from header
|
|
54624
|
+
* @default 0
|
|
54625
|
+
*/
|
|
54626
|
+
overallDiscount: number;
|
|
54627
|
+
/**
|
|
54628
|
+
* Netsubtotal
|
|
54629
|
+
* @description Subtotal after line discount
|
|
54630
|
+
*/
|
|
54631
|
+
netSubtotal: string;
|
|
54632
|
+
/**
|
|
54633
|
+
* Secondarynetsubtotal
|
|
54634
|
+
* @description Subtotal after line discount in secondary currency
|
|
54635
|
+
*/
|
|
54636
|
+
secondaryNetSubtotal: string;
|
|
54637
|
+
/**
|
|
54638
|
+
* Companynetsubtotal
|
|
54639
|
+
* @description Subtotal after line discount in company currency
|
|
54640
|
+
*/
|
|
54641
|
+
companyNetSubtotal: string;
|
|
54540
54642
|
/**
|
|
54541
54643
|
* Taxes
|
|
54542
54644
|
* @description this field is always disabled
|
|
@@ -54572,21 +54674,6 @@ export interface components {
|
|
|
54572
54674
|
companyTotal?: string | null;
|
|
54573
54675
|
/** @description visible when customer is not resident */
|
|
54574
54676
|
tax?: components["schemas"]["TaxSharedSchema"];
|
|
54575
|
-
/**
|
|
54576
|
-
* Linediscountamount
|
|
54577
|
-
* @description Total line item discount amount
|
|
54578
|
-
*/
|
|
54579
|
-
lineDiscountAmount?: string | null;
|
|
54580
|
-
/**
|
|
54581
|
-
* Secondarylinediscountamount
|
|
54582
|
-
* @description Total line item discount amount in secondary currency
|
|
54583
|
-
*/
|
|
54584
|
-
secondaryLineDiscountAmount?: string | null;
|
|
54585
|
-
/**
|
|
54586
|
-
* Companylinediscountamount
|
|
54587
|
-
* @description Total line item discount amount in company currency
|
|
54588
|
-
*/
|
|
54589
|
-
companyLineDiscountAmount?: string | null;
|
|
54590
54677
|
/** Items */
|
|
54591
54678
|
items: components["schemas"]["SalesReturnInvoiceItemTotalCalculated"][];
|
|
54592
54679
|
};
|