abra-flexi 0.5.7 → 0.7.0
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 +169 -27
- package/dist/index.cjs +519 -1317
- package/dist/index.d.cts +152 -254
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +152 -254
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +519 -1317
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -2
package/dist/index.d.cts
CHANGED
|
@@ -81,15 +81,50 @@ declare enum StitkyCacheStrategy {
|
|
|
81
81
|
// Default
|
|
82
82
|
Eager = 2,
|
|
83
83
|
}
|
|
84
|
-
|
|
85
|
-
|
|
84
|
+
/**
|
|
85
|
+
* Controls how nested entities in 'unknown' state are handled during
|
|
86
|
+
* serialisation in save(). See spec §7 — Nested entity encoding.
|
|
87
|
+
*/
|
|
88
|
+
declare enum NestedUnknownStrategy {
|
|
89
|
+
/**
|
|
90
|
+
* Resolve each 'unknown' nested entity via _resolveId before encoding.
|
|
91
|
+
* Falls back to ByIdentifier behaviour if resolution returns null.
|
|
92
|
+
* This is the default.
|
|
93
|
+
*/
|
|
94
|
+
Resolve = "resolve",
|
|
95
|
+
/**
|
|
96
|
+
* Encode using the available identifier (kod / ext) without a network call.
|
|
97
|
+
* Throws AFError(MISSING_IDENTIFIER) if no identifier is present.
|
|
98
|
+
*/
|
|
99
|
+
ByIdentifier = "by-identifier",
|
|
100
|
+
/**
|
|
101
|
+
* Throw AFError(UNRESOLVED_ENTITY) immediately if any nested entity is
|
|
102
|
+
* still 'unknown' at encode time. The caller must resolve all relations
|
|
103
|
+
* before calling save().
|
|
104
|
+
*/
|
|
105
|
+
Strict = "strict",
|
|
86
106
|
}
|
|
87
107
|
type AFApiFetch = (input: RequestInfo | URL, init?: RequestInit | undefined) => Promise<Response>;
|
|
108
|
+
type AFResponseFormat = 'json' | 'xml' | 'pdf' | 'html' | 'csv' | 'isdoc' | (string & {});
|
|
109
|
+
type AFFileResult = {
|
|
110
|
+
blob: Blob;
|
|
111
|
+
contentType: string;
|
|
112
|
+
filename?: string;
|
|
113
|
+
};
|
|
114
|
+
type AFLogLevel = 'none' | 'error' | 'warn' | 'info' | 'debug';
|
|
115
|
+
interface AFLogger {
|
|
116
|
+
debug(...args: any[]): void;
|
|
117
|
+
info(...args: any[]): void;
|
|
118
|
+
warn(...args: any[]): void;
|
|
119
|
+
error(...args: any[]): void;
|
|
120
|
+
}
|
|
88
121
|
type AFApiConfig = {
|
|
89
122
|
url: string;
|
|
90
123
|
company: string;
|
|
91
124
|
fetch?: AFApiFetch;
|
|
92
125
|
stitkyCacheStrategy?: StitkyCacheStrategy;
|
|
126
|
+
logger?: AFLogger;
|
|
127
|
+
logLevel?: AFLogLevel;
|
|
93
128
|
};
|
|
94
129
|
type NO_LIMIT_T = 0;
|
|
95
130
|
declare const NO_LIMIT = 0;
|
|
@@ -99,6 +134,18 @@ declare enum AFQueryDetail {
|
|
|
99
134
|
SUMMARY = "summary",
|
|
100
135
|
}
|
|
101
136
|
type AFNestedDetail = (string | [string, AFNestedDetail])[];
|
|
137
|
+
/**
|
|
138
|
+
* Return type of `api.query()`. A standard array of entity instances extended
|
|
139
|
+
* with an optional `totalCount` property that is populated when the query was
|
|
140
|
+
* made with `addRowCount: true`. The value reflects the total number of
|
|
141
|
+
* matching records on the server, independent of `limit`/`start`.
|
|
142
|
+
*
|
|
143
|
+
* Because this is still a plain array, all existing code that iterates or
|
|
144
|
+
* spreads the result continues to work without any changes.
|
|
145
|
+
*/
|
|
146
|
+
type AFQueryResult<T> = T[] & {
|
|
147
|
+
totalCount?: number;
|
|
148
|
+
};
|
|
102
149
|
type AFQueryOptions = {
|
|
103
150
|
detail?: AFNestedDetail | AFQueryDetail;
|
|
104
151
|
filter?: AFFilter;
|
|
@@ -113,14 +160,18 @@ type AFQueryOptions = {
|
|
|
113
160
|
noSimpleMode?: boolean;
|
|
114
161
|
noValidityCheck?: boolean;
|
|
115
162
|
noUpdateStitkyCache?: boolean;
|
|
116
|
-
entityPathPrefix?: string;
|
|
117
163
|
ucetniObdobi?: string;
|
|
118
164
|
koncovyMesicRok?: string;
|
|
119
165
|
pocetMesicu?: number;
|
|
120
166
|
date?: string;
|
|
121
167
|
currency?: string;
|
|
168
|
+
adresarId?: number | string | AFFilter;
|
|
122
169
|
abortController?: AbortController;
|
|
123
170
|
};
|
|
171
|
+
type AFQueryFileOptions = AFQueryOptions & {
|
|
172
|
+
reportName?: string;
|
|
173
|
+
reportLang?: string;
|
|
174
|
+
};
|
|
124
175
|
type AFURelOptions = {
|
|
125
176
|
detail?: AFNestedDetail | AFQueryDetail;
|
|
126
177
|
vazbaTyp?: string | string[];
|
|
@@ -147,12 +198,20 @@ type AFURelMinimal = AFEntity & {
|
|
|
147
198
|
}[];
|
|
148
199
|
};
|
|
149
200
|
type AFSaveOptions = {
|
|
150
|
-
|
|
201
|
+
/**
|
|
202
|
+
* How to handle nested entities in 'unknown' state during serialisation.
|
|
203
|
+
* @default NestedUnknownStrategy.Resolve
|
|
204
|
+
*/
|
|
205
|
+
nestedUnknown?: NestedUnknownStrategy;
|
|
151
206
|
abortController?: AbortController;
|
|
152
207
|
removeStitky?: boolean;
|
|
153
208
|
};
|
|
154
209
|
type AFDeleteOptions = {
|
|
155
210
|
abortController?: AbortController;
|
|
211
|
+
asUserRelation?: boolean;
|
|
212
|
+
};
|
|
213
|
+
type AFActionOptions = {
|
|
214
|
+
abortController?: AbortController;
|
|
156
215
|
};
|
|
157
216
|
type AFSessionConfig = {
|
|
158
217
|
url: string;
|
|
@@ -174,6 +233,7 @@ declare enum AFSessionStatus {
|
|
|
174
233
|
Online = "online",
|
|
175
234
|
LogingOut = "logingout",
|
|
176
235
|
}
|
|
236
|
+
/** @deprecated Use api.resolveStubId() instead. */
|
|
177
237
|
type IdStub = {
|
|
178
238
|
id?: number;
|
|
179
239
|
kod?: string;
|
|
@@ -185,7 +245,6 @@ declare class AFTypUzivatelskeVazby extends AFEntity {
|
|
|
185
245
|
static EntityPath: string;
|
|
186
246
|
static EntityName: string;
|
|
187
247
|
static EntityType: string;
|
|
188
|
-
id?: number | null;
|
|
189
248
|
lastUpdate?: Date | null;
|
|
190
249
|
kod?: string | null;
|
|
191
250
|
nazev?: string | null;
|
|
@@ -216,7 +275,6 @@ declare class AFUzivatelskaVazba extends AFEntity {
|
|
|
216
275
|
static EntityPath: string;
|
|
217
276
|
static EntityName: string;
|
|
218
277
|
static EntityType: string;
|
|
219
|
-
id?: number | null;
|
|
220
278
|
vazbaTyp?: AFTypUzivatelskeVazby | null;
|
|
221
279
|
modul?: string | null;
|
|
222
280
|
kod?: string | null;
|
|
@@ -236,7 +294,6 @@ declare class AFSkupinaStitku extends AFEntity {
|
|
|
236
294
|
static EntityPath: string;
|
|
237
295
|
static EntityName: string;
|
|
238
296
|
static EntityType: string;
|
|
239
|
-
id?: number | null;
|
|
240
297
|
lastUpdate?: Date | null;
|
|
241
298
|
kod?: string | null;
|
|
242
299
|
nazev?: string | null;
|
|
@@ -258,7 +315,6 @@ declare class AFStitek extends AFEntity {
|
|
|
258
315
|
static EntityPath: string;
|
|
259
316
|
static EntityName: string;
|
|
260
317
|
static EntityType: string;
|
|
261
|
-
id?: number | null;
|
|
262
318
|
lastUpdate?: Date | null;
|
|
263
319
|
kod?: string | null;
|
|
264
320
|
nazev?: string | null;
|
|
@@ -303,6 +359,7 @@ declare class AFStitkyCache {
|
|
|
303
359
|
private _stitky;
|
|
304
360
|
private _stitekSkupiny;
|
|
305
361
|
private _lastUpdate?;
|
|
362
|
+
private _inflight?;
|
|
306
363
|
constructor(client: AFApiClient, strategy?: StitkyCacheStrategy);
|
|
307
364
|
get strategy(): StitkyCacheStrategy;
|
|
308
365
|
fetchTick(): Promise<void>;
|
|
@@ -316,16 +373,42 @@ declare class AFEntity {
|
|
|
316
373
|
static EntityType: string;
|
|
317
374
|
static propAnnotations: Record<string, TypeAnnotation>;
|
|
318
375
|
private _stitkyCache;
|
|
319
|
-
|
|
376
|
+
private _id?;
|
|
377
|
+
private _state;
|
|
378
|
+
/**
|
|
379
|
+
* Server-assigned internal id. Readonly — never set by application code.
|
|
380
|
+
* Use api.resolveStubId() or api.resolve() to obtain a confirmed id.
|
|
381
|
+
*/
|
|
382
|
+
get id(): number | null | undefined;
|
|
383
|
+
/**
|
|
384
|
+
* @internal — called only by AFApiClient. Do NOT call from application code.
|
|
385
|
+
* Sets the confirmed server id and transitions state to 'exists'.
|
|
386
|
+
*/
|
|
387
|
+
_setId(id: number): void;
|
|
388
|
+
/**
|
|
389
|
+
* Pending unverified identifiers stored by the deprecated createIdStub().
|
|
390
|
+
* @internal
|
|
391
|
+
*/
|
|
392
|
+
_stub?: {
|
|
393
|
+
id?: number;
|
|
394
|
+
kod?: string;
|
|
395
|
+
ext?: string[];
|
|
396
|
+
};
|
|
320
397
|
kod?: string | null;
|
|
321
398
|
stitky?: string | null;
|
|
322
399
|
_orig: Record<string, any>;
|
|
400
|
+
/**
|
|
401
|
+
* Returns the entity's existence state:
|
|
402
|
+
* - true — definitely no server record ('new')
|
|
403
|
+
* - undefined — has identifiers but existence unconfirmed ('unknown')
|
|
404
|
+
* - false — server existence confirmed ('exists')
|
|
405
|
+
*/
|
|
406
|
+
get isNew(): boolean | undefined;
|
|
323
407
|
constructor(stitkyCache: AFStitkyCache);
|
|
324
408
|
getPropertyTypeAnnotation(key: string): TypeAnnotation | undefined;
|
|
325
409
|
getStitky(): AFStitek[] | undefined;
|
|
326
410
|
getStitkyBySkupina(skup: string | AFSkupinaStitku): AFStitek[] | undefined;
|
|
327
411
|
get pristine(): boolean;
|
|
328
|
-
get isNew(): boolean;
|
|
329
412
|
protected getCotr(): typeof AFEntity;
|
|
330
413
|
hasChanged(key?: string): boolean;
|
|
331
414
|
wasLoaded(key: string): boolean;
|
|
@@ -339,26 +422,70 @@ declare class AFApiClient {
|
|
|
339
422
|
private _fetch;
|
|
340
423
|
private _company;
|
|
341
424
|
private _stitkyCache;
|
|
425
|
+
private _logger;
|
|
342
426
|
constructor(config: AFApiConfig);
|
|
343
427
|
get url(): string;
|
|
344
428
|
get company(): string;
|
|
345
429
|
get stitkyCacheStrategy(): StitkyCacheStrategy;
|
|
346
|
-
|
|
347
|
-
|
|
430
|
+
private _buildQueryUrl;
|
|
431
|
+
queryRaw(entityPath: string, options?: AFQueryOptions): Promise<any>;
|
|
432
|
+
queryFileRaw(entityPath: string, format: AFResponseFormat, options?: AFQueryFileOptions): Promise<AFFileResult>;
|
|
433
|
+
queryFile<T extends typeof AFEntity>(entity: T, format: AFResponseFormat, options?: AFQueryFileOptions): Promise<AFFileResult>;
|
|
434
|
+
query<T extends typeof AFEntity>(entity: T, options?: AFQueryOptions): Promise<AFQueryResult<InstanceType<T>>>;
|
|
348
435
|
queryOne<T extends typeof AFEntity>(entity: T, options: AFQueryOptions): Promise<InstanceType<T>>;
|
|
349
436
|
queryURels<T extends typeof AFEntity = typeof AFEntity>(relatedEntity: T, forObjects: AFURelMinimal | AFURelMinimal[], options?: AFURelOptions): Promise<AFURelResult<InstanceType<T>>[]>;
|
|
350
|
-
populate<T extends typeof AFEntity = typeof AFEntity>(entities: InstanceType<T>[], options
|
|
351
|
-
populateOne<T extends typeof AFEntity = typeof AFEntity>(entity: InstanceType<T>, options
|
|
437
|
+
populate<T extends typeof AFEntity = typeof AFEntity>(entities: InstanceType<T>[], options?: AFPopulateOptions): Promise<InstanceType<T>[]>;
|
|
438
|
+
populateOne<T extends typeof AFEntity = typeof AFEntity>(entity: InstanceType<T>, options?: AFPopulateOptions): Promise<InstanceType<T>>;
|
|
352
439
|
create<T extends typeof AFEntity>(entity: T): Promise<InstanceType<T>>;
|
|
440
|
+
/**
|
|
441
|
+
* Resolves the server-assigned id for an entity that may be in 'unknown' state.
|
|
442
|
+
* Priority order: confirmed _id → _stub.id → _stub.kod / entity.kod → _stub.ext
|
|
443
|
+
*
|
|
444
|
+
* Returns the resolved id (number), or null if the entity was not found.
|
|
445
|
+
* On a 404 response, the entity state is reset to 'new'.
|
|
446
|
+
* @internal
|
|
447
|
+
*/
|
|
448
|
+
private _resolveId;
|
|
449
|
+
/**
|
|
450
|
+
* Resolves an entity by a validated identifier string or numeric id.
|
|
451
|
+
* Accepted identifier forms:
|
|
452
|
+
* - number → looks up by internal id
|
|
453
|
+
* - "code:X" → looks up by business code
|
|
454
|
+
* - "ext:X" → looks up by external id
|
|
455
|
+
* Throws INVALID_IDENTIFIER for any other string.
|
|
456
|
+
* Throws OBJECT_NOT_FOUND if the server returns 404.
|
|
457
|
+
*/
|
|
458
|
+
resolveStubId<T extends typeof AFEntity>(entity: T, identifier: number | string): Promise<InstanceType<T>>;
|
|
459
|
+
/**
|
|
460
|
+
* Resolves an entity in-place — determines and sets its server id.
|
|
461
|
+
* Fast-path: if the entity already has a confirmed id, returns immediately.
|
|
462
|
+
* For 'unknown' state: calls _resolveId; if not found and throwIfNotFound is
|
|
463
|
+
* true, throws OBJECT_NOT_FOUND.
|
|
464
|
+
* Always returns the same entity instance.
|
|
465
|
+
*/
|
|
466
|
+
resolve<T extends AFEntity>(entity: T, throwIfNotFound?: boolean): Promise<T>;
|
|
467
|
+
/**
|
|
468
|
+
* @deprecated Use resolveStubId() or resolve() instead.
|
|
469
|
+
* Creates an entity instance in 'unknown' state with unverified identifiers.
|
|
470
|
+
*/
|
|
353
471
|
createIdStub<T extends typeof AFEntity>(entity: T, id: IdStub): Promise<InstanceType<T>>;
|
|
354
472
|
saveRaw(entityPath: string, data: any, options?: AFSaveOptions): Promise<any>;
|
|
355
473
|
save<T extends typeof AFEntity = typeof AFEntity>(entity: InstanceType<T>, options?: AFSaveOptions): Promise<InstanceType<T>>;
|
|
356
|
-
deleteRaw(entityPath: string, id: string | number | undefined | null, options
|
|
357
|
-
delete<T extends typeof AFEntity = typeof AFEntity>(entity: InstanceType<T>, options
|
|
358
|
-
|
|
474
|
+
deleteRaw(entityPath: string, id: string | number | undefined | null, options?: AFDeleteOptions): Promise<any>;
|
|
475
|
+
delete<T extends typeof AFEntity = typeof AFEntity>(entity: InstanceType<T>, options?: AFDeleteOptions): Promise<boolean>;
|
|
476
|
+
callEntityActionRaw(entityPath: string, id: string | number, actionName: string, options?: AFActionOptions): Promise<boolean>;
|
|
477
|
+
callEntityAction<T extends typeof AFEntity = typeof AFEntity>(entity: InstanceType<T>, actionName: string, options?: AFActionOptions): Promise<boolean>;
|
|
478
|
+
private _applySaveResultToEntity;
|
|
479
|
+
private _extractAbraErrors;
|
|
359
480
|
private _decodeEntityObj;
|
|
360
481
|
private _encodeEntity;
|
|
361
482
|
private _decodeProperty;
|
|
483
|
+
/**
|
|
484
|
+
* Returns the best available identifier string for an entity, or undefined.
|
|
485
|
+
* Used for ByIdentifier and Resolve fallback strategies.
|
|
486
|
+
* Priority: _stub.kod > entity.kod > _stub.ext
|
|
487
|
+
*/
|
|
488
|
+
private _getEntityIdentifierString;
|
|
362
489
|
private _encodeProperty;
|
|
363
490
|
}
|
|
364
491
|
//#endregion
|
|
@@ -385,6 +512,14 @@ declare enum AFErrorCode {
|
|
|
385
512
|
PASSWORD_EMPTY = "PASSWORD_EMPTY",
|
|
386
513
|
PATH_WITHOUT_COMPANY = "PATH_WITHOUT_COMPANY",
|
|
387
514
|
PATH_WITHOUT_EVIDENCE = "PATH_WITHOUT_EVIDENCE",
|
|
515
|
+
INVALID_IDENTIFIER = "INVALID_IDENTIFIER",
|
|
516
|
+
// malformed identifier string in resolveStubId
|
|
517
|
+
ID_MISMATCH = "ID_MISMATCH",
|
|
518
|
+
// resolve found a different id than already set
|
|
519
|
+
MISSING_IDENTIFIER = "MISSING_IDENTIFIER",
|
|
520
|
+
// 'unknown' nested entity has no identifier to encode
|
|
521
|
+
UNRESOLVED_ENTITY = "UNRESOLVED_ENTITY",
|
|
522
|
+
// Strict strategy: nested entity is 'unknown'
|
|
388
523
|
UNKNOWN = "UNKNOWN",
|
|
389
524
|
}
|
|
390
525
|
declare class AFError extends Error {
|
|
@@ -437,7 +572,6 @@ declare class AFKurz extends AFEntity {
|
|
|
437
572
|
static EntityPath: string;
|
|
438
573
|
static EntityName: string;
|
|
439
574
|
static EntityType: string;
|
|
440
|
-
id?: number | null;
|
|
441
575
|
lastUpdate?: Date | null;
|
|
442
576
|
platiOdData?: Date | null;
|
|
443
577
|
nbStred?: Big | null;
|
|
@@ -1490,7 +1624,6 @@ declare class AFMena extends AFEntity {
|
|
|
1490
1624
|
static EntityPath: string;
|
|
1491
1625
|
static EntityName: string;
|
|
1492
1626
|
static EntityType: string;
|
|
1493
|
-
id?: number | null;
|
|
1494
1627
|
lastUpdate?: Date | null;
|
|
1495
1628
|
kod?: string | null;
|
|
1496
1629
|
nazev?: string | null;
|
|
@@ -1515,7 +1648,6 @@ declare class AFRegion extends AFEntity {
|
|
|
1515
1648
|
static EntityPath: string;
|
|
1516
1649
|
static EntityName: string;
|
|
1517
1650
|
static EntityType: string;
|
|
1518
|
-
id?: number | null;
|
|
1519
1651
|
lastUpdate?: Date | null;
|
|
1520
1652
|
kod?: string | null;
|
|
1521
1653
|
nazev?: string | null;
|
|
@@ -1541,7 +1673,6 @@ declare class AFUcetniObdobi extends AFEntity {
|
|
|
1541
1673
|
static EntityPath: string;
|
|
1542
1674
|
static EntityName: string;
|
|
1543
1675
|
static EntityType: string;
|
|
1544
|
-
id?: number | null;
|
|
1545
1676
|
lastUpdate?: Date | null;
|
|
1546
1677
|
platiOdData?: Date | null;
|
|
1547
1678
|
platiDoData?: Date | null;
|
|
@@ -1559,7 +1690,6 @@ declare class AFTypOrganizace extends AFEntity {
|
|
|
1559
1690
|
static EntityPath: string;
|
|
1560
1691
|
static EntityName: string;
|
|
1561
1692
|
static EntityType: string;
|
|
1562
|
-
id?: number | null;
|
|
1563
1693
|
lastUpdate?: Date | null;
|
|
1564
1694
|
kod?: string | null;
|
|
1565
1695
|
nazev?: string | null;
|
|
@@ -1579,7 +1709,6 @@ declare class AFUcetniOsnova extends AFEntity {
|
|
|
1579
1709
|
static EntityPath: string;
|
|
1580
1710
|
static EntityName: string;
|
|
1581
1711
|
static EntityType: string;
|
|
1582
|
-
id?: number | null;
|
|
1583
1712
|
lastUpdate?: Date | null;
|
|
1584
1713
|
kod?: string | null;
|
|
1585
1714
|
nazev?: string | null;
|
|
@@ -1604,7 +1733,6 @@ declare class AFUcet extends AFEntity {
|
|
|
1604
1733
|
static EntityPath: string;
|
|
1605
1734
|
static EntityName: string;
|
|
1606
1735
|
static EntityType: string;
|
|
1607
|
-
id?: number | null;
|
|
1608
1736
|
lastUpdate?: Date | null;
|
|
1609
1737
|
kod?: string | null;
|
|
1610
1738
|
nazev?: string | null;
|
|
@@ -1632,7 +1760,6 @@ declare class AFSkupinaFirem extends AFEntity {
|
|
|
1632
1760
|
static EntityPath: string;
|
|
1633
1761
|
static EntityName: string;
|
|
1634
1762
|
static EntityType: string;
|
|
1635
|
-
id?: number | null;
|
|
1636
1763
|
lastUpdate?: Date | null;
|
|
1637
1764
|
kod?: string | null;
|
|
1638
1765
|
nazev?: string | null;
|
|
@@ -1656,7 +1783,6 @@ declare class AFStredisko extends AFEntity {
|
|
|
1656
1783
|
static EntityPath: string;
|
|
1657
1784
|
static EntityName: string;
|
|
1658
1785
|
static EntityType: string;
|
|
1659
|
-
id?: number | null;
|
|
1660
1786
|
lastUpdate?: Date | null;
|
|
1661
1787
|
kod?: string | null;
|
|
1662
1788
|
nazev?: string | null;
|
|
@@ -1693,7 +1819,6 @@ declare class AFRole extends AFEntity {
|
|
|
1693
1819
|
static EntityPath: string;
|
|
1694
1820
|
static EntityName: string;
|
|
1695
1821
|
static EntityType: string;
|
|
1696
|
-
id?: number | null;
|
|
1697
1822
|
lastUpdate?: Date | null;
|
|
1698
1823
|
kod?: string | null;
|
|
1699
1824
|
nazev?: string | null;
|
|
@@ -1715,7 +1840,6 @@ declare class AFTypAktivity extends AFEntity {
|
|
|
1715
1840
|
static EntityPath: string;
|
|
1716
1841
|
static EntityName: string;
|
|
1717
1842
|
static EntityType: string;
|
|
1718
|
-
id?: number | null;
|
|
1719
1843
|
lastUpdate?: Date | null;
|
|
1720
1844
|
kod?: string | null;
|
|
1721
1845
|
nazev?: string | null;
|
|
@@ -1740,7 +1864,6 @@ declare class AFMistoUrceni extends AFEntity {
|
|
|
1740
1864
|
static EntityPath: string;
|
|
1741
1865
|
static EntityName: string;
|
|
1742
1866
|
static EntityType: string;
|
|
1743
|
-
id?: number | null;
|
|
1744
1867
|
lastUpdate?: Date | null;
|
|
1745
1868
|
ulice?: string | null;
|
|
1746
1869
|
mesto?: string | null;
|
|
@@ -1775,7 +1898,6 @@ declare class AFStavZakazky extends AFEntity {
|
|
|
1775
1898
|
static EntityPath: string;
|
|
1776
1899
|
static EntityName: string;
|
|
1777
1900
|
static EntityType: string;
|
|
1778
|
-
id?: number | null;
|
|
1779
1901
|
lastUpdate?: Date | null;
|
|
1780
1902
|
kod?: string | null;
|
|
1781
1903
|
nazev?: string | null;
|
|
@@ -1795,7 +1917,6 @@ declare class AFTypZakazky extends AFEntity {
|
|
|
1795
1917
|
static EntityPath: string;
|
|
1796
1918
|
static EntityName: string;
|
|
1797
1919
|
static EntityType: string;
|
|
1798
|
-
id?: number | null;
|
|
1799
1920
|
lastUpdate?: Date | null;
|
|
1800
1921
|
kod?: string | null;
|
|
1801
1922
|
nazev?: string | null;
|
|
@@ -1820,7 +1941,6 @@ declare class AFHodnoceniZakazky extends AFEntity {
|
|
|
1820
1941
|
static EntityPath: string;
|
|
1821
1942
|
static EntityName: string;
|
|
1822
1943
|
static EntityType: string;
|
|
1823
|
-
id?: number | null;
|
|
1824
1944
|
lastUpdate?: Date | null;
|
|
1825
1945
|
kod?: string | null;
|
|
1826
1946
|
nazev?: string | null;
|
|
@@ -1841,7 +1961,6 @@ declare class AFRada extends AFEntity {
|
|
|
1841
1961
|
static EntityPath: string;
|
|
1842
1962
|
static EntityName: string;
|
|
1843
1963
|
static EntityType: string;
|
|
1844
|
-
id?: number | null;
|
|
1845
1964
|
lastUpdate?: Date | null;
|
|
1846
1965
|
kod?: string | null;
|
|
1847
1966
|
nazev?: string | null;
|
|
@@ -1864,7 +1983,6 @@ declare class AFRocniRada extends AFEntity {
|
|
|
1864
1983
|
static EntityPath: string;
|
|
1865
1984
|
static EntityName: string;
|
|
1866
1985
|
static EntityType: string;
|
|
1867
|
-
id?: number | null;
|
|
1868
1986
|
lastUpdate?: Date | null;
|
|
1869
1987
|
cisDelka?: number | null;
|
|
1870
1988
|
zobrazNuly?: boolean | null;
|
|
@@ -1884,7 +2002,6 @@ declare class AFRadaSkladovyPohyb extends AFEntity {
|
|
|
1884
2002
|
static EntityPath: string;
|
|
1885
2003
|
static EntityName: string;
|
|
1886
2004
|
static EntityType: string;
|
|
1887
|
-
id?: number | null;
|
|
1888
2005
|
lastUpdate?: Date | null;
|
|
1889
2006
|
kod?: string | null;
|
|
1890
2007
|
nazev?: string | null;
|
|
@@ -1907,7 +2024,6 @@ declare class AFCinnost extends AFEntity {
|
|
|
1907
2024
|
static EntityPath: string;
|
|
1908
2025
|
static EntityName: string;
|
|
1909
2026
|
static EntityType: string;
|
|
1910
|
-
id?: number | null;
|
|
1911
2027
|
lastUpdate?: Date | null;
|
|
1912
2028
|
kod?: string | null;
|
|
1913
2029
|
nazev?: string | null;
|
|
@@ -1929,7 +2045,6 @@ declare class AFSklad extends AFEntity {
|
|
|
1929
2045
|
static EntityPath: string;
|
|
1930
2046
|
static EntityName: string;
|
|
1931
2047
|
static EntityType: string;
|
|
1932
|
-
id?: number | null;
|
|
1933
2048
|
lastUpdate?: Date | null;
|
|
1934
2049
|
kod?: string | null;
|
|
1935
2050
|
nazev?: string | null;
|
|
@@ -1961,7 +2076,6 @@ declare class AFPredpisZauctovani extends AFEntity {
|
|
|
1961
2076
|
static EntityPath: string;
|
|
1962
2077
|
static EntityName: string;
|
|
1963
2078
|
static EntityType: string;
|
|
1964
|
-
id?: number | null;
|
|
1965
2079
|
lastUpdate?: Date | null;
|
|
1966
2080
|
kod?: string | null;
|
|
1967
2081
|
nazev?: string | null;
|
|
@@ -2000,7 +2114,6 @@ declare class AFIntrastatDodaciPodminky extends AFEntity {
|
|
|
2000
2114
|
static EntityPath: string;
|
|
2001
2115
|
static EntityName: string;
|
|
2002
2116
|
static EntityType: string;
|
|
2003
|
-
id?: number | null;
|
|
2004
2117
|
lastUpdate?: Date | null;
|
|
2005
2118
|
kod?: string | null;
|
|
2006
2119
|
nazev?: string | null;
|
|
@@ -2021,7 +2134,6 @@ declare class AFIntrastatZvlastniPohyb extends AFEntity {
|
|
|
2021
2134
|
static EntityPath: string;
|
|
2022
2135
|
static EntityName: string;
|
|
2023
2136
|
static EntityType: string;
|
|
2024
|
-
id?: number | null;
|
|
2025
2137
|
lastUpdate?: Date | null;
|
|
2026
2138
|
kod?: string | null;
|
|
2027
2139
|
nazev?: string | null;
|
|
@@ -2042,7 +2154,6 @@ declare class AFIntrastatObchodniTransakce extends AFEntity {
|
|
|
2042
2154
|
static EntityPath: string;
|
|
2043
2155
|
static EntityName: string;
|
|
2044
2156
|
static EntityType: string;
|
|
2045
|
-
id?: number | null;
|
|
2046
2157
|
lastUpdate?: Date | null;
|
|
2047
2158
|
kod?: string | null;
|
|
2048
2159
|
nazev?: string | null;
|
|
@@ -2063,7 +2174,6 @@ declare class AFIntrastatDruhDopravy extends AFEntity {
|
|
|
2063
2174
|
static EntityPath: string;
|
|
2064
2175
|
static EntityName: string;
|
|
2065
2176
|
static EntityType: string;
|
|
2066
|
-
id?: number | null;
|
|
2067
2177
|
lastUpdate?: Date | null;
|
|
2068
2178
|
kod?: string | null;
|
|
2069
2179
|
nazev?: string | null;
|
|
@@ -2084,7 +2194,6 @@ declare class AFIntrastatKrajUrceni extends AFEntity {
|
|
|
2084
2194
|
static EntityPath: string;
|
|
2085
2195
|
static EntityName: string;
|
|
2086
2196
|
static EntityType: string;
|
|
2087
|
-
id?: number | null;
|
|
2088
2197
|
lastUpdate?: Date | null;
|
|
2089
2198
|
kod?: string | null;
|
|
2090
2199
|
nazev?: string | null;
|
|
@@ -2105,7 +2214,6 @@ declare class AFSkupinaZbozi extends AFEntity {
|
|
|
2105
2214
|
static EntityPath: string;
|
|
2106
2215
|
static EntityName: string;
|
|
2107
2216
|
static EntityType: string;
|
|
2108
|
-
id?: number | null;
|
|
2109
2217
|
lastUpdate?: Date | null;
|
|
2110
2218
|
kod?: string | null;
|
|
2111
2219
|
nazev?: string | null;
|
|
@@ -2154,7 +2262,6 @@ declare class AFMernaJednotka extends AFEntity {
|
|
|
2154
2262
|
static EntityPath: string;
|
|
2155
2263
|
static EntityName: string;
|
|
2156
2264
|
static EntityType: string;
|
|
2157
|
-
id?: number | null;
|
|
2158
2265
|
lastUpdate?: Date | null;
|
|
2159
2266
|
kod?: string | null;
|
|
2160
2267
|
nazev?: string | null;
|
|
@@ -2181,7 +2288,6 @@ declare class AFIntrastatMernaJednotka extends AFEntity {
|
|
|
2181
2288
|
static EntityPath: string;
|
|
2182
2289
|
static EntityName: string;
|
|
2183
2290
|
static EntityType: string;
|
|
2184
|
-
id?: number | null;
|
|
2185
2291
|
lastUpdate?: Date | null;
|
|
2186
2292
|
kod?: string | null;
|
|
2187
2293
|
nazev?: string | null;
|
|
@@ -2202,7 +2308,6 @@ declare class AFIntrastatKodNomenklatury extends AFEntity {
|
|
|
2202
2308
|
static EntityPath: string;
|
|
2203
2309
|
static EntityName: string;
|
|
2204
2310
|
static EntityType: string;
|
|
2205
|
-
id?: number | null;
|
|
2206
2311
|
lastUpdate?: Date | null;
|
|
2207
2312
|
kod?: string | null;
|
|
2208
2313
|
nazev?: string | null;
|
|
@@ -2224,7 +2329,6 @@ declare class AFPreneseniDph extends AFEntity {
|
|
|
2224
2329
|
static EntityPath: string;
|
|
2225
2330
|
static EntityName: string;
|
|
2226
2331
|
static EntityType: string;
|
|
2227
|
-
id?: number | null;
|
|
2228
2332
|
lastUpdate?: Date | null;
|
|
2229
2333
|
kod?: string | null;
|
|
2230
2334
|
nazev?: string | null;
|
|
@@ -2246,7 +2350,6 @@ declare class AFCenikovaSkupina extends AFEntity {
|
|
|
2246
2350
|
static EntityPath: string;
|
|
2247
2351
|
static EntityName: string;
|
|
2248
2352
|
static EntityType: string;
|
|
2249
|
-
id?: number | null;
|
|
2250
2353
|
lastUpdate?: Date | null;
|
|
2251
2354
|
kod?: string | null;
|
|
2252
2355
|
nazev?: string | null;
|
|
@@ -2267,7 +2370,6 @@ declare class AFOdberatel extends AFEntity {
|
|
|
2267
2370
|
static EntityPath: string;
|
|
2268
2371
|
static EntityName: string;
|
|
2269
2372
|
static EntityType: string;
|
|
2270
|
-
id?: number | null;
|
|
2271
2373
|
lastUpdate?: Date | null;
|
|
2272
2374
|
kodIndi?: string | null;
|
|
2273
2375
|
prodejCena?: Big | null;
|
|
@@ -2298,7 +2400,6 @@ declare class AFCenikObal extends AFEntity {
|
|
|
2298
2400
|
static EntityPath: string;
|
|
2299
2401
|
static EntityName: string;
|
|
2300
2402
|
static EntityType: string;
|
|
2301
|
-
id?: number | null;
|
|
2302
2403
|
lastUpdate?: Date | null;
|
|
2303
2404
|
nazev?: string | null;
|
|
2304
2405
|
nazevA?: string | null;
|
|
@@ -2330,7 +2431,6 @@ declare class AFTypAtributu extends AFEntity {
|
|
|
2330
2431
|
static EntityPath: string;
|
|
2331
2432
|
static EntityName: string;
|
|
2332
2433
|
static EntityType: string;
|
|
2333
|
-
id?: number | null;
|
|
2334
2434
|
lastUpdate?: Date | null;
|
|
2335
2435
|
kod?: string | null;
|
|
2336
2436
|
nazev?: string | null;
|
|
@@ -2357,7 +2457,6 @@ declare class AFAtribut extends AFEntity {
|
|
|
2357
2457
|
static EntityPath: string;
|
|
2358
2458
|
static EntityName: string;
|
|
2359
2459
|
static EntityType: string;
|
|
2360
|
-
id?: number | null;
|
|
2361
2460
|
lastUpdate?: Date | null;
|
|
2362
2461
|
valBoolean?: boolean | null;
|
|
2363
2462
|
valInteger?: number | null;
|
|
@@ -2383,7 +2482,6 @@ declare class AFUmisteniVeSkladu extends AFEntity {
|
|
|
2383
2482
|
static EntityPath: string;
|
|
2384
2483
|
static EntityName: string;
|
|
2385
2484
|
static EntityType: string;
|
|
2386
|
-
id?: number | null;
|
|
2387
2485
|
lastUpdate?: Date | null;
|
|
2388
2486
|
kod?: string | null;
|
|
2389
2487
|
nazev?: string | null;
|
|
@@ -2406,7 +2504,6 @@ declare class AFCenovaUroven extends AFEntity {
|
|
|
2406
2504
|
static EntityPath: string;
|
|
2407
2505
|
static EntityName: string;
|
|
2408
2506
|
static EntityType: string;
|
|
2409
|
-
id?: number | null;
|
|
2410
2507
|
lastUpdate?: Date | null;
|
|
2411
2508
|
kod?: string | null;
|
|
2412
2509
|
nazev?: string | null;
|
|
@@ -2454,7 +2551,6 @@ declare class AFVyrobniCislo extends AFEntity {
|
|
|
2454
2551
|
static EntityPath: string;
|
|
2455
2552
|
static EntityName: string;
|
|
2456
2553
|
static EntityType: string;
|
|
2457
|
-
id?: number | null;
|
|
2458
2554
|
kod?: string | null;
|
|
2459
2555
|
cenik?: AFCenik | null;
|
|
2460
2556
|
sklad?: AFSklad | null;
|
|
@@ -2479,7 +2575,6 @@ declare class AFSkladovyPohybPolozka extends AFEntity {
|
|
|
2479
2575
|
static EntityPath: string;
|
|
2480
2576
|
static EntityName: string;
|
|
2481
2577
|
static EntityType: string;
|
|
2482
|
-
id?: number | null;
|
|
2483
2578
|
lastUpdate?: Date | null;
|
|
2484
2579
|
updatedBy?: AFUzivatel | null;
|
|
2485
2580
|
createdBy?: AFUzivatel | null;
|
|
@@ -2572,7 +2667,6 @@ declare class AFSkladovaKarta extends AFEntity {
|
|
|
2572
2667
|
static EntityPath: string;
|
|
2573
2668
|
static EntityName: string;
|
|
2574
2669
|
static EntityType: string;
|
|
2575
|
-
id?: number | null;
|
|
2576
2670
|
lastUpdate?: Date | null;
|
|
2577
2671
|
prumCenaTuz?: Big | null;
|
|
2578
2672
|
prumCenaMen?: Big | null;
|
|
@@ -2627,7 +2721,6 @@ declare class AFSadyAKomplety extends AFEntity {
|
|
|
2627
2721
|
static EntityPath: string;
|
|
2628
2722
|
static EntityName: string;
|
|
2629
2723
|
static EntityType: string;
|
|
2630
|
-
id?: number | null;
|
|
2631
2724
|
lastUpdate?: Date | null;
|
|
2632
2725
|
mnozMj?: Big | null;
|
|
2633
2726
|
poznam?: string | null;
|
|
@@ -2643,7 +2736,6 @@ declare class AFPrislustenstvi extends AFEntity {
|
|
|
2643
2736
|
static EntityPath: string;
|
|
2644
2737
|
static EntityName: string;
|
|
2645
2738
|
static EntityType: string;
|
|
2646
|
-
id?: number | null;
|
|
2647
2739
|
lastUpdate?: Date | null;
|
|
2648
2740
|
poznam?: string | null;
|
|
2649
2741
|
cenikOtec?: AFCenik | null;
|
|
@@ -2658,7 +2750,6 @@ declare class AFPoplatek extends AFEntity {
|
|
|
2658
2750
|
static EntityPath: string;
|
|
2659
2751
|
static EntityName: string;
|
|
2660
2752
|
static EntityType: string;
|
|
2661
|
-
id?: number | null;
|
|
2662
2753
|
lastUpdate?: Date | null;
|
|
2663
2754
|
mnozMj?: Big | null;
|
|
2664
2755
|
poznam?: string | null;
|
|
@@ -2676,7 +2767,6 @@ declare class AFDodavatel extends AFEntity {
|
|
|
2676
2767
|
static EntityPath: string;
|
|
2677
2768
|
static EntityName: string;
|
|
2678
2769
|
static EntityType: string;
|
|
2679
|
-
id?: number | null;
|
|
2680
2770
|
lastUpdate?: Date | null;
|
|
2681
2771
|
kodIndi?: string | null;
|
|
2682
2772
|
nakupCena?: Big | null;
|
|
@@ -2707,7 +2797,6 @@ declare class AFStavCeniku extends AFEntity {
|
|
|
2707
2797
|
static EntityPath: string;
|
|
2708
2798
|
static EntityName: string;
|
|
2709
2799
|
static EntityType: string;
|
|
2710
|
-
id?: number | null;
|
|
2711
2800
|
lastUpdate?: Date | null;
|
|
2712
2801
|
kod?: string | null;
|
|
2713
2802
|
nazev?: string | null;
|
|
@@ -2732,7 +2821,6 @@ declare class AFPodobneZbozi extends AFEntity {
|
|
|
2732
2821
|
static EntityPath: string;
|
|
2733
2822
|
static EntityName: string;
|
|
2734
2823
|
static EntityType: string;
|
|
2735
|
-
id?: number | null;
|
|
2736
2824
|
lastUpdate?: Date | null;
|
|
2737
2825
|
poznam?: string | null;
|
|
2738
2826
|
cenikOtec?: AFCenik | null;
|
|
@@ -2747,7 +2835,6 @@ declare class AFStatDph extends AFEntity {
|
|
|
2747
2835
|
static EntityPath: string;
|
|
2748
2836
|
static EntityName: string;
|
|
2749
2837
|
static EntityType: string;
|
|
2750
|
-
id?: number | null;
|
|
2751
2838
|
lastUpdate?: Date | null;
|
|
2752
2839
|
kod?: string | null;
|
|
2753
2840
|
nazev?: string | null;
|
|
@@ -2777,7 +2864,6 @@ declare class AFCenikTypSazbyDph extends AFEntity {
|
|
|
2777
2864
|
static EntityPath: string;
|
|
2778
2865
|
static EntityName: string;
|
|
2779
2866
|
static EntityType: string;
|
|
2780
|
-
id?: number | null;
|
|
2781
2867
|
lastUpdate?: Date | null;
|
|
2782
2868
|
typSzbDphK?: TypSzbDph | null;
|
|
2783
2869
|
kodPlneniK?: KodPlneni | null;
|
|
@@ -2795,7 +2881,6 @@ declare class AFRezervace extends AFEntity {
|
|
|
2795
2881
|
static EntityPath: string;
|
|
2796
2882
|
static EntityName: string;
|
|
2797
2883
|
static EntityType: string;
|
|
2798
|
-
id?: number | null;
|
|
2799
2884
|
lastUpdate?: Date | null;
|
|
2800
2885
|
datumOd?: Date | null;
|
|
2801
2886
|
datumDo?: Date | null;
|
|
@@ -2817,7 +2902,6 @@ declare class AFCenik extends AFEntity {
|
|
|
2817
2902
|
static EntityPath: string;
|
|
2818
2903
|
static EntityName: string;
|
|
2819
2904
|
static EntityType: string;
|
|
2820
|
-
id?: number | null;
|
|
2821
2905
|
lastUpdate?: Date | null;
|
|
2822
2906
|
kod?: string | null;
|
|
2823
2907
|
nazev?: string | null;
|
|
@@ -2961,7 +3045,6 @@ declare class AFFormaDopravy extends AFEntity {
|
|
|
2961
3045
|
static EntityPath: string;
|
|
2962
3046
|
static EntityName: string;
|
|
2963
3047
|
static EntityType: string;
|
|
2964
|
-
id?: number | null;
|
|
2965
3048
|
lastUpdate?: Date | null;
|
|
2966
3049
|
kod?: string | null;
|
|
2967
3050
|
nazev?: string | null;
|
|
@@ -3001,7 +3084,6 @@ declare class AFSablonaMail extends AFEntity {
|
|
|
3001
3084
|
static EntityPath: string;
|
|
3002
3085
|
static EntityName: string;
|
|
3003
3086
|
static EntityType: string;
|
|
3004
|
-
id?: number | null;
|
|
3005
3087
|
lastUpdate?: Date | null;
|
|
3006
3088
|
kod?: string | null;
|
|
3007
3089
|
nazev?: string | null;
|
|
@@ -3024,7 +3106,6 @@ declare class AFTypDokladu extends AFEntity {
|
|
|
3024
3106
|
static EntityPath: string;
|
|
3025
3107
|
static EntityName: string;
|
|
3026
3108
|
static EntityType: string;
|
|
3027
|
-
id?: number | null;
|
|
3028
3109
|
lastUpdate?: Date | null;
|
|
3029
3110
|
kod?: string | null;
|
|
3030
3111
|
nazev?: string | null;
|
|
@@ -3059,7 +3140,6 @@ declare class AFAutotisk extends AFEntity {
|
|
|
3059
3140
|
static EntityPath: string;
|
|
3060
3141
|
static EntityName: string;
|
|
3061
3142
|
static EntityType: string;
|
|
3062
|
-
id?: number | null;
|
|
3063
3143
|
lastUpdate?: Date | null;
|
|
3064
3144
|
pocet?: number | null;
|
|
3065
3145
|
typTiskDoklK?: any | null;
|
|
@@ -3077,7 +3157,6 @@ declare class AFTypSkladovyPohyb extends AFEntity {
|
|
|
3077
3157
|
static EntityPath: string;
|
|
3078
3158
|
static EntityName: string;
|
|
3079
3159
|
static EntityType: string;
|
|
3080
|
-
id?: number | null;
|
|
3081
3160
|
lastUpdate?: Date | null;
|
|
3082
3161
|
kod?: string | null;
|
|
3083
3162
|
nazev?: string | null;
|
|
@@ -3132,7 +3211,6 @@ declare class AFInventuraPolozka extends AFEntity {
|
|
|
3132
3211
|
static EntityPath: string;
|
|
3133
3212
|
static EntityName: string;
|
|
3134
3213
|
static EntityType: string;
|
|
3135
|
-
id?: number | null;
|
|
3136
3214
|
lastUpdate?: Date | null;
|
|
3137
3215
|
mnozMjReal?: Big | null;
|
|
3138
3216
|
mnozMjKarta?: Big | null;
|
|
@@ -3166,7 +3244,6 @@ declare class AFInventura extends AFEntity {
|
|
|
3166
3244
|
static EntityPath: string;
|
|
3167
3245
|
static EntityName: string;
|
|
3168
3246
|
static EntityType: string;
|
|
3169
|
-
id?: number | null;
|
|
3170
3247
|
lastUpdate?: Date | null;
|
|
3171
3248
|
popisInventury?: string | null;
|
|
3172
3249
|
typInventury?: string | null;
|
|
@@ -3224,7 +3301,6 @@ declare class AFVazba extends AFEntity {
|
|
|
3224
3301
|
static EntityPath: string;
|
|
3225
3302
|
static EntityName: string;
|
|
3226
3303
|
static EntityType: string;
|
|
3227
|
-
id?: number | null;
|
|
3228
3304
|
typVazbyK?: TypVazbyDokl | null;
|
|
3229
3305
|
castka?: Big | null;
|
|
3230
3306
|
storno?: boolean | null;
|
|
@@ -3236,7 +3312,6 @@ declare class AFSkladovyPohyb extends AFEntity {
|
|
|
3236
3312
|
static EntityPath: string;
|
|
3237
3313
|
static EntityName: string;
|
|
3238
3314
|
static EntityType: string;
|
|
3239
|
-
id?: number | null;
|
|
3240
3315
|
lastUpdate?: Date | null;
|
|
3241
3316
|
updatedBy?: AFUzivatel | null;
|
|
3242
3317
|
createdBy?: AFUzivatel | null;
|
|
@@ -3340,7 +3415,6 @@ declare class AFFormaUhradyZauctovani extends AFEntity {
|
|
|
3340
3415
|
static EntityPath: string;
|
|
3341
3416
|
static EntityName: string;
|
|
3342
3417
|
static EntityType: string;
|
|
3343
|
-
id?: number | null;
|
|
3344
3418
|
lastUpdate?: Date | null;
|
|
3345
3419
|
formaUhradyCis?: AFFormaUhrady | null;
|
|
3346
3420
|
typDokl?: AFTypDokladu | null;
|
|
@@ -3355,7 +3429,6 @@ declare class AFFormaUhrady extends AFEntity {
|
|
|
3355
3429
|
static EntityPath: string;
|
|
3356
3430
|
static EntityName: string;
|
|
3357
3431
|
static EntityType: string;
|
|
3358
|
-
id?: number | null;
|
|
3359
3432
|
lastUpdate?: Date | null;
|
|
3360
3433
|
kod?: string | null;
|
|
3361
3434
|
nazev?: string | null;
|
|
@@ -3388,7 +3461,6 @@ declare class AFRadaFakturyVydane extends AFEntity {
|
|
|
3388
3461
|
static EntityPath: string;
|
|
3389
3462
|
static EntityName: string;
|
|
3390
3463
|
static EntityType: string;
|
|
3391
|
-
id?: number | null;
|
|
3392
3464
|
lastUpdate?: Date | null;
|
|
3393
3465
|
kod?: string | null;
|
|
3394
3466
|
nazev?: string | null;
|
|
@@ -3411,7 +3483,6 @@ declare class AFRadaBanka extends AFEntity {
|
|
|
3411
3483
|
static EntityPath: string;
|
|
3412
3484
|
static EntityName: string;
|
|
3413
3485
|
static EntityType: string;
|
|
3414
|
-
id?: number | null;
|
|
3415
3486
|
lastUpdate?: Date | null;
|
|
3416
3487
|
kod?: string | null;
|
|
3417
3488
|
nazev?: string | null;
|
|
@@ -3434,7 +3505,6 @@ declare class AFPenezniUstav extends AFEntity {
|
|
|
3434
3505
|
static EntityPath: string;
|
|
3435
3506
|
static EntityName: string;
|
|
3436
3507
|
static EntityType: string;
|
|
3437
|
-
id?: number | null;
|
|
3438
3508
|
lastUpdate?: Date | null;
|
|
3439
3509
|
kod?: string | null;
|
|
3440
3510
|
nazev?: string | null;
|
|
@@ -3455,7 +3525,6 @@ declare class AFFormatElektronickehoBankovnictvi extends AFEntity {
|
|
|
3455
3525
|
static EntityPath: string;
|
|
3456
3526
|
static EntityName: string;
|
|
3457
3527
|
static EntityType: string;
|
|
3458
|
-
id?: number | null;
|
|
3459
3528
|
lastUpdate?: Date | null;
|
|
3460
3529
|
kod?: string | null;
|
|
3461
3530
|
nazev?: string | null;
|
|
@@ -3477,7 +3546,6 @@ declare class AFFormatElektronickehoPrikazu extends AFEntity {
|
|
|
3477
3546
|
static EntityPath: string;
|
|
3478
3547
|
static EntityName: string;
|
|
3479
3548
|
static EntityType: string;
|
|
3480
|
-
id?: number | null;
|
|
3481
3549
|
lastUpdate?: Date | null;
|
|
3482
3550
|
kod?: string | null;
|
|
3483
3551
|
nazev?: string | null;
|
|
@@ -3504,7 +3572,6 @@ declare class AFBankovniUcet extends AFEntity {
|
|
|
3504
3572
|
static EntityPath: string;
|
|
3505
3573
|
static EntityName: string;
|
|
3506
3574
|
static EntityType: string;
|
|
3507
|
-
id?: number | null;
|
|
3508
3575
|
lastUpdate?: Date | null;
|
|
3509
3576
|
kod?: string | null;
|
|
3510
3577
|
nazev?: string | null;
|
|
@@ -3569,7 +3636,6 @@ declare class AFKonstSymbol extends AFEntity {
|
|
|
3569
3636
|
static EntityPath: string;
|
|
3570
3637
|
static EntityName: string;
|
|
3571
3638
|
static EntityType: string;
|
|
3572
|
-
id?: number | null;
|
|
3573
3639
|
lastUpdate?: Date | null;
|
|
3574
3640
|
kod?: string | null;
|
|
3575
3641
|
nazev?: string | null;
|
|
@@ -3590,7 +3656,6 @@ declare class AFCleneniKontrolniHlaseni extends AFEntity {
|
|
|
3590
3656
|
static EntityPath: string;
|
|
3591
3657
|
static EntityName: string;
|
|
3592
3658
|
static EntityType: string;
|
|
3593
|
-
id?: number | null;
|
|
3594
3659
|
lastUpdate?: Date | null;
|
|
3595
3660
|
kod?: string | null;
|
|
3596
3661
|
nazev?: string | null;
|
|
@@ -3617,7 +3682,6 @@ declare class AFTypFakturyVydane extends AFEntity {
|
|
|
3617
3682
|
static EntityPath: string;
|
|
3618
3683
|
static EntityName: string;
|
|
3619
3684
|
static EntityType: string;
|
|
3620
|
-
id?: number | null;
|
|
3621
3685
|
lastUpdate?: Date | null;
|
|
3622
3686
|
kod?: string | null;
|
|
3623
3687
|
nazev?: string | null;
|
|
@@ -3695,7 +3759,6 @@ declare class AFRadaFakturyPrijate extends AFEntity {
|
|
|
3695
3759
|
static EntityPath: string;
|
|
3696
3760
|
static EntityName: string;
|
|
3697
3761
|
static EntityType: string;
|
|
3698
|
-
id?: number | null;
|
|
3699
3762
|
lastUpdate?: Date | null;
|
|
3700
3763
|
kod?: string | null;
|
|
3701
3764
|
nazev?: string | null;
|
|
@@ -3718,7 +3781,6 @@ declare class AFTypFakturyPrijate extends AFEntity {
|
|
|
3718
3781
|
static EntityPath: string;
|
|
3719
3782
|
static EntityName: string;
|
|
3720
3783
|
static EntityType: string;
|
|
3721
|
-
id?: number | null;
|
|
3722
3784
|
lastUpdate?: Date | null;
|
|
3723
3785
|
kod?: string | null;
|
|
3724
3786
|
nazev?: string | null;
|
|
@@ -3780,7 +3842,6 @@ declare class AFRadaNabidkyVydane extends AFEntity {
|
|
|
3780
3842
|
static EntityPath: string;
|
|
3781
3843
|
static EntityName: string;
|
|
3782
3844
|
static EntityType: string;
|
|
3783
|
-
id?: number | null;
|
|
3784
3845
|
lastUpdate?: Date | null;
|
|
3785
3846
|
kod?: string | null;
|
|
3786
3847
|
nazev?: string | null;
|
|
@@ -3803,7 +3864,6 @@ declare class AFTypNabidkyVydane extends AFEntity {
|
|
|
3803
3864
|
static EntityPath: string;
|
|
3804
3865
|
static EntityName: string;
|
|
3805
3866
|
static EntityType: string;
|
|
3806
|
-
id?: number | null;
|
|
3807
3867
|
lastUpdate?: Date | null;
|
|
3808
3868
|
kod?: string | null;
|
|
3809
3869
|
nazev?: string | null;
|
|
@@ -3845,7 +3905,6 @@ declare class AFRadaObjednavkyPrijate extends AFEntity {
|
|
|
3845
3905
|
static EntityPath: string;
|
|
3846
3906
|
static EntityName: string;
|
|
3847
3907
|
static EntityType: string;
|
|
3848
|
-
id?: number | null;
|
|
3849
3908
|
lastUpdate?: Date | null;
|
|
3850
3909
|
kod?: string | null;
|
|
3851
3910
|
nazev?: string | null;
|
|
@@ -3868,7 +3927,6 @@ declare class AFTypObjednavkyPrijate extends AFEntity {
|
|
|
3868
3927
|
static EntityPath: string;
|
|
3869
3928
|
static EntityName: string;
|
|
3870
3929
|
static EntityType: string;
|
|
3871
|
-
id?: number | null;
|
|
3872
3930
|
lastUpdate?: Date | null;
|
|
3873
3931
|
kod?: string | null;
|
|
3874
3932
|
nazev?: string | null;
|
|
@@ -3924,7 +3982,6 @@ declare class AFRadaPoptavkyVydane extends AFEntity {
|
|
|
3924
3982
|
static EntityPath: string;
|
|
3925
3983
|
static EntityName: string;
|
|
3926
3984
|
static EntityType: string;
|
|
3927
|
-
id?: number | null;
|
|
3928
3985
|
lastUpdate?: Date | null;
|
|
3929
3986
|
kod?: string | null;
|
|
3930
3987
|
nazev?: string | null;
|
|
@@ -3947,7 +4004,6 @@ declare class AFTypPoptavkyVydane extends AFEntity {
|
|
|
3947
4004
|
static EntityPath: string;
|
|
3948
4005
|
static EntityName: string;
|
|
3949
4006
|
static EntityType: string;
|
|
3950
|
-
id?: number | null;
|
|
3951
4007
|
lastUpdate?: Date | null;
|
|
3952
4008
|
kod?: string | null;
|
|
3953
4009
|
nazev?: string | null;
|
|
@@ -3987,7 +4043,6 @@ declare class AFRadaNabidkyPrijate extends AFEntity {
|
|
|
3987
4043
|
static EntityPath: string;
|
|
3988
4044
|
static EntityName: string;
|
|
3989
4045
|
static EntityType: string;
|
|
3990
|
-
id?: number | null;
|
|
3991
4046
|
lastUpdate?: Date | null;
|
|
3992
4047
|
kod?: string | null;
|
|
3993
4048
|
nazev?: string | null;
|
|
@@ -4010,7 +4065,6 @@ declare class AFTypNabidkyPrijate extends AFEntity {
|
|
|
4010
4065
|
static EntityPath: string;
|
|
4011
4066
|
static EntityName: string;
|
|
4012
4067
|
static EntityType: string;
|
|
4013
|
-
id?: number | null;
|
|
4014
4068
|
lastUpdate?: Date | null;
|
|
4015
4069
|
kod?: string | null;
|
|
4016
4070
|
nazev?: string | null;
|
|
@@ -4049,7 +4103,6 @@ declare class AFRadaObjednavkyVydane extends AFEntity {
|
|
|
4049
4103
|
static EntityPath: string;
|
|
4050
4104
|
static EntityName: string;
|
|
4051
4105
|
static EntityType: string;
|
|
4052
|
-
id?: number | null;
|
|
4053
4106
|
lastUpdate?: Date | null;
|
|
4054
4107
|
kod?: string | null;
|
|
4055
4108
|
nazev?: string | null;
|
|
@@ -4072,7 +4125,6 @@ declare class AFTypObjednavkyVydane extends AFEntity {
|
|
|
4072
4125
|
static EntityPath: string;
|
|
4073
4126
|
static EntityName: string;
|
|
4074
4127
|
static EntityType: string;
|
|
4075
|
-
id?: number | null;
|
|
4076
4128
|
lastUpdate?: Date | null;
|
|
4077
4129
|
kod?: string | null;
|
|
4078
4130
|
nazev?: string | null;
|
|
@@ -4115,7 +4167,6 @@ declare class AFRadaInternihoDokladu extends AFEntity {
|
|
|
4115
4167
|
static EntityPath: string;
|
|
4116
4168
|
static EntityName: string;
|
|
4117
4169
|
static EntityType: string;
|
|
4118
|
-
id?: number | null;
|
|
4119
4170
|
lastUpdate?: Date | null;
|
|
4120
4171
|
kod?: string | null;
|
|
4121
4172
|
nazev?: string | null;
|
|
@@ -4138,7 +4189,6 @@ declare class AFTypInternihoDokladu extends AFEntity {
|
|
|
4138
4189
|
static EntityPath: string;
|
|
4139
4190
|
static EntityName: string;
|
|
4140
4191
|
static EntityType: string;
|
|
4141
|
-
id?: number | null;
|
|
4142
4192
|
lastUpdate?: Date | null;
|
|
4143
4193
|
kod?: string | null;
|
|
4144
4194
|
nazev?: string | null;
|
|
@@ -4179,7 +4229,6 @@ declare class AFRadaPohledavky extends AFEntity {
|
|
|
4179
4229
|
static EntityPath: string;
|
|
4180
4230
|
static EntityName: string;
|
|
4181
4231
|
static EntityType: string;
|
|
4182
|
-
id?: number | null;
|
|
4183
4232
|
lastUpdate?: Date | null;
|
|
4184
4233
|
kod?: string | null;
|
|
4185
4234
|
nazev?: string | null;
|
|
@@ -4202,7 +4251,6 @@ declare class AFTypPohledavky extends AFEntity {
|
|
|
4202
4251
|
static EntityPath: string;
|
|
4203
4252
|
static EntityName: string;
|
|
4204
4253
|
static EntityType: string;
|
|
4205
|
-
id?: number | null;
|
|
4206
4254
|
lastUpdate?: Date | null;
|
|
4207
4255
|
kod?: string | null;
|
|
4208
4256
|
nazev?: string | null;
|
|
@@ -4258,7 +4306,6 @@ declare class AFRadaZavazku extends AFEntity {
|
|
|
4258
4306
|
static EntityPath: string;
|
|
4259
4307
|
static EntityName: string;
|
|
4260
4308
|
static EntityType: string;
|
|
4261
|
-
id?: number | null;
|
|
4262
4309
|
lastUpdate?: Date | null;
|
|
4263
4310
|
kod?: string | null;
|
|
4264
4311
|
nazev?: string | null;
|
|
@@ -4281,7 +4328,6 @@ declare class AFTypZavazku extends AFEntity {
|
|
|
4281
4328
|
static EntityPath: string;
|
|
4282
4329
|
static EntityName: string;
|
|
4283
4330
|
static EntityType: string;
|
|
4284
|
-
id?: number | null;
|
|
4285
4331
|
lastUpdate?: Date | null;
|
|
4286
4332
|
kod?: string | null;
|
|
4287
4333
|
nazev?: string | null;
|
|
@@ -4337,7 +4383,6 @@ declare class AFRadaPokladniPohyb extends AFEntity {
|
|
|
4337
4383
|
static EntityPath: string;
|
|
4338
4384
|
static EntityName: string;
|
|
4339
4385
|
static EntityType: string;
|
|
4340
|
-
id?: number | null;
|
|
4341
4386
|
lastUpdate?: Date | null;
|
|
4342
4387
|
kod?: string | null;
|
|
4343
4388
|
nazev?: string | null;
|
|
@@ -4360,7 +4405,6 @@ declare class AFPokladna extends AFEntity {
|
|
|
4360
4405
|
static EntityPath: string;
|
|
4361
4406
|
static EntityName: string;
|
|
4362
4407
|
static EntityType: string;
|
|
4363
|
-
id?: number | null;
|
|
4364
4408
|
lastUpdate?: Date | null;
|
|
4365
4409
|
kod?: string | null;
|
|
4366
4410
|
nazev?: string | null;
|
|
@@ -4391,7 +4435,6 @@ declare class AFTypPokladniPohyb extends AFEntity {
|
|
|
4391
4435
|
static EntityPath: string;
|
|
4392
4436
|
static EntityName: string;
|
|
4393
4437
|
static EntityType: string;
|
|
4394
|
-
id?: number | null;
|
|
4395
4438
|
lastUpdate?: Date | null;
|
|
4396
4439
|
kod?: string | null;
|
|
4397
4440
|
nazev?: string | null;
|
|
@@ -4456,7 +4499,6 @@ declare class AFTypBanka extends AFEntity {
|
|
|
4456
4499
|
static EntityPath: string;
|
|
4457
4500
|
static EntityName: string;
|
|
4458
4501
|
static EntityType: string;
|
|
4459
|
-
id?: number | null;
|
|
4460
4502
|
lastUpdate?: Date | null;
|
|
4461
4503
|
kod?: string | null;
|
|
4462
4504
|
nazev?: string | null;
|
|
@@ -4501,7 +4543,6 @@ declare class AFAdresarBankovniUcet extends AFEntity {
|
|
|
4501
4543
|
static EntityPath: string;
|
|
4502
4544
|
static EntityName: string;
|
|
4503
4545
|
static EntityType: string;
|
|
4504
|
-
id?: number | null;
|
|
4505
4546
|
lastUpdate?: Date | null;
|
|
4506
4547
|
ulice?: string | null;
|
|
4507
4548
|
mesto?: string | null;
|
|
@@ -4531,7 +4572,6 @@ declare class AFNastaveni extends AFEntity {
|
|
|
4531
4572
|
static EntityPath: string;
|
|
4532
4573
|
static EntityName: string;
|
|
4533
4574
|
static EntityType: string;
|
|
4534
|
-
id?: number | null;
|
|
4535
4575
|
lastUpdate?: Date | null;
|
|
4536
4576
|
platiOdData?: Date | null;
|
|
4537
4577
|
nazFirmy?: string | null;
|
|
@@ -4755,7 +4795,6 @@ declare class AFReport extends AFEntity {
|
|
|
4755
4795
|
static EntityPath: string;
|
|
4756
4796
|
static EntityName: string;
|
|
4757
4797
|
static EntityType: string;
|
|
4758
|
-
id?: number | null;
|
|
4759
4798
|
lastUpdate?: Date | null;
|
|
4760
4799
|
kod?: string | null;
|
|
4761
4800
|
nazev?: string | null;
|
|
@@ -4783,7 +4822,6 @@ declare class AFTypSmlouvy extends AFEntity {
|
|
|
4783
4822
|
static EntityPath: string;
|
|
4784
4823
|
static EntityName: string;
|
|
4785
4824
|
static EntityType: string;
|
|
4786
|
-
id?: number | null;
|
|
4787
4825
|
lastUpdate?: Date | null;
|
|
4788
4826
|
kod?: string | null;
|
|
4789
4827
|
nazev?: string | null;
|
|
@@ -4823,7 +4861,6 @@ declare class AFStavSmlouvy extends AFEntity {
|
|
|
4823
4861
|
static EntityPath: string;
|
|
4824
4862
|
static EntityName: string;
|
|
4825
4863
|
static EntityType: string;
|
|
4826
|
-
id?: number | null;
|
|
4827
4864
|
lastUpdate?: Date | null;
|
|
4828
4865
|
kod?: string | null;
|
|
4829
4866
|
nazev?: string | null;
|
|
@@ -4845,7 +4882,6 @@ declare class AFSmlouvaPolozka extends AFEntity {
|
|
|
4845
4882
|
static EntityPath: string;
|
|
4846
4883
|
static EntityName: string;
|
|
4847
4884
|
static EntityType: string;
|
|
4848
|
-
id?: number | null;
|
|
4849
4885
|
lastUpdate?: Date | null;
|
|
4850
4886
|
kod?: string | null;
|
|
4851
4887
|
nazev?: string | null;
|
|
@@ -4903,7 +4939,6 @@ declare class AFSmlouva extends AFEntity {
|
|
|
4903
4939
|
static EntityPath: string;
|
|
4904
4940
|
static EntityName: string;
|
|
4905
4941
|
static EntityType: string;
|
|
4906
|
-
id?: number | null;
|
|
4907
4942
|
lastUpdate?: Date | null;
|
|
4908
4943
|
kod?: string | null;
|
|
4909
4944
|
nazev?: string | null;
|
|
@@ -4972,7 +5007,6 @@ declare class AFStromKoren extends AFEntity {
|
|
|
4972
5007
|
static EntityPath: string;
|
|
4973
5008
|
static EntityName: string;
|
|
4974
5009
|
static EntityType: string;
|
|
4975
|
-
id?: number | null;
|
|
4976
5010
|
lastUpdate?: Date | null;
|
|
4977
5011
|
kod?: string | null;
|
|
4978
5012
|
nazev?: string | null;
|
|
@@ -4995,7 +5029,6 @@ declare class AFStrom extends AFEntity {
|
|
|
4995
5029
|
static EntityPath: string;
|
|
4996
5030
|
static EntityName: string;
|
|
4997
5031
|
static EntityType: string;
|
|
4998
|
-
id?: number | null;
|
|
4999
5032
|
lastUpdate?: Date | null;
|
|
5000
5033
|
kod?: string | null;
|
|
5001
5034
|
nazev?: string | null;
|
|
@@ -5023,7 +5056,6 @@ declare class AFPriloha extends AFEntity {
|
|
|
5023
5056
|
static EntityPath: string;
|
|
5024
5057
|
static EntityName: string;
|
|
5025
5058
|
static EntityType: string;
|
|
5026
|
-
id?: number | null;
|
|
5027
5059
|
lastUpdate?: Date | null;
|
|
5028
5060
|
nazSoub?: string | null;
|
|
5029
5061
|
poznam?: string | null;
|
|
@@ -5065,7 +5097,6 @@ declare class AFZakazka extends AFEntity {
|
|
|
5065
5097
|
static EntityPath: string;
|
|
5066
5098
|
static EntityName: string;
|
|
5067
5099
|
static EntityType: string;
|
|
5068
|
-
id?: number | null;
|
|
5069
5100
|
lastUpdate?: Date | null;
|
|
5070
5101
|
kod?: string | null;
|
|
5071
5102
|
nazev?: string | null;
|
|
@@ -5118,7 +5149,6 @@ declare class AFOdpisovaSkupina extends AFEntity {
|
|
|
5118
5149
|
static EntityPath: string;
|
|
5119
5150
|
static EntityName: string;
|
|
5120
5151
|
static EntityType: string;
|
|
5121
|
-
id?: number | null;
|
|
5122
5152
|
lastUpdate?: Date | null;
|
|
5123
5153
|
kod?: string | null;
|
|
5124
5154
|
nazev?: string | null;
|
|
@@ -5150,7 +5180,6 @@ declare class AFUmisteni extends AFEntity {
|
|
|
5150
5180
|
static EntityPath: string;
|
|
5151
5181
|
static EntityName: string;
|
|
5152
5182
|
static EntityType: string;
|
|
5153
|
-
id?: number | null;
|
|
5154
5183
|
lastUpdate?: Date | null;
|
|
5155
5184
|
kod?: string | null;
|
|
5156
5185
|
nazev?: string | null;
|
|
@@ -5171,7 +5200,6 @@ declare class AFTypMajetku extends AFEntity {
|
|
|
5171
5200
|
static EntityPath: string;
|
|
5172
5201
|
static EntityName: string;
|
|
5173
5202
|
static EntityType: string;
|
|
5174
|
-
id?: number | null;
|
|
5175
5203
|
lastUpdate?: Date | null;
|
|
5176
5204
|
kod?: string | null;
|
|
5177
5205
|
nazev?: string | null;
|
|
@@ -5203,7 +5231,6 @@ declare class AFCleneniDph extends AFEntity {
|
|
|
5203
5231
|
static EntityPath: string;
|
|
5204
5232
|
static EntityName: string;
|
|
5205
5233
|
static EntityType: string;
|
|
5206
|
-
id?: number | null;
|
|
5207
5234
|
lastUpdate?: Date | null;
|
|
5208
5235
|
kod?: string | null;
|
|
5209
5236
|
nazev?: string | null;
|
|
@@ -5232,7 +5259,6 @@ declare class AFSazbaDph extends AFEntity {
|
|
|
5232
5259
|
static EntityPath: string;
|
|
5233
5260
|
static EntityName: string;
|
|
5234
5261
|
static EntityType: string;
|
|
5235
|
-
id?: number | null;
|
|
5236
5262
|
lastUpdate?: Date | null;
|
|
5237
5263
|
typSzbDphK?: TypSzbDph | null;
|
|
5238
5264
|
szbDph?: Big | null;
|
|
@@ -5251,7 +5277,6 @@ declare class AFDodavatelskyTypSmlouvy extends AFEntity {
|
|
|
5251
5277
|
static EntityPath: string;
|
|
5252
5278
|
static EntityName: string;
|
|
5253
5279
|
static EntityType: string;
|
|
5254
|
-
id?: number | null;
|
|
5255
5280
|
lastUpdate?: Date | null;
|
|
5256
5281
|
kod?: string | null;
|
|
5257
5282
|
nazev?: string | null;
|
|
@@ -5285,7 +5310,6 @@ declare class AFDodavatelskaSmlouva extends AFEntity {
|
|
|
5285
5310
|
static EntityPath: string;
|
|
5286
5311
|
static EntityName: string;
|
|
5287
5312
|
static EntityType: string;
|
|
5288
|
-
id?: number | null;
|
|
5289
5313
|
lastUpdate?: Date | null;
|
|
5290
5314
|
kod?: string | null;
|
|
5291
5315
|
nazev?: string | null;
|
|
@@ -5351,7 +5375,6 @@ declare class AFSkupinaPlneni extends AFEntity {
|
|
|
5351
5375
|
static EntityPath: string;
|
|
5352
5376
|
static EntityName: string;
|
|
5353
5377
|
static EntityType: string;
|
|
5354
|
-
id?: number | null;
|
|
5355
5378
|
lastUpdate?: Date | null;
|
|
5356
5379
|
kod?: string | null;
|
|
5357
5380
|
nazev?: string | null;
|
|
@@ -5372,7 +5395,6 @@ declare class AFFakturaPrijataPolozka extends AFEntity {
|
|
|
5372
5395
|
static EntityPath: string;
|
|
5373
5396
|
static EntityName: string;
|
|
5374
5397
|
static EntityType: string;
|
|
5375
|
-
id?: number | null;
|
|
5376
5398
|
lastUpdate?: Date | null;
|
|
5377
5399
|
updatedBy?: AFUzivatel | null;
|
|
5378
5400
|
createdBy?: AFUzivatel | null;
|
|
@@ -5546,7 +5568,6 @@ declare class AFFakturaPrijata extends AFEntity {
|
|
|
5546
5568
|
static EntityPath: string;
|
|
5547
5569
|
static EntityName: string;
|
|
5548
5570
|
static EntityType: string;
|
|
5549
|
-
id?: number | null;
|
|
5550
5571
|
lastUpdate?: Date | null;
|
|
5551
5572
|
updatedBy?: AFUzivatel | null;
|
|
5552
5573
|
createdBy?: AFUzivatel | null;
|
|
@@ -5719,7 +5740,6 @@ declare class AFDanovyOdpis extends AFEntity {
|
|
|
5719
5740
|
static EntityPath: string;
|
|
5720
5741
|
static EntityName: string;
|
|
5721
5742
|
static EntityType: string;
|
|
5722
|
-
id?: number | null;
|
|
5723
5743
|
ucetni?: boolean | null;
|
|
5724
5744
|
zmena?: boolean | null;
|
|
5725
5745
|
datVyst?: Date | null;
|
|
@@ -5746,7 +5766,6 @@ declare class AFUcetniOdpis extends AFEntity {
|
|
|
5746
5766
|
static EntityPath: string;
|
|
5747
5767
|
static EntityName: string;
|
|
5748
5768
|
static EntityType: string;
|
|
5749
|
-
id?: number | null;
|
|
5750
5769
|
ucetni?: boolean | null;
|
|
5751
5770
|
zmena?: boolean | null;
|
|
5752
5771
|
datVyst?: Date | null;
|
|
@@ -5772,7 +5791,6 @@ declare class AFMajetekUdalost extends AFEntity {
|
|
|
5772
5791
|
static EntityPath: string;
|
|
5773
5792
|
static EntityName: string;
|
|
5774
5793
|
static EntityType: string;
|
|
5775
|
-
id?: number | null;
|
|
5776
5794
|
lastUpdate?: Date | null;
|
|
5777
5795
|
ucetni?: boolean | null;
|
|
5778
5796
|
typUdalostiK?: TypUdal | null;
|
|
@@ -5807,7 +5825,6 @@ declare class AFTypLeasingu extends AFEntity {
|
|
|
5807
5825
|
static EntityPath: string;
|
|
5808
5826
|
static EntityName: string;
|
|
5809
5827
|
static EntityType: string;
|
|
5810
|
-
id?: number | null;
|
|
5811
5828
|
lastUpdate?: Date | null;
|
|
5812
5829
|
kod?: string | null;
|
|
5813
5830
|
nazev?: string | null;
|
|
@@ -5838,7 +5855,6 @@ declare class AFSplatkovyKalendar extends AFEntity {
|
|
|
5838
5855
|
static EntityPath: string;
|
|
5839
5856
|
static EntityName: string;
|
|
5840
5857
|
static EntityType: string;
|
|
5841
|
-
id?: number | null;
|
|
5842
5858
|
lastUpdate?: Date | null;
|
|
5843
5859
|
ucetni?: boolean | null;
|
|
5844
5860
|
clenSplK?: ClenSpl | null;
|
|
@@ -5875,7 +5891,6 @@ declare class AFDanovyNaklad extends AFEntity {
|
|
|
5875
5891
|
static EntityPath: string;
|
|
5876
5892
|
static EntityName: string;
|
|
5877
5893
|
static EntityType: string;
|
|
5878
|
-
id?: number | null;
|
|
5879
5894
|
lastUpdate?: Date | null;
|
|
5880
5895
|
ucetni?: boolean | null;
|
|
5881
5896
|
datVyst?: Date | null;
|
|
@@ -5900,7 +5915,6 @@ declare class AFLeasing extends AFEntity {
|
|
|
5900
5915
|
static EntityPath: string;
|
|
5901
5916
|
static EntityName: string;
|
|
5902
5917
|
static EntityType: string;
|
|
5903
|
-
id?: number | null;
|
|
5904
5918
|
lastUpdate?: Date | null;
|
|
5905
5919
|
kod?: string | null;
|
|
5906
5920
|
nazev?: string | null;
|
|
@@ -5963,7 +5977,6 @@ declare class AFZapujcka extends AFEntity {
|
|
|
5963
5977
|
static EntityPath: string;
|
|
5964
5978
|
static EntityName: string;
|
|
5965
5979
|
static EntityType: string;
|
|
5966
|
-
id?: number | null;
|
|
5967
5980
|
lastUpdate?: Date | null;
|
|
5968
5981
|
jmeno?: string | null;
|
|
5969
5982
|
prijmeni?: string | null;
|
|
@@ -5995,7 +6008,6 @@ declare class AFMajetek extends AFEntity {
|
|
|
5995
6008
|
static EntityPath: string;
|
|
5996
6009
|
static EntityName: string;
|
|
5997
6010
|
static EntityType: string;
|
|
5998
|
-
id?: number | null;
|
|
5999
6011
|
lastUpdate?: Date | null;
|
|
6000
6012
|
kod?: string | null;
|
|
6001
6013
|
nazev?: string | null;
|
|
@@ -6081,7 +6093,6 @@ declare class AFTypNakladu extends AFEntity {
|
|
|
6081
6093
|
static EntityPath: string;
|
|
6082
6094
|
static EntityName: string;
|
|
6083
6095
|
static EntityType: string;
|
|
6084
|
-
id?: number | null;
|
|
6085
6096
|
lastUpdate?: Date | null;
|
|
6086
6097
|
kod?: string | null;
|
|
6087
6098
|
nazev?: string | null;
|
|
@@ -6103,7 +6114,6 @@ declare class AFNaklad extends AFEntity {
|
|
|
6103
6114
|
static EntityPath: string;
|
|
6104
6115
|
static EntityName: string;
|
|
6105
6116
|
static EntityType: string;
|
|
6106
|
-
id?: number | null;
|
|
6107
6117
|
lastUpdate?: Date | null;
|
|
6108
6118
|
faktMnoz?: Big | null;
|
|
6109
6119
|
fakturovat?: boolean | null;
|
|
@@ -6125,7 +6135,6 @@ declare class AFUdalost extends AFEntity {
|
|
|
6125
6135
|
static EntityPath: string;
|
|
6126
6136
|
static EntityName: string;
|
|
6127
6137
|
static EntityType: string;
|
|
6128
|
-
id?: number | null;
|
|
6129
6138
|
lastUpdate?: Date | null;
|
|
6130
6139
|
popis?: string | null;
|
|
6131
6140
|
poznam?: string | null;
|
|
@@ -6173,7 +6182,6 @@ declare class AFUzivatel extends AFEntity {
|
|
|
6173
6182
|
static EntityPath: string;
|
|
6174
6183
|
static EntityName: string;
|
|
6175
6184
|
static EntityType: string;
|
|
6176
|
-
id?: number | null;
|
|
6177
6185
|
lastUpdate?: Date | null;
|
|
6178
6186
|
ulice?: string | null;
|
|
6179
6187
|
mesto?: string | null;
|
|
@@ -6216,7 +6224,6 @@ declare class AFAdresar extends AFEntity {
|
|
|
6216
6224
|
static EntityPath: string;
|
|
6217
6225
|
static EntityName: string;
|
|
6218
6226
|
static EntityType: string;
|
|
6219
|
-
id?: number | null;
|
|
6220
6227
|
lastUpdate?: Date | null;
|
|
6221
6228
|
kod?: string | null;
|
|
6222
6229
|
nazev?: string | null;
|
|
@@ -6304,7 +6311,6 @@ declare class AFStat extends AFEntity {
|
|
|
6304
6311
|
static EntityPath: string;
|
|
6305
6312
|
static EntityName: string;
|
|
6306
6313
|
static EntityType: string;
|
|
6307
|
-
id?: number | null;
|
|
6308
6314
|
lastUpdate?: Date | null;
|
|
6309
6315
|
kod?: string | null;
|
|
6310
6316
|
nazev?: string | null;
|
|
@@ -6334,7 +6340,6 @@ declare class AFKontakt extends AFEntity {
|
|
|
6334
6340
|
static EntityPath: string;
|
|
6335
6341
|
static EntityName: string;
|
|
6336
6342
|
static EntityType: string;
|
|
6337
|
-
id?: number | null;
|
|
6338
6343
|
lastUpdate?: Date | null;
|
|
6339
6344
|
ulice?: string | null;
|
|
6340
6345
|
mesto?: string | null;
|
|
@@ -6386,7 +6391,6 @@ declare class AFSmlouvaZurnal extends AFEntity {
|
|
|
6386
6391
|
static EntityPath: string;
|
|
6387
6392
|
static EntityName: string;
|
|
6388
6393
|
static EntityType: string;
|
|
6389
|
-
id?: number | null;
|
|
6390
6394
|
lastUpdate?: Date | null;
|
|
6391
6395
|
datCas?: Date | null;
|
|
6392
6396
|
transakceK?: OperaceZurnalSmlouvy | null;
|
|
@@ -6402,7 +6406,6 @@ declare class AFStavObchodnihoDokladu extends AFEntity {
|
|
|
6402
6406
|
static EntityPath: string;
|
|
6403
6407
|
static EntityName: string;
|
|
6404
6408
|
static EntityType: string;
|
|
6405
|
-
id?: number | null;
|
|
6406
6409
|
lastUpdate?: Date | null;
|
|
6407
6410
|
kod?: string | null;
|
|
6408
6411
|
nazev?: string | null;
|
|
@@ -6432,7 +6435,6 @@ declare class AFObjednavkaPrijataPolozka extends AFEntity {
|
|
|
6432
6435
|
static EntityPath: string;
|
|
6433
6436
|
static EntityName: string;
|
|
6434
6437
|
static EntityType: string;
|
|
6435
|
-
id?: number | null;
|
|
6436
6438
|
lastUpdate?: Date | null;
|
|
6437
6439
|
updatedBy?: AFUzivatel | null;
|
|
6438
6440
|
createdBy?: AFUzivatel | null;
|
|
@@ -6519,7 +6521,6 @@ declare class AFObjednavkaPrijata extends AFEntity {
|
|
|
6519
6521
|
static EntityPath: string;
|
|
6520
6522
|
static EntityName: string;
|
|
6521
6523
|
static EntityType: string;
|
|
6522
|
-
id?: number | null;
|
|
6523
6524
|
lastUpdate?: Date | null;
|
|
6524
6525
|
updatedBy?: AFUzivatel | null;
|
|
6525
6526
|
createdBy?: AFUzivatel | null;
|
|
@@ -6652,7 +6653,6 @@ declare class AFObjednavkaVydanaPolozka extends AFEntity {
|
|
|
6652
6653
|
static EntityPath: string;
|
|
6653
6654
|
static EntityName: string;
|
|
6654
6655
|
static EntityType: string;
|
|
6655
|
-
id?: number | null;
|
|
6656
6656
|
lastUpdate?: Date | null;
|
|
6657
6657
|
updatedBy?: AFUzivatel | null;
|
|
6658
6658
|
createdBy?: AFUzivatel | null;
|
|
@@ -6723,7 +6723,6 @@ declare class AFObjednavkaVydana extends AFEntity {
|
|
|
6723
6723
|
static EntityPath: string;
|
|
6724
6724
|
static EntityName: string;
|
|
6725
6725
|
static EntityType: string;
|
|
6726
|
-
id?: number | null;
|
|
6727
6726
|
lastUpdate?: Date | null;
|
|
6728
6727
|
updatedBy?: AFUzivatel | null;
|
|
6729
6728
|
createdBy?: AFUzivatel | null;
|
|
@@ -6836,7 +6835,6 @@ declare class AFPoptavkaVydanaPolozka extends AFEntity {
|
|
|
6836
6835
|
static EntityPath: string;
|
|
6837
6836
|
static EntityName: string;
|
|
6838
6837
|
static EntityType: string;
|
|
6839
|
-
id?: number | null;
|
|
6840
6838
|
lastUpdate?: Date | null;
|
|
6841
6839
|
updatedBy?: AFUzivatel | null;
|
|
6842
6840
|
createdBy?: AFUzivatel | null;
|
|
@@ -6901,7 +6899,6 @@ declare class AFPoptavkaVydana extends AFEntity {
|
|
|
6901
6899
|
static EntityPath: string;
|
|
6902
6900
|
static EntityName: string;
|
|
6903
6901
|
static EntityType: string;
|
|
6904
|
-
id?: number | null;
|
|
6905
6902
|
lastUpdate?: Date | null;
|
|
6906
6903
|
updatedBy?: AFUzivatel | null;
|
|
6907
6904
|
createdBy?: AFUzivatel | null;
|
|
@@ -7009,7 +7006,6 @@ declare class AFRadaPoptavkyPrijate extends AFEntity {
|
|
|
7009
7006
|
static EntityPath: string;
|
|
7010
7007
|
static EntityName: string;
|
|
7011
7008
|
static EntityType: string;
|
|
7012
|
-
id?: number | null;
|
|
7013
7009
|
lastUpdate?: Date | null;
|
|
7014
7010
|
kod?: string | null;
|
|
7015
7011
|
nazev?: string | null;
|
|
@@ -7032,7 +7028,6 @@ declare class AFTypPoptavkyPrijate extends AFEntity {
|
|
|
7032
7028
|
static EntityPath: string;
|
|
7033
7029
|
static EntityName: string;
|
|
7034
7030
|
static EntityType: string;
|
|
7035
|
-
id?: number | null;
|
|
7036
7031
|
lastUpdate?: Date | null;
|
|
7037
7032
|
kod?: string | null;
|
|
7038
7033
|
nazev?: string | null;
|
|
@@ -7072,7 +7067,6 @@ declare class AFPoptavkaPrijataPolozka extends AFEntity {
|
|
|
7072
7067
|
static EntityPath: string;
|
|
7073
7068
|
static EntityName: string;
|
|
7074
7069
|
static EntityType: string;
|
|
7075
|
-
id?: number | null;
|
|
7076
7070
|
lastUpdate?: Date | null;
|
|
7077
7071
|
updatedBy?: AFUzivatel | null;
|
|
7078
7072
|
createdBy?: AFUzivatel | null;
|
|
@@ -7150,7 +7144,6 @@ declare class AFPoptavkaPrijata extends AFEntity {
|
|
|
7150
7144
|
static EntityPath: string;
|
|
7151
7145
|
static EntityName: string;
|
|
7152
7146
|
static EntityType: string;
|
|
7153
|
-
id?: number | null;
|
|
7154
7147
|
lastUpdate?: Date | null;
|
|
7155
7148
|
updatedBy?: AFUzivatel | null;
|
|
7156
7149
|
createdBy?: AFUzivatel | null;
|
|
@@ -7262,7 +7255,6 @@ declare class AFNabidkaVydanaPolozka extends AFEntity {
|
|
|
7262
7255
|
static EntityPath: string;
|
|
7263
7256
|
static EntityName: string;
|
|
7264
7257
|
static EntityType: string;
|
|
7265
|
-
id?: number | null;
|
|
7266
7258
|
lastUpdate?: Date | null;
|
|
7267
7259
|
updatedBy?: AFUzivatel | null;
|
|
7268
7260
|
createdBy?: AFUzivatel | null;
|
|
@@ -7340,7 +7332,6 @@ declare class AFNabidkaVydana extends AFEntity {
|
|
|
7340
7332
|
static EntityPath: string;
|
|
7341
7333
|
static EntityName: string;
|
|
7342
7334
|
static EntityType: string;
|
|
7343
|
-
id?: number | null;
|
|
7344
7335
|
lastUpdate?: Date | null;
|
|
7345
7336
|
updatedBy?: AFUzivatel | null;
|
|
7346
7337
|
createdBy?: AFUzivatel | null;
|
|
@@ -7453,7 +7444,6 @@ declare class AFNabidkaPrijataPolozka extends AFEntity {
|
|
|
7453
7444
|
static EntityPath: string;
|
|
7454
7445
|
static EntityName: string;
|
|
7455
7446
|
static EntityType: string;
|
|
7456
|
-
id?: number | null;
|
|
7457
7447
|
lastUpdate?: Date | null;
|
|
7458
7448
|
updatedBy?: AFUzivatel | null;
|
|
7459
7449
|
createdBy?: AFUzivatel | null;
|
|
@@ -7518,7 +7508,6 @@ declare class AFNabidkaPrijata extends AFEntity {
|
|
|
7518
7508
|
static EntityPath: string;
|
|
7519
7509
|
static EntityName: string;
|
|
7520
7510
|
static EntityType: string;
|
|
7521
|
-
id?: number | null;
|
|
7522
7511
|
lastUpdate?: Date | null;
|
|
7523
7512
|
updatedBy?: AFUzivatel | null;
|
|
7524
7513
|
createdBy?: AFUzivatel | null;
|
|
@@ -7628,7 +7617,6 @@ declare class AFDefStore extends AFEntity {
|
|
|
7628
7617
|
static EntityPath: string;
|
|
7629
7618
|
static EntityName: string;
|
|
7630
7619
|
static EntityType: string;
|
|
7631
|
-
id?: number | null;
|
|
7632
7620
|
lastUpdate?: Date | null;
|
|
7633
7621
|
nazev?: string | null;
|
|
7634
7622
|
nazevA?: string | null;
|
|
@@ -7653,7 +7641,6 @@ declare class AFText extends AFEntity {
|
|
|
7653
7641
|
static EntityPath: string;
|
|
7654
7642
|
static EntityName: string;
|
|
7655
7643
|
static EntityType: string;
|
|
7656
|
-
id?: number | null;
|
|
7657
7644
|
lastUpdate?: Date | null;
|
|
7658
7645
|
popis?: string | null;
|
|
7659
7646
|
nazev?: string | null;
|
|
@@ -7690,7 +7677,6 @@ declare class AFBankovniUcetSkladPokladna extends AFEntity {
|
|
|
7690
7677
|
static EntityPath: string;
|
|
7691
7678
|
static EntityName: string;
|
|
7692
7679
|
static EntityType: string;
|
|
7693
|
-
id?: number | null;
|
|
7694
7680
|
lastUpdate?: Date | null;
|
|
7695
7681
|
kod?: string | null;
|
|
7696
7682
|
nazev?: string | null;
|
|
@@ -7863,7 +7849,6 @@ declare class AFBankovniUcetPokladna extends AFEntity {
|
|
|
7863
7849
|
static EntityPath: string;
|
|
7864
7850
|
static EntityName: string;
|
|
7865
7851
|
static EntityType: string;
|
|
7866
|
-
id?: number | null;
|
|
7867
7852
|
lastUpdate?: Date | null;
|
|
7868
7853
|
kod?: string | null;
|
|
7869
7854
|
nazev?: string | null;
|
|
@@ -7890,7 +7875,6 @@ declare class AFInterniDokladPolozka extends AFEntity {
|
|
|
7890
7875
|
static EntityPath: string;
|
|
7891
7876
|
static EntityName: string;
|
|
7892
7877
|
static EntityType: string;
|
|
7893
|
-
id?: number | null;
|
|
7894
7878
|
lastUpdate?: Date | null;
|
|
7895
7879
|
updatedBy?: AFUzivatel | null;
|
|
7896
7880
|
createdBy?: AFUzivatel | null;
|
|
@@ -7989,7 +7973,6 @@ declare class AFInterniDoklad extends AFEntity {
|
|
|
7989
7973
|
static EntityPath: string;
|
|
7990
7974
|
static EntityName: string;
|
|
7991
7975
|
static EntityType: string;
|
|
7992
|
-
id?: number | null;
|
|
7993
7976
|
lastUpdate?: Date | null;
|
|
7994
7977
|
updatedBy?: AFUzivatel | null;
|
|
7995
7978
|
createdBy?: AFUzivatel | null;
|
|
@@ -8252,7 +8235,6 @@ declare class AFPokladniPohybPolozka extends AFEntity {
|
|
|
8252
8235
|
static EntityPath: string;
|
|
8253
8236
|
static EntityName: string;
|
|
8254
8237
|
static EntityType: string;
|
|
8255
|
-
id?: number | null;
|
|
8256
8238
|
lastUpdate?: Date | null;
|
|
8257
8239
|
updatedBy?: AFUzivatel | null;
|
|
8258
8240
|
createdBy?: AFUzivatel | null;
|
|
@@ -8365,7 +8347,6 @@ declare class AFDokladKUhrade extends AFEntity {
|
|
|
8365
8347
|
static EntityPath: string;
|
|
8366
8348
|
static EntityName: string;
|
|
8367
8349
|
static EntityType: string;
|
|
8368
|
-
id?: number | null;
|
|
8369
8350
|
lastUpdate?: Date | null;
|
|
8370
8351
|
kod?: string | null;
|
|
8371
8352
|
modul?: string | null;
|
|
@@ -8576,7 +8557,6 @@ declare class AFPokladniPohyb extends AFEntity {
|
|
|
8576
8557
|
static EntityPath: string;
|
|
8577
8558
|
static EntityName: string;
|
|
8578
8559
|
static EntityType: string;
|
|
8579
|
-
id?: number | null;
|
|
8580
8560
|
lastUpdate?: Date | null;
|
|
8581
8561
|
updatedBy?: AFUzivatel | null;
|
|
8582
8562
|
createdBy?: AFUzivatel | null;
|
|
@@ -8715,7 +8695,6 @@ declare class AFBankaPolozka extends AFEntity {
|
|
|
8715
8695
|
static EntityPath: string;
|
|
8716
8696
|
static EntityName: string;
|
|
8717
8697
|
static EntityType: string;
|
|
8718
|
-
id?: number | null;
|
|
8719
8698
|
lastUpdate?: Date | null;
|
|
8720
8699
|
updatedBy?: AFUzivatel | null;
|
|
8721
8700
|
createdBy?: AFUzivatel | null;
|
|
@@ -8779,7 +8758,6 @@ declare class AFBanka extends AFEntity {
|
|
|
8779
8758
|
static EntityPath: string;
|
|
8780
8759
|
static EntityName: string;
|
|
8781
8760
|
static EntityType: string;
|
|
8782
|
-
id?: number | null;
|
|
8783
8761
|
lastUpdate?: Date | null;
|
|
8784
8762
|
updatedBy?: AFUzivatel | null;
|
|
8785
8763
|
createdBy?: AFUzivatel | null;
|
|
@@ -8909,7 +8887,6 @@ declare class AFPohledavkaPolozka extends AFEntity {
|
|
|
8909
8887
|
static EntityPath: string;
|
|
8910
8888
|
static EntityName: string;
|
|
8911
8889
|
static EntityType: string;
|
|
8912
|
-
id?: number | null;
|
|
8913
8890
|
lastUpdate?: Date | null;
|
|
8914
8891
|
updatedBy?: AFUzivatel | null;
|
|
8915
8892
|
createdBy?: AFUzivatel | null;
|
|
@@ -9008,7 +8985,6 @@ declare class AFPohledavka extends AFEntity {
|
|
|
9008
8985
|
static EntityPath: string;
|
|
9009
8986
|
static EntityName: string;
|
|
9010
8987
|
static EntityType: string;
|
|
9011
|
-
id?: number | null;
|
|
9012
8988
|
lastUpdate?: Date | null;
|
|
9013
8989
|
updatedBy?: AFUzivatel | null;
|
|
9014
8990
|
createdBy?: AFUzivatel | null;
|
|
@@ -9169,7 +9145,6 @@ declare class AFRadaUplatneniDaneZavazku extends AFEntity {
|
|
|
9169
9145
|
static EntityPath: string;
|
|
9170
9146
|
static EntityName: string;
|
|
9171
9147
|
static EntityType: string;
|
|
9172
|
-
id?: number | null;
|
|
9173
9148
|
lastUpdate?: Date | null;
|
|
9174
9149
|
kod?: string | null;
|
|
9175
9150
|
nazev?: string | null;
|
|
@@ -9192,7 +9167,6 @@ declare class AFTypUplatneniDaneZavazku extends AFEntity {
|
|
|
9192
9167
|
static EntityPath: string;
|
|
9193
9168
|
static EntityName: string;
|
|
9194
9169
|
static EntityType: string;
|
|
9195
|
-
id?: number | null;
|
|
9196
9170
|
lastUpdate?: Date | null;
|
|
9197
9171
|
kod?: string | null;
|
|
9198
9172
|
nazev?: string | null;
|
|
@@ -9233,7 +9207,6 @@ declare class AFUplatneniDaneZavazkuPolozka extends AFEntity {
|
|
|
9233
9207
|
static EntityPath: string;
|
|
9234
9208
|
static EntityName: string;
|
|
9235
9209
|
static EntityType: string;
|
|
9236
|
-
id?: number | null;
|
|
9237
9210
|
lastUpdate?: Date | null;
|
|
9238
9211
|
updatedBy?: AFUzivatel | null;
|
|
9239
9212
|
createdBy?: AFUzivatel | null;
|
|
@@ -9333,7 +9306,6 @@ declare class AFUplatneniDaneZavazku extends AFEntity {
|
|
|
9333
9306
|
static EntityPath: string;
|
|
9334
9307
|
static EntityName: string;
|
|
9335
9308
|
static EntityType: string;
|
|
9336
|
-
id?: number | null;
|
|
9337
9309
|
lastUpdate?: Date | null;
|
|
9338
9310
|
updatedBy?: AFUzivatel | null;
|
|
9339
9311
|
createdBy?: AFUzivatel | null;
|
|
@@ -9446,7 +9418,6 @@ declare class AFPrikazKUhradePolozka extends AFEntity {
|
|
|
9446
9418
|
static EntityPath: string;
|
|
9447
9419
|
static EntityName: string;
|
|
9448
9420
|
static EntityType: string;
|
|
9449
|
-
id?: number | null;
|
|
9450
9421
|
lastUpdate?: Date | null;
|
|
9451
9422
|
buc?: string | null;
|
|
9452
9423
|
bic?: string | null;
|
|
@@ -9489,7 +9460,6 @@ declare class AFPrikazKUhrade extends AFEntity {
|
|
|
9489
9460
|
static EntityPath: string;
|
|
9490
9461
|
static EntityName: string;
|
|
9491
9462
|
static EntityType: string;
|
|
9492
|
-
id?: number | null;
|
|
9493
9463
|
lastUpdate?: Date | null;
|
|
9494
9464
|
datVytvor?: Date | null;
|
|
9495
9465
|
datSplat?: Date | null;
|
|
@@ -9520,7 +9490,6 @@ declare class AFPrikazKInkasuPolozka extends AFEntity {
|
|
|
9520
9490
|
static EntityPath: string;
|
|
9521
9491
|
static EntityName: string;
|
|
9522
9492
|
static EntityType: string;
|
|
9523
|
-
id?: number | null;
|
|
9524
9493
|
lastUpdate?: Date | null;
|
|
9525
9494
|
buc?: string | null;
|
|
9526
9495
|
bic?: string | null;
|
|
@@ -9563,7 +9532,6 @@ declare class AFPrikazKInkasu extends AFEntity {
|
|
|
9563
9532
|
static EntityPath: string;
|
|
9564
9533
|
static EntityName: string;
|
|
9565
9534
|
static EntityType: string;
|
|
9566
|
-
id?: number | null;
|
|
9567
9535
|
lastUpdate?: Date | null;
|
|
9568
9536
|
datVytvor?: Date | null;
|
|
9569
9537
|
datSplat?: Date | null;
|
|
@@ -9593,7 +9561,6 @@ declare class AFTypVzajemnychZapoctu extends AFEntity {
|
|
|
9593
9561
|
static EntityPath: string;
|
|
9594
9562
|
static EntityName: string;
|
|
9595
9563
|
static EntityType: string;
|
|
9596
|
-
id?: number | null;
|
|
9597
9564
|
lastUpdate?: Date | null;
|
|
9598
9565
|
kod?: string | null;
|
|
9599
9566
|
nazev?: string | null;
|
|
@@ -9639,7 +9606,6 @@ declare class AFVzajemnyZapocet extends AFEntity {
|
|
|
9639
9606
|
static EntityPath: string;
|
|
9640
9607
|
static EntityName: string;
|
|
9641
9608
|
static EntityType: string;
|
|
9642
|
-
id?: number | null;
|
|
9643
9609
|
lastUpdate?: Date | null;
|
|
9644
9610
|
updatedBy?: AFUzivatel | null;
|
|
9645
9611
|
createdBy?: AFUzivatel | null;
|
|
@@ -9789,7 +9755,6 @@ declare class AFFakturaVydanaPolozka extends AFEntity {
|
|
|
9789
9755
|
static EntityPath: string;
|
|
9790
9756
|
static EntityName: string;
|
|
9791
9757
|
static EntityType: string;
|
|
9792
|
-
id?: number | null;
|
|
9793
9758
|
lastUpdate?: Date | null;
|
|
9794
9759
|
updatedBy?: AFUzivatel | null;
|
|
9795
9760
|
createdBy?: AFUzivatel | null;
|
|
@@ -9908,7 +9873,6 @@ declare class AFFakturaVydana extends AFEntity {
|
|
|
9908
9873
|
static EntityPath: string;
|
|
9909
9874
|
static EntityName: string;
|
|
9910
9875
|
static EntityType: string;
|
|
9911
|
-
id?: number | null;
|
|
9912
9876
|
lastUpdate?: Date | null;
|
|
9913
9877
|
updatedBy?: AFUzivatel | null;
|
|
9914
9878
|
createdBy?: AFUzivatel | null;
|
|
@@ -10106,7 +10070,6 @@ declare class AFTypProdejky extends AFEntity {
|
|
|
10106
10070
|
static EntityPath: string;
|
|
10107
10071
|
static EntityName: string;
|
|
10108
10072
|
static EntityType: string;
|
|
10109
|
-
id?: number | null;
|
|
10110
10073
|
lastUpdate?: Date | null;
|
|
10111
10074
|
kod?: string | null;
|
|
10112
10075
|
nazev?: string | null;
|
|
@@ -10181,7 +10144,6 @@ declare class AFProdejka extends AFEntity {
|
|
|
10181
10144
|
static EntityPath: string;
|
|
10182
10145
|
static EntityName: string;
|
|
10183
10146
|
static EntityType: string;
|
|
10184
|
-
id?: number | null;
|
|
10185
10147
|
lastUpdate?: Date | null;
|
|
10186
10148
|
updatedBy?: AFUzivatel | null;
|
|
10187
10149
|
createdBy?: AFUzivatel | null;
|
|
@@ -10356,7 +10318,6 @@ declare class AFProdejkaPlatba extends AFEntity {
|
|
|
10356
10318
|
static EntityPath: string;
|
|
10357
10319
|
static EntityName: string;
|
|
10358
10320
|
static EntityType: string;
|
|
10359
|
-
id?: number | null;
|
|
10360
10321
|
lastUpdate?: Date | null;
|
|
10361
10322
|
kurz?: Big | null;
|
|
10362
10323
|
kurzMnozstvi?: Big | null;
|
|
@@ -10379,7 +10340,6 @@ declare class AFPravoViditelnosti extends AFEntity {
|
|
|
10379
10340
|
static EntityPath: string;
|
|
10380
10341
|
static EntityName: string;
|
|
10381
10342
|
static EntityType: string;
|
|
10382
|
-
id?: number | null;
|
|
10383
10343
|
idUzivatel?: number | null;
|
|
10384
10344
|
typDatK?: any | null;
|
|
10385
10345
|
modulK?: any | null;
|
|
@@ -10393,7 +10353,6 @@ declare class AFZamek extends AFEntity {
|
|
|
10393
10353
|
static EntityPath: string;
|
|
10394
10354
|
static EntityName: string;
|
|
10395
10355
|
static EntityType: string;
|
|
10396
|
-
id?: number | null;
|
|
10397
10356
|
lastUpdate?: Date | null;
|
|
10398
10357
|
zamekK?: Zamek | null;
|
|
10399
10358
|
platiOdData?: Date | null;
|
|
@@ -10428,7 +10387,6 @@ declare class AFKurzProCenotvorbu extends AFEntity {
|
|
|
10428
10387
|
static EntityPath: string;
|
|
10429
10388
|
static EntityName: string;
|
|
10430
10389
|
static EntityType: string;
|
|
10431
|
-
id?: number | null;
|
|
10432
10390
|
lastUpdate?: Date | null;
|
|
10433
10391
|
platiOdData?: Date | null;
|
|
10434
10392
|
nbStred?: Big | null;
|
|
@@ -10444,7 +10402,6 @@ declare class AFKurzProPreceneni extends AFEntity {
|
|
|
10444
10402
|
static EntityPath: string;
|
|
10445
10403
|
static EntityName: string;
|
|
10446
10404
|
static EntityType: string;
|
|
10447
|
-
id?: number | null;
|
|
10448
10405
|
lastUpdate?: Date | null;
|
|
10449
10406
|
platiOdData?: Date | null;
|
|
10450
10407
|
nbStred?: Big | null;
|
|
@@ -10460,7 +10417,6 @@ declare class AFPsc extends AFEntity {
|
|
|
10460
10417
|
static EntityPath: string;
|
|
10461
10418
|
static EntityName: string;
|
|
10462
10419
|
static EntityType: string;
|
|
10463
|
-
id?: number | null;
|
|
10464
10420
|
lastUpdate?: Date | null;
|
|
10465
10421
|
kod?: string | null;
|
|
10466
10422
|
nazev?: string | null;
|
|
@@ -10487,7 +10443,6 @@ declare class AFSablonaUpominky extends AFEntity {
|
|
|
10487
10443
|
static EntityPath: string;
|
|
10488
10444
|
static EntityName: string;
|
|
10489
10445
|
static EntityType: string;
|
|
10490
|
-
id?: number | null;
|
|
10491
10446
|
lastUpdate?: Date | null;
|
|
10492
10447
|
datum?: string | null;
|
|
10493
10448
|
datuma?: string | null;
|
|
@@ -10528,7 +10483,6 @@ declare class AFCertifikacniAutorita extends AFEntity {
|
|
|
10528
10483
|
static EntityPath: string;
|
|
10529
10484
|
static EntityName: string;
|
|
10530
10485
|
static EntityType: string;
|
|
10531
|
-
id?: number | null;
|
|
10532
10486
|
lastUpdate?: Date | null;
|
|
10533
10487
|
uzivNazev?: string | null;
|
|
10534
10488
|
certNazev?: string | null;
|
|
@@ -10545,7 +10499,6 @@ declare class AFCertifikatFinbricks extends AFEntity {
|
|
|
10545
10499
|
static EntityPath: string;
|
|
10546
10500
|
static EntityName: string;
|
|
10547
10501
|
static EntityType: string;
|
|
10548
|
-
id?: number | null;
|
|
10549
10502
|
lastUpdate?: Date | null;
|
|
10550
10503
|
uzivNazev?: string | null;
|
|
10551
10504
|
certNazev?: string | null;
|
|
@@ -10564,7 +10517,6 @@ declare class AFCertifikat extends AFEntity {
|
|
|
10564
10517
|
static EntityPath: string;
|
|
10565
10518
|
static EntityName: string;
|
|
10566
10519
|
static EntityType: string;
|
|
10567
|
-
id?: number | null;
|
|
10568
10520
|
lastUpdate?: Date | null;
|
|
10569
10521
|
uzivNazev?: string | null;
|
|
10570
10522
|
certNazev?: string | null;
|
|
@@ -10583,7 +10535,6 @@ declare class AFCisloBaliku extends AFEntity {
|
|
|
10583
10535
|
static EntityPath: string;
|
|
10584
10536
|
static EntityName: string;
|
|
10585
10537
|
static EntityType: string;
|
|
10586
|
-
id?: number | null;
|
|
10587
10538
|
lastUpdate?: Date | null;
|
|
10588
10539
|
cislo?: string | null;
|
|
10589
10540
|
formaDopravy?: AFFormaDopravy | null;
|
|
@@ -10600,7 +10551,6 @@ declare class AFVztah extends AFEntity {
|
|
|
10600
10551
|
static EntityPath: string;
|
|
10601
10552
|
static EntityName: string;
|
|
10602
10553
|
static EntityType: string;
|
|
10603
|
-
id?: number | null;
|
|
10604
10554
|
lastUpdate?: Date | null;
|
|
10605
10555
|
kod?: string | null;
|
|
10606
10556
|
nazev?: string | null;
|
|
@@ -10624,7 +10574,6 @@ declare class AFIntrastatKurz extends AFEntity {
|
|
|
10624
10574
|
static EntityPath: string;
|
|
10625
10575
|
static EntityName: string;
|
|
10626
10576
|
static EntityType: string;
|
|
10627
|
-
id?: number | null;
|
|
10628
10577
|
lastUpdate?: Date | null;
|
|
10629
10578
|
platiOdData?: Date | null;
|
|
10630
10579
|
nbStred?: Big | null;
|
|
@@ -10640,7 +10589,6 @@ declare class AFIndividualniCenik extends AFEntity {
|
|
|
10640
10589
|
static EntityPath: string;
|
|
10641
10590
|
static EntityName: string;
|
|
10642
10591
|
static EntityType: string;
|
|
10643
|
-
id?: number | null;
|
|
10644
10592
|
kod?: string | null;
|
|
10645
10593
|
nazev?: string | null;
|
|
10646
10594
|
nazevA?: string | null;
|
|
@@ -10668,7 +10616,6 @@ declare class AFKusovnik extends AFEntity {
|
|
|
10668
10616
|
static EntityPath: string;
|
|
10669
10617
|
static EntityName: string;
|
|
10670
10618
|
static EntityType: string;
|
|
10671
|
-
id?: number | null;
|
|
10672
10619
|
lastUpdate?: Date | null;
|
|
10673
10620
|
nazev?: string | null;
|
|
10674
10621
|
nazevA?: string | null;
|
|
@@ -10691,7 +10638,6 @@ declare class AFStromCenik extends AFEntity {
|
|
|
10691
10638
|
static EntityPath: string;
|
|
10692
10639
|
static EntityName: string;
|
|
10693
10640
|
static EntityType: string;
|
|
10694
|
-
id?: number | null;
|
|
10695
10641
|
lastUpdate?: Date | null;
|
|
10696
10642
|
idZaznamu?: number | null;
|
|
10697
10643
|
uzel?: AFStrom | null;
|
|
@@ -10703,7 +10649,6 @@ declare class AFMapovaniSkladu extends AFEntity {
|
|
|
10703
10649
|
static EntityPath: string;
|
|
10704
10650
|
static EntityName: string;
|
|
10705
10651
|
static EntityType: string;
|
|
10706
|
-
id?: number | null;
|
|
10707
10652
|
lastUpdate?: Date | null;
|
|
10708
10653
|
stredisko?: AFStredisko | null;
|
|
10709
10654
|
skupZboz?: AFSkupinaZbozi | null;
|
|
@@ -10719,7 +10664,6 @@ declare class AFUmisteniVeSkladuRegal extends AFEntity {
|
|
|
10719
10664
|
static EntityPath: string;
|
|
10720
10665
|
static EntityName: string;
|
|
10721
10666
|
static EntityType: string;
|
|
10722
|
-
id?: number | null;
|
|
10723
10667
|
lastUpdate?: Date | null;
|
|
10724
10668
|
kod?: string | null;
|
|
10725
10669
|
nazev?: string | null;
|
|
@@ -10742,7 +10686,6 @@ declare class AFUmisteniVeSkladuPolice extends AFEntity {
|
|
|
10742
10686
|
static EntityPath: string;
|
|
10743
10687
|
static EntityName: string;
|
|
10744
10688
|
static EntityType: string;
|
|
10745
|
-
id?: number | null;
|
|
10746
10689
|
lastUpdate?: Date | null;
|
|
10747
10690
|
kod?: string | null;
|
|
10748
10691
|
nazev?: string | null;
|
|
@@ -10765,7 +10708,6 @@ declare class AFUmisteniVeSkladuMistnost extends AFEntity {
|
|
|
10765
10708
|
static EntityPath: string;
|
|
10766
10709
|
static EntityName: string;
|
|
10767
10710
|
static EntityType: string;
|
|
10768
|
-
id?: number | null;
|
|
10769
10711
|
lastUpdate?: Date | null;
|
|
10770
10712
|
kod?: string | null;
|
|
10771
10713
|
nazev?: string | null;
|
|
@@ -10788,7 +10730,6 @@ declare class AFTypStavuCeniku extends AFEntity {
|
|
|
10788
10730
|
static EntityPath: string;
|
|
10789
10731
|
static EntityName: string;
|
|
10790
10732
|
static EntityType: string;
|
|
10791
|
-
id?: number | null;
|
|
10792
10733
|
lastUpdate?: Date | null;
|
|
10793
10734
|
kod?: string | null;
|
|
10794
10735
|
nazev?: string | null;
|
|
@@ -10813,7 +10754,6 @@ declare class AFSkupinaAtributu extends AFEntity {
|
|
|
10813
10754
|
static EntityPath: string;
|
|
10814
10755
|
static EntityName: string;
|
|
10815
10756
|
static EntityType: string;
|
|
10816
|
-
id?: number | null;
|
|
10817
10757
|
lastUpdate?: Date | null;
|
|
10818
10758
|
kod?: string | null;
|
|
10819
10759
|
nazev?: string | null;
|
|
@@ -10858,7 +10798,6 @@ declare class AFSarzeExpirace extends AFEntity {
|
|
|
10858
10798
|
static EntityPath: string;
|
|
10859
10799
|
static EntityName: string;
|
|
10860
10800
|
static EntityType: string;
|
|
10861
|
-
id?: number | null;
|
|
10862
10801
|
pocet?: Big | null;
|
|
10863
10802
|
cenaMj?: Big | null;
|
|
10864
10803
|
datVyst?: Date | null;
|
|
@@ -10878,7 +10817,6 @@ declare class AFOsobaHlavicka extends AFEntity {
|
|
|
10878
10817
|
static EntityPath: string;
|
|
10879
10818
|
static EntityName: string;
|
|
10880
10819
|
static EntityType: string;
|
|
10881
|
-
id?: number | null;
|
|
10882
10820
|
lastUpdate?: Date | null;
|
|
10883
10821
|
osbCis?: string | null;
|
|
10884
10822
|
prijmeni?: string | null;
|
|
@@ -10897,7 +10835,6 @@ declare class AFSkupinaOsob extends AFEntity {
|
|
|
10897
10835
|
static EntityPath: string;
|
|
10898
10836
|
static EntityName: string;
|
|
10899
10837
|
static EntityType: string;
|
|
10900
|
-
id?: number | null;
|
|
10901
10838
|
lastUpdate?: Date | null;
|
|
10902
10839
|
kod?: string | null;
|
|
10903
10840
|
nazev?: string | null;
|
|
@@ -10936,7 +10873,6 @@ declare class AFDite extends AFEntity {
|
|
|
10936
10873
|
static EntityPath: string;
|
|
10937
10874
|
static EntityName: string;
|
|
10938
10875
|
static EntityType: string;
|
|
10939
|
-
id?: number | null;
|
|
10940
10876
|
lastUpdate?: Date | null;
|
|
10941
10877
|
prijmeni?: string | null;
|
|
10942
10878
|
jmeno?: string | null;
|
|
@@ -10961,7 +10897,6 @@ declare class AFOsoba extends AFEntity {
|
|
|
10961
10897
|
static EntityPath: string;
|
|
10962
10898
|
static EntityName: string;
|
|
10963
10899
|
static EntityType: string;
|
|
10964
|
-
id?: number | null;
|
|
10965
10900
|
lastUpdate?: Date | null;
|
|
10966
10901
|
platiOd?: Date | null;
|
|
10967
10902
|
platiDo?: Date | null;
|
|
@@ -11083,7 +11018,6 @@ declare class AFOsobaBlizka extends AFEntity {
|
|
|
11083
11018
|
static EntityPath: string;
|
|
11084
11019
|
static EntityName: string;
|
|
11085
11020
|
static EntityType: string;
|
|
11086
|
-
id?: number | null;
|
|
11087
11021
|
lastUpdate?: Date | null;
|
|
11088
11022
|
prijmeni?: string | null;
|
|
11089
11023
|
jmeno?: string | null;
|
|
@@ -11108,7 +11042,6 @@ declare class AFCiselnikMzdovychSlozek extends AFEntity {
|
|
|
11108
11042
|
static EntityPath: string;
|
|
11109
11043
|
static EntityName: string;
|
|
11110
11044
|
static EntityType: string;
|
|
11111
|
-
id?: number | null;
|
|
11112
11045
|
lastUpdate?: Date | null;
|
|
11113
11046
|
kod?: string | null;
|
|
11114
11047
|
nazev?: string | null;
|
|
@@ -11176,7 +11109,6 @@ declare class AFPracovniPomerHlavicka extends AFEntity {
|
|
|
11176
11109
|
static EntityPath: string;
|
|
11177
11110
|
static EntityName: string;
|
|
11178
11111
|
static EntityType: string;
|
|
11179
|
-
id?: number | null;
|
|
11180
11112
|
lastUpdate?: Date | null;
|
|
11181
11113
|
aktivniOd?: Date | null;
|
|
11182
11114
|
aktivniDo?: Date | null;
|
|
@@ -11199,7 +11131,6 @@ declare class AFNepritomnost extends AFEntity {
|
|
|
11199
11131
|
static EntityPath: string;
|
|
11200
11132
|
static EntityName: string;
|
|
11201
11133
|
static EntityType: string;
|
|
11202
|
-
id?: number | null;
|
|
11203
11134
|
lastUpdate?: Date | null;
|
|
11204
11135
|
platiOd?: Date | null;
|
|
11205
11136
|
platiDo?: Date | null;
|
|
@@ -11229,7 +11160,6 @@ declare class AFMzdyBankovniSpojeni extends AFEntity {
|
|
|
11229
11160
|
static EntityPath: string;
|
|
11230
11161
|
static EntityName: string;
|
|
11231
11162
|
static EntityType: string;
|
|
11232
|
-
id?: number | null;
|
|
11233
11163
|
lastUpdate?: Date | null;
|
|
11234
11164
|
ulice?: string | null;
|
|
11235
11165
|
mesto?: string | null;
|
|
@@ -11259,7 +11189,6 @@ declare class AFSrazka extends AFEntity {
|
|
|
11259
11189
|
static EntityPath: string;
|
|
11260
11190
|
static EntityName: string;
|
|
11261
11191
|
static EntityType: string;
|
|
11262
|
-
id?: number | null;
|
|
11263
11192
|
lastUpdate?: Date | null;
|
|
11264
11193
|
prednostni?: boolean | null;
|
|
11265
11194
|
poradi?: number | null;
|
|
@@ -11294,7 +11223,6 @@ declare class AFTypPracovnihoPomeru extends AFEntity {
|
|
|
11294
11223
|
static EntityPath: string;
|
|
11295
11224
|
static EntityName: string;
|
|
11296
11225
|
static EntityType: string;
|
|
11297
|
-
id?: number | null;
|
|
11298
11226
|
lastUpdate?: Date | null;
|
|
11299
11227
|
kod?: string | null;
|
|
11300
11228
|
nazev?: string | null;
|
|
@@ -11315,7 +11243,6 @@ declare class AFPracovniPomer extends AFEntity {
|
|
|
11315
11243
|
static EntityPath: string;
|
|
11316
11244
|
static EntityName: string;
|
|
11317
11245
|
static EntityType: string;
|
|
11318
|
-
id?: number | null;
|
|
11319
11246
|
lastUpdate?: Date | null;
|
|
11320
11247
|
platiOd?: Date | null;
|
|
11321
11248
|
platiDo?: Date | null;
|
|
@@ -11397,7 +11324,6 @@ declare class AFStalaMzdovaSlozka extends AFEntity {
|
|
|
11397
11324
|
static EntityPath: string;
|
|
11398
11325
|
static EntityName: string;
|
|
11399
11326
|
static EntityType: string;
|
|
11400
|
-
id?: number | null;
|
|
11401
11327
|
lastUpdate?: Date | null;
|
|
11402
11328
|
kod?: string | null;
|
|
11403
11329
|
nazev?: string | null;
|
|
@@ -11441,7 +11367,6 @@ declare class AFMzdovaSlozka extends AFEntity {
|
|
|
11441
11367
|
static EntityPath: string;
|
|
11442
11368
|
static EntityName: string;
|
|
11443
11369
|
static EntityType: string;
|
|
11444
|
-
id?: number | null;
|
|
11445
11370
|
lastUpdate?: Date | null;
|
|
11446
11371
|
cisRad?: number | null;
|
|
11447
11372
|
kod?: string | null;
|
|
@@ -11495,7 +11420,6 @@ declare class AFSmena extends AFEntity {
|
|
|
11495
11420
|
static EntityPath: string;
|
|
11496
11421
|
static EntityName: string;
|
|
11497
11422
|
static EntityType: string;
|
|
11498
|
-
id?: number | null;
|
|
11499
11423
|
lastUpdate?: Date | null;
|
|
11500
11424
|
rok?: number | null;
|
|
11501
11425
|
mesic?: number | null;
|
|
@@ -11514,7 +11438,6 @@ declare class AFPrace extends AFEntity {
|
|
|
11514
11438
|
static EntityPath: string;
|
|
11515
11439
|
static EntityName: string;
|
|
11516
11440
|
static EntityType: string;
|
|
11517
|
-
id?: number | null;
|
|
11518
11441
|
lastUpdate?: Date | null;
|
|
11519
11442
|
datumOd?: Date | null;
|
|
11520
11443
|
datumDo?: Date | null;
|
|
@@ -11535,7 +11458,6 @@ declare class AFPraceMesic extends AFEntity {
|
|
|
11535
11458
|
static EntityPath: string;
|
|
11536
11459
|
static EntityName: string;
|
|
11537
11460
|
static EntityType: string;
|
|
11538
|
-
id?: number | null;
|
|
11539
11461
|
lastUpdate?: Date | null;
|
|
11540
11462
|
rok?: number | null;
|
|
11541
11463
|
mesic?: number | null;
|
|
@@ -11682,7 +11604,6 @@ declare class AFZavazekPolozka extends AFEntity {
|
|
|
11682
11604
|
static EntityPath: string;
|
|
11683
11605
|
static EntityName: string;
|
|
11684
11606
|
static EntityType: string;
|
|
11685
|
-
id?: number | null;
|
|
11686
11607
|
lastUpdate?: Date | null;
|
|
11687
11608
|
updatedBy?: AFUzivatel | null;
|
|
11688
11609
|
createdBy?: AFUzivatel | null;
|
|
@@ -11781,7 +11702,6 @@ declare class AFZavazek extends AFEntity {
|
|
|
11781
11702
|
static EntityPath: string;
|
|
11782
11703
|
static EntityName: string;
|
|
11783
11704
|
static EntityType: string;
|
|
11784
|
-
id?: number | null;
|
|
11785
11705
|
lastUpdate?: Date | null;
|
|
11786
11706
|
updatedBy?: AFUzivatel | null;
|
|
11787
11707
|
createdBy?: AFUzivatel | null;
|
|
@@ -11942,7 +11862,6 @@ declare class AFFiltr extends AFEntity {
|
|
|
11942
11862
|
static EntityPath: string;
|
|
11943
11863
|
static EntityName: string;
|
|
11944
11864
|
static EntityType: string;
|
|
11945
|
-
id?: number | null;
|
|
11946
11865
|
lastUpdate?: Date | null;
|
|
11947
11866
|
kod?: string | null;
|
|
11948
11867
|
nazev?: string | null;
|
|
@@ -11964,7 +11883,6 @@ declare class AFParametr extends AFEntity {
|
|
|
11964
11883
|
static EntityPath: string;
|
|
11965
11884
|
static EntityName: string;
|
|
11966
11885
|
static EntityType: string;
|
|
11967
|
-
id?: number | null;
|
|
11968
11886
|
lastUpdate?: Date | null;
|
|
11969
11887
|
paramK?: any | null;
|
|
11970
11888
|
hodnota?: string | null;
|
|
@@ -11988,7 +11906,6 @@ declare class AFUzivatelskyDotazParametr extends AFEntity {
|
|
|
11988
11906
|
static EntityPath: string;
|
|
11989
11907
|
static EntityName: string;
|
|
11990
11908
|
static EntityType: string;
|
|
11991
|
-
id?: number | null;
|
|
11992
11909
|
lastUpdate?: Date | null;
|
|
11993
11910
|
kod?: string | null;
|
|
11994
11911
|
nazev?: string | null;
|
|
@@ -12014,7 +11931,6 @@ declare class AFUzivatelskyDotazVlastnost extends AFEntity {
|
|
|
12014
11931
|
static EntityPath: string;
|
|
12015
11932
|
static EntityName: string;
|
|
12016
11933
|
static EntityType: string;
|
|
12017
|
-
id?: number | null;
|
|
12018
11934
|
lastUpdate?: Date | null;
|
|
12019
11935
|
kod?: string | null;
|
|
12020
11936
|
nazev?: string | null;
|
|
@@ -12041,7 +11957,6 @@ declare class AFUzivatelskyDotaz extends AFEntity {
|
|
|
12041
11957
|
static EntityPath: string;
|
|
12042
11958
|
static EntityName: string;
|
|
12043
11959
|
static EntityType: string;
|
|
12044
|
-
id?: number | null;
|
|
12045
11960
|
lastUpdate?: Date | null;
|
|
12046
11961
|
kod?: string | null;
|
|
12047
11962
|
nazev?: string | null;
|
|
@@ -12069,7 +11984,6 @@ declare class AFCustomButton extends AFEntity {
|
|
|
12069
11984
|
static EntityPath: string;
|
|
12070
11985
|
static EntityName: string;
|
|
12071
11986
|
static EntityType: string;
|
|
12072
|
-
id?: number | null;
|
|
12073
11987
|
kod?: string | null;
|
|
12074
11988
|
url?: string | null;
|
|
12075
11989
|
title?: string | null;
|
|
@@ -12087,7 +12001,6 @@ declare class AFSettingStore extends AFEntity {
|
|
|
12087
12001
|
static EntityPath: string;
|
|
12088
12002
|
static EntityName: string;
|
|
12089
12003
|
static EntityType: string;
|
|
12090
|
-
id?: number | null;
|
|
12091
12004
|
klic?: string | null;
|
|
12092
12005
|
hodnota?: string | null;
|
|
12093
12006
|
uzivatelId?: number | null;
|
|
@@ -12099,7 +12012,6 @@ declare class AFGlobalStore extends AFEntity {
|
|
|
12099
12012
|
static EntityPath: string;
|
|
12100
12013
|
static EntityName: string;
|
|
12101
12014
|
static EntityType: string;
|
|
12102
|
-
id?: number | null;
|
|
12103
12015
|
klic?: string | null;
|
|
12104
12016
|
hodnota?: string | null;
|
|
12105
12017
|
static propAnnotations: Record<string, TypeAnnotation>;
|
|
@@ -12110,7 +12022,6 @@ declare class AFDashboardPanel extends AFEntity {
|
|
|
12110
12022
|
static EntityPath: string;
|
|
12111
12023
|
static EntityName: string;
|
|
12112
12024
|
static EntityType: string;
|
|
12113
|
-
id?: number | null;
|
|
12114
12025
|
lastUpdate?: Date | null;
|
|
12115
12026
|
kod?: string | null;
|
|
12116
12027
|
nazev?: string | null;
|
|
@@ -12136,7 +12047,6 @@ declare class AFDashboardSharing extends AFEntity {
|
|
|
12136
12047
|
static EntityPath: string;
|
|
12137
12048
|
static EntityName: string;
|
|
12138
12049
|
static EntityType: string;
|
|
12139
|
-
id?: number | null;
|
|
12140
12050
|
hidden?: boolean | null;
|
|
12141
12051
|
priority?: number | null;
|
|
12142
12052
|
user?: AFUzivatel | null;
|
|
@@ -12151,7 +12061,6 @@ declare class AFInsight extends AFEntity {
|
|
|
12151
12061
|
static EntityPath: string;
|
|
12152
12062
|
static EntityName: string;
|
|
12153
12063
|
static EntityType: string;
|
|
12154
|
-
id?: number | null;
|
|
12155
12064
|
lastUpdate?: Date | null;
|
|
12156
12065
|
kod?: string | null;
|
|
12157
12066
|
nazev?: string | null;
|
|
@@ -12174,7 +12083,6 @@ declare class AFXslt extends AFEntity {
|
|
|
12174
12083
|
static EntityPath: string;
|
|
12175
12084
|
static EntityName: string;
|
|
12176
12085
|
static EntityType: string;
|
|
12177
|
-
id?: number | null;
|
|
12178
12086
|
lastUpdate?: Date | null;
|
|
12179
12087
|
kod?: string | null;
|
|
12180
12088
|
nazev?: string | null;
|
|
@@ -12194,7 +12102,6 @@ declare class AFObrat extends AFEntity {
|
|
|
12194
12102
|
static EntityPath: string;
|
|
12195
12103
|
static EntityName: string;
|
|
12196
12104
|
static EntityType: string;
|
|
12197
|
-
id?: number | null;
|
|
12198
12105
|
lastUpdate?: Date | null;
|
|
12199
12106
|
obdobi?: number | null;
|
|
12200
12107
|
rok?: number | null;
|
|
@@ -12662,7 +12569,6 @@ declare class AFSestava extends AFEntity {
|
|
|
12662
12569
|
static EntityPath: string;
|
|
12663
12570
|
static EntityName: string;
|
|
12664
12571
|
static EntityType: string;
|
|
12665
|
-
id?: number | null;
|
|
12666
12572
|
lastUpdate?: Date | null;
|
|
12667
12573
|
kod?: string | null;
|
|
12668
12574
|
nazev?: string | null;
|
|
@@ -12742,7 +12648,6 @@ declare class AFStandardniPredpis extends AFEntity {
|
|
|
12742
12648
|
static EntityPath: string;
|
|
12743
12649
|
static EntityName: string;
|
|
12744
12650
|
static EntityType: string;
|
|
12745
|
-
id?: number | null;
|
|
12746
12651
|
lastUpdate?: Date | null;
|
|
12747
12652
|
druhUctuK?: DruhUctu | null;
|
|
12748
12653
|
cisSloup?: number | null;
|
|
@@ -12761,7 +12666,6 @@ declare class AFSumaceSestavy extends AFEntity {
|
|
|
12761
12666
|
static EntityPath: string;
|
|
12762
12667
|
static EntityName: string;
|
|
12763
12668
|
static EntityType: string;
|
|
12764
|
-
id?: number | null;
|
|
12765
12669
|
lastUpdate?: Date | null;
|
|
12766
12670
|
prevratZnam?: boolean | null;
|
|
12767
12671
|
radek?: AFRadekSestavy | null;
|
|
@@ -12776,7 +12680,6 @@ declare class AFRadekSestavy extends AFEntity {
|
|
|
12776
12680
|
static EntityPath: string;
|
|
12777
12681
|
static EntityName: string;
|
|
12778
12682
|
static EntityType: string;
|
|
12779
|
-
id?: number | null;
|
|
12780
12683
|
lastUpdate?: Date | null;
|
|
12781
12684
|
cisRad?: number | null;
|
|
12782
12685
|
kodRad?: string | null;
|
|
@@ -13785,7 +13688,6 @@ declare class AFSubjekt extends AFEntity {
|
|
|
13785
13688
|
static EntityPath: string;
|
|
13786
13689
|
static EntityName: string;
|
|
13787
13690
|
static EntityType: string;
|
|
13788
|
-
id?: number | null;
|
|
13789
13691
|
platiOd?: Date | null;
|
|
13790
13692
|
platiDo?: Date | null;
|
|
13791
13693
|
typVztahuK?: GdprTypVztahu | null;
|
|
@@ -13803,7 +13705,6 @@ declare class AFRadekPriznaniDph extends AFEntity {
|
|
|
13803
13705
|
static EntityPath: string;
|
|
13804
13706
|
static EntityName: string;
|
|
13805
13707
|
static EntityType: string;
|
|
13806
|
-
id?: number | null;
|
|
13807
13708
|
lastUpdate?: Date | null;
|
|
13808
13709
|
rok?: number | null;
|
|
13809
13710
|
mesic?: number | null;
|
|
@@ -13826,7 +13727,6 @@ declare class AFUlozenePriznaniDph extends AFEntity {
|
|
|
13826
13727
|
static EntityPath: string;
|
|
13827
13728
|
static EntityName: string;
|
|
13828
13729
|
static EntityType: string;
|
|
13829
|
-
id?: number | null;
|
|
13830
13730
|
lastUpdate?: Date | null;
|
|
13831
13731
|
rok?: number | null;
|
|
13832
13732
|
mesic?: number | null;
|
|
@@ -13845,7 +13745,6 @@ declare class AFUlozenePriznaniKonVykDph extends AFEntity {
|
|
|
13845
13745
|
static EntityPath: string;
|
|
13846
13746
|
static EntityName: string;
|
|
13847
13747
|
static EntityType: string;
|
|
13848
|
-
id?: number | null;
|
|
13849
13748
|
lastUpdate?: Date | null;
|
|
13850
13749
|
rok?: number | null;
|
|
13851
13750
|
mesic?: number | null;
|
|
@@ -13865,7 +13764,6 @@ declare class AFZurnal extends AFEntity {
|
|
|
13865
13764
|
static EntityPath: string;
|
|
13866
13765
|
static EntityName: string;
|
|
13867
13766
|
static EntityType: string;
|
|
13868
|
-
id?: number | null;
|
|
13869
13767
|
tabulka?: string | null;
|
|
13870
13768
|
idZaznamu?: number | null;
|
|
13871
13769
|
sloupec?: string | null;
|