@dangl/angular-ava 0.1.1-beta0093
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/README.md +1 -0
- package/esm2022/dangl-angular-ava.mjs +5 -0
- package/esm2022/lib/angular-ava.module.mjs +91 -0
- package/esm2022/lib/ava-tree/tree/components/ava-tree/ava-tree.component.mjs +412 -0
- package/esm2022/lib/ava-tree/tree/components/list-structure/list-structure.component.mjs +41 -0
- package/esm2022/lib/ava-tree/tree/components/table-structure/table-structure.component.mjs +110 -0
- package/esm2022/lib/ava-tree/tree/components/tree-item/tree-item.component.mjs +102 -0
- package/esm2022/lib/ava-tree/tree/components/tree-node/tree-node.component.mjs +53 -0
- package/esm2022/lib/ava-tree/tree/components/tree-structure/tree-structure.component.mjs +33 -0
- package/esm2022/lib/ava-tree/tree/constants/defaultFilters.mjs +23 -0
- package/esm2022/lib/ava-tree/tree/constants/defaultTextWords.mjs +11 -0
- package/esm2022/lib/ava-tree/tree/constants/defaults.mjs +4 -0
- package/esm2022/lib/ava-tree/tree/constants/index.mjs +5 -0
- package/esm2022/lib/ava-tree/tree/directives/save-changing-view.directive.mjs +47 -0
- package/esm2022/lib/ava-tree/tree/model/ava-models.mjs +199 -0
- package/esm2022/lib/ava-tree/tree/model/context-menu-data.model.mjs +2 -0
- package/esm2022/lib/ava-tree/tree/model/function-view-line.model.mjs +2 -0
- package/esm2022/lib/ava-tree/tree/model/index.mjs +4 -0
- package/esm2022/lib/ava-tree/tree/model/selecting.model.mjs +2 -0
- package/esm2022/lib/ava-tree/tree/model/tableColumnType.mjs +2 -0
- package/esm2022/lib/ava-tree/tree/model/tree-mode.model.mjs +7 -0
- package/esm2022/lib/ava-tree/tree/pipes/element-icon-name.pipe.mjs +27 -0
- package/esm2022/lib/ava-tree/tree/pipes/element-item-number.pipe.mjs +23 -0
- package/esm2022/lib/ava-tree/tree/pipes/element-text.pipe.mjs +27 -0
- package/esm2022/lib/ava-tree/tree/pipes/group-child-elements.pipe.mjs +20 -0
- package/esm2022/lib/ava-tree/tree/services/expand-parent-group.service.mjs +32 -0
- package/esm2022/lib/ava-tree/tree/services/flat-elements.service.mjs +96 -0
- package/esm2022/lib/ava-tree/tree/services/keyboard-operation.service.mjs +116 -0
- package/esm2022/lib/ava-tree/tree/services/select-element.service.mjs +41 -0
- package/esm2022/lib/ava-tree/tree/services/tree-node-selection.service.mjs +133 -0
- package/esm2022/lib/version.mjs +10 -0
- package/esm2022/public-api.mjs +8 -0
- package/fesm2022/dangl-angular-ava.mjs +1574 -0
- package/fesm2022/dangl-angular-ava.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/angular-ava.module.d.ts +27 -0
- package/lib/ava-tree/tree/components/ava-tree/ava-tree.component.d.ts +165 -0
- package/lib/ava-tree/tree/components/list-structure/list-structure.component.d.ts +18 -0
- package/lib/ava-tree/tree/components/table-structure/table-structure.component.d.ts +34 -0
- package/lib/ava-tree/tree/components/tree-item/tree-item.component.d.ts +35 -0
- package/lib/ava-tree/tree/components/tree-node/tree-node.component.d.ts +23 -0
- package/lib/ava-tree/tree/components/tree-structure/tree-structure.component.d.ts +14 -0
- package/lib/ava-tree/tree/constants/defaultFilters.d.ts +2 -0
- package/lib/ava-tree/tree/constants/defaultTextWords.d.ts +11 -0
- package/lib/ava-tree/tree/constants/defaults.d.ts +3 -0
- package/lib/ava-tree/tree/constants/index.d.ts +4 -0
- package/lib/ava-tree/tree/directives/save-changing-view.directive.d.ts +13 -0
- package/lib/ava-tree/tree/model/ava-models.d.ts +1041 -0
- package/lib/ava-tree/tree/model/context-menu-data.model.d.ts +8 -0
- package/lib/ava-tree/tree/model/function-view-line.model.d.ts +12 -0
- package/lib/ava-tree/tree/model/index.d.ts +7 -0
- package/lib/ava-tree/tree/model/selecting.model.d.ts +14 -0
- package/lib/ava-tree/tree/model/tableColumnType.d.ts +6 -0
- package/lib/ava-tree/tree/model/tree-mode.model.d.ts +5 -0
- package/lib/ava-tree/tree/pipes/element-icon-name.pipe.d.ts +8 -0
- package/lib/ava-tree/tree/pipes/element-item-number.pipe.d.ts +8 -0
- package/lib/ava-tree/tree/pipes/element-text.pipe.d.ts +8 -0
- package/lib/ava-tree/tree/pipes/group-child-elements.pipe.d.ts +8 -0
- package/lib/ava-tree/tree/services/expand-parent-group.service.d.ts +7 -0
- package/lib/ava-tree/tree/services/flat-elements.service.d.ts +28 -0
- package/lib/ava-tree/tree/services/keyboard-operation.service.d.ts +35 -0
- package/lib/ava-tree/tree/services/select-element.service.d.ts +31 -0
- package/lib/ava-tree/tree/services/tree-node-selection.service.d.ts +23 -0
- package/lib/version.d.ts +8 -0
- package/package.json +31 -0
- package/public-api.d.ts +4 -0
|
@@ -0,0 +1,1041 @@
|
|
|
1
|
+
/** This enum configures rounding modes for price calculations in projects */
|
|
2
|
+
export declare enum PriceRoundingModeDto {
|
|
3
|
+
Normal = "Normal",
|
|
4
|
+
Floor = "Floor",
|
|
5
|
+
Ceiling = "Ceiling"
|
|
6
|
+
}
|
|
7
|
+
/** General information about a Project. */
|
|
8
|
+
export interface ProjectInformationDto {
|
|
9
|
+
/** Information about the buyer. */
|
|
10
|
+
buyer?: PartyInformationDto | undefined;
|
|
11
|
+
/** Description for the project. */
|
|
12
|
+
description?: string | undefined;
|
|
13
|
+
/** Short description for the project. */
|
|
14
|
+
descriptionShort?: string | undefined;
|
|
15
|
+
/** Name of the project. */
|
|
16
|
+
name?: string | undefined;
|
|
17
|
+
/** Information about the site. */
|
|
18
|
+
site?: PartyInformationDto | undefined;
|
|
19
|
+
/** The ItemNumberSchema used in the project. */
|
|
20
|
+
itemNumberSchema?: ItemNumberSchemaDto | undefined;
|
|
21
|
+
/** Short label for the currency used. */
|
|
22
|
+
currencyShort?: string | undefined;
|
|
23
|
+
/** Full label of the currency used. */
|
|
24
|
+
currencyLong?: string | undefined;
|
|
25
|
+
/** Label for the labour time part of prices used in the project. */
|
|
26
|
+
labourTimeLabel?: string | undefined;
|
|
27
|
+
/** Labels for the price components used in the project. Caution: Removal of a price component will trigger to have dependent price informations be deleted in IElements that use this property. If this property is changed or altered after the project has already been used, it is strongly advised to do operations step by step, e.g. if renaming and reordering multiple price components, this should be done one by one. Otherwise, a combination of rename and reordering will not be correctly propagated downwards to child objects in this Project. */
|
|
28
|
+
priceComponents?: string[] | undefined;
|
|
29
|
+
/** This dictionary specifies actual types used for the PriceComponents. For example, a single price component might have the name 'Material' as a string, ans this dictionary would then have a key 'Material' and a value of Materials. You can not add keys here that are not also present in the PriceComponents property, and removing price components will also remove them from this dictionary here. */
|
|
30
|
+
readonly priceComponentTypes?: {
|
|
31
|
+
[key: string]: PriceComponentTypeDto;
|
|
32
|
+
} | undefined;
|
|
33
|
+
/** This bool indicates if this project allows the bidder to add bidder comments. Bidder comments are a way to attach clarifying information when submitting an offer. */
|
|
34
|
+
bidderCommentAllowed?: boolean | undefined;
|
|
35
|
+
/** This property indicates if the project should allow side offers from contractors. In GAEB, a side offer would typically be in exchange phase 85. */
|
|
36
|
+
sideOffersAllowed?: boolean | undefined;
|
|
37
|
+
/** This enumeration describes the type of the award / procurement process. If this is used in a GAEB context, more information about award types can be found in the German VOB/A rules and the GAEB standard */
|
|
38
|
+
awardType?: AwardTypeDto | undefined;
|
|
39
|
+
/** This enumeration describes awards for project that are not just a regular procurement. For example, it can be used to describe recurring maintenance or an outline contract (German: Rahmenvertrag) which just specifies services and prices but may be requested on demand when necessary */
|
|
40
|
+
specialAwardKind?: SpecialAwardKindDto | undefined;
|
|
41
|
+
/** Requesters in a construction project, in German also called 'Bedarfsträger', are parties connected to the building process, e.g. architects or planners. */
|
|
42
|
+
requesters?: PartyInformationDto[] | undefined;
|
|
43
|
+
/** Notification sites are addresses that are used for delivering messages in the context of construction projects. */
|
|
44
|
+
notificationSites?: PartyInformationDto[] | undefined;
|
|
45
|
+
}
|
|
46
|
+
/** Represents information about a party (a site or an organization). */
|
|
47
|
+
export interface PartyInformationDto {
|
|
48
|
+
/** Elements GUID identifier. */
|
|
49
|
+
id: string;
|
|
50
|
+
/** This party's name. */
|
|
51
|
+
name?: string | undefined;
|
|
52
|
+
/** This party's street. */
|
|
53
|
+
street?: string | undefined;
|
|
54
|
+
/** This party's ZipCode. */
|
|
55
|
+
zipCode?: string | undefined;
|
|
56
|
+
/** This party's City. */
|
|
57
|
+
city?: string | undefined;
|
|
58
|
+
/** This party's Country. */
|
|
59
|
+
country?: string | undefined;
|
|
60
|
+
/** This party's Identifier. */
|
|
61
|
+
identifier?: string | undefined;
|
|
62
|
+
/** Remarks for this party. */
|
|
63
|
+
remarks?: string | undefined;
|
|
64
|
+
/** An email address for this party. */
|
|
65
|
+
email?: string | undefined;
|
|
66
|
+
/** A phone number for this party. */
|
|
67
|
+
phone?: string | undefined;
|
|
68
|
+
/** The name of a contact person. */
|
|
69
|
+
contactPersonName?: string | undefined;
|
|
70
|
+
/** This is an identifier related to this PartyInformation and their internal reference of the tender (or award). This might be used to assign an identifier (German "Vergabenummer") for the current project. This is typically only used in Buyer and Bidder representations and should map to the concept of "Vergabenummer" or "AwardNo" in GAEB. */
|
|
71
|
+
awardIdentifier?: string | undefined;
|
|
72
|
+
/** This property indicates if the party is registered within the European Economic Area. */
|
|
73
|
+
isInEuropeanEconomicArea?: boolean | undefined;
|
|
74
|
+
/** If this is within the European Economic Area (see IsInEuropeanEconomicArea, then as a business entity it likely has an EU VAT Id. */
|
|
75
|
+
vatId?: string | undefined;
|
|
76
|
+
/** The fax number for this party. */
|
|
77
|
+
fax?: string | undefined;
|
|
78
|
+
/** The two letter ISO country code, e.g. DE for Germany. */
|
|
79
|
+
countryCode?: string | undefined;
|
|
80
|
+
/** Depending on which party this class represents, it might have either a 'creditor' or 'debtor' number. This is often used in internal accounting systems. */
|
|
81
|
+
creditorOrDebtorIdentifier?: string | undefined;
|
|
82
|
+
/** The Global Location Number (GLN) is issued by GS1 and is intended to be a unique identifier for the physical address of a party, e.g. a business office. */
|
|
83
|
+
globalLocationNumber?: string | undefined;
|
|
84
|
+
/** This list contains information about bank accounts associated with this PartyInformation. It's typically used for buyers and bidders. */
|
|
85
|
+
bankingInformation?: BankingInformationDto[] | undefined;
|
|
86
|
+
/** This can be used to specify a registration number for this party, e.g. a company registration number. It is usually used in GAEB XML commerce exchanges for bidders to supply their WEEE registration number, which is used to identify them as a registered WEEE company. */
|
|
87
|
+
registrationNumber?: string | undefined;
|
|
88
|
+
}
|
|
89
|
+
/** This is a class that represents the information about a bank connection. It is usually used within a PartyInformation. */
|
|
90
|
+
export interface BankingInformationDto {
|
|
91
|
+
/** Elements GUID identifier. */
|
|
92
|
+
id: string;
|
|
93
|
+
/** The name of the bank. */
|
|
94
|
+
name?: string | undefined;
|
|
95
|
+
/** The international identifier for the bank account. */
|
|
96
|
+
iban?: string | undefined;
|
|
97
|
+
/** The account number. Typically no longer used since the introduction of IBAN within the SEPA area. */
|
|
98
|
+
accountNumber?: string | undefined;
|
|
99
|
+
/** The international bank identifier. */
|
|
100
|
+
bic?: string | undefined;
|
|
101
|
+
/** The routing number for the bank. Typically no longer used since the introduction of IBAN within the SEPA area. */
|
|
102
|
+
routingNumber?: string | undefined;
|
|
103
|
+
}
|
|
104
|
+
/** The schema for ItemNumber's in a Project. */
|
|
105
|
+
export interface ItemNumberSchemaDto {
|
|
106
|
+
/** The count of tiers in the ItemNumberSchema */
|
|
107
|
+
readonly totalLength?: number | undefined;
|
|
108
|
+
/** The collection of tiers for this ItemNumberSchema. */
|
|
109
|
+
tiers?: ItemNumberSchemaTierDto[] | undefined;
|
|
110
|
+
/** The separator to use for separiting the different levels in an ItemNumber. Defaults to DEFAULT_SEPARATOR, which is a point '.'. Setting this to a space or other whitespaces is discouraged, as this might not work correct in all situations and item numbers could be displayed not as intended. This can not be set to an empty or null string, trying that will default to the DEFAULT_SEPARATOR. If a value is set that has a different length than one '1', the DEFAULT_SEPARATOR will be used instead. You should also not use values for the separator that are also valid for the item numbers themselves, as that might also lead to incorrect results */
|
|
111
|
+
separator?: string | undefined;
|
|
112
|
+
/** This string is used to fill (left-pad) item numbers. For example, if a tier has a length of '4' but the given item number is '12', with a Filler of '0', then the final item number will be represented as '0'. This must be a single character string, if a value is given where the Length property does not evaluate to '1', the DEFAULT_FILLER '0' is used. A space is fine to use. You should ensure that you use a value different than Separator, as that might produce unexpected results. No attempt is done by the code to recover from such ambiguous configurations. */
|
|
113
|
+
filler?: string | undefined;
|
|
114
|
+
/** This is just a string property that can optionally be used to store additional data for this ItemNumberSchema, e.g. an identification or a type. It does not have any influence over how item numbers are generated, and is not supported in most exchange formats. However, it is used to store ÖNorm service specification structure types. */
|
|
115
|
+
identifier?: string | undefined;
|
|
116
|
+
/** This property indicates if ItemNumbers using this ItemNumberSchema should skip empty group levels. This is commonly only used in GAEB files, where there might be gaps in the hierarchy of elements and position identifiers should be placed at the end of the string representation. */
|
|
117
|
+
skipNonExistingLevelsInPositionItemNumbers?: boolean | undefined;
|
|
118
|
+
/** This string is used only when the property SkipNonExistingLevelsInPositionItemNumbers in this ItemNumberSchema is also set to true. It defaults to DEFAULT_SKIPPED_TIERS_FILLER, but can be set to any string with a lenght of one. Null values or values with a longer length will lead to this property reverting back to the default value. This is used to fill skipped tiers in item numbers where a position is placed in a higher hierarchy level than what would be defined in the Tiers. For example, it could produce an item number like '01.__.02', which would indicate a skipped second level. This should be using different values than Filler and Separator, since that could cause ambiguities in the code that generates the actual item numbers. No attempt is done by the code to recover from such ambiguous configurations. */
|
|
119
|
+
skippedTiersFiller?: string | undefined;
|
|
120
|
+
/** This is a read-only property that indicates if this schema has a valid structure. It internally just returns the result from IsCorrectlyDefined. This will return if the ItemNumberSchema is correctly defined. For it to be correctly defined, the following conditions must be true: There may only be one lot group, if there is one, it must be at the top. Following lot levels, there may be at least one group level. After the group levels, there must be one position level. After the position level, there may be one index level. If no tiers are defined at all, this will also return false. */
|
|
121
|
+
readonly schemaIsCorrectlyDefined?: boolean | undefined;
|
|
122
|
+
/** Defaults to false. If this is disabled, all letters in the ItemNumber string representations will be transformed to their lowercase representation. */
|
|
123
|
+
allowUpperCaseLettering?: boolean | undefined;
|
|
124
|
+
}
|
|
125
|
+
/** Represents information about a single Tier in an ItemNumber. */
|
|
126
|
+
export interface ItemNumberSchemaTierDto {
|
|
127
|
+
/** The (maximum) length for this tier. Will not accept a length less than 1. Defaults to 1 if length less than one is specified. */
|
|
128
|
+
length?: number | undefined;
|
|
129
|
+
/** This ItemNumberSchemaTier's type. */
|
|
130
|
+
type?: ItemNumberTypeDto | undefined;
|
|
131
|
+
/** This specifies which ItemNumberSchemaTierType this tier represents. This can be, for example, a group tier / level, a position level or a lot level. */
|
|
132
|
+
tierType?: ItemNumberSchemaTierTypeDto | undefined;
|
|
133
|
+
/** Indicates if this tier represents a lot. See the documentation for more information about lots. */
|
|
134
|
+
readonly isLot?: boolean | undefined;
|
|
135
|
+
/** This value is the increment, or step size, that should be used for new item numbers. It defaults to DEFAULT_INCREMENT, but can be changed to any other positive number greater than zero. Invalid values make this be set to one '1' */
|
|
136
|
+
increment?: number | undefined;
|
|
137
|
+
/** This is an optional name for the given tier */
|
|
138
|
+
tierName?: string | undefined;
|
|
139
|
+
}
|
|
140
|
+
/** Determines the type of an ItemNumberSchema */
|
|
141
|
+
export declare enum ItemNumberTypeDto {
|
|
142
|
+
Numeric = "Numeric",
|
|
143
|
+
Alphanumeric = "Alphanumeric"
|
|
144
|
+
}
|
|
145
|
+
/** Specifies the type an ItemNumberSchemaTier represents. For example, a tier may indicate to be used for positions or for groups. */
|
|
146
|
+
export declare enum ItemNumberSchemaTierTypeDto {
|
|
147
|
+
Undefined = "Undefined",
|
|
148
|
+
Index = "Index",
|
|
149
|
+
Position = "Position",
|
|
150
|
+
Group = "Group",
|
|
151
|
+
Lot = "Lot"
|
|
152
|
+
}
|
|
153
|
+
/** This enumeration models types of price components for better classification. */
|
|
154
|
+
export declare enum PriceComponentTypeDto {
|
|
155
|
+
Unknown = "Unknown",
|
|
156
|
+
Wages = "Wages",
|
|
157
|
+
Materials = "Materials",
|
|
158
|
+
Plant = "Plant",
|
|
159
|
+
Miscellaneous = "Miscellaneous"
|
|
160
|
+
}
|
|
161
|
+
/** This enumeration describes the type of the award / procurement process. If this is used in a GAEB context, more information about award types can be found in the German VOB/A rules and the GAEB standard */
|
|
162
|
+
export declare enum AwardTypeDto {
|
|
163
|
+
Unspecified = "Unspecified",
|
|
164
|
+
OpenProcurement = "OpenProcurement",
|
|
165
|
+
ClosedProducrement = "ClosedProducrement",
|
|
166
|
+
NegotiationProcurementWithoutPublicAnnouncement = "NegotiationProcurementWithoutPublicAnnouncement",
|
|
167
|
+
NegotiationProcurement = "NegotiationProcurement",
|
|
168
|
+
OpenCall = "OpenCall",
|
|
169
|
+
SelectedCallWithoutPublicCompetition = "SelectedCallWithoutPublicCompetition",
|
|
170
|
+
SelectedCall = "SelectedCall",
|
|
171
|
+
DirectAward = "DirectAward",
|
|
172
|
+
InternationalNATOProcurement = "InternationalNATOProcurement",
|
|
173
|
+
CompetitiveDialog = "CompetitiveDialog"
|
|
174
|
+
}
|
|
175
|
+
/** This enumeration describes awards for project that are not just a regular procurement. For example, it can be used to describe recurring maintenance or an outline contract (German: Rahmenvertrag) which just specifies services and prices but may be requested on demand when necessary */
|
|
176
|
+
export declare enum SpecialAwardKindDto {
|
|
177
|
+
Unspecified = "Unspecified",
|
|
178
|
+
MaintenanceContract = "MaintenanceContract",
|
|
179
|
+
OutlineContract = "OutlineContract",
|
|
180
|
+
OutlineForMaintenanceContract = "OutlineForMaintenanceContract"
|
|
181
|
+
}
|
|
182
|
+
/** This is the base class that holds information about a whole service specification. */
|
|
183
|
+
export interface ServiceSpecificationDto {
|
|
184
|
+
/** Elements GUID identifier. */
|
|
185
|
+
id: string;
|
|
186
|
+
/** The hourly wage that is used within this ElementContainerBase. Will be propagated to child elements. */
|
|
187
|
+
readonly projectHourlyWage?: number | undefined;
|
|
188
|
+
/** The tax rate that is used within this ElementContainerBase. Will be propagated to child elements. */
|
|
189
|
+
projectTaxRate?: number | undefined;
|
|
190
|
+
/** The price components that are used within this project. They are ignored during Json deserialization because they will be set from the parent project. */
|
|
191
|
+
projectPriceComponents?: string[] | undefined;
|
|
192
|
+
/** The ItemNumberSchema that is used within this project. */
|
|
193
|
+
projectItemNumberSchema?: ItemNumberSchemaDto | undefined;
|
|
194
|
+
/** The IElements within this ElementContainerBase. */
|
|
195
|
+
elements?: IElementDto[] | undefined;
|
|
196
|
+
/** The label used in the parent Project to mark labour time, e.g. "Hours" or "Stunden". */
|
|
197
|
+
readonly projectLabourTimeLabel?: string | undefined;
|
|
198
|
+
/** Indicates if there are child IElements that have conflicting, duplicated ItemNumbers or if any child ElementContainerBase elements themselves contain duplicate ItemNumber s. Will always indicate false when told to ignore duplicate item numbers. */
|
|
199
|
+
readonly containsDuplicateItemNumbers?: boolean | undefined;
|
|
200
|
+
/** Indicates if there are child IElements that have conflicting, duplicated Ids or if any child ElementContainerBase elements themselves contain duplicate Id s. Will always indicate false when told to ignore duplicate item numbers. */
|
|
201
|
+
readonly containsDuplicateElementIds?: boolean | undefined;
|
|
202
|
+
/** Indicate if duplicated ItemNumbers within child elements are to be ignored. Will not perform checks for duplicates if yes. */
|
|
203
|
+
ignoreDuplicateItemNumbers?: boolean | undefined;
|
|
204
|
+
/** If this is set to true, the ProjectCatalogues property will not be propagated to child elements. This is useful in mapping scenarios, where you want to disable propagation for multiple changes, and only enable it once you have mapped all properties */
|
|
205
|
+
ignoreProjectCataloguePropagation?: boolean | undefined;
|
|
206
|
+
/** Indicate if duplicated Ids within child elements are to be ignored. Will not perform checks for duplicates if yes. */
|
|
207
|
+
ignoreDuplicateElementIds?: boolean | undefined;
|
|
208
|
+
/** Price composition by tax rate. */
|
|
209
|
+
totalPriceGrossByTaxRate?: GrossPriceComponentDto[] | undefined;
|
|
210
|
+
/** Internally used to indicate that a propagation is currently done, this is done to not recalculate every single result from a lot of changes when it is sufficient to calculate the total price at once. */
|
|
211
|
+
ignoreChildPriceUpdates?: boolean | undefined;
|
|
212
|
+
/** Net price after applied deductions. */
|
|
213
|
+
readonly deductedPrice?: number | undefined;
|
|
214
|
+
/** Factor of applied deductions to the total price. For example, "0.03" means that a 3% deduction is to be applied. */
|
|
215
|
+
deductionFactor?: number | undefined;
|
|
216
|
+
/** The exact amount of the discount as an absolute value. For backwards compatibility reasons, setting this value will also set a calculated value to DeductionFactor, which will also be updated in case the total price is changed to reflect a relative value of the absolute discount sum. */
|
|
217
|
+
absoluteDeduction?: number | undefined;
|
|
218
|
+
/** Will return this ElementContainerBase's total price. */
|
|
219
|
+
readonly totalPrice?: number | undefined;
|
|
220
|
+
/** The total gross price for this ElementContainerBase including all child elements. */
|
|
221
|
+
readonly totalPriceGross?: number | undefined;
|
|
222
|
+
/** Total gross price after applied deductions. */
|
|
223
|
+
readonly totalPriceGrossDeducted?: number | undefined;
|
|
224
|
+
/** Indicates the PriceType of this ElementContainerBase, whether it should factor into total costs or not. */
|
|
225
|
+
priceType?: PriceTypeDto | undefined;
|
|
226
|
+
/** Information about the bidder. */
|
|
227
|
+
bidder?: PartyInformationDto | undefined;
|
|
228
|
+
/** This discriminator is used to identify different bidders in a project. It is different from the Identifier property in the Bidder in that the BidderDiscriminator is intended to be a numerical identifier within a project, while the Identifier does uniquely identify a bidder in the system independent of a specific project. This property should map to "Bieternummer" or "BidderNo" in GAEB. */
|
|
229
|
+
bidderDiscriminator?: string | undefined;
|
|
230
|
+
/** This is used to store the GAEB XML Id within this ServiceSpecification. This data is not used for any calculations or evaluations but only for GAEB serialization and deserialization. */
|
|
231
|
+
gaebXmlId?: string | undefined;
|
|
232
|
+
/** The ProjectInformation used within the Project in which this ElementContainerBase is contained. This is reference equal to the ProjectInformation used in the parent project. */
|
|
233
|
+
readonly projectInformation?: ProjectInformationDto | undefined;
|
|
234
|
+
/** This service specifications exchange phase, i.e. the current status in the project it is intended to be used (such as request for offer, offer, awarding...). */
|
|
235
|
+
exchangePhase?: ExchangePhaseDto | undefined;
|
|
236
|
+
/** This indicates where the service specification originates, i.e. from an exchange file format or self created. If applicable, additional information is present in the OriginDetail property. */
|
|
237
|
+
origin?: OriginDto | undefined;
|
|
238
|
+
/** This property complements the Origin property. Some formats, e.g. GaebXml might have additional information attached, e.g. GAEB XML V3.2 oder GAEB XML V3.1. This string property is used to hold such data. The Dangl.AVA module does not have a list of possible values, since this is defined in the native format assemblies, e.g. Dangl.GAEB or Dangl.Oenorm. */
|
|
239
|
+
originDetail?: string | undefined;
|
|
240
|
+
/** Creation date of this ServiceSpecification. */
|
|
241
|
+
creationDate?: Date | undefined;
|
|
242
|
+
/** Date indicating until when an offer has to be submitted. In German, this is often called the "Eröffnungstermin" */
|
|
243
|
+
offerByDate?: Date | undefined;
|
|
244
|
+
/** Date indicating by when the buyer will select a contractor. */
|
|
245
|
+
decisionDate?: Date | undefined;
|
|
246
|
+
/** Date of when the offer / bid was created */
|
|
247
|
+
bidDate?: Date | undefined;
|
|
248
|
+
/** If a construction project requires a warranty bond, this property indicates the amount as a percentage, e.g. '0.15m' means 15% of the construction total amount as a warranty bond. */
|
|
249
|
+
warrantyBondPercentage?: number | undefined;
|
|
250
|
+
/** If a construction project requires an execution guarantty, this property indicates the amount as a percentage, e.g. '0.15m' means 15% of the construction total amount as an execution guarantee. In practice, this percentage is usually deducted from intermediate invoices and only billed in the final invoice. */
|
|
251
|
+
executionGuaranteePercentage?: number | undefined;
|
|
252
|
+
/** String indicating where the physical submission of the offer is taking place. */
|
|
253
|
+
submissionLocation?: string | undefined;
|
|
254
|
+
/** Description of this ServiceSpecification. */
|
|
255
|
+
description?: string | undefined;
|
|
256
|
+
/** The name of this ServiceSpecification. */
|
|
257
|
+
name?: string | undefined;
|
|
258
|
+
/** This PriceInformation contains global data for the ServiceSpecification. When inside a Project, do not set this property manually. */
|
|
259
|
+
priceInformation?: PriceInformationDto | undefined;
|
|
260
|
+
/** These are Catalogue that are used within this ElementContainerBase. Catalogue references are used to describe catalogues, or collections, that can be used to describe elements with commonly known properties. For example, QuantityAssignments use these to categorize themselves. */
|
|
261
|
+
projectCatalogues?: CatalogueDto[] | undefined;
|
|
262
|
+
/** Referenced catalogues for this ElementContainerBase. */
|
|
263
|
+
catalogueReferences?: CatalogueReferenceDto[] | undefined;
|
|
264
|
+
/** The date when the execution of the services is scheduled to start */
|
|
265
|
+
plannedExecutionStart?: Date | undefined;
|
|
266
|
+
/** The date then the execution of the services is scheduled to be finished */
|
|
267
|
+
plannedExecutionEnd?: Date | undefined;
|
|
268
|
+
/** The date on which the contract has been awarded. This matches "Auftragsdatum" in GAEB */
|
|
269
|
+
contractDate?: Date | undefined;
|
|
270
|
+
/** This value can be used to indicate the number or identifier of the contract. It matches "Auftragsnummer" in GAEB */
|
|
271
|
+
contractIdentifier?: string | undefined;
|
|
272
|
+
/** This indicates how long the warranty period is for this ServiceSpecification */
|
|
273
|
+
warrantyDuration?: WarrantyDurationDto | undefined;
|
|
274
|
+
/** The date on which the warranty period ends */
|
|
275
|
+
warrantyEnd?: Date | undefined;
|
|
276
|
+
/** The date on which the services rendered by the bidder are scheduled to be approved by the buyer */
|
|
277
|
+
approvalDate?: Date | undefined;
|
|
278
|
+
/** This should specify how the approval is performed by the buyer. This matches "AcceptType" in GAEB */
|
|
279
|
+
typeOfApproval?: string | undefined;
|
|
280
|
+
/** This optional string property is shared by all IElements, and indicates if the element is part of an addendum, a 'Nachtrag' in German. */
|
|
281
|
+
addendumNumber?: string | undefined;
|
|
282
|
+
/** This indicates, if this element is part of an addendum an, if yes, with what status. */
|
|
283
|
+
addendumStatus?: AddendumStatusDto | undefined;
|
|
284
|
+
/** This property holds additional information that's only valid in commerce exchange phases. */
|
|
285
|
+
commerceProperties?: ServiceSpecificationCommercePropertiesDto | undefined;
|
|
286
|
+
/** This is internally used during mapping operations to temporarily hold information about removed ItemNumberSchemas. Those schemas are set to null during the mapping process to ensure that schemas in elements higher up in the hierarchy are correctly passed down to child elements. */
|
|
287
|
+
itemNumberSchemaMappingOperation?: ItemNumberSchemaMappingOperation | undefined;
|
|
288
|
+
/** This is internally used during mapping operations to temporarily hold information about complementing positions */
|
|
289
|
+
complementingPositionData?: ComplementingPositionData | undefined;
|
|
290
|
+
}
|
|
291
|
+
/** Base interface definition for elements within an ElementContainerBase. */
|
|
292
|
+
export interface IElementDto {
|
|
293
|
+
elementType?: string | undefined;
|
|
294
|
+
/** Elements GUID identifier. */
|
|
295
|
+
id: string;
|
|
296
|
+
/** This is used to store the GAEB XML Id within this IElement. This data is not used for any calculations or evaluations but only for GAEB serialization and deserialization. */
|
|
297
|
+
gaebXmlId?: string | undefined;
|
|
298
|
+
/** This optional string property is shared by all IElements, and indicates if the element is part of an addendum, a 'Nachtrag' in German. */
|
|
299
|
+
addendumNumber?: string | undefined;
|
|
300
|
+
projectCatalogues?: CatalogueDto[] | undefined;
|
|
301
|
+
catalogueReferences?: CatalogueReferenceDto[] | undefined;
|
|
302
|
+
elementTypeDiscriminator: string;
|
|
303
|
+
}
|
|
304
|
+
/** This class describes an external catalogue. Catalogues, or collections, hold information to categorize and describe items. For example, the German DIN 276 cost group standards describe different types of costs for building projects. When referencing the DIN 276 catalogue and providing an item key or identifier, it is possible to reference data in this catalogue. */
|
|
305
|
+
export interface CatalogueDto {
|
|
306
|
+
/** Elements GUID identifier. */
|
|
307
|
+
id: string;
|
|
308
|
+
/** This is used to store the GAEB XML Id within this Catalogue. This data is not used for any calculations or evaluations but only for GAEB serialization and deserialization. */
|
|
309
|
+
gaebXmlId?: string | undefined;
|
|
310
|
+
/** The name that is given for this catalogue. */
|
|
311
|
+
name?: string | undefined;
|
|
312
|
+
/** Additional information about this catalogue. */
|
|
313
|
+
description?: string | undefined;
|
|
314
|
+
/** If given, this gives a classification for the contents of the catalogue */
|
|
315
|
+
catalogueType?: CatalogueTypeDto | undefined;
|
|
316
|
+
/** This property may hold additional information about the catalogue type. It is currently only used in GAEB XML exchange to carry detailed information about a catalogue type, but it's otherwise just a free text field. */
|
|
317
|
+
catalogueTypeDetail?: string | undefined;
|
|
318
|
+
}
|
|
319
|
+
/** This enumeration describes the type of a catalogue. Catalogues, or collections, hold information to categorize and describe items. For example, the German DIN 276 cost group standards describe different types of costs for building projects. When referencing the DIN 276 catalogue and providing an item key or identifier, it is possible to reference data in this catalogue. */
|
|
320
|
+
export declare enum CatalogueTypeDto {
|
|
321
|
+
Unknown = "Unknown",
|
|
322
|
+
Location = "Location",
|
|
323
|
+
DIN276 = "DIN276",
|
|
324
|
+
CostUnit = "CostUnit",
|
|
325
|
+
WorkCategory = "WorkCategory",
|
|
326
|
+
OenormB1801CostGroup = "OenormB1801CostGroup",
|
|
327
|
+
BIM = "BIM",
|
|
328
|
+
Attachment = "Attachment"
|
|
329
|
+
}
|
|
330
|
+
/** This class is used to link data between catalogues and objects. */
|
|
331
|
+
export interface CatalogueReferenceDto {
|
|
332
|
+
/** Elements GUID identifier. */
|
|
333
|
+
id: string;
|
|
334
|
+
/** This points to the item in the catalogue itself. This means that, for example when this quantity assignment references a "DIN 276" catalogue, this property indicates the number / identifier / key in DIN 276 that is referenced. */
|
|
335
|
+
catalogueReferenceKey?: string | undefined;
|
|
336
|
+
/** The Id of the CatalogueReference that is targeted by this item. Set this property to set the referenced catalogue. */
|
|
337
|
+
catalogueReferenceId?: string | undefined;
|
|
338
|
+
/** These are CatalogueReference that are used within this ServiceSpecification. Catalogue references are used to describe catalogues, or collections, that can be used to describe elements with commonly known properties. For example, QuantityAssignments use these to categorize themselves. */
|
|
339
|
+
projectCatalogues?: CatalogueDto[] | undefined;
|
|
340
|
+
/** This returns the referenced catalogue. Will return null if there is no reference or the catalogue is not present in the ProjectCatalogues. */
|
|
341
|
+
readonly catalogue?: CatalogueDto | undefined;
|
|
342
|
+
}
|
|
343
|
+
/** A Position is the main item type in a ServiceSpecification, holding information about tasks to be done, their prices, description, amounts etc. */
|
|
344
|
+
export interface PositionDto extends IElementDto {
|
|
345
|
+
/** Will return the price per unit, rounded according to the project settings or the default value of three decimal places */
|
|
346
|
+
readonly unitPrice?: number | undefined;
|
|
347
|
+
/** You can use this property to directly set the unit price for this position. This will override any given PriceComponents */
|
|
348
|
+
unitPriceOverride?: number | undefined;
|
|
349
|
+
/** Will return this Position's total quantity, rounded to three decimal places. */
|
|
350
|
+
readonly quantity?: number | undefined;
|
|
351
|
+
/** You can use this property to directly set the quantity for this position. This will override any given QuantityComponents */
|
|
352
|
+
quantityOverride?: number | undefined;
|
|
353
|
+
/** This indicates true if this specific position is specified as a complementing position for any base position. */
|
|
354
|
+
isComplementingPosition?: boolean | undefined;
|
|
355
|
+
/** If IsComplementingPosition is set to true, this will indicate which base positions are targeted by this complementing position. */
|
|
356
|
+
complementsPositions?: string[] | undefined;
|
|
357
|
+
/** You can use this property to directly specify the total price of this position as a percentage of the sum of the total prices of base positions that this position complements. It will essentially set the total price for this position to the sum of all total prices of the positions specified in ComplementsPositions multiplied by the percentage here. If present, this has precedence over UnitPriceOverride as well as QuantityOverride. */
|
|
358
|
+
complementingPricePercentageOverride?: number | undefined;
|
|
359
|
+
/** This is a read only property showing the total price of this positions as a percentage of the sum of the total prices of all base positions, in case this position is a complementing positions. If this position is not a complementing position, this will be null. Also, if no prices are present, this will also be null. */
|
|
360
|
+
complementingPricePercentage?: number | undefined;
|
|
361
|
+
/** The tag of the unit used for this positions quantity. */
|
|
362
|
+
unitTag?: string | undefined;
|
|
363
|
+
/** The components for labour time in this Position. */
|
|
364
|
+
labourComponents?: LabourPriceComponentDto | undefined;
|
|
365
|
+
/** The single price components in this Position. Price components should not be handled directly on a per-position basis but set globally in the parent Projects ProjectInformation. */
|
|
366
|
+
priceComponents?: PriceComponentDto[] | undefined;
|
|
367
|
+
/** The quantity components of this Position. */
|
|
368
|
+
quantityComponents?: CalculationDto[] | undefined;
|
|
369
|
+
/** Further structuring of this Position. */
|
|
370
|
+
subDescriptions?: SubDescriptionDto[] | undefined;
|
|
371
|
+
/** Indicates the status of this Position's comission. */
|
|
372
|
+
comissionStatus?: ComissionStatusDto | undefined;
|
|
373
|
+
/** A list of positions that complement this Position. The positions are referenced by their GUIDs. It might be used together with ComplementedByQuantities in case that only a given quantity is complemented by positions. */
|
|
374
|
+
complementedBy?: string[] | undefined;
|
|
375
|
+
/** Will indicate if this Position is complemented in this ServiceSpecification by other Positions. It can not be set to false when there are entries in the ComplementedBy property. */
|
|
376
|
+
complemented?: boolean | undefined;
|
|
377
|
+
/** Indicates that the amount for this Position is to be set by the bidder. */
|
|
378
|
+
amountToBeEnteredByBidder?: boolean | undefined;
|
|
379
|
+
/** Indicates if the bidder demands for prices to be broken up into their price components. */
|
|
380
|
+
priceCompositionRequired?: boolean | undefined;
|
|
381
|
+
/** Indicates if this Position should use a different TaxRate than what is the default for the Project. */
|
|
382
|
+
useDifferentTaxRate?: boolean | undefined;
|
|
383
|
+
/** Will return either the parent ServiceSpecification's TaxRate or it's own if it has a different value. (For example, in Germany Water has a different TaxRate than regular Positions) */
|
|
384
|
+
taxRate?: number | undefined;
|
|
385
|
+
/** The ItemNumber for this Position. */
|
|
386
|
+
itemNumber?: ItemNumberDto | undefined;
|
|
387
|
+
/** The rate of deductions, i.e. 0.12m means 12% price deduction. */
|
|
388
|
+
deductionFactor?: number | undefined;
|
|
389
|
+
/** Returns the product of UnitPrice times Quantity. */
|
|
390
|
+
readonly totalPrice?: number | undefined;
|
|
391
|
+
/** The total gross price for this Position. */
|
|
392
|
+
readonly totalPriceGross?: number | undefined;
|
|
393
|
+
/** Total gross price after applied deductions. */
|
|
394
|
+
readonly totalPriceGrossDeducted?: number | undefined;
|
|
395
|
+
/** Net price after applied deductions. Please be aware that this is the total price, from TotalPrice, not the unit price of the position. */
|
|
396
|
+
readonly deductedPrice?: number | undefined;
|
|
397
|
+
/** This indicates the type of a position. If this is an alternative position, its AlternativeTo property should be set to the id of the position it can replace. */
|
|
398
|
+
positionType?: PositionTypeDto | undefined;
|
|
399
|
+
/** Indicates the PriceType of this Position. */
|
|
400
|
+
priceType?: PriceTypeDto | undefined;
|
|
401
|
+
/** This indicates if this position is regular or describing a labour / hourly paid work service */
|
|
402
|
+
serviceType?: ServiceTypeDto | undefined;
|
|
403
|
+
/** This property describes additional information about a product being used within this Position. For example, a pipe position, per length unit, could be composed of different pipe segments, fitting and other accessory articles. */
|
|
404
|
+
productData?: ProductDataDto | undefined;
|
|
405
|
+
/** Short description for this DescriptionBase element. */
|
|
406
|
+
shortText?: string | undefined;
|
|
407
|
+
/** Detailed description for this DescriptionBase element. When the HtmlLongText is set, this is automatically overwritten and filled with the appropriate plain text representation of the Html text. Vice versa, setting this property overrides the HtmlLongText. */
|
|
408
|
+
longText?: string | undefined;
|
|
409
|
+
/** This contains the Html representation of the Longtext. When the LongText is set, this is automatically overwritten and filled with the appropriate Html representation of the plaintext. Vice versa, setting this property overrides the LongText. GAEB 90 and GAEB 2000 exports do not support any image functionality. In GAEB XML, only images that use an embedded Base64 data uri are exported, regular url references are cleared before written out. */
|
|
410
|
+
htmlLongText?: string | undefined;
|
|
411
|
+
/** Indicates if this DescriptionBase element contains Buyer or Bidder additions to the text. */
|
|
412
|
+
additionType?: AdditionTypeDto | undefined;
|
|
413
|
+
elementType?: string | undefined;
|
|
414
|
+
/** Quantity assignments are, in contrast to SubDescriptions, used to categorize parts of this Position. For example, it could be categorized by cost group - e.g. a Position describing concrete walls could follow the German DIN 276 Cost Groups Standard and specify that of the total 1.000m² wall, 500m² are classified as exterior walls and 500m² are classified as interior walls. They would then have different cost groups associated, e.g. for accounting purposes. */
|
|
415
|
+
quantityAssignments?: QuantityAssignmentDto[] | undefined;
|
|
416
|
+
/** The CommerceProperties support specialized information that is only useful in GAEB XML 9x data exchange phases. It is intended to provide article information. */
|
|
417
|
+
commerceProperties?: CommercePropertiesDto | undefined;
|
|
418
|
+
/** If this position is an Alternative, then this property should point to the id of the position in this service specification that it can replace. If this is set to a value, you can optionally also specify an identifier via AlternativeIdentifier to specifiy multiple positions that must be used together to be an alternative to a single base position. */
|
|
419
|
+
alternativeTo?: string | undefined;
|
|
420
|
+
/** This is an optional property that can be used together with AlternativeTo. If this is set, you can indicate which alternative group a specific position is assigned to. That way, if you specifiy multiple alternative Positions with the same AlternativeIdentifier, you can indicate that to replace a single base Position, multiple alternative Positions should be used. This property is not checked or managed automatically, so it is possible for this property to become invalid, by for example setting this property but not setting a base position via AlternativeTo. */
|
|
421
|
+
alternativeIdentifier?: number | undefined;
|
|
422
|
+
/** This is an optional property that can be used together with AlternativeTo and AlternativeGroupIdentifier. If this is set, you can indicate which alternative group a specific position is assigned to. That way, you can specify the id (in integer format) for the alternative group this position belongs to. It's different to AlternativeIdentifier in that the other property describes the id of the group, while this property here describes the group itself. If a position only has set AlternativeGroupIdentifier but not AlternativeIdentifier, then it likely is a base position for a specific group. This was introduced in version v2.9.0 to be able to model both position and group ids for alternative group combinations. This property is not checked or managed automatically, so it is possible for this property to become invalid, by for example setting this property but not setting a base position via AlternativeTo. */
|
|
423
|
+
alternativeGroupIdentifier?: number | undefined;
|
|
424
|
+
/** If this is true, it indicates that the position is intended to be a lump sum, "Pauschal" in German. This means the position total price that is being invoiced should not depend on the actual quantity. In practice, partial invoices are still often used for partial services rendered. This property does not affect the price calculation for this position. Typically, the Quantity should be set to 1.0 when this flag is used. */
|
|
425
|
+
isLumpSum?: boolean | undefined;
|
|
426
|
+
/** This identifier can be used to point to the Id of a position in the same ServiceSpecification that acts as a base position. It matches "Bezugsposition" in GAEB. This can be used for positions that repeat partially or are linked together */
|
|
427
|
+
repetitionTo?: string | undefined;
|
|
428
|
+
v1CompatibilityPriceType?: string | undefined;
|
|
429
|
+
/** This represents a standardized description. This means that instead of solely relying on texts to describe a service, external standards and definitions are referenced for a common understanding. */
|
|
430
|
+
standardizedDescription?: StandardizedDescriptionDto | undefined;
|
|
431
|
+
/** This list contains references to positions that complement this one, additionally also specifying a quantity for which the addition is intended. This does not replace the ComplementedBy property and there are no automatic checks being done between these two properties, so it's up to the user code to ensure deletions (and additions, if desired) are performed for both properties. When copying withing keeping Ids, this list will not be part of the copy process, since it would only contain quantities without actual position references. Containers, however, will rebuild the list with updated position references when copying positions that contain entries here. */
|
|
432
|
+
complementedByQuantities?: ComplementedByQuantityDto[] | undefined;
|
|
433
|
+
/** This identifier can be used to point to the Id of an ExecutionDescription in the same ServiceSpecification. ExecutionDescriptions act as a way to centrally describe how positions should be executed in practice. Often, the position itself still has text of its own to highlight deviations from that or add more details. */
|
|
434
|
+
executionDescriptionReference?: string | undefined;
|
|
435
|
+
/** This indicates if a position has not been offered. This is typically only expected to be true when the exchange phase of the parent ServiceSpecification is Offer, and it means that the position has not been offered at all. */
|
|
436
|
+
notOffered?: boolean | undefined;
|
|
437
|
+
/** This class models special properties that only apply to some exchange scenarios where ÖNorm is used. It is special for Positions and extends the OenormProperties base class. */
|
|
438
|
+
oenormPositionProperties?: OenormPositionPropertiesDto | undefined;
|
|
439
|
+
/** This is an identifier specific for this description. Some exchange formats, like GAEB XML, use it to identify descriptions. It's different to an elements identifier in that it should only apply to the description component, meaning the text itself. */
|
|
440
|
+
descriptionId?: string | undefined;
|
|
441
|
+
/** This is a zero based hierarchy level. It's set automatically when used in the context of a Project, and can be used to identify the hierarchy level of the current element. */
|
|
442
|
+
hierarchyLevel?: number | undefined;
|
|
443
|
+
/** This indicates, if this element is part of an addendum an, if yes, with what status. */
|
|
444
|
+
addendumStatus?: AddendumStatusDto | undefined;
|
|
445
|
+
readonly hasBidderCommentInHtmlLongText?: boolean | undefined;
|
|
446
|
+
/** This property can optionally be used in GAEB exchange scenarios. It is only meaningful if this position itself is a complementing position, meaning if this position is marked in other positions in their ComplementedBy list. Then, it specifies how the complementing should be expressed in GAEB. By default, positions are always explicitly referenced, but other options are possible. Please also note that the Dangl.AVA.Converter package, which is used for GAEB exports, will check if the given type is valid in the current project configuration. If not, directly referenced positions will be used as fallback. */
|
|
447
|
+
gaebComplementingType?: PositionComplementingTypeDto | undefined;
|
|
448
|
+
/** HoldOut properties describe services that are to be provided and maintained for a specific time, e.g. fences on a construction site. */
|
|
449
|
+
holdOutProperties?: PositionHoldOutPropertiesDto | undefined;
|
|
450
|
+
/** This is an informational property, which directly holds a numerical value for an estimated quantity. It is not used for any price calculations. */
|
|
451
|
+
estimatedQuantity?: number | undefined;
|
|
452
|
+
/** This is an optional property that holds price catalogue data. These are prices that may represent an estimate, and they typically come from a price catalogue. */
|
|
453
|
+
priceCatalogueData?: PriceCatalogueDataDto | undefined;
|
|
454
|
+
/** If this is set to true, the ProjectCatalogues property will not be propagated to child elements. This is useful in mapping scenarios, where you want to disable propagation for multiple changes, and only enable it once you have mapped all properties. */
|
|
455
|
+
ignoreProjectCataloguePropagation?: boolean | undefined;
|
|
456
|
+
}
|
|
457
|
+
/** Based on the PriceComponent, this class is responsible for labour time components. */
|
|
458
|
+
export interface LabourPriceComponentDto {
|
|
459
|
+
/** The label associated with this price component. Will be taken from the parent Projects ProjectInformation. */
|
|
460
|
+
label?: string | undefined;
|
|
461
|
+
/** The total, calculated price of this component. Will multiply the calculated amount of hours with the ServiceSpecifications hourly wage rate. */
|
|
462
|
+
readonly price?: number | undefined;
|
|
463
|
+
/** The cost per hour of manual labor. */
|
|
464
|
+
hourlyWage?: number | undefined;
|
|
465
|
+
/** The single Calculation elements this price component is composed of. */
|
|
466
|
+
values?: CalculationDto[] | undefined;
|
|
467
|
+
/** Indicates if the ServiceSpecification's standard HourlyWage is to be used or a custom value. */
|
|
468
|
+
useOwnHourlyWage?: boolean | undefined;
|
|
469
|
+
/** The total, calculated time of this component. Will return the result rounded to three decimal places. */
|
|
470
|
+
readonly totalTime?: number | undefined;
|
|
471
|
+
/** These are Catalogues that are used within this PriceComponent. Catalogues are used to describe catalogues, or collections, that can be used to describe elements with commonly known properties. For example, QuantityAssignments use these to categorize themselves. They are propagate to all child elements, e.g. other containers and QuantityAssignments. In the context of a ServiceSpecification, all elements share the same instance of the collection. */
|
|
472
|
+
projectCatalogues?: CatalogueDto[] | undefined;
|
|
473
|
+
}
|
|
474
|
+
/** This class holds means to calculate mathematical expressions from given strings. */
|
|
475
|
+
export interface CalculationDto {
|
|
476
|
+
/** Descriptive text for this calculation. */
|
|
477
|
+
description?: string | undefined;
|
|
478
|
+
/** This Calculation's mathematical expression. Please note that thousands separators are not supported. Both comma and point will be treated as decimal separators. */
|
|
479
|
+
formula?: string | undefined;
|
|
480
|
+
/** The calculated result from the formula, 0 if invalid. */
|
|
481
|
+
readonly result?: number | undefined;
|
|
482
|
+
/** Whether the Formula is a valid expression. */
|
|
483
|
+
readonly valid?: boolean | undefined;
|
|
484
|
+
/** Will be -1 if the Formula is correct, else it will show the position in the formula where an error was encountered. This is a zero based index. */
|
|
485
|
+
readonly errorPositionInLine?: number | undefined;
|
|
486
|
+
/** These are Catalogues that are used within this Calculation. Catalogues are used to describe catalogues, or collections, that can be used to describe elements with commonly known properties. For example, QuantityAssignments use these to categorize themselves. They are propagate to all child elements, e.g. other containers and QuantityAssignments. In the context of a ServiceSpecification, all elements share the same instance of the collection. */
|
|
487
|
+
projectCatalogues?: CatalogueDto[] | undefined;
|
|
488
|
+
/** Referenced catalogues for this Calculation. */
|
|
489
|
+
catalogueReferences?: CatalogueReferenceDto[] | undefined;
|
|
490
|
+
}
|
|
491
|
+
/** This class provides means to store information about a price and it's composition. Note that this is referencing to a single price component, so for example a Position would have a list of PriceComponents, one for Material, one for Labour etc. */
|
|
492
|
+
export interface PriceComponentDto {
|
|
493
|
+
/** The total, calculated price of this component. */
|
|
494
|
+
readonly price?: number | undefined;
|
|
495
|
+
/** The label associated with this price component. Will be taken from the parent Projects ProjectInformation. */
|
|
496
|
+
label?: string | undefined;
|
|
497
|
+
/** The single Calculation elements this price component is composed of. */
|
|
498
|
+
values?: CalculationDto[] | undefined;
|
|
499
|
+
/** These are Catalogues that are used within this PriceComponent. Catalogues are used to describe catalogues, or collections, that can be used to describe elements with commonly known properties. For example, QuantityAssignments use these to categorize themselves. They are propagate to all child elements, e.g. other containers and QuantityAssignments. In the context of a ServiceSpecification, all elements share the same instance of the collection. */
|
|
500
|
+
projectCatalogues?: CatalogueDto[] | undefined;
|
|
501
|
+
}
|
|
502
|
+
/** This is appended to a Position and is used to separate the complete Position into smaller amounts to be described separately, for example concrete walls could be attached to different building storeys. */
|
|
503
|
+
export interface SubDescriptionDto {
|
|
504
|
+
/** Elements GUID identifier. */
|
|
505
|
+
id: string;
|
|
506
|
+
/** Returns the total calculated sum of all quantity assignments. Will return the result rounded to three decimal places. */
|
|
507
|
+
readonly quantity?: number | undefined;
|
|
508
|
+
/** You can use this property to directly set the quantity for this sub description. This will override any given QuantityComponents */
|
|
509
|
+
quantityOverride?: number | undefined;
|
|
510
|
+
/** Holds quantity information for this sub description. Quantity is listening to changes here and is reporting the total sum of all quantity components. */
|
|
511
|
+
quantityComponents?: CalculationDto[] | undefined;
|
|
512
|
+
/** Indicates if the bidder is asked to specify an amount. */
|
|
513
|
+
amountToBeEnteredByBidder?: boolean | undefined;
|
|
514
|
+
/** Identifier for this SubDescription. */
|
|
515
|
+
identifier?: string | undefined;
|
|
516
|
+
/** Short description for this DescriptionBase element. */
|
|
517
|
+
shortText?: string | undefined;
|
|
518
|
+
/** Detailed description for this DescriptionBase element. When the HtmlLongText is set, this is automatically overwritten and filled with the appropriate plain text representation of the Html text. Vice versa, setting this property overrides the HtmlLongText. */
|
|
519
|
+
longText?: string | undefined;
|
|
520
|
+
/** If this is given, then the sub description has a different unit tag than the parent position. */
|
|
521
|
+
unitTag?: string | undefined;
|
|
522
|
+
/** This contains the Html representation of the Longtext. When the LongText is set, this is automatically overwritten and filled with the appropriate Html representation of the plaintext. Vice versa, setting this property overrides the LongText. GAEB 90 and GAEB 2000 exports do not support any image functionality. In GAEB XML, only images that use an embedded Base64 data uri are exported, regular url references are cleared before written out. */
|
|
523
|
+
htmlLongText?: string | undefined;
|
|
524
|
+
/** Indicates if this DescriptionBase element contains Buyer or Bidder additions to the text. */
|
|
525
|
+
additionType?: AdditionTypeDto | undefined;
|
|
526
|
+
/** This represents a standardized description. This means that instead of solely relying on texts to describe a service, external standards and definitions are referenced for a common understanding. */
|
|
527
|
+
standardizedDescription?: StandardizedDescriptionDto | undefined;
|
|
528
|
+
/** This identifier can be used to point to the Id of an ExecutionDescription in the same ServiceSpecification. ExecutionDescriptions act as a way to centrally describe how positions (or sub descriptions) should be executed in practice. Often, the position (or sub description) itself still has text of its own to highlight deviations from that or add more details. When working with import and export features, this property is only supported in GAEB 90 data exchange. */
|
|
529
|
+
executionDescriptionReference?: string | undefined;
|
|
530
|
+
/** These are Catalogues that are used within this Calculation. Catalogues are used to describe catalogues, or collections, that can be used to describe elements with commonly known properties. For example, QuantityAssignments use these to categorize themselves. They are propagate to all child elements, e.g. other containers and QuantityAssignments. In the context of a ServiceSpecification, all elements share the same instance of the collection. */
|
|
531
|
+
projectCatalogues?: CatalogueDto[] | undefined;
|
|
532
|
+
/** This is an identifier specific for this description. Some exchange formats, like GAEB XML, use it to identify descriptions. It's different to an elements identifier in that it should only apply to the description component, meaning the text itself. */
|
|
533
|
+
descriptionId?: string | undefined;
|
|
534
|
+
readonly hasBidderCommentInHtmlLongText?: boolean | undefined;
|
|
535
|
+
elementType?: string | undefined;
|
|
536
|
+
elementTypeDiscriminator?: string | undefined;
|
|
537
|
+
}
|
|
538
|
+
/** Indicates the origin of an element. */
|
|
539
|
+
export declare enum AdditionTypeDto {
|
|
540
|
+
None = "None",
|
|
541
|
+
ByBuyer = "ByBuyer",
|
|
542
|
+
ByBidder = "ByBidder"
|
|
543
|
+
}
|
|
544
|
+
/** This class represents a standardized description. This means that instead of solely relying on texts to describe a service, external standards and definitions are referenced for a common understanding. */
|
|
545
|
+
export interface StandardizedDescriptionDto {
|
|
546
|
+
/** This enumeration identifies a pre-known standard used for referencing standardized descriptions. */
|
|
547
|
+
standardReferenceType?: StandardReferenceTypeDto | undefined;
|
|
548
|
+
/** This string property is the identifier to map to the references standard. Its type is given in the StandardReferenceType */
|
|
549
|
+
standardReference?: string | undefined;
|
|
550
|
+
/** This is a special reference to the German STLB "Standardleistungsbuch Bau" reference. If this is used, the StandardReference property should not be set. */
|
|
551
|
+
stlbReference?: STLBReferenceDto | undefined;
|
|
552
|
+
}
|
|
553
|
+
/** This enumeration identifies a pre-known standard used for referencing standardized descriptions. */
|
|
554
|
+
export declare enum StandardReferenceTypeDto {
|
|
555
|
+
Unknown = "Unknown",
|
|
556
|
+
StLB = "StLB",
|
|
557
|
+
StLK = "StLK",
|
|
558
|
+
STLBBauZ = "STLBBauZ"
|
|
559
|
+
}
|
|
560
|
+
/** This class represents a specialized reference to the German STLB "Standardleistungsbuch Bau". The STLB is a commercial offering and describes common services in the construction sector. When this is used, this describes the exact type of a service via a reference to this standard */
|
|
561
|
+
export interface STLBReferenceDto {
|
|
562
|
+
/** The date of the STLB version. Typically, only the Year and Month are used */
|
|
563
|
+
versionDate?: Date | undefined;
|
|
564
|
+
/** The name of the catalogue within the STLB */
|
|
565
|
+
catalogueName?: string | undefined;
|
|
566
|
+
/** The name of the group in STLB */
|
|
567
|
+
group?: string | undefined;
|
|
568
|
+
/** The cost group this service is associated with */
|
|
569
|
+
costGroup?: string | undefined;
|
|
570
|
+
/** The service area (or type) in the STLB */
|
|
571
|
+
serviceArea?: string | undefined;
|
|
572
|
+
/** These keys may optionally be used to further reference multiple, specific items within the STLB */
|
|
573
|
+
keys?: STLBKeyDto[] | undefined;
|
|
574
|
+
}
|
|
575
|
+
/** This class represents a single key reference within the German STLB "Standardleistungsbuch Bau" */
|
|
576
|
+
export interface STLBKeyDto {
|
|
577
|
+
/** This identifier is required and uniquely describes a single reference within the STLB standard. It maps to "ArtChrIdent" in GAEB XML */
|
|
578
|
+
artIdentifier?: number | undefined;
|
|
579
|
+
/** This optional index property further categorizes a single reference within the STLB standard. It maps to "ArtChIdx" in GAEB XML */
|
|
580
|
+
artIndex?: number | undefined;
|
|
581
|
+
/** This optional identifier further specifies the execution kind of the reference in the STLB standard. It maps to "ChVIdent" in GAEB XML */
|
|
582
|
+
kindIdentifier?: number | undefined;
|
|
583
|
+
}
|
|
584
|
+
/** Indicates if this service specification item is commissioned (and therefore should be executed), postponed for later or undefined. */
|
|
585
|
+
export declare enum ComissionStatusDto {
|
|
586
|
+
Undefined = "Undefined",
|
|
587
|
+
Commissioned = "Commissioned",
|
|
588
|
+
Postponed = "Postponed",
|
|
589
|
+
Removed = "Removed"
|
|
590
|
+
}
|
|
591
|
+
/** This class represents as identifier of a certain service specification's element and is uniquely within the service specification. */
|
|
592
|
+
export interface ItemNumberDto {
|
|
593
|
+
/** Elements GUID identifier. */
|
|
594
|
+
id: string;
|
|
595
|
+
/** Will return this ItemNumber as point delimited string. Will not distinguish between upper- and lowercase and return an all-lowercase representation. Will consider first numbers, then characters, e.g. 1a is considered preceding aa. Transformation to all lowercase can be configured in the ItemNumberSchema property. */
|
|
596
|
+
stringRepresentation?: string | undefined;
|
|
597
|
+
/** Indicates if the characters and the length of the Identifiers match the current ItemNumberSchema. */
|
|
598
|
+
readonly isSchemaCompliant?: boolean | undefined;
|
|
599
|
+
/** Used for representing and validating this ItemNumber. */
|
|
600
|
+
itemNumberSchema?: ItemNumberSchemaDto | undefined;
|
|
601
|
+
/** Collection of the single identifiers in this ItemNumber. P.e., "02.03.004" will have three elements "02", "03", and "004". Since ReadOnlyObservableCollection`1 does have the event set to protected, it can be accessed like this: (itemNumber.Identifiers as INotifyCollectionChanged).CollectionChanged */
|
|
602
|
+
identifiers?: string[] | undefined;
|
|
603
|
+
/** This indicates if this item number is at the lot level. Find out more about lots in the documentation. */
|
|
604
|
+
readonly isLot?: boolean | undefined;
|
|
605
|
+
/** This is a zero based hierarchy level. It's set automatically when used in the context of a Project, and can be used to identify the hierarchy level of the current element. */
|
|
606
|
+
hierarchyLevel?: number | undefined;
|
|
607
|
+
/** This property indicates if this ItemNumber is attached to an object of the Position type. */
|
|
608
|
+
readonly isAttachedToPosition?: boolean | undefined;
|
|
609
|
+
itemNumberSchemaBeforeMapping?: ItemNumberSchemaDto | undefined;
|
|
610
|
+
}
|
|
611
|
+
/** This is a classification for Position elements. */
|
|
612
|
+
export declare enum PositionTypeDto {
|
|
613
|
+
Regular = "Regular",
|
|
614
|
+
Optional = "Optional",
|
|
615
|
+
Alternative = "Alternative"
|
|
616
|
+
}
|
|
617
|
+
/** This indicates the price type of a IPricedElement. */
|
|
618
|
+
export declare enum PriceTypeDto {
|
|
619
|
+
WithTotal = "WithTotal",
|
|
620
|
+
WithoutTotal = "WithoutTotal"
|
|
621
|
+
}
|
|
622
|
+
/** The service type describes the type of service a Position represents. */
|
|
623
|
+
export declare enum ServiceTypeDto {
|
|
624
|
+
Regular = "Regular",
|
|
625
|
+
HourlyPaidWork = "HourlyPaidWork"
|
|
626
|
+
}
|
|
627
|
+
/** This class represents data about products and their vendor */
|
|
628
|
+
export interface ProductDataDto {
|
|
629
|
+
/** Elements GUID identifier. */
|
|
630
|
+
id: string;
|
|
631
|
+
/** This PartyInformation is used to describe details about the vendor of this ProductData. */
|
|
632
|
+
vendor?: PartyInformationDto | undefined;
|
|
633
|
+
/** The collection of ArticleData that describe this product, e.g. a pipe product could be composed out of multiple pipe segments and fittings. */
|
|
634
|
+
articles?: ArticleDataDto[] | undefined;
|
|
635
|
+
/** Short description for this ITextElement element. */
|
|
636
|
+
shortText?: string | undefined;
|
|
637
|
+
/** Detailed description for this ITextElement element. When the HtmlLongText is set, this is automatically overwritten and filled with the appropriate plain text representation of the Html text. Vice versa, setting this property overrides the HtmlLongText. */
|
|
638
|
+
longText?: string | undefined;
|
|
639
|
+
/** This contains the Html representation of the Longtext. When the LongText is set, this is automatically overwritten and filled with the appropriate Html representation of the plaintext. Vice versa, setting this property overrides the LongText. GAEB 90 and GAEB 2000 exports do not support any image functionality. In GAEB XML, only images that use an embedded Base64 data uri are exported, regular url references are cleared before written out. */
|
|
640
|
+
htmlLongText?: string | undefined;
|
|
641
|
+
}
|
|
642
|
+
/** This class represents a single article, usually used within ProductData */
|
|
643
|
+
export interface ArticleDataDto {
|
|
644
|
+
/** Elements GUID identifier. */
|
|
645
|
+
id: string;
|
|
646
|
+
/** The name (or brand name) for this article, usually given by the supplier or vendor. */
|
|
647
|
+
name?: string | undefined;
|
|
648
|
+
/** An article number that describes it, useful when integrating other systems. */
|
|
649
|
+
articleNumber?: string | undefined;
|
|
650
|
+
/** Quantity for this article. If this is used within a Position, the quantity here should be the quantity required for the full quantity of the position, not for a single unit. */
|
|
651
|
+
quantity?: number | undefined;
|
|
652
|
+
/** The unit tag for this single ArticleData. */
|
|
653
|
+
unitTag?: string | undefined;
|
|
654
|
+
/** This is an optional text element that can be used to further describe the ArticleData. */
|
|
655
|
+
description?: string | undefined;
|
|
656
|
+
/** Short description for this ITextElement element. */
|
|
657
|
+
shortText?: string | undefined;
|
|
658
|
+
/** Detailed description for this ITextElement element. When the HtmlLongText is set, this is automatically overwritten and filled with the appropriate plain text representation of the Html text. Vice versa, setting this property overrides the HtmlLongText. */
|
|
659
|
+
longText?: string | undefined;
|
|
660
|
+
/** This contains the Html representation of the Longtext. When the LongText is set, this is automatically overwritten and filled with the appropriate Html representation of the plaintext. Vice versa, setting this property overrides the LongText. GAEB 90 and GAEB 2000 exports do not support any image functionality. In GAEB XML, only images that use an embedded Base64 data uri are exported, regular url references are cleared before written out. */
|
|
661
|
+
htmlLongText?: string | undefined;
|
|
662
|
+
}
|
|
663
|
+
/** Quantity assignments are, in contrast to SubDescriptions, used to categorize parts of their parent Position. For example, it could be categorized by cost group - e.g. a Position describing concrete walls could follow the German DIN 276 Cost Groups Standard and specify that of the total 1.000m² wall, 500m² are classified as exterior walls and 500m² are classified as interior walls. They would then have different cost groups associated, e.g. for accounting purposes. */
|
|
664
|
+
export interface QuantityAssignmentDto {
|
|
665
|
+
/** Elements GUID identifier. */
|
|
666
|
+
id: string;
|
|
667
|
+
/** The total quantity in this quantity assignment */
|
|
668
|
+
quantity?: number | undefined;
|
|
669
|
+
/** These are Catalogue that are used within this ServiceSpecification. Catalogue references are used to describe catalogues, or collections, that can be used to describe elements with commonly known properties. For example, QuantityAssignments use these to categorize themselves. */
|
|
670
|
+
projectCatalogues?: CatalogueDto[] | undefined;
|
|
671
|
+
/** Referenced catalogues for this QuantityAssignment. */
|
|
672
|
+
catalogueReferences?: CatalogueReferenceDto[] | undefined;
|
|
673
|
+
}
|
|
674
|
+
/** This class holds specialized information that is relevant to trade or commerce based data exchange scenarios, e.g. between customers, vendors, suppliers and distributors. It is used when exporting to GAEB XML 9x exchange phases. */
|
|
675
|
+
export interface CommercePropertiesDto {
|
|
676
|
+
/** This maps to ArtNo in GAEB XML and represents an article number given by the supplier. */
|
|
677
|
+
articleNumber?: string | undefined;
|
|
678
|
+
/** This maps to EAN in GAEB XML and represents an GTIN (formerly EAN) article number. */
|
|
679
|
+
eanGtinArticleNumber?: string | undefined;
|
|
680
|
+
/** This maps to ArtNoID in GAEB XML and represents an ILN article number. */
|
|
681
|
+
ilnArticleNumber?: string | undefined;
|
|
682
|
+
/** This maps to CatalogNo in GAEB XML and represents an identifier of a specific catalogue. The referenced catalogue is usually a customer specific one, not related to CatalogueReferences. */
|
|
683
|
+
catalogueNumber?: string | undefined;
|
|
684
|
+
/** This maps to CatalogArtNo in GAEB XML and represents a key that maps to an entry in a specific catalogue. The referenced catalogue is usually a customer specific one, not related to CatalogueReferences. */
|
|
685
|
+
catalogueArticleNumber?: string | undefined;
|
|
686
|
+
/** This optional property can be used to indicate the basis for prices for a single position. Price basis means that the price is given per unit of the basis, e.g. per a pack of five when this property is set to '5'. */
|
|
687
|
+
priceBasis?: number | undefined;
|
|
688
|
+
/** This optional property can be used to indicate a sub position identifier specific for the commerce exchange */
|
|
689
|
+
subPositionIdentifier?: string | undefined;
|
|
690
|
+
/** In a commerce exchange, this property is usually used to reference the base item number of an underlying phase 83 exchange file */
|
|
691
|
+
customerBaseItemNumber?: string | undefined;
|
|
692
|
+
}
|
|
693
|
+
/** This class represents the linking to a complementary position with a specific quantity set. For example, Position 'A' could be complementing Position 'B' with a total quantity of 20 units */
|
|
694
|
+
export interface ComplementedByQuantityDto {
|
|
695
|
+
/** The quantity that is complemented. E.g., if the base position has a quantity of 100 m² of a brick wall, a complementing position might be for 'walls that exceed 3 m height' and for a total quantity of 10 m². */
|
|
696
|
+
quantity?: number | undefined;
|
|
697
|
+
/** This is the reference to the Id of the Position that is complementing. This means it does NOT reference the base position but the one that contains the actual addition. */
|
|
698
|
+
complementingPositionId?: string | undefined;
|
|
699
|
+
}
|
|
700
|
+
/** This class models special properties that only apply to some exchange scenarios where ÖNorm is used. It is special for Positions and extends the OenormProperties base class. */
|
|
701
|
+
export interface OenormPositionPropertiesDto {
|
|
702
|
+
/** This indicates where the content of this element originates, if set. It corresponds to 'herkunftskennzeichen' in ÖNorm */
|
|
703
|
+
originCode?: OenormOriginCodeDto | undefined;
|
|
704
|
+
/** This marks if the opening texts within this element are considered free text. It corresponds to 'vorbemerkungskennzeichen' in ÖNorm. */
|
|
705
|
+
openingTextIsFreeText?: boolean | undefined;
|
|
706
|
+
/** This indicates if the ÖNorm 'wesentliche position' mark is set */
|
|
707
|
+
isMainPosition?: boolean | undefined;
|
|
708
|
+
/** This indicates if the ÖNorm position was a 'ungeteilteposition' (undivided position). This will only be taken into account when the position is also the sole element inside it's parent group */
|
|
709
|
+
isUndividedPosition?: boolean | undefined;
|
|
710
|
+
/** In some ÖNorm formats, the short text can have it's own addition, so the text is split up in OenormShortText and OenormShortTextAddition To serialize this, either the ShortText property of the parent position needs to be null, or OenormShortText ' ' OenormShortTextAddition needs to match the ShortText. */
|
|
711
|
+
oenormShortText?: string | undefined;
|
|
712
|
+
/** In some ÖNorm formats, the short text can have it's own addition, so the text is split up in OenormShortText and OenormShortTextAddition To serialize this, either the ShortText property of the parent position needs to be null, or OenormShortText ' ' OenormShortTextAddition needs to match the ShortText. */
|
|
713
|
+
oenormShortTextAddition?: string | undefined;
|
|
714
|
+
}
|
|
715
|
+
/** This indicates where the content of this element originates, if set. It corresponds to 'herkunftskennzeichen' in ÖNorm */
|
|
716
|
+
export declare enum OenormOriginCodeDto {
|
|
717
|
+
Unknown = "Unknown",
|
|
718
|
+
FreeText = "FreeText",
|
|
719
|
+
AdditionDescription = "AdditionDescription"
|
|
720
|
+
}
|
|
721
|
+
/** This enumeration represents the status of an addendum, 'Nachtrag' in German */
|
|
722
|
+
export declare enum AddendumStatusDto {
|
|
723
|
+
Unknown = "Unknown",
|
|
724
|
+
Recognized = "Recognized",
|
|
725
|
+
Filed = "Filed",
|
|
726
|
+
Offered = "Offered",
|
|
727
|
+
Withdrawn = "Withdrawn",
|
|
728
|
+
Rejected = "Rejected",
|
|
729
|
+
RejectionObjected = "RejectionObjected",
|
|
730
|
+
FormallyAcknowledged = "FormallyAcknowledged",
|
|
731
|
+
Approved = "Approved"
|
|
732
|
+
}
|
|
733
|
+
/** This enum represents the different ways in which a complementing position type can be specified. It is typically only used in GAEB exports, since in Dangl.AVA, complementing positions are always explicitly referenced. */
|
|
734
|
+
export declare enum PositionComplementingTypeDto {
|
|
735
|
+
Undefined = "Undefined",
|
|
736
|
+
AllPreviousMarkedPositions = "AllPreviousMarkedPositions",
|
|
737
|
+
AllPreviousPositions = "AllPreviousPositions",
|
|
738
|
+
ReferencedPositions = "ReferencedPositions"
|
|
739
|
+
}
|
|
740
|
+
/** This class holds properties that describe retention types in position. Retention / hold out usually means that a service is provided and kept available for a specific amount of time, e.g. fences on a construction site */
|
|
741
|
+
export interface PositionHoldOutPropertiesDto {
|
|
742
|
+
/** Elements GUID identifier. */
|
|
743
|
+
id: string;
|
|
744
|
+
/** The actual type */
|
|
745
|
+
holdOutType?: HoldOutTypeDto | undefined;
|
|
746
|
+
/** The duration of the period */
|
|
747
|
+
holdOutDuration?: number | undefined;
|
|
748
|
+
/** The time unit of the period */
|
|
749
|
+
holdOutDurationUnit?: HoldOutDurationUnitDto | undefined;
|
|
750
|
+
/** References to base positions */
|
|
751
|
+
basePositionReferences?: string[] | undefined;
|
|
752
|
+
}
|
|
753
|
+
/** Types of retentions to be used in positions */
|
|
754
|
+
export declare enum HoldOutTypeDto {
|
|
755
|
+
Unknown = "Unknown",
|
|
756
|
+
Base = "Base",
|
|
757
|
+
Extension = "Extension",
|
|
758
|
+
Rent = "Rent"
|
|
759
|
+
}
|
|
760
|
+
/** Duration used in retention positions */
|
|
761
|
+
export declare enum HoldOutDurationUnitDto {
|
|
762
|
+
Unknown = "Unknown",
|
|
763
|
+
Minutes = "Minutes",
|
|
764
|
+
Hours = "Hours",
|
|
765
|
+
Days = "Days",
|
|
766
|
+
Weeks = "Weeks",
|
|
767
|
+
Months = "Months"
|
|
768
|
+
}
|
|
769
|
+
/** Price catalogue data represents assumed or estimated prices from a catalogue source */
|
|
770
|
+
export interface PriceCatalogueDataDto {
|
|
771
|
+
/** Elements GUID identifier. */
|
|
772
|
+
id: string;
|
|
773
|
+
/** The lower bound of the unit price */
|
|
774
|
+
unitPriceFrom?: number | undefined;
|
|
775
|
+
/** The upper bound of the unit price */
|
|
776
|
+
unitPriceTo?: number | undefined;
|
|
777
|
+
/** The average unit price */
|
|
778
|
+
unitPriceAverage?: number | undefined;
|
|
779
|
+
/** The lower bound of the wage price */
|
|
780
|
+
wagePriceFrom?: number | undefined;
|
|
781
|
+
/** The upper bound of the wage price */
|
|
782
|
+
wagePriceTo?: number | undefined;
|
|
783
|
+
/** The average wage price */
|
|
784
|
+
wagePriceAverage?: number | undefined;
|
|
785
|
+
}
|
|
786
|
+
/** An ExecutionDescription is used to give more details for certain items, especially on how they are meant to be executed. */
|
|
787
|
+
export interface ExecutionDescriptionDto extends IElementDto {
|
|
788
|
+
/** Blocks within an ExecutionDescription contain the actual information. */
|
|
789
|
+
blocks?: NoteTextDto[] | undefined;
|
|
790
|
+
/** Labels this ExecutionDescription. */
|
|
791
|
+
label?: string | undefined;
|
|
792
|
+
/** Uniquely identifies this ExecutionDescription. */
|
|
793
|
+
identifier?: string | undefined;
|
|
794
|
+
elementType?: string | undefined;
|
|
795
|
+
}
|
|
796
|
+
/** Represents an element that holds text information. */
|
|
797
|
+
export interface NoteTextDto extends IElementDto {
|
|
798
|
+
/** If this is set to true, this text is meant to not be seen as part of the regular elements hierarchy but as a special opening text at the beginning of the project. For example, in GAEB XML, this would map to the GAEB.Award.AddText. Typically, such texts describe project-wide contractual definitions. If this is set to true, this NoteText should be placed at the top of the elements hierarchy directly in the ServiceSpecification.Elements group, otherwise it will likely not be treated correctly when exporting to GAEB. You can only set IsOpeningText or IsClosingText to true. */
|
|
799
|
+
isOpeningText?: boolean | undefined;
|
|
800
|
+
/** If this is set to true, this text is meant to not be seen as part of the regular elements hierarchy but as a special closing text at the end of the project. For Example, in GAEB XML, this would map to the GAEB.AddText. Typically, such texts are used to describe project wide finishing descriptions. If this is set to true, this NoteText should be placed at the top of the elements hierarchy directly in the ServiceSpecification.Elements group, otherwise it will likely not be treated correctly when exporting to GAEB. You can only set IsOpeningText or IsClosingText to true. */
|
|
801
|
+
isClosingText?: boolean | undefined;
|
|
802
|
+
/** Short description for this DescriptionBase element. */
|
|
803
|
+
shortText?: string | undefined;
|
|
804
|
+
/** Indicates if this DescriptionBase element contains Buyer or Bidder additions to the text. */
|
|
805
|
+
additionType?: AdditionTypeDto | undefined;
|
|
806
|
+
/** Detailed description for this DescriptionBase element. When the HtmlLongText is set, this is automatically overwritten and filled with the appropriate plain text representation of the Html text. Vice versa, setting this property overrides the HtmlLongText. */
|
|
807
|
+
longText?: string | undefined;
|
|
808
|
+
/** This contains the Html representation of the Longtext. When the LongText is set, this is automatically overwritten and filled with the appropriate Html representation of the plaintext. Vice versa, setting this property overrides the LongText. GAEB 90 and GAEB 2000 exports do not support any image functionality. In GAEB XML, only images that use an embedded Base64 data uri are exported, regular url references are cleared before written out. */
|
|
809
|
+
htmlLongText?: string | undefined;
|
|
810
|
+
/** This is an optional internal identifier that may be used to add additional information to this NoteText. It is not supported in GAEB import or export. */
|
|
811
|
+
identifier?: string | undefined;
|
|
812
|
+
/** This represents a standardized description. This means that instead of solely relying on texts to describe a service, external standards and definitions are referenced for a common understanding. */
|
|
813
|
+
standardizedDescription?: StandardizedDescriptionDto | undefined;
|
|
814
|
+
elementType?: string | undefined;
|
|
815
|
+
/** This is an identifier specific for this description. Some exchange formats, like GAEB XML, use it to identify descriptions. It's different to an elements identifier in that it should only apply to the description component, meaning the text itself. */
|
|
816
|
+
descriptionId?: string | undefined;
|
|
817
|
+
/** This class models special properties that only apply to some exchange scenarios where ÖNorm is used. It is special for NoteTexts. */
|
|
818
|
+
oenormNoteTextProperties?: OenormNoteTextPropertiesDto | undefined;
|
|
819
|
+
readonly hasBidderCommentInHtmlLongText?: boolean | undefined;
|
|
820
|
+
}
|
|
821
|
+
/** This class models special properties that only apply to some exchange scenarios where ÖNorm is used. It is special for NoteTexts. */
|
|
822
|
+
export interface OenormNoteTextPropertiesDto {
|
|
823
|
+
/** This indicates where the content of this element originates, if set. It corresponds to 'herkunftskennzeichen' in ÖNorm */
|
|
824
|
+
originCode?: OenormOriginCodeDto | undefined;
|
|
825
|
+
}
|
|
826
|
+
/** This is a grouping IElement that holds other IElements within. */
|
|
827
|
+
export interface ServiceSpecificationGroupDto extends IElementDto {
|
|
828
|
+
/** The hourly wage that is used within this ElementContainerBase. Will be propagated to child elements. */
|
|
829
|
+
readonly projectHourlyWage?: number | undefined;
|
|
830
|
+
/** The tax rate that is used within this ElementContainerBase. Will be propagated to child elements. */
|
|
831
|
+
projectTaxRate?: number | undefined;
|
|
832
|
+
/** The price components that are used within this project. They are ignored during Json deserialization because they will be set from the parent project. */
|
|
833
|
+
projectPriceComponents?: string[] | undefined;
|
|
834
|
+
/** The ItemNumberSchema that is used within this project. */
|
|
835
|
+
projectItemNumberSchema?: ItemNumberSchemaDto | undefined;
|
|
836
|
+
/** The IElements within this ElementContainerBase. */
|
|
837
|
+
elements?: IElementDto[] | undefined;
|
|
838
|
+
/** The label used in the parent Project to mark labour time, e.g. "Hours" or "Stunden". */
|
|
839
|
+
readonly projectLabourTimeLabel?: string | undefined;
|
|
840
|
+
/** Indicates if there are child IElements that have conflicting, duplicated ItemNumbers or if any child ElementContainerBase elements themselves contain duplicate ItemNumber s. Will always indicate false when told to ignore duplicate item numbers. */
|
|
841
|
+
readonly containsDuplicateItemNumbers?: boolean | undefined;
|
|
842
|
+
/** Indicates if there are child IElements that have conflicting, duplicated Ids or if any child ElementContainerBase elements themselves contain duplicate Id s. Will always indicate false when told to ignore duplicate item numbers. */
|
|
843
|
+
readonly containsDuplicateElementIds?: boolean | undefined;
|
|
844
|
+
/** Indicate if duplicated ItemNumbers within child elements are to be ignored. Will not perform checks for duplicates if yes. */
|
|
845
|
+
ignoreDuplicateItemNumbers?: boolean | undefined;
|
|
846
|
+
/** If this is set to true, the ProjectCatalogues property will not be propagated to child elements. This is useful in mapping scenarios, where you want to disable propagation for multiple changes, and only enable it once you have mapped all properties */
|
|
847
|
+
ignoreProjectCataloguePropagation?: boolean | undefined;
|
|
848
|
+
/** Indicate if duplicated Ids within child elements are to be ignored. Will not perform checks for duplicates if yes. */
|
|
849
|
+
ignoreDuplicateElementIds?: boolean | undefined;
|
|
850
|
+
/** Price composition by tax rate. */
|
|
851
|
+
totalPriceGrossByTaxRate?: GrossPriceComponentDto[] | undefined;
|
|
852
|
+
/** Internally used to indicate that a propagation is currently done, this is done to not recalculate every single result from a lot of changes when it is sufficient to calculate the total price at once. */
|
|
853
|
+
ignoreChildPriceUpdates?: boolean | undefined;
|
|
854
|
+
/** Net price after applied deductions. */
|
|
855
|
+
readonly deductedPrice?: number | undefined;
|
|
856
|
+
/** Factor of applied deductions to the total price. For example, "0.03" means that a 3% deduction is to be applied. */
|
|
857
|
+
deductionFactor?: number | undefined;
|
|
858
|
+
/** The exact amount of the discount as an absolute value. For backwards compatibility reasons, setting this value will also set a calculated value to DeductionFactor, which will also be updated in case the total price is changed to reflect a relative value of the absolute discount sum. */
|
|
859
|
+
absoluteDeduction?: number | undefined;
|
|
860
|
+
/** Will return this ElementContainerBase's total price. */
|
|
861
|
+
readonly totalPrice?: number | undefined;
|
|
862
|
+
/** The total gross price for this ElementContainerBase including all child elements. */
|
|
863
|
+
readonly totalPriceGross?: number | undefined;
|
|
864
|
+
/** Total gross price after applied deductions. */
|
|
865
|
+
readonly totalPriceGrossDeducted?: number | undefined;
|
|
866
|
+
/** Indicates the PriceType of this ElementContainerBase, whether it should factor into total costs or not. */
|
|
867
|
+
priceType?: PriceTypeDto | undefined;
|
|
868
|
+
/** Description for this ServiceSpecificationGroup. */
|
|
869
|
+
shortText?: string | undefined;
|
|
870
|
+
/** Indicates if this service specification group is commissioned (and therefore should be executed), postponed for later or undefined. */
|
|
871
|
+
comissionStatus?: ComissionStatusDto | undefined;
|
|
872
|
+
/** The ItemNumber for this INumberedElement interface. */
|
|
873
|
+
itemNumber?: ItemNumberDto | undefined;
|
|
874
|
+
elementType?: string | undefined;
|
|
875
|
+
/** This indicates if this group is the parent of a lot. See the documentation for more information about working with lots. */
|
|
876
|
+
readonly isLot?: boolean | undefined;
|
|
877
|
+
/** If this group is an alternative for a base group, then this property should point to the id of the group in this service specification that it can replace. If this is an alternative group to a base group, the PriceType should typically be set to "WithoutTotal" so this group does not factor into total costs. The PriceType is not changed when this property is set */
|
|
878
|
+
alternativeTo?: string | undefined;
|
|
879
|
+
v1CompatibilityPriceType?: string | undefined;
|
|
880
|
+
/** This class models special properties that only apply to some exchange scenarios where ÖNorm is used. */
|
|
881
|
+
oenormProperties?: OenormPropertiesDto | undefined;
|
|
882
|
+
/** This is a zero based hierarchy level. It's set automatically when used in the context of a Project, and can be used to identify the hierarchy level of the current element. */
|
|
883
|
+
hierarchyLevel?: number | undefined;
|
|
884
|
+
/** This indicates, if this element is part of an addendum an, if yes, with what status. */
|
|
885
|
+
addendumStatus?: AddendumStatusDto | undefined;
|
|
886
|
+
/** This is internally used during mapping operations to temporarily hold information about removed ItemNumberSchemas. Those schemas are set to null during the mapping process to ensure that schemas in elements higher up in the hierarchy are correctly passed down to child elements. */
|
|
887
|
+
itemNumberSchemaMappingOperation?: ItemNumberSchemaMappingOperation | undefined;
|
|
888
|
+
/** This is an optional property that can be used together with AlternativeTo. If this is set, you can indicate which alternative group a specific group is assigned to. That way, if you specifiy multiple alternative ServiceSpecificationGroups with the same AlternativeIdentifier, you can indicate that to replace a single base ServiceSpecificationGroup, multiple alternative ServiceSpecificationGroups should be used. This property is not checked or managed automatically, so it is possible for this property to become invalid, by for example setting this property but not setting a base group via AlternativeTo. */
|
|
889
|
+
alternativeIdentifier?: number | undefined;
|
|
890
|
+
/** This is an optional property that can be used together with AlternativeTo and AlternativeGroupIdentifier. If this is set, you can indicate which alternative group a specific group is assigned to. That way, you can specify the id (in integer format) for the alternative group this group belongs to. It's different to AlternativeIdentifier in that the other property describes the id of the group, while this property here describes the group itself. If a group only has set AlternativeGroupIdentifier but not AlternativeIdentifier, then it likely is a base group for a specific group. This property is not checked or managed automatically, so it is possible for this property to become invalid, by for example setting this property but not setting a base group via AlternativeTo. */
|
|
891
|
+
alternativeGroupIdentifier?: number | undefined;
|
|
892
|
+
}
|
|
893
|
+
/** This is used in an ElementContainerBase to hold the price composition. */
|
|
894
|
+
export interface GrossPriceComponentDto {
|
|
895
|
+
/** This components tax rate. */
|
|
896
|
+
taxRate?: number | undefined;
|
|
897
|
+
/** This is the factor of applied deductions for this component */
|
|
898
|
+
deductionFactor?: number | undefined;
|
|
899
|
+
/** The total net price for all components of a given tax rate. */
|
|
900
|
+
totalNet?: number | undefined;
|
|
901
|
+
/** The resulting price component after applied deductions */
|
|
902
|
+
readonly totalDeducted?: number | undefined;
|
|
903
|
+
/** The total tax amount for all components of a given tax rate. */
|
|
904
|
+
readonly totalTax?: number | undefined;
|
|
905
|
+
/** The total gross price for all components of a given tax rate. */
|
|
906
|
+
readonly totalGross?: number | undefined;
|
|
907
|
+
/** The total gross price for all components of a given tax rate, after applied deductions. */
|
|
908
|
+
readonly totalGrossDeducted?: number | undefined;
|
|
909
|
+
/** The total tax amount for all components of a given tax rate, after applied deductions. */
|
|
910
|
+
readonly totalTaxDeducted?: number | undefined;
|
|
911
|
+
}
|
|
912
|
+
/** This class models special properties that only apply to some exchange scenarios where ÖNorm is used. */
|
|
913
|
+
export interface OenormPropertiesDto {
|
|
914
|
+
/** This indicates where the content of this element originates, if set. It corresponds to 'herkunftskennzeichen' in ÖNorm */
|
|
915
|
+
originCode?: OenormOriginCodeDto | undefined;
|
|
916
|
+
/** This marks if the opening texts within this element are considered free text. It corresponds to 'vorbemerkungskennzeichen' in ÖNorm. */
|
|
917
|
+
openingTextIsFreeText?: boolean | undefined;
|
|
918
|
+
}
|
|
919
|
+
/** This abstract class is used internally to hold results about an item number schema removal operation. Item number schemas are removed during the mapping process to allow top-down propagation after conversion, but are then added back to the DTOs to preserve the original source. */
|
|
920
|
+
export interface ItemNumberSchemaMappingOperation {
|
|
921
|
+
}
|
|
922
|
+
/** Indicates a ServiceSpecification's exchange phase, based on the GAEB exchange phases. */
|
|
923
|
+
export declare enum ExchangePhaseDto {
|
|
924
|
+
Undefined = "Undefined",
|
|
925
|
+
Base = "Base",
|
|
926
|
+
CostEstimate = "CostEstimate",
|
|
927
|
+
OfferRequest = "OfferRequest",
|
|
928
|
+
Offer = "Offer",
|
|
929
|
+
SideOffer = "SideOffer",
|
|
930
|
+
Grant = "Grant"
|
|
931
|
+
}
|
|
932
|
+
/** Indicates where a service specification was originally created. */
|
|
933
|
+
export declare enum OriginDto {
|
|
934
|
+
Self = "Self",
|
|
935
|
+
Gaeb90 = "Gaeb90",
|
|
936
|
+
Gaeb2000 = "Gaeb2000",
|
|
937
|
+
GaebXml = "GaebXml",
|
|
938
|
+
Oenorm = "Oenorm",
|
|
939
|
+
Reb = "Reb",
|
|
940
|
+
Sia = "Sia"
|
|
941
|
+
}
|
|
942
|
+
/** Holds global price information for a ServiceSpecification */
|
|
943
|
+
export interface PriceInformationDto {
|
|
944
|
+
/** Elements GUID identifier. */
|
|
945
|
+
id: string;
|
|
946
|
+
/** The amount of currency per one hour of manual labour work in this project. */
|
|
947
|
+
hourlyWage?: number | undefined;
|
|
948
|
+
/** The final, total price will be deducted by this rate. */
|
|
949
|
+
deductionFactor?: number | undefined;
|
|
950
|
+
/** This is given when there is only one flat price for the whole service specification. */
|
|
951
|
+
flatSum?: number | undefined;
|
|
952
|
+
/** Global tax rate for the project. Note that certain elements may have a different, specific tax rate. */
|
|
953
|
+
taxRate?: number | undefined;
|
|
954
|
+
/** This property indicates if the TaxRate property is actually zero (0) or if it's just unset. The TaxRate is a non-nullable property, so it can't be null and therefore a distinction between unset and zero relies on this additional property. When exporting to GAEB, this can be used e.g. to decide whether or not the tax rate should be serialized. This property is automtically set to false when the TaxRate is set to any value, even zero. If the TaxRate is not set to zero, this property will always return false and can not be set to true. */
|
|
955
|
+
hasUnsetTaxRate?: boolean | undefined;
|
|
956
|
+
/** Trade discounts for offered in this ServiceSpecification. */
|
|
957
|
+
tradeDiscounts?: TradeDiscountDto[] | undefined;
|
|
958
|
+
}
|
|
959
|
+
/** This class holds information about offered trade discounts (Skonto in German) */
|
|
960
|
+
export interface TradeDiscountDto {
|
|
961
|
+
/** Elements GUID identifier. */
|
|
962
|
+
id: string;
|
|
963
|
+
/** The amount of days for how long a declared trade discount applies. Must be a positive number, negative values will be ignored and not set. */
|
|
964
|
+
deadline?: number | undefined;
|
|
965
|
+
/** The rate of the trade discount. */
|
|
966
|
+
rate?: number | undefined;
|
|
967
|
+
}
|
|
968
|
+
/** This class does not represent a typical `TimeSpan` but has a scalar value int Duration and a DurationUnit Unit to represent durations as typically used in contracts, e.g. 5 Months */
|
|
969
|
+
export interface WarrantyDurationDto {
|
|
970
|
+
/** The scalar value of the duration. This value must be equal to or bigger than zero (>= 0). Negative values can not be set and will be ignored. */
|
|
971
|
+
duration?: number | undefined;
|
|
972
|
+
/** The unit of the duration */
|
|
973
|
+
unit?: DurationUnitDto | undefined;
|
|
974
|
+
}
|
|
975
|
+
/** This enumeration represents the unit of a duration */
|
|
976
|
+
export declare enum DurationUnitDto {
|
|
977
|
+
Months = "Months",
|
|
978
|
+
Years = "Years"
|
|
979
|
+
}
|
|
980
|
+
/** This class represents properties used in commerce exchange scenarios */
|
|
981
|
+
export interface ServiceSpecificationCommercePropertiesDto {
|
|
982
|
+
/** The date until the price is valid or fixed. */
|
|
983
|
+
fixedPriceDate?: Date | undefined;
|
|
984
|
+
/** The date of the delivery voucher note. */
|
|
985
|
+
deliveryVoucherDate?: Date | undefined;
|
|
986
|
+
/** The actual date of delivery. */
|
|
987
|
+
deliveryDate?: Date | undefined;
|
|
988
|
+
/** The number of the inquiry, usually in a context of offer requests. */
|
|
989
|
+
inquiryNumber?: string | undefined;
|
|
990
|
+
/** The number of the offer, usually in a context of an offer. */
|
|
991
|
+
offerNumber?: string | undefined;
|
|
992
|
+
/** The order number, usually in the context of a grant or contract. */
|
|
993
|
+
orderNumber?: string | undefined;
|
|
994
|
+
/** The order confirmation number */
|
|
995
|
+
orderConfirmationNumber?: string | undefined;
|
|
996
|
+
/** The number of the delivery, e.g. on the delivery note voucher. */
|
|
997
|
+
deliveryNumber?: string | undefined;
|
|
998
|
+
/** The reference number of the customer / buyer. */
|
|
999
|
+
customerReferenceNumber?: string | undefined;
|
|
1000
|
+
/** The reference number of the supplier / bidder. */
|
|
1001
|
+
supplierReferenceNumber?: string | undefined;
|
|
1002
|
+
/** The type of shippment. */
|
|
1003
|
+
shippingType?: string | undefined;
|
|
1004
|
+
/** The type of the price inquiry. */
|
|
1005
|
+
inquiryType?: CommerceInquiryTypeDto | undefined;
|
|
1006
|
+
}
|
|
1007
|
+
/** This enum represents types of price inquiries */
|
|
1008
|
+
export declare enum CommerceInquiryTypeDto {
|
|
1009
|
+
Unknown = "Unknown",
|
|
1010
|
+
Project = "Project",
|
|
1011
|
+
Immediate = "Immediate",
|
|
1012
|
+
Exhibition = "Exhibition"
|
|
1013
|
+
}
|
|
1014
|
+
export interface ComplementingPositionData {
|
|
1015
|
+
positionsById?: {
|
|
1016
|
+
[key: string]: PositionDto;
|
|
1017
|
+
} | undefined;
|
|
1018
|
+
basePositions?: {
|
|
1019
|
+
[key: string]: PositionDto;
|
|
1020
|
+
} | undefined;
|
|
1021
|
+
complementingPositionIds?: string[] | undefined;
|
|
1022
|
+
}
|
|
1023
|
+
/** A Project contains all relevant information for a construction project. */
|
|
1024
|
+
export interface ProjectDto {
|
|
1025
|
+
/** Elements GUID identifier. */
|
|
1026
|
+
id: string;
|
|
1027
|
+
/** This property controls the accuracy of all price properties, meaning how many decimal places are preserved in calculations. It defaults to DEFAULT_PRICE_ACCURACY. Please see the Dangl.AVA documentation for further information about decimal precision. If UnitPriceAccuracy is set, then this property is ignored for unit prices. */
|
|
1028
|
+
priceAccuracy?: number | undefined;
|
|
1029
|
+
/** This property controls the accuracy of position unit price properties, meaning how many decimal places are preserved in calculations. Please see the Dangl.AVA documentation for further information about decimal precision. This can be separately set from PriceAccuracy, and it only controls the accuracy of the unit price of positions, not the total price. It defaults to null, which means the standard PriceAccuracy is used for unit prices. */
|
|
1030
|
+
unitPriceAccuracy?: number | undefined;
|
|
1031
|
+
/** This forces total prices to be the strict product of quantities times unit price in positions. It is enabled by default. If this is disabled, both the unit price and the total price of positions is calculated from the non-rounded values. Please see the documentation for a more detailed explanation of this setting. */
|
|
1032
|
+
forceStrictTotals?: boolean | undefined;
|
|
1033
|
+
/** This property controls the rounding mode of all price properties, meaning how rounding of decimal places is performed in price calculations. It defaults to DEFAULT_ROUNDING_MODE. Please see the Dangl.AVA documentation for further information about decimal precision. */
|
|
1034
|
+
priceRoundingMode?: PriceRoundingModeDto | undefined;
|
|
1035
|
+
/** The ProjectInformation contains information that describes the project and its structure. */
|
|
1036
|
+
projectInformation?: ProjectInformationDto | undefined;
|
|
1037
|
+
/** The ServiceSpecifications in this Project. */
|
|
1038
|
+
serviceSpecifications?: ServiceSpecificationDto[] | undefined;
|
|
1039
|
+
/** This is used to store the GAEB XML Id within this Project. This data is not used for any calculations or evaluations but only for GAEB serialization and deserialization. */
|
|
1040
|
+
gaebXmlId?: string | undefined;
|
|
1041
|
+
}
|