abra-flexi 0.6.0 → 0.8.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 +200 -53
- package/dist/index.cjs +2082 -1670
- package/dist/index.d.cts +721 -316
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +721 -316
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +2022 -1670
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -2
package/dist/index.d.mts
CHANGED
|
@@ -48,6 +48,7 @@ declare const Filter: (expr?: string, params?: Params) => AFFilter;
|
|
|
48
48
|
declare const ID: (id: number) => AFID;
|
|
49
49
|
declare const CODE: (code: string) => AFCODE;
|
|
50
50
|
declare const EXT: (ext: string) => AFEXT;
|
|
51
|
+
type AFSingleEntityID = AFID | AFCODE | AFEXT;
|
|
51
52
|
//#endregion
|
|
52
53
|
//#region src/abra/AFTypes.d.ts
|
|
53
54
|
declare enum PropertyType {
|
|
@@ -81,11 +82,38 @@ declare enum StitkyCacheStrategy {
|
|
|
81
82
|
// Default
|
|
82
83
|
Eager = 2,
|
|
83
84
|
}
|
|
84
|
-
|
|
85
|
-
|
|
85
|
+
/**
|
|
86
|
+
* Controls how nested entities in 'unknown' state are handled during
|
|
87
|
+
* serialisation in save(). See spec §7 — Nested entity encoding.
|
|
88
|
+
*/
|
|
89
|
+
declare enum NestedUnknownStrategy {
|
|
90
|
+
/**
|
|
91
|
+
* Resolve each 'unknown' nested entity via _resolveId before encoding.
|
|
92
|
+
* Falls back to ByIdentifier behaviour if resolution returns null.
|
|
93
|
+
* This is the default.
|
|
94
|
+
*/
|
|
95
|
+
Resolve = "resolve",
|
|
96
|
+
/**
|
|
97
|
+
* Encode using the available identifier (kod / ext) without a network call.
|
|
98
|
+
* Throws AFError(MISSING_IDENTIFIER) if no identifier is present.
|
|
99
|
+
*/
|
|
100
|
+
ByIdentifier = "by-identifier",
|
|
101
|
+
/**
|
|
102
|
+
* Throw AFError(UNRESOLVED_ENTITY) immediately if any nested entity is
|
|
103
|
+
* still 'unknown' at encode time. The caller must resolve all relations
|
|
104
|
+
* before calling save().
|
|
105
|
+
*/
|
|
106
|
+
Strict = "strict",
|
|
86
107
|
}
|
|
87
108
|
type AFApiFetch = (input: RequestInfo | URL, init?: RequestInit | undefined) => Promise<Response>;
|
|
88
|
-
|
|
109
|
+
declare enum AFResponseFormat {
|
|
110
|
+
Json = "json",
|
|
111
|
+
Xml = "xml",
|
|
112
|
+
Pdf = "pdf",
|
|
113
|
+
Html = "html",
|
|
114
|
+
Csv = "csv",
|
|
115
|
+
Isdoc = "isdoc",
|
|
116
|
+
}
|
|
89
117
|
type AFFileResult = {
|
|
90
118
|
blob: Blob;
|
|
91
119
|
contentType: string;
|
|
@@ -114,6 +142,18 @@ declare enum AFQueryDetail {
|
|
|
114
142
|
SUMMARY = "summary",
|
|
115
143
|
}
|
|
116
144
|
type AFNestedDetail = (string | [string, AFNestedDetail])[];
|
|
145
|
+
/**
|
|
146
|
+
* Return type of `api.query()`. A standard array of entity instances extended
|
|
147
|
+
* with an optional `totalCount` property that is populated when the query was
|
|
148
|
+
* made with `addRowCount: true`. The value reflects the total number of
|
|
149
|
+
* matching records on the server, independent of `limit`/`start`.
|
|
150
|
+
*
|
|
151
|
+
* Because this is still a plain array, all existing code that iterates or
|
|
152
|
+
* spreads the result continues to work without any changes.
|
|
153
|
+
*/
|
|
154
|
+
type AFQueryResult<T> = T[] & {
|
|
155
|
+
totalCount?: number;
|
|
156
|
+
};
|
|
117
157
|
type AFQueryOptions = {
|
|
118
158
|
detail?: AFNestedDetail | AFQueryDetail;
|
|
119
159
|
filter?: AFFilter;
|
|
@@ -137,8 +177,31 @@ type AFQueryOptions = {
|
|
|
137
177
|
abortController?: AbortController;
|
|
138
178
|
};
|
|
139
179
|
type AFQueryFileOptions = AFQueryOptions & {
|
|
140
|
-
reportName?: string;
|
|
141
|
-
reportLang?: string;
|
|
180
|
+
reportName?: string | AFReportInfo;
|
|
181
|
+
reportLang?: string | AFReportLanguage;
|
|
182
|
+
};
|
|
183
|
+
type AFReportLanguage = {
|
|
184
|
+
code: string;
|
|
185
|
+
name: string;
|
|
186
|
+
};
|
|
187
|
+
type AFReportInfo = {
|
|
188
|
+
reportId: string;
|
|
189
|
+
reportName: string;
|
|
190
|
+
reportDescription?: string;
|
|
191
|
+
reportCode?: string;
|
|
192
|
+
sumKod?: string;
|
|
193
|
+
isDefault?: string;
|
|
194
|
+
rozsiritelna?: string;
|
|
195
|
+
sumovana?: string;
|
|
196
|
+
predvybranyPocet?: string;
|
|
197
|
+
autotiskReport?: string;
|
|
198
|
+
statCodes?: string;
|
|
199
|
+
languages?: {
|
|
200
|
+
language: AFReportLanguage[];
|
|
201
|
+
};
|
|
202
|
+
};
|
|
203
|
+
type AFQueryReportsOptions = {
|
|
204
|
+
abortController?: AbortController;
|
|
142
205
|
};
|
|
143
206
|
type AFURelOptions = {
|
|
144
207
|
detail?: AFNestedDetail | AFQueryDetail;
|
|
@@ -166,7 +229,11 @@ type AFURelMinimal = AFEntity & {
|
|
|
166
229
|
}[];
|
|
167
230
|
};
|
|
168
231
|
type AFSaveOptions = {
|
|
169
|
-
|
|
232
|
+
/**
|
|
233
|
+
* How to handle nested entities in 'unknown' state during serialisation.
|
|
234
|
+
* @default NestedUnknownStrategy.Resolve
|
|
235
|
+
*/
|
|
236
|
+
nestedUnknown?: NestedUnknownStrategy;
|
|
170
237
|
abortController?: AbortController;
|
|
171
238
|
removeStitky?: boolean;
|
|
172
239
|
};
|
|
@@ -197,6 +264,7 @@ declare enum AFSessionStatus {
|
|
|
197
264
|
Online = "online",
|
|
198
265
|
LogingOut = "logingout",
|
|
199
266
|
}
|
|
267
|
+
/** @deprecated Use api.resolveStubId() instead. */
|
|
200
268
|
type IdStub = {
|
|
201
269
|
id?: number;
|
|
202
270
|
kod?: string;
|
|
@@ -208,7 +276,6 @@ declare class AFTypUzivatelskeVazby extends AFEntity {
|
|
|
208
276
|
static EntityPath: string;
|
|
209
277
|
static EntityName: string;
|
|
210
278
|
static EntityType: string;
|
|
211
|
-
id?: number | null;
|
|
212
279
|
lastUpdate?: Date | null;
|
|
213
280
|
kod?: string | null;
|
|
214
281
|
nazev?: string | null;
|
|
@@ -239,7 +306,6 @@ declare class AFUzivatelskaVazba extends AFEntity {
|
|
|
239
306
|
static EntityPath: string;
|
|
240
307
|
static EntityName: string;
|
|
241
308
|
static EntityType: string;
|
|
242
|
-
id?: number | null;
|
|
243
309
|
vazbaTyp?: AFTypUzivatelskeVazby | null;
|
|
244
310
|
modul?: string | null;
|
|
245
311
|
kod?: string | null;
|
|
@@ -259,7 +325,6 @@ declare class AFSkupinaStitku extends AFEntity {
|
|
|
259
325
|
static EntityPath: string;
|
|
260
326
|
static EntityName: string;
|
|
261
327
|
static EntityType: string;
|
|
262
|
-
id?: number | null;
|
|
263
328
|
lastUpdate?: Date | null;
|
|
264
329
|
kod?: string | null;
|
|
265
330
|
nazev?: string | null;
|
|
@@ -281,7 +346,6 @@ declare class AFStitek extends AFEntity {
|
|
|
281
346
|
static EntityPath: string;
|
|
282
347
|
static EntityName: string;
|
|
283
348
|
static EntityType: string;
|
|
284
|
-
id?: number | null;
|
|
285
349
|
lastUpdate?: Date | null;
|
|
286
350
|
kod?: string | null;
|
|
287
351
|
nazev?: string | null;
|
|
@@ -299,7 +363,6 @@ declare class AFStitek extends AFEntity {
|
|
|
299
363
|
vsbPhl?: boolean | null;
|
|
300
364
|
vsbFap?: boolean | null;
|
|
301
365
|
vsbZav?: boolean | null;
|
|
302
|
-
vsbTxp?: boolean | null;
|
|
303
366
|
vsbTxz?: boolean | null;
|
|
304
367
|
vsbBan?: boolean | null;
|
|
305
368
|
vsbPok?: boolean | null;
|
|
@@ -338,19 +401,45 @@ declare class AFEntity {
|
|
|
338
401
|
static EntityPath: string;
|
|
339
402
|
static EntityName: string;
|
|
340
403
|
static EntityType: string;
|
|
404
|
+
static Actions: Record<string, string>;
|
|
341
405
|
static propAnnotations: Record<string, TypeAnnotation>;
|
|
342
406
|
private _stitkyCache;
|
|
343
|
-
|
|
407
|
+
private _id?;
|
|
408
|
+
private _state;
|
|
409
|
+
/**
|
|
410
|
+
* Server-assigned internal id. Readonly — never set by application code.
|
|
411
|
+
* Use api.resolveStubId() or api.resolve() to obtain a confirmed id.
|
|
412
|
+
*/
|
|
413
|
+
get id(): number | null | undefined;
|
|
414
|
+
/**
|
|
415
|
+
* @internal — called only by AFApiClient. Do NOT call from application code.
|
|
416
|
+
* Sets the confirmed server id and transitions state to 'exists'.
|
|
417
|
+
*/
|
|
418
|
+
_setId(id: number): void;
|
|
419
|
+
/**
|
|
420
|
+
* Pending unverified identifiers stored by the deprecated createIdStub().
|
|
421
|
+
* @internal
|
|
422
|
+
*/
|
|
423
|
+
_stub?: {
|
|
424
|
+
id?: number;
|
|
425
|
+
kod?: string;
|
|
426
|
+
ext?: string[];
|
|
427
|
+
};
|
|
344
428
|
kod?: string | null;
|
|
345
429
|
stitky?: string | null;
|
|
346
430
|
_orig: Record<string, any>;
|
|
347
|
-
|
|
431
|
+
/**
|
|
432
|
+
* Returns the entity's existence state:
|
|
433
|
+
* - true — definitely no server record ('new')
|
|
434
|
+
* - undefined — has identifiers but existence unconfirmed ('unknown')
|
|
435
|
+
* - false — server existence confirmed ('exists')
|
|
436
|
+
*/
|
|
437
|
+
get isNew(): boolean | undefined;
|
|
348
438
|
constructor(stitkyCache: AFStitkyCache);
|
|
349
439
|
getPropertyTypeAnnotation(key: string): TypeAnnotation | undefined;
|
|
350
440
|
getStitky(): AFStitek[] | undefined;
|
|
351
441
|
getStitkyBySkupina(skup: string | AFSkupinaStitku): AFStitek[] | undefined;
|
|
352
442
|
get pristine(): boolean;
|
|
353
|
-
get isNew(): boolean;
|
|
354
443
|
protected getCotr(): typeof AFEntity;
|
|
355
444
|
hasChanged(key?: string): boolean;
|
|
356
445
|
wasLoaded(key: string): boolean;
|
|
@@ -373,24 +462,78 @@ declare class AFApiClient {
|
|
|
373
462
|
queryRaw(entityPath: string, options?: AFQueryOptions): Promise<any>;
|
|
374
463
|
queryFileRaw(entityPath: string, format: AFResponseFormat, options?: AFQueryFileOptions): Promise<AFFileResult>;
|
|
375
464
|
queryFile<T extends typeof AFEntity>(entity: T, format: AFResponseFormat, options?: AFQueryFileOptions): Promise<AFFileResult>;
|
|
376
|
-
|
|
465
|
+
queryReports<T extends typeof AFEntity>(entity: T, options?: AFQueryReportsOptions): Promise<AFReportInfo[]>;
|
|
466
|
+
query<T extends typeof AFEntity>(entity: T, options?: AFQueryOptions): Promise<AFQueryResult<InstanceType<T>>>;
|
|
377
467
|
queryOne<T extends typeof AFEntity>(entity: T, options: AFQueryOptions): Promise<InstanceType<T>>;
|
|
378
468
|
queryURels<T extends typeof AFEntity = typeof AFEntity>(relatedEntity: T, forObjects: AFURelMinimal | AFURelMinimal[], options?: AFURelOptions): Promise<AFURelResult<InstanceType<T>>[]>;
|
|
379
469
|
populate<T extends typeof AFEntity = typeof AFEntity>(entities: InstanceType<T>[], options?: AFPopulateOptions): Promise<InstanceType<T>[]>;
|
|
380
470
|
populateOne<T extends typeof AFEntity = typeof AFEntity>(entity: InstanceType<T>, options?: AFPopulateOptions): Promise<InstanceType<T>>;
|
|
381
471
|
create<T extends typeof AFEntity>(entity: T): Promise<InstanceType<T>>;
|
|
472
|
+
/**
|
|
473
|
+
* Resolves the server-assigned id for an entity that may be in 'unknown' state.
|
|
474
|
+
* Priority order: confirmed _id → _stub.id → _stub.kod / entity.kod → _stub.ext
|
|
475
|
+
*
|
|
476
|
+
* Returns the resolved id (number), or null if the entity was not found.
|
|
477
|
+
* On a 404 response, the entity state is reset to 'new'.
|
|
478
|
+
* @internal
|
|
479
|
+
*/
|
|
480
|
+
private _resolveId;
|
|
481
|
+
/**
|
|
482
|
+
* Resolves an entity by a validated identifier string or numeric id.
|
|
483
|
+
* Accepted identifier forms:
|
|
484
|
+
* - number → looks up by internal id
|
|
485
|
+
* - "code:X" → looks up by business code
|
|
486
|
+
* - "ext:X" → looks up by external id
|
|
487
|
+
* - AFSingleEntityID → an ID()/CODE()/EXT() value (AFID/AFCODE/AFEXT)
|
|
488
|
+
* Throws INVALID_IDENTIFIER for any other string.
|
|
489
|
+
* Throws OBJECT_NOT_FOUND if the server returns 404.
|
|
490
|
+
*/
|
|
491
|
+
resolveStubId<T extends typeof AFEntity>(entity: T, identifier: number | string | AFSingleEntityID): Promise<InstanceType<T>>;
|
|
492
|
+
/**
|
|
493
|
+
* Resolves an entity in-place — determines and sets its server id.
|
|
494
|
+
* Fast-path: if the entity already has a confirmed id, returns immediately.
|
|
495
|
+
* For 'unknown' state: calls _resolveId; if not found and throwIfNotFound is
|
|
496
|
+
* true, throws OBJECT_NOT_FOUND.
|
|
497
|
+
* Always returns the same entity instance.
|
|
498
|
+
*/
|
|
499
|
+
resolve<T extends AFEntity>(entity: T, throwIfNotFound?: boolean): Promise<T>;
|
|
500
|
+
/**
|
|
501
|
+
* @deprecated Use resolveStubId() or resolve() instead.
|
|
502
|
+
* Creates an entity instance in 'unknown' state with unverified identifiers.
|
|
503
|
+
*/
|
|
382
504
|
createIdStub<T extends typeof AFEntity>(entity: T, id: IdStub): Promise<InstanceType<T>>;
|
|
383
505
|
saveRaw(entityPath: string, data: any, options?: AFSaveOptions): Promise<any>;
|
|
384
506
|
save<T extends typeof AFEntity = typeof AFEntity>(entity: InstanceType<T>, options?: AFSaveOptions): Promise<InstanceType<T>>;
|
|
385
507
|
deleteRaw(entityPath: string, id: string | number | undefined | null, options?: AFDeleteOptions): Promise<any>;
|
|
386
508
|
delete<T extends typeof AFEntity = typeof AFEntity>(entity: InstanceType<T>, options?: AFDeleteOptions): Promise<boolean>;
|
|
387
|
-
|
|
388
|
-
|
|
509
|
+
actionRaw(entityPath: string, id: string | number, actionName: string, options?: AFActionOptions): Promise<boolean>;
|
|
510
|
+
action<T extends typeof AFEntity = typeof AFEntity>(entity: InstanceType<T>, actionName: string, options?: AFActionOptions): Promise<boolean>;
|
|
389
511
|
private _applySaveResultToEntity;
|
|
390
512
|
private _extractAbraErrors;
|
|
391
513
|
private _decodeEntityObj;
|
|
392
514
|
private _encodeEntity;
|
|
393
515
|
private _decodeProperty;
|
|
516
|
+
/**
|
|
517
|
+
* Returns the best available identifier string for an entity, or undefined.
|
|
518
|
+
* Used for ByIdentifier and Resolve fallback strategies.
|
|
519
|
+
* Priority: _stub.kod > entity.kod > _stub.ext
|
|
520
|
+
*/
|
|
521
|
+
private _getEntityIdentifierString;
|
|
522
|
+
/**
|
|
523
|
+
* Encodes a single related AFEntity for inclusion in a save request body.
|
|
524
|
+
* Centralizes tri-state (`isNew` true/false/undefined) handling and the
|
|
525
|
+
* NestedUnknownStrategy so both the to-1 relation branch and per-item
|
|
526
|
+
* array encoding share one implementation.
|
|
527
|
+
*
|
|
528
|
+
* Returns either a primitive (numeric id, "code:..." / "ext:..." string)
|
|
529
|
+
* or an object `{ id?, ...changedFields }`.
|
|
530
|
+
*
|
|
531
|
+
* `inCollection` controls one divergence: collection items always emit an
|
|
532
|
+
* object form for existing entities (so Flexi matches by id under
|
|
533
|
+
* `@removeAll: true`), while to-1 relations can collapse to a bare id
|
|
534
|
+
* reference when the nested entity has no field changes.
|
|
535
|
+
*/
|
|
536
|
+
private _encodeRelatedEntity;
|
|
394
537
|
private _encodeProperty;
|
|
395
538
|
}
|
|
396
539
|
//#endregion
|
|
@@ -417,6 +560,14 @@ declare enum AFErrorCode {
|
|
|
417
560
|
PASSWORD_EMPTY = "PASSWORD_EMPTY",
|
|
418
561
|
PATH_WITHOUT_COMPANY = "PATH_WITHOUT_COMPANY",
|
|
419
562
|
PATH_WITHOUT_EVIDENCE = "PATH_WITHOUT_EVIDENCE",
|
|
563
|
+
INVALID_IDENTIFIER = "INVALID_IDENTIFIER",
|
|
564
|
+
// malformed identifier string in resolveStubId
|
|
565
|
+
ID_MISMATCH = "ID_MISMATCH",
|
|
566
|
+
// resolve found a different id than already set
|
|
567
|
+
MISSING_IDENTIFIER = "MISSING_IDENTIFIER",
|
|
568
|
+
// 'unknown' nested entity has no identifier to encode
|
|
569
|
+
UNRESOLVED_ENTITY = "UNRESOLVED_ENTITY",
|
|
570
|
+
// Strict strategy: nested entity is 'unknown'
|
|
420
571
|
UNKNOWN = "UNKNOWN",
|
|
421
572
|
}
|
|
422
573
|
declare class AFError extends Error {
|
|
@@ -469,10 +620,9 @@ declare class AFKurz extends AFEntity {
|
|
|
469
620
|
static EntityPath: string;
|
|
470
621
|
static EntityName: string;
|
|
471
622
|
static EntityType: string;
|
|
472
|
-
id?: number | null;
|
|
473
623
|
lastUpdate?: Date | null;
|
|
474
624
|
platiOdData?: Date | null;
|
|
475
|
-
|
|
625
|
+
kurz?: Big | null;
|
|
476
626
|
kurzMnozstvi?: Big | null;
|
|
477
627
|
mena?: AFMena | null;
|
|
478
628
|
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
@@ -807,6 +957,34 @@ declare enum TypPrav {
|
|
|
807
957
|
jenCist = "typPrav.jenCist",
|
|
808
958
|
zablokovan = "typPrav.zablokovan",
|
|
809
959
|
}
|
|
960
|
+
declare enum TypPristPrav {
|
|
961
|
+
plny = "typPristPrav.plny",
|
|
962
|
+
nepripustne = "typPristPrav.nepripustne",
|
|
963
|
+
pouzeCist = "typPristPrav.pouzeCist",
|
|
964
|
+
upresneni = "typPristPrav.upresneni",
|
|
965
|
+
}
|
|
966
|
+
declare enum PristupovePravoFeatureK {
|
|
967
|
+
pridavat = "Pridavat",
|
|
968
|
+
menit = "Menit",
|
|
969
|
+
mazat = "Mazat",
|
|
970
|
+
export = "Export",
|
|
971
|
+
import = "Import",
|
|
972
|
+
oteviratDetail = "OteviratDetail",
|
|
973
|
+
sloupce = "Sloupce",
|
|
974
|
+
kusovnik = "Kusovnik",
|
|
975
|
+
storno = "Storno",
|
|
976
|
+
slevaZmenaCeny = "SlevaZmenaCeny",
|
|
977
|
+
sumace = "Sumace",
|
|
978
|
+
sluzby = "Sluzby",
|
|
979
|
+
vazby = "Vazby",
|
|
980
|
+
hromZmeny = "HromZmeny",
|
|
981
|
+
nakupCena = "NakupCena",
|
|
982
|
+
menitZauctovani = "MenitZauctovani",
|
|
983
|
+
menitTuo = "MenitTuo",
|
|
984
|
+
generovatZeSmluv = "GenerovatZeSmluv",
|
|
985
|
+
podepsatFaktury = "PodepsatFaktury",
|
|
986
|
+
prodejPodMinMarzi = "ProdejPodMinMarzi",
|
|
987
|
+
}
|
|
810
988
|
declare enum TypUcJednotky {
|
|
811
989
|
mikro = "typUcJednotky.mikro",
|
|
812
990
|
mala = "typUcJednotky.mala",
|
|
@@ -871,6 +1049,20 @@ declare enum ZobrazWebKompMod {
|
|
|
871
1049
|
auto = "zobrazWebKompMod.auto",
|
|
872
1050
|
browser = "zobrazWebKompMod.browser",
|
|
873
1051
|
}
|
|
1052
|
+
declare enum MzdKolSmlouva {
|
|
1053
|
+
_0 = "mzdKolSmlouva.0",
|
|
1054
|
+
_1 = "mzdKolSmlouva.1",
|
|
1055
|
+
_2 = "mzdKolSmlouva.2",
|
|
1056
|
+
_3 = "mzdKolSmlouva.3",
|
|
1057
|
+
_4 = "mzdKolSmlouva.4",
|
|
1058
|
+
_5 = "mzdKolSmlouva.5",
|
|
1059
|
+
}
|
|
1060
|
+
declare enum MzdFormaKontroly {
|
|
1061
|
+
_1 = "mzdFormaKontroly.1",
|
|
1062
|
+
_2 = "mzdFormaKontroly.2",
|
|
1063
|
+
_3 = "mzdFormaKontroly.3",
|
|
1064
|
+
_4 = "mzdFormaKontroly.4",
|
|
1065
|
+
}
|
|
874
1066
|
declare enum PredvybranyPocet {
|
|
875
1067
|
aktualni = "predvybranyPocet.aktualni",
|
|
876
1068
|
vsechny = "predvybranyPocet.vsechny",
|
|
@@ -1279,6 +1471,92 @@ declare enum ZpusobPlatby {
|
|
|
1279
1471
|
adresa = "zpusobPlatby.adresa",
|
|
1280
1472
|
pokladna = "zpusobPlatby.pokladna",
|
|
1281
1473
|
}
|
|
1474
|
+
declare enum MzdTypDanIdentifOsoba {
|
|
1475
|
+
D = "mzdTypDanIdentifOsoba.D",
|
|
1476
|
+
R = "mzdTypDanIdentifOsoba.R",
|
|
1477
|
+
S = "mzdTypDanIdentifOsoba.S",
|
|
1478
|
+
J = "mzdTypDanIdentifOsoba.J",
|
|
1479
|
+
}
|
|
1480
|
+
declare enum MzdTypDokladuCiz {
|
|
1481
|
+
I = "mzdTypDokladuCiz.I",
|
|
1482
|
+
P = "mzdTypDokladuCiz.P",
|
|
1483
|
+
O = "mzdTypDokladuCiz.O",
|
|
1484
|
+
}
|
|
1485
|
+
declare enum MzdTypZdravOmezeni {
|
|
1486
|
+
_1 = "mzdTypZdravOmezeni.1",
|
|
1487
|
+
_2 = "mzdTypZdravOmezeni.2",
|
|
1488
|
+
_3 = "mzdTypZdravOmezeni.3",
|
|
1489
|
+
_4 = "mzdTypZdravOmezeni.4",
|
|
1490
|
+
_5 = "mzdTypZdravOmezeni.5",
|
|
1491
|
+
}
|
|
1492
|
+
declare enum MzdKatDosazVzdelani {
|
|
1493
|
+
A = "mzdKatDosazVzdelani.A",
|
|
1494
|
+
B = "mzdKatDosazVzdelani.B",
|
|
1495
|
+
C = "mzdKatDosazVzdelani.C",
|
|
1496
|
+
D = "mzdKatDosazVzdelani.D",
|
|
1497
|
+
E = "mzdKatDosazVzdelani.E",
|
|
1498
|
+
H = "mzdKatDosazVzdelani.H",
|
|
1499
|
+
J = "mzdKatDosazVzdelani.J",
|
|
1500
|
+
K = "mzdKatDosazVzdelani.K",
|
|
1501
|
+
L = "mzdKatDosazVzdelani.L",
|
|
1502
|
+
M = "mzdKatDosazVzdelani.M",
|
|
1503
|
+
N = "mzdKatDosazVzdelani.N",
|
|
1504
|
+
P = "mzdKatDosazVzdelani.P",
|
|
1505
|
+
R = "mzdKatDosazVzdelani.R",
|
|
1506
|
+
T = "mzdKatDosazVzdelani.T",
|
|
1507
|
+
V = "mzdKatDosazVzdelani.V",
|
|
1508
|
+
Z = "mzdKatDosazVzdelani.Z",
|
|
1509
|
+
}
|
|
1510
|
+
declare enum MzdCizNositelPojisteni {
|
|
1511
|
+
P = "mzdCizNositelPojisteni.P",
|
|
1512
|
+
S = "mzdCizNositelPojisteni.S",
|
|
1513
|
+
N = "mzdCizNositelPojisteni.N",
|
|
1514
|
+
}
|
|
1515
|
+
declare enum MzdCizVolnyTrhPrace {
|
|
1516
|
+
_1 = "mzdCizVolnyTrhPrace.1",
|
|
1517
|
+
_2 = "mzdCizVolnyTrhPrace.2",
|
|
1518
|
+
_3 = "mzdCizVolnyTrhPrace.3",
|
|
1519
|
+
_4 = "mzdCizVolnyTrhPrace.4",
|
|
1520
|
+
_5 = "mzdCizVolnyTrhPrace.5",
|
|
1521
|
+
_6 = "mzdCizVolnyTrhPrace.6",
|
|
1522
|
+
_7 = "mzdCizVolnyTrhPrace.7",
|
|
1523
|
+
_8 = "mzdCizVolnyTrhPrace.8",
|
|
1524
|
+
_9 = "mzdCizVolnyTrhPrace.9",
|
|
1525
|
+
_10 = "mzdCizVolnyTrhPrace.10",
|
|
1526
|
+
_11 = "mzdCizVolnyTrhPrace.11",
|
|
1527
|
+
_12 = "mzdCizVolnyTrhPrace.12",
|
|
1528
|
+
_13 = "mzdCizVolnyTrhPrace.13",
|
|
1529
|
+
_14 = "mzdCizVolnyTrhPrace.14",
|
|
1530
|
+
_15 = "mzdCizVolnyTrhPrace.15",
|
|
1531
|
+
_16 = "mzdCizVolnyTrhPrace.16",
|
|
1532
|
+
_17 = "mzdCizVolnyTrhPrace.17",
|
|
1533
|
+
_18 = "mzdCizVolnyTrhPrace.18",
|
|
1534
|
+
_19 = "mzdCizVolnyTrhPrace.19",
|
|
1535
|
+
_20 = "mzdCizVolnyTrhPrace.20",
|
|
1536
|
+
_21 = "mzdCizVolnyTrhPrace.21",
|
|
1537
|
+
}
|
|
1538
|
+
declare enum MzdCizDruhPracOpravneni {
|
|
1539
|
+
_1 = "mzdCizDruhPracOpravneni.1",
|
|
1540
|
+
_2 = "mzdCizDruhPracOpravneni.2",
|
|
1541
|
+
_3 = "mzdCizDruhPracOpravneni.3",
|
|
1542
|
+
_4 = "mzdCizDruhPracOpravneni.4",
|
|
1543
|
+
}
|
|
1544
|
+
declare enum MzdPobockaUP {
|
|
1545
|
+
HMP = "mzdPobockaUP.HMP",
|
|
1546
|
+
JMK = "mzdPobockaUP.JMK",
|
|
1547
|
+
JCK = "mzdPobockaUP.JCK",
|
|
1548
|
+
HKK = "mzdPobockaUP.HKK",
|
|
1549
|
+
VYK = "mzdPobockaUP.VYK",
|
|
1550
|
+
KVK = "mzdPobockaUP.KVK",
|
|
1551
|
+
LBK = "mzdPobockaUP.LBK",
|
|
1552
|
+
OLK = "mzdPobockaUP.OLK",
|
|
1553
|
+
MSK = "mzdPobockaUP.MSK",
|
|
1554
|
+
PAK = "mzdPobockaUP.PAK",
|
|
1555
|
+
PMK = "mzdPobockaUP.PMK",
|
|
1556
|
+
SCK = "mzdPobockaUP.SCK",
|
|
1557
|
+
ULK = "mzdPobockaUP.ULK",
|
|
1558
|
+
ZLK = "mzdPobockaUP.ZLK",
|
|
1559
|
+
}
|
|
1282
1560
|
declare enum CsszDuvodOsetrovne {
|
|
1283
1561
|
onemocnela = "csszDuvodOsetrovne.onemocnela",
|
|
1284
1562
|
narizenaKaran = "csszDuvodOsetrovne.narizenaKaran",
|
|
@@ -1381,6 +1659,34 @@ declare enum CsszDuvodNeposkytnuti {
|
|
|
1381
1659
|
_02 = "csszDuvodNeposkytnuti.02",
|
|
1382
1660
|
_03 = "csszDuvodNeposkytnuti.03",
|
|
1383
1661
|
}
|
|
1662
|
+
declare enum MzdDuvodPredcasKonceZam {
|
|
1663
|
+
_1 = "mzdDuvodPredcasKonceZam.1",
|
|
1664
|
+
_2 = "mzdDuvodPredcasKonceZam.2",
|
|
1665
|
+
_3 = "mzdDuvodPredcasKonceZam.3",
|
|
1666
|
+
}
|
|
1667
|
+
declare enum MzdPracRezim {
|
|
1668
|
+
_1 = "mzdPracRezim.1",
|
|
1669
|
+
_2 = "mzdPracRezim.2",
|
|
1670
|
+
_3 = "mzdPracRezim.3",
|
|
1671
|
+
_4 = "mzdPracRezim.4",
|
|
1672
|
+
}
|
|
1673
|
+
declare enum MzdPrubehPrace {
|
|
1674
|
+
_1 = "mzdPrubehPrace.1",
|
|
1675
|
+
_2 = "mzdPrubehPrace.2",
|
|
1676
|
+
_3 = "mzdPrubehPrace.3",
|
|
1677
|
+
_4 = "mzdPrubehPrace.4",
|
|
1678
|
+
}
|
|
1679
|
+
declare enum MzdNastrojAPZ {
|
|
1680
|
+
_1 = "mzdNastrojAPZ.1",
|
|
1681
|
+
_2 = "mzdNastrojAPZ.2",
|
|
1682
|
+
_3 = "mzdNastrojAPZ.3",
|
|
1683
|
+
_4 = "mzdNastrojAPZ.4",
|
|
1684
|
+
}
|
|
1685
|
+
declare enum MzdyBlizsiUrceniPPV {
|
|
1686
|
+
_1 = "mzdyBlizsiUrceniPPV.1",
|
|
1687
|
+
_2 = "mzdyBlizsiUrceniPPV.2",
|
|
1688
|
+
_3 = "mzdyBlizsiUrceniPPV.3",
|
|
1689
|
+
}
|
|
1384
1690
|
declare enum VyznamSlozky {
|
|
1385
1691
|
dobaFond = "vyznamSlozky.dobaFond",
|
|
1386
1692
|
dobaNeodpr = "vyznamSlozky.dobaNeodpr",
|
|
@@ -1475,6 +1781,17 @@ declare enum DashboardPanelVisibility {
|
|
|
1475
1781
|
shared = "dashboardPanelVisibility.shared",
|
|
1476
1782
|
shared_all = "dashboardPanelVisibility.shared-all",
|
|
1477
1783
|
}
|
|
1784
|
+
declare enum StatusDoplnku {
|
|
1785
|
+
aktivni = "statusDoplnku.aktivni",
|
|
1786
|
+
neaktivni = "statusDoplnku.neaktivni",
|
|
1787
|
+
nefunkcni = "statusDoplnku.nefunkcni",
|
|
1788
|
+
cekajici = "statusDoplnku.cekajici",
|
|
1789
|
+
pozastaveny = "statusDoplnku.pozastaveny",
|
|
1790
|
+
}
|
|
1791
|
+
declare enum StatusIntegrace {
|
|
1792
|
+
aktivni = "statusIntegrace.aktivni",
|
|
1793
|
+
cekajici = "statusIntegrace.cekajici",
|
|
1794
|
+
}
|
|
1478
1795
|
declare enum TypSestavy {
|
|
1479
1796
|
rozvaha = "typSestavy.rozvaha",
|
|
1480
1797
|
vysledov = "typSestavy.vysledov",
|
|
@@ -1522,7 +1839,6 @@ declare class AFMena extends AFEntity {
|
|
|
1522
1839
|
static EntityPath: string;
|
|
1523
1840
|
static EntityName: string;
|
|
1524
1841
|
static EntityType: string;
|
|
1525
|
-
id?: number | null;
|
|
1526
1842
|
lastUpdate?: Date | null;
|
|
1527
1843
|
kod?: string | null;
|
|
1528
1844
|
nazev?: string | null;
|
|
@@ -1547,7 +1863,6 @@ declare class AFRegion extends AFEntity {
|
|
|
1547
1863
|
static EntityPath: string;
|
|
1548
1864
|
static EntityName: string;
|
|
1549
1865
|
static EntityType: string;
|
|
1550
|
-
id?: number | null;
|
|
1551
1866
|
lastUpdate?: Date | null;
|
|
1552
1867
|
kod?: string | null;
|
|
1553
1868
|
nazev?: string | null;
|
|
@@ -1573,7 +1888,6 @@ declare class AFUcetniObdobi extends AFEntity {
|
|
|
1573
1888
|
static EntityPath: string;
|
|
1574
1889
|
static EntityName: string;
|
|
1575
1890
|
static EntityType: string;
|
|
1576
|
-
id?: number | null;
|
|
1577
1891
|
lastUpdate?: Date | null;
|
|
1578
1892
|
platiOdData?: Date | null;
|
|
1579
1893
|
platiDoData?: Date | null;
|
|
@@ -1591,7 +1905,6 @@ declare class AFTypOrganizace extends AFEntity {
|
|
|
1591
1905
|
static EntityPath: string;
|
|
1592
1906
|
static EntityName: string;
|
|
1593
1907
|
static EntityType: string;
|
|
1594
|
-
id?: number | null;
|
|
1595
1908
|
lastUpdate?: Date | null;
|
|
1596
1909
|
kod?: string | null;
|
|
1597
1910
|
nazev?: string | null;
|
|
@@ -1611,7 +1924,6 @@ declare class AFUcetniOsnova extends AFEntity {
|
|
|
1611
1924
|
static EntityPath: string;
|
|
1612
1925
|
static EntityName: string;
|
|
1613
1926
|
static EntityType: string;
|
|
1614
|
-
id?: number | null;
|
|
1615
1927
|
lastUpdate?: Date | null;
|
|
1616
1928
|
kod?: string | null;
|
|
1617
1929
|
nazev?: string | null;
|
|
@@ -1636,7 +1948,6 @@ declare class AFUcet extends AFEntity {
|
|
|
1636
1948
|
static EntityPath: string;
|
|
1637
1949
|
static EntityName: string;
|
|
1638
1950
|
static EntityType: string;
|
|
1639
|
-
id?: number | null;
|
|
1640
1951
|
lastUpdate?: Date | null;
|
|
1641
1952
|
kod?: string | null;
|
|
1642
1953
|
nazev?: string | null;
|
|
@@ -1664,7 +1975,6 @@ declare class AFSkupinaFirem extends AFEntity {
|
|
|
1664
1975
|
static EntityPath: string;
|
|
1665
1976
|
static EntityName: string;
|
|
1666
1977
|
static EntityType: string;
|
|
1667
|
-
id?: number | null;
|
|
1668
1978
|
lastUpdate?: Date | null;
|
|
1669
1979
|
kod?: string | null;
|
|
1670
1980
|
nazev?: string | null;
|
|
@@ -1688,7 +1998,6 @@ declare class AFStredisko extends AFEntity {
|
|
|
1688
1998
|
static EntityPath: string;
|
|
1689
1999
|
static EntityName: string;
|
|
1690
2000
|
static EntityType: string;
|
|
1691
|
-
id?: number | null;
|
|
1692
2001
|
lastUpdate?: Date | null;
|
|
1693
2002
|
kod?: string | null;
|
|
1694
2003
|
nazev?: string | null;
|
|
@@ -1720,12 +2029,24 @@ declare class AFStredisko extends AFEntity {
|
|
|
1720
2029
|
static propAnnotations: Record<string, TypeAnnotation>;
|
|
1721
2030
|
}
|
|
1722
2031
|
//#endregion
|
|
2032
|
+
//#region src/generated/entities/AFPristupovePravo.d.ts
|
|
2033
|
+
declare class AFPristupovePravo extends AFEntity {
|
|
2034
|
+
static EntityPath: string;
|
|
2035
|
+
static EntityName: string;
|
|
2036
|
+
static EntityType: string;
|
|
2037
|
+
lastUpdate?: Date | null;
|
|
2038
|
+
typeK?: TypPristPrav | null;
|
|
2039
|
+
groupKey?: string | null;
|
|
2040
|
+
role?: AFRole | null;
|
|
2041
|
+
featureK?: PristupovePravoFeatureK[] | null;
|
|
2042
|
+
static propAnnotations: Record<string, TypeAnnotation>;
|
|
2043
|
+
}
|
|
2044
|
+
//#endregion
|
|
1723
2045
|
//#region src/generated/entities/AFRole.d.ts
|
|
1724
2046
|
declare class AFRole extends AFEntity {
|
|
1725
2047
|
static EntityPath: string;
|
|
1726
2048
|
static EntityName: string;
|
|
1727
2049
|
static EntityType: string;
|
|
1728
|
-
id?: number | null;
|
|
1729
2050
|
lastUpdate?: Date | null;
|
|
1730
2051
|
kod?: string | null;
|
|
1731
2052
|
nazev?: string | null;
|
|
@@ -1737,8 +2058,11 @@ declare class AFRole extends AFEntity {
|
|
|
1737
2058
|
visible?: boolean | null;
|
|
1738
2059
|
standard?: boolean | null;
|
|
1739
2060
|
pristupK?: TypPrav | null;
|
|
2061
|
+
otecRole?: AFRole | null;
|
|
1740
2062
|
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
1741
2063
|
get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
|
|
2064
|
+
'pristupova-prava'?: AFPristupovePravo[];
|
|
2065
|
+
get pristupovaPrava(): AFPristupovePravo[] | undefined;
|
|
1742
2066
|
static propAnnotations: Record<string, TypeAnnotation>;
|
|
1743
2067
|
}
|
|
1744
2068
|
//#endregion
|
|
@@ -1747,7 +2071,6 @@ declare class AFTypAktivity extends AFEntity {
|
|
|
1747
2071
|
static EntityPath: string;
|
|
1748
2072
|
static EntityName: string;
|
|
1749
2073
|
static EntityType: string;
|
|
1750
|
-
id?: number | null;
|
|
1751
2074
|
lastUpdate?: Date | null;
|
|
1752
2075
|
kod?: string | null;
|
|
1753
2076
|
nazev?: string | null;
|
|
@@ -1772,7 +2095,6 @@ declare class AFMistoUrceni extends AFEntity {
|
|
|
1772
2095
|
static EntityPath: string;
|
|
1773
2096
|
static EntityName: string;
|
|
1774
2097
|
static EntityType: string;
|
|
1775
|
-
id?: number | null;
|
|
1776
2098
|
lastUpdate?: Date | null;
|
|
1777
2099
|
ulice?: string | null;
|
|
1778
2100
|
mesto?: string | null;
|
|
@@ -1807,7 +2129,6 @@ declare class AFStavZakazky extends AFEntity {
|
|
|
1807
2129
|
static EntityPath: string;
|
|
1808
2130
|
static EntityName: string;
|
|
1809
2131
|
static EntityType: string;
|
|
1810
|
-
id?: number | null;
|
|
1811
2132
|
lastUpdate?: Date | null;
|
|
1812
2133
|
kod?: string | null;
|
|
1813
2134
|
nazev?: string | null;
|
|
@@ -1827,7 +2148,6 @@ declare class AFTypZakazky extends AFEntity {
|
|
|
1827
2148
|
static EntityPath: string;
|
|
1828
2149
|
static EntityName: string;
|
|
1829
2150
|
static EntityType: string;
|
|
1830
|
-
id?: number | null;
|
|
1831
2151
|
lastUpdate?: Date | null;
|
|
1832
2152
|
kod?: string | null;
|
|
1833
2153
|
nazev?: string | null;
|
|
@@ -1852,7 +2172,6 @@ declare class AFHodnoceniZakazky extends AFEntity {
|
|
|
1852
2172
|
static EntityPath: string;
|
|
1853
2173
|
static EntityName: string;
|
|
1854
2174
|
static EntityType: string;
|
|
1855
|
-
id?: number | null;
|
|
1856
2175
|
lastUpdate?: Date | null;
|
|
1857
2176
|
kod?: string | null;
|
|
1858
2177
|
nazev?: string | null;
|
|
@@ -1873,7 +2192,6 @@ declare class AFRada extends AFEntity {
|
|
|
1873
2192
|
static EntityPath: string;
|
|
1874
2193
|
static EntityName: string;
|
|
1875
2194
|
static EntityType: string;
|
|
1876
|
-
id?: number | null;
|
|
1877
2195
|
lastUpdate?: Date | null;
|
|
1878
2196
|
kod?: string | null;
|
|
1879
2197
|
nazev?: string | null;
|
|
@@ -1896,7 +2214,6 @@ declare class AFRocniRada extends AFEntity {
|
|
|
1896
2214
|
static EntityPath: string;
|
|
1897
2215
|
static EntityName: string;
|
|
1898
2216
|
static EntityType: string;
|
|
1899
|
-
id?: number | null;
|
|
1900
2217
|
lastUpdate?: Date | null;
|
|
1901
2218
|
cisDelka?: number | null;
|
|
1902
2219
|
zobrazNuly?: boolean | null;
|
|
@@ -1916,7 +2233,6 @@ declare class AFRadaSkladovyPohyb extends AFEntity {
|
|
|
1916
2233
|
static EntityPath: string;
|
|
1917
2234
|
static EntityName: string;
|
|
1918
2235
|
static EntityType: string;
|
|
1919
|
-
id?: number | null;
|
|
1920
2236
|
lastUpdate?: Date | null;
|
|
1921
2237
|
kod?: string | null;
|
|
1922
2238
|
nazev?: string | null;
|
|
@@ -1939,7 +2255,6 @@ declare class AFCinnost extends AFEntity {
|
|
|
1939
2255
|
static EntityPath: string;
|
|
1940
2256
|
static EntityName: string;
|
|
1941
2257
|
static EntityType: string;
|
|
1942
|
-
id?: number | null;
|
|
1943
2258
|
lastUpdate?: Date | null;
|
|
1944
2259
|
kod?: string | null;
|
|
1945
2260
|
nazev?: string | null;
|
|
@@ -1961,7 +2276,6 @@ declare class AFSklad extends AFEntity {
|
|
|
1961
2276
|
static EntityPath: string;
|
|
1962
2277
|
static EntityName: string;
|
|
1963
2278
|
static EntityType: string;
|
|
1964
|
-
id?: number | null;
|
|
1965
2279
|
lastUpdate?: Date | null;
|
|
1966
2280
|
kod?: string | null;
|
|
1967
2281
|
nazev?: string | null;
|
|
@@ -1993,7 +2307,6 @@ declare class AFPredpisZauctovani extends AFEntity {
|
|
|
1993
2307
|
static EntityPath: string;
|
|
1994
2308
|
static EntityName: string;
|
|
1995
2309
|
static EntityType: string;
|
|
1996
|
-
id?: number | null;
|
|
1997
2310
|
lastUpdate?: Date | null;
|
|
1998
2311
|
kod?: string | null;
|
|
1999
2312
|
nazev?: string | null;
|
|
@@ -2032,7 +2345,6 @@ declare class AFIntrastatDodaciPodminky extends AFEntity {
|
|
|
2032
2345
|
static EntityPath: string;
|
|
2033
2346
|
static EntityName: string;
|
|
2034
2347
|
static EntityType: string;
|
|
2035
|
-
id?: number | null;
|
|
2036
2348
|
lastUpdate?: Date | null;
|
|
2037
2349
|
kod?: string | null;
|
|
2038
2350
|
nazev?: string | null;
|
|
@@ -2053,7 +2365,6 @@ declare class AFIntrastatZvlastniPohyb extends AFEntity {
|
|
|
2053
2365
|
static EntityPath: string;
|
|
2054
2366
|
static EntityName: string;
|
|
2055
2367
|
static EntityType: string;
|
|
2056
|
-
id?: number | null;
|
|
2057
2368
|
lastUpdate?: Date | null;
|
|
2058
2369
|
kod?: string | null;
|
|
2059
2370
|
nazev?: string | null;
|
|
@@ -2074,7 +2385,6 @@ declare class AFIntrastatObchodniTransakce extends AFEntity {
|
|
|
2074
2385
|
static EntityPath: string;
|
|
2075
2386
|
static EntityName: string;
|
|
2076
2387
|
static EntityType: string;
|
|
2077
|
-
id?: number | null;
|
|
2078
2388
|
lastUpdate?: Date | null;
|
|
2079
2389
|
kod?: string | null;
|
|
2080
2390
|
nazev?: string | null;
|
|
@@ -2095,7 +2405,6 @@ declare class AFIntrastatDruhDopravy extends AFEntity {
|
|
|
2095
2405
|
static EntityPath: string;
|
|
2096
2406
|
static EntityName: string;
|
|
2097
2407
|
static EntityType: string;
|
|
2098
|
-
id?: number | null;
|
|
2099
2408
|
lastUpdate?: Date | null;
|
|
2100
2409
|
kod?: string | null;
|
|
2101
2410
|
nazev?: string | null;
|
|
@@ -2116,7 +2425,6 @@ declare class AFIntrastatKrajUrceni extends AFEntity {
|
|
|
2116
2425
|
static EntityPath: string;
|
|
2117
2426
|
static EntityName: string;
|
|
2118
2427
|
static EntityType: string;
|
|
2119
|
-
id?: number | null;
|
|
2120
2428
|
lastUpdate?: Date | null;
|
|
2121
2429
|
kod?: string | null;
|
|
2122
2430
|
nazev?: string | null;
|
|
@@ -2137,7 +2445,6 @@ declare class AFSkupinaZbozi extends AFEntity {
|
|
|
2137
2445
|
static EntityPath: string;
|
|
2138
2446
|
static EntityName: string;
|
|
2139
2447
|
static EntityType: string;
|
|
2140
|
-
id?: number | null;
|
|
2141
2448
|
lastUpdate?: Date | null;
|
|
2142
2449
|
kod?: string | null;
|
|
2143
2450
|
nazev?: string | null;
|
|
@@ -2186,7 +2493,6 @@ declare class AFMernaJednotka extends AFEntity {
|
|
|
2186
2493
|
static EntityPath: string;
|
|
2187
2494
|
static EntityName: string;
|
|
2188
2495
|
static EntityType: string;
|
|
2189
|
-
id?: number | null;
|
|
2190
2496
|
lastUpdate?: Date | null;
|
|
2191
2497
|
kod?: string | null;
|
|
2192
2498
|
nazev?: string | null;
|
|
@@ -2213,7 +2519,6 @@ declare class AFIntrastatMernaJednotka extends AFEntity {
|
|
|
2213
2519
|
static EntityPath: string;
|
|
2214
2520
|
static EntityName: string;
|
|
2215
2521
|
static EntityType: string;
|
|
2216
|
-
id?: number | null;
|
|
2217
2522
|
lastUpdate?: Date | null;
|
|
2218
2523
|
kod?: string | null;
|
|
2219
2524
|
nazev?: string | null;
|
|
@@ -2234,7 +2539,6 @@ declare class AFIntrastatKodNomenklatury extends AFEntity {
|
|
|
2234
2539
|
static EntityPath: string;
|
|
2235
2540
|
static EntityName: string;
|
|
2236
2541
|
static EntityType: string;
|
|
2237
|
-
id?: number | null;
|
|
2238
2542
|
lastUpdate?: Date | null;
|
|
2239
2543
|
kod?: string | null;
|
|
2240
2544
|
nazev?: string | null;
|
|
@@ -2256,7 +2560,6 @@ declare class AFPreneseniDph extends AFEntity {
|
|
|
2256
2560
|
static EntityPath: string;
|
|
2257
2561
|
static EntityName: string;
|
|
2258
2562
|
static EntityType: string;
|
|
2259
|
-
id?: number | null;
|
|
2260
2563
|
lastUpdate?: Date | null;
|
|
2261
2564
|
kod?: string | null;
|
|
2262
2565
|
nazev?: string | null;
|
|
@@ -2278,7 +2581,6 @@ declare class AFCenikovaSkupina extends AFEntity {
|
|
|
2278
2581
|
static EntityPath: string;
|
|
2279
2582
|
static EntityName: string;
|
|
2280
2583
|
static EntityType: string;
|
|
2281
|
-
id?: number | null;
|
|
2282
2584
|
lastUpdate?: Date | null;
|
|
2283
2585
|
kod?: string | null;
|
|
2284
2586
|
nazev?: string | null;
|
|
@@ -2299,7 +2601,6 @@ declare class AFOdberatel extends AFEntity {
|
|
|
2299
2601
|
static EntityPath: string;
|
|
2300
2602
|
static EntityName: string;
|
|
2301
2603
|
static EntityType: string;
|
|
2302
|
-
id?: number | null;
|
|
2303
2604
|
lastUpdate?: Date | null;
|
|
2304
2605
|
kodIndi?: string | null;
|
|
2305
2606
|
prodejCena?: Big | null;
|
|
@@ -2330,7 +2631,6 @@ declare class AFCenikObal extends AFEntity {
|
|
|
2330
2631
|
static EntityPath: string;
|
|
2331
2632
|
static EntityName: string;
|
|
2332
2633
|
static EntityType: string;
|
|
2333
|
-
id?: number | null;
|
|
2334
2634
|
lastUpdate?: Date | null;
|
|
2335
2635
|
nazev?: string | null;
|
|
2336
2636
|
nazevA?: string | null;
|
|
@@ -2362,7 +2662,6 @@ declare class AFTypAtributu extends AFEntity {
|
|
|
2362
2662
|
static EntityPath: string;
|
|
2363
2663
|
static EntityName: string;
|
|
2364
2664
|
static EntityType: string;
|
|
2365
|
-
id?: number | null;
|
|
2366
2665
|
lastUpdate?: Date | null;
|
|
2367
2666
|
kod?: string | null;
|
|
2368
2667
|
nazev?: string | null;
|
|
@@ -2389,7 +2688,6 @@ declare class AFAtribut extends AFEntity {
|
|
|
2389
2688
|
static EntityPath: string;
|
|
2390
2689
|
static EntityName: string;
|
|
2391
2690
|
static EntityType: string;
|
|
2392
|
-
id?: number | null;
|
|
2393
2691
|
lastUpdate?: Date | null;
|
|
2394
2692
|
valBoolean?: boolean | null;
|
|
2395
2693
|
valInteger?: number | null;
|
|
@@ -2415,7 +2713,6 @@ declare class AFUmisteniVeSkladu extends AFEntity {
|
|
|
2415
2713
|
static EntityPath: string;
|
|
2416
2714
|
static EntityName: string;
|
|
2417
2715
|
static EntityType: string;
|
|
2418
|
-
id?: number | null;
|
|
2419
2716
|
lastUpdate?: Date | null;
|
|
2420
2717
|
kod?: string | null;
|
|
2421
2718
|
nazev?: string | null;
|
|
@@ -2438,7 +2735,6 @@ declare class AFCenovaUroven extends AFEntity {
|
|
|
2438
2735
|
static EntityPath: string;
|
|
2439
2736
|
static EntityName: string;
|
|
2440
2737
|
static EntityType: string;
|
|
2441
|
-
id?: number | null;
|
|
2442
2738
|
lastUpdate?: Date | null;
|
|
2443
2739
|
kod?: string | null;
|
|
2444
2740
|
nazev?: string | null;
|
|
@@ -2486,7 +2782,6 @@ declare class AFVyrobniCislo extends AFEntity {
|
|
|
2486
2782
|
static EntityPath: string;
|
|
2487
2783
|
static EntityName: string;
|
|
2488
2784
|
static EntityType: string;
|
|
2489
|
-
id?: number | null;
|
|
2490
2785
|
kod?: string | null;
|
|
2491
2786
|
cenik?: AFCenik | null;
|
|
2492
2787
|
sklad?: AFSklad | null;
|
|
@@ -2507,11 +2802,14 @@ declare class AFVyrobniCislo extends AFEntity {
|
|
|
2507
2802
|
}
|
|
2508
2803
|
//#endregion
|
|
2509
2804
|
//#region src/generated/entities/AFSkladovyPohybPolozka.d.ts
|
|
2805
|
+
declare enum AFSkladovyPohybPolozkaAction {
|
|
2806
|
+
Storno = "storno",
|
|
2807
|
+
}
|
|
2510
2808
|
declare class AFSkladovyPohybPolozka extends AFEntity {
|
|
2511
2809
|
static EntityPath: string;
|
|
2512
2810
|
static EntityName: string;
|
|
2513
2811
|
static EntityType: string;
|
|
2514
|
-
|
|
2812
|
+
static Actions: typeof AFSkladovyPohybPolozkaAction;
|
|
2515
2813
|
lastUpdate?: Date | null;
|
|
2516
2814
|
updatedBy?: AFUzivatel | null;
|
|
2517
2815
|
createdBy?: AFUzivatel | null;
|
|
@@ -2604,7 +2902,6 @@ declare class AFSkladovaKarta extends AFEntity {
|
|
|
2604
2902
|
static EntityPath: string;
|
|
2605
2903
|
static EntityName: string;
|
|
2606
2904
|
static EntityType: string;
|
|
2607
|
-
id?: number | null;
|
|
2608
2905
|
lastUpdate?: Date | null;
|
|
2609
2906
|
prumCenaTuz?: Big | null;
|
|
2610
2907
|
prumCenaMen?: Big | null;
|
|
@@ -2659,10 +2956,11 @@ declare class AFSadyAKomplety extends AFEntity {
|
|
|
2659
2956
|
static EntityPath: string;
|
|
2660
2957
|
static EntityName: string;
|
|
2661
2958
|
static EntityType: string;
|
|
2662
|
-
id?: number | null;
|
|
2663
2959
|
lastUpdate?: Date | null;
|
|
2664
2960
|
mnozMj?: Big | null;
|
|
2665
2961
|
poznam?: string | null;
|
|
2962
|
+
baleniId?: number | null;
|
|
2963
|
+
mnozBaleni?: Big | null;
|
|
2666
2964
|
cenikSada?: AFCenik | null;
|
|
2667
2965
|
cenik?: AFCenik | null;
|
|
2668
2966
|
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
@@ -2675,7 +2973,6 @@ declare class AFPrislustenstvi extends AFEntity {
|
|
|
2675
2973
|
static EntityPath: string;
|
|
2676
2974
|
static EntityName: string;
|
|
2677
2975
|
static EntityType: string;
|
|
2678
|
-
id?: number | null;
|
|
2679
2976
|
lastUpdate?: Date | null;
|
|
2680
2977
|
poznam?: string | null;
|
|
2681
2978
|
cenikOtec?: AFCenik | null;
|
|
@@ -2690,7 +2987,6 @@ declare class AFPoplatek extends AFEntity {
|
|
|
2690
2987
|
static EntityPath: string;
|
|
2691
2988
|
static EntityName: string;
|
|
2692
2989
|
static EntityType: string;
|
|
2693
|
-
id?: number | null;
|
|
2694
2990
|
lastUpdate?: Date | null;
|
|
2695
2991
|
mnozMj?: Big | null;
|
|
2696
2992
|
poznam?: string | null;
|
|
@@ -2708,7 +3004,6 @@ declare class AFDodavatel extends AFEntity {
|
|
|
2708
3004
|
static EntityPath: string;
|
|
2709
3005
|
static EntityName: string;
|
|
2710
3006
|
static EntityType: string;
|
|
2711
|
-
id?: number | null;
|
|
2712
3007
|
lastUpdate?: Date | null;
|
|
2713
3008
|
kodIndi?: string | null;
|
|
2714
3009
|
nakupCena?: Big | null;
|
|
@@ -2739,7 +3034,6 @@ declare class AFStavCeniku extends AFEntity {
|
|
|
2739
3034
|
static EntityPath: string;
|
|
2740
3035
|
static EntityName: string;
|
|
2741
3036
|
static EntityType: string;
|
|
2742
|
-
id?: number | null;
|
|
2743
3037
|
lastUpdate?: Date | null;
|
|
2744
3038
|
kod?: string | null;
|
|
2745
3039
|
nazev?: string | null;
|
|
@@ -2764,7 +3058,6 @@ declare class AFPodobneZbozi extends AFEntity {
|
|
|
2764
3058
|
static EntityPath: string;
|
|
2765
3059
|
static EntityName: string;
|
|
2766
3060
|
static EntityType: string;
|
|
2767
|
-
id?: number | null;
|
|
2768
3061
|
lastUpdate?: Date | null;
|
|
2769
3062
|
poznam?: string | null;
|
|
2770
3063
|
cenikOtec?: AFCenik | null;
|
|
@@ -2779,7 +3072,6 @@ declare class AFStatDph extends AFEntity {
|
|
|
2779
3072
|
static EntityPath: string;
|
|
2780
3073
|
static EntityName: string;
|
|
2781
3074
|
static EntityType: string;
|
|
2782
|
-
id?: number | null;
|
|
2783
3075
|
lastUpdate?: Date | null;
|
|
2784
3076
|
kod?: string | null;
|
|
2785
3077
|
nazev?: string | null;
|
|
@@ -2809,7 +3101,6 @@ declare class AFCenikTypSazbyDph extends AFEntity {
|
|
|
2809
3101
|
static EntityPath: string;
|
|
2810
3102
|
static EntityName: string;
|
|
2811
3103
|
static EntityType: string;
|
|
2812
|
-
id?: number | null;
|
|
2813
3104
|
lastUpdate?: Date | null;
|
|
2814
3105
|
typSzbDphK?: TypSzbDph | null;
|
|
2815
3106
|
kodPlneniK?: KodPlneni | null;
|
|
@@ -2827,7 +3118,6 @@ declare class AFRezervace extends AFEntity {
|
|
|
2827
3118
|
static EntityPath: string;
|
|
2828
3119
|
static EntityName: string;
|
|
2829
3120
|
static EntityType: string;
|
|
2830
|
-
id?: number | null;
|
|
2831
3121
|
lastUpdate?: Date | null;
|
|
2832
3122
|
datumOd?: Date | null;
|
|
2833
3123
|
datumDo?: Date | null;
|
|
@@ -2849,7 +3139,6 @@ declare class AFCenik extends AFEntity {
|
|
|
2849
3139
|
static EntityPath: string;
|
|
2850
3140
|
static EntityName: string;
|
|
2851
3141
|
static EntityType: string;
|
|
2852
|
-
id?: number | null;
|
|
2853
3142
|
lastUpdate?: Date | null;
|
|
2854
3143
|
kod?: string | null;
|
|
2855
3144
|
nazev?: string | null;
|
|
@@ -2939,6 +3228,7 @@ declare class AFCenik extends AFEntity {
|
|
|
2939
3228
|
techParam?: string | null;
|
|
2940
3229
|
dodaciLhuta?: Big | null;
|
|
2941
3230
|
prodejKasa?: boolean | null;
|
|
3231
|
+
kodGenerated?: boolean | null;
|
|
2942
3232
|
createdDate?: Date | null;
|
|
2943
3233
|
skupZboz?: AFSkupinaZbozi | null;
|
|
2944
3234
|
mj1?: AFMernaJednotka | null;
|
|
@@ -2993,7 +3283,6 @@ declare class AFFormaDopravy extends AFEntity {
|
|
|
2993
3283
|
static EntityPath: string;
|
|
2994
3284
|
static EntityName: string;
|
|
2995
3285
|
static EntityType: string;
|
|
2996
|
-
id?: number | null;
|
|
2997
3286
|
lastUpdate?: Date | null;
|
|
2998
3287
|
kod?: string | null;
|
|
2999
3288
|
nazev?: string | null;
|
|
@@ -3033,7 +3322,6 @@ declare class AFSablonaMail extends AFEntity {
|
|
|
3033
3322
|
static EntityPath: string;
|
|
3034
3323
|
static EntityName: string;
|
|
3035
3324
|
static EntityType: string;
|
|
3036
|
-
id?: number | null;
|
|
3037
3325
|
lastUpdate?: Date | null;
|
|
3038
3326
|
kod?: string | null;
|
|
3039
3327
|
nazev?: string | null;
|
|
@@ -3056,7 +3344,6 @@ declare class AFTypDokladu extends AFEntity {
|
|
|
3056
3344
|
static EntityPath: string;
|
|
3057
3345
|
static EntityName: string;
|
|
3058
3346
|
static EntityType: string;
|
|
3059
|
-
id?: number | null;
|
|
3060
3347
|
lastUpdate?: Date | null;
|
|
3061
3348
|
kod?: string | null;
|
|
3062
3349
|
nazev?: string | null;
|
|
@@ -3091,7 +3378,6 @@ declare class AFAutotisk extends AFEntity {
|
|
|
3091
3378
|
static EntityPath: string;
|
|
3092
3379
|
static EntityName: string;
|
|
3093
3380
|
static EntityType: string;
|
|
3094
|
-
id?: number | null;
|
|
3095
3381
|
lastUpdate?: Date | null;
|
|
3096
3382
|
pocet?: number | null;
|
|
3097
3383
|
typTiskDoklK?: any | null;
|
|
@@ -3109,7 +3395,6 @@ declare class AFTypSkladovyPohyb extends AFEntity {
|
|
|
3109
3395
|
static EntityPath: string;
|
|
3110
3396
|
static EntityName: string;
|
|
3111
3397
|
static EntityType: string;
|
|
3112
|
-
id?: number | null;
|
|
3113
3398
|
lastUpdate?: Date | null;
|
|
3114
3399
|
kod?: string | null;
|
|
3115
3400
|
nazev?: string | null;
|
|
@@ -3164,7 +3449,6 @@ declare class AFInventuraPolozka extends AFEntity {
|
|
|
3164
3449
|
static EntityPath: string;
|
|
3165
3450
|
static EntityName: string;
|
|
3166
3451
|
static EntityType: string;
|
|
3167
|
-
id?: number | null;
|
|
3168
3452
|
lastUpdate?: Date | null;
|
|
3169
3453
|
mnozMjReal?: Big | null;
|
|
3170
3454
|
mnozMjKarta?: Big | null;
|
|
@@ -3198,7 +3482,6 @@ declare class AFInventura extends AFEntity {
|
|
|
3198
3482
|
static EntityPath: string;
|
|
3199
3483
|
static EntityName: string;
|
|
3200
3484
|
static EntityType: string;
|
|
3201
|
-
id?: number | null;
|
|
3202
3485
|
lastUpdate?: Date | null;
|
|
3203
3486
|
popisInventury?: string | null;
|
|
3204
3487
|
typInventury?: string | null;
|
|
@@ -3256,7 +3539,6 @@ declare class AFVazba extends AFEntity {
|
|
|
3256
3539
|
static EntityPath: string;
|
|
3257
3540
|
static EntityName: string;
|
|
3258
3541
|
static EntityType: string;
|
|
3259
|
-
id?: number | null;
|
|
3260
3542
|
typVazbyK?: TypVazbyDokl | null;
|
|
3261
3543
|
castka?: Big | null;
|
|
3262
3544
|
storno?: boolean | null;
|
|
@@ -3264,11 +3546,15 @@ declare class AFVazba extends AFEntity {
|
|
|
3264
3546
|
}
|
|
3265
3547
|
//#endregion
|
|
3266
3548
|
//#region src/generated/entities/AFSkladovyPohyb.d.ts
|
|
3549
|
+
declare enum AFSkladovyPohybAction {
|
|
3550
|
+
Storno = "storno",
|
|
3551
|
+
DokoncitPrevodku = "dokoncit-prevodku",
|
|
3552
|
+
}
|
|
3267
3553
|
declare class AFSkladovyPohyb extends AFEntity {
|
|
3268
3554
|
static EntityPath: string;
|
|
3269
3555
|
static EntityName: string;
|
|
3270
3556
|
static EntityType: string;
|
|
3271
|
-
|
|
3557
|
+
static Actions: typeof AFSkladovyPohybAction;
|
|
3272
3558
|
lastUpdate?: Date | null;
|
|
3273
3559
|
updatedBy?: AFUzivatel | null;
|
|
3274
3560
|
createdBy?: AFUzivatel | null;
|
|
@@ -3372,7 +3658,6 @@ declare class AFFormaUhradyZauctovani extends AFEntity {
|
|
|
3372
3658
|
static EntityPath: string;
|
|
3373
3659
|
static EntityName: string;
|
|
3374
3660
|
static EntityType: string;
|
|
3375
|
-
id?: number | null;
|
|
3376
3661
|
lastUpdate?: Date | null;
|
|
3377
3662
|
formaUhradyCis?: AFFormaUhrady | null;
|
|
3378
3663
|
typDokl?: AFTypDokladu | null;
|
|
@@ -3387,7 +3672,6 @@ declare class AFFormaUhrady extends AFEntity {
|
|
|
3387
3672
|
static EntityPath: string;
|
|
3388
3673
|
static EntityName: string;
|
|
3389
3674
|
static EntityType: string;
|
|
3390
|
-
id?: number | null;
|
|
3391
3675
|
lastUpdate?: Date | null;
|
|
3392
3676
|
kod?: string | null;
|
|
3393
3677
|
nazev?: string | null;
|
|
@@ -3420,7 +3704,6 @@ declare class AFRadaFakturyVydane extends AFEntity {
|
|
|
3420
3704
|
static EntityPath: string;
|
|
3421
3705
|
static EntityName: string;
|
|
3422
3706
|
static EntityType: string;
|
|
3423
|
-
id?: number | null;
|
|
3424
3707
|
lastUpdate?: Date | null;
|
|
3425
3708
|
kod?: string | null;
|
|
3426
3709
|
nazev?: string | null;
|
|
@@ -3443,7 +3726,6 @@ declare class AFRadaBanka extends AFEntity {
|
|
|
3443
3726
|
static EntityPath: string;
|
|
3444
3727
|
static EntityName: string;
|
|
3445
3728
|
static EntityType: string;
|
|
3446
|
-
id?: number | null;
|
|
3447
3729
|
lastUpdate?: Date | null;
|
|
3448
3730
|
kod?: string | null;
|
|
3449
3731
|
nazev?: string | null;
|
|
@@ -3466,7 +3748,6 @@ declare class AFPenezniUstav extends AFEntity {
|
|
|
3466
3748
|
static EntityPath: string;
|
|
3467
3749
|
static EntityName: string;
|
|
3468
3750
|
static EntityType: string;
|
|
3469
|
-
id?: number | null;
|
|
3470
3751
|
lastUpdate?: Date | null;
|
|
3471
3752
|
kod?: string | null;
|
|
3472
3753
|
nazev?: string | null;
|
|
@@ -3487,7 +3768,6 @@ declare class AFFormatElektronickehoBankovnictvi extends AFEntity {
|
|
|
3487
3768
|
static EntityPath: string;
|
|
3488
3769
|
static EntityName: string;
|
|
3489
3770
|
static EntityType: string;
|
|
3490
|
-
id?: number | null;
|
|
3491
3771
|
lastUpdate?: Date | null;
|
|
3492
3772
|
kod?: string | null;
|
|
3493
3773
|
nazev?: string | null;
|
|
@@ -3509,7 +3789,6 @@ declare class AFFormatElektronickehoPrikazu extends AFEntity {
|
|
|
3509
3789
|
static EntityPath: string;
|
|
3510
3790
|
static EntityName: string;
|
|
3511
3791
|
static EntityType: string;
|
|
3512
|
-
id?: number | null;
|
|
3513
3792
|
lastUpdate?: Date | null;
|
|
3514
3793
|
kod?: string | null;
|
|
3515
3794
|
nazev?: string | null;
|
|
@@ -3536,7 +3815,6 @@ declare class AFBankovniUcet extends AFEntity {
|
|
|
3536
3815
|
static EntityPath: string;
|
|
3537
3816
|
static EntityName: string;
|
|
3538
3817
|
static EntityType: string;
|
|
3539
|
-
id?: number | null;
|
|
3540
3818
|
lastUpdate?: Date | null;
|
|
3541
3819
|
kod?: string | null;
|
|
3542
3820
|
nazev?: string | null;
|
|
@@ -3601,7 +3879,6 @@ declare class AFKonstSymbol extends AFEntity {
|
|
|
3601
3879
|
static EntityPath: string;
|
|
3602
3880
|
static EntityName: string;
|
|
3603
3881
|
static EntityType: string;
|
|
3604
|
-
id?: number | null;
|
|
3605
3882
|
lastUpdate?: Date | null;
|
|
3606
3883
|
kod?: string | null;
|
|
3607
3884
|
nazev?: string | null;
|
|
@@ -3622,7 +3899,6 @@ declare class AFCleneniKontrolniHlaseni extends AFEntity {
|
|
|
3622
3899
|
static EntityPath: string;
|
|
3623
3900
|
static EntityName: string;
|
|
3624
3901
|
static EntityType: string;
|
|
3625
|
-
id?: number | null;
|
|
3626
3902
|
lastUpdate?: Date | null;
|
|
3627
3903
|
kod?: string | null;
|
|
3628
3904
|
nazev?: string | null;
|
|
@@ -3649,7 +3925,6 @@ declare class AFTypFakturyVydane extends AFEntity {
|
|
|
3649
3925
|
static EntityPath: string;
|
|
3650
3926
|
static EntityName: string;
|
|
3651
3927
|
static EntityType: string;
|
|
3652
|
-
id?: number | null;
|
|
3653
3928
|
lastUpdate?: Date | null;
|
|
3654
3929
|
kod?: string | null;
|
|
3655
3930
|
nazev?: string | null;
|
|
@@ -3727,7 +4002,6 @@ declare class AFRadaFakturyPrijate extends AFEntity {
|
|
|
3727
4002
|
static EntityPath: string;
|
|
3728
4003
|
static EntityName: string;
|
|
3729
4004
|
static EntityType: string;
|
|
3730
|
-
id?: number | null;
|
|
3731
4005
|
lastUpdate?: Date | null;
|
|
3732
4006
|
kod?: string | null;
|
|
3733
4007
|
nazev?: string | null;
|
|
@@ -3750,7 +4024,6 @@ declare class AFTypFakturyPrijate extends AFEntity {
|
|
|
3750
4024
|
static EntityPath: string;
|
|
3751
4025
|
static EntityName: string;
|
|
3752
4026
|
static EntityType: string;
|
|
3753
|
-
id?: number | null;
|
|
3754
4027
|
lastUpdate?: Date | null;
|
|
3755
4028
|
kod?: string | null;
|
|
3756
4029
|
nazev?: string | null;
|
|
@@ -3812,7 +4085,6 @@ declare class AFRadaNabidkyVydane extends AFEntity {
|
|
|
3812
4085
|
static EntityPath: string;
|
|
3813
4086
|
static EntityName: string;
|
|
3814
4087
|
static EntityType: string;
|
|
3815
|
-
id?: number | null;
|
|
3816
4088
|
lastUpdate?: Date | null;
|
|
3817
4089
|
kod?: string | null;
|
|
3818
4090
|
nazev?: string | null;
|
|
@@ -3835,7 +4107,6 @@ declare class AFTypNabidkyVydane extends AFEntity {
|
|
|
3835
4107
|
static EntityPath: string;
|
|
3836
4108
|
static EntityName: string;
|
|
3837
4109
|
static EntityType: string;
|
|
3838
|
-
id?: number | null;
|
|
3839
4110
|
lastUpdate?: Date | null;
|
|
3840
4111
|
kod?: string | null;
|
|
3841
4112
|
nazev?: string | null;
|
|
@@ -3877,7 +4148,6 @@ declare class AFRadaObjednavkyPrijate extends AFEntity {
|
|
|
3877
4148
|
static EntityPath: string;
|
|
3878
4149
|
static EntityName: string;
|
|
3879
4150
|
static EntityType: string;
|
|
3880
|
-
id?: number | null;
|
|
3881
4151
|
lastUpdate?: Date | null;
|
|
3882
4152
|
kod?: string | null;
|
|
3883
4153
|
nazev?: string | null;
|
|
@@ -3900,7 +4170,6 @@ declare class AFTypObjednavkyPrijate extends AFEntity {
|
|
|
3900
4170
|
static EntityPath: string;
|
|
3901
4171
|
static EntityName: string;
|
|
3902
4172
|
static EntityType: string;
|
|
3903
|
-
id?: number | null;
|
|
3904
4173
|
lastUpdate?: Date | null;
|
|
3905
4174
|
kod?: string | null;
|
|
3906
4175
|
nazev?: string | null;
|
|
@@ -3956,7 +4225,6 @@ declare class AFRadaPoptavkyVydane extends AFEntity {
|
|
|
3956
4225
|
static EntityPath: string;
|
|
3957
4226
|
static EntityName: string;
|
|
3958
4227
|
static EntityType: string;
|
|
3959
|
-
id?: number | null;
|
|
3960
4228
|
lastUpdate?: Date | null;
|
|
3961
4229
|
kod?: string | null;
|
|
3962
4230
|
nazev?: string | null;
|
|
@@ -3979,7 +4247,6 @@ declare class AFTypPoptavkyVydane extends AFEntity {
|
|
|
3979
4247
|
static EntityPath: string;
|
|
3980
4248
|
static EntityName: string;
|
|
3981
4249
|
static EntityType: string;
|
|
3982
|
-
id?: number | null;
|
|
3983
4250
|
lastUpdate?: Date | null;
|
|
3984
4251
|
kod?: string | null;
|
|
3985
4252
|
nazev?: string | null;
|
|
@@ -4019,7 +4286,6 @@ declare class AFRadaNabidkyPrijate extends AFEntity {
|
|
|
4019
4286
|
static EntityPath: string;
|
|
4020
4287
|
static EntityName: string;
|
|
4021
4288
|
static EntityType: string;
|
|
4022
|
-
id?: number | null;
|
|
4023
4289
|
lastUpdate?: Date | null;
|
|
4024
4290
|
kod?: string | null;
|
|
4025
4291
|
nazev?: string | null;
|
|
@@ -4042,7 +4308,6 @@ declare class AFTypNabidkyPrijate extends AFEntity {
|
|
|
4042
4308
|
static EntityPath: string;
|
|
4043
4309
|
static EntityName: string;
|
|
4044
4310
|
static EntityType: string;
|
|
4045
|
-
id?: number | null;
|
|
4046
4311
|
lastUpdate?: Date | null;
|
|
4047
4312
|
kod?: string | null;
|
|
4048
4313
|
nazev?: string | null;
|
|
@@ -4081,7 +4346,6 @@ declare class AFRadaObjednavkyVydane extends AFEntity {
|
|
|
4081
4346
|
static EntityPath: string;
|
|
4082
4347
|
static EntityName: string;
|
|
4083
4348
|
static EntityType: string;
|
|
4084
|
-
id?: number | null;
|
|
4085
4349
|
lastUpdate?: Date | null;
|
|
4086
4350
|
kod?: string | null;
|
|
4087
4351
|
nazev?: string | null;
|
|
@@ -4104,7 +4368,6 @@ declare class AFTypObjednavkyVydane extends AFEntity {
|
|
|
4104
4368
|
static EntityPath: string;
|
|
4105
4369
|
static EntityName: string;
|
|
4106
4370
|
static EntityType: string;
|
|
4107
|
-
id?: number | null;
|
|
4108
4371
|
lastUpdate?: Date | null;
|
|
4109
4372
|
kod?: string | null;
|
|
4110
4373
|
nazev?: string | null;
|
|
@@ -4147,7 +4410,6 @@ declare class AFRadaInternihoDokladu extends AFEntity {
|
|
|
4147
4410
|
static EntityPath: string;
|
|
4148
4411
|
static EntityName: string;
|
|
4149
4412
|
static EntityType: string;
|
|
4150
|
-
id?: number | null;
|
|
4151
4413
|
lastUpdate?: Date | null;
|
|
4152
4414
|
kod?: string | null;
|
|
4153
4415
|
nazev?: string | null;
|
|
@@ -4170,7 +4432,6 @@ declare class AFTypInternihoDokladu extends AFEntity {
|
|
|
4170
4432
|
static EntityPath: string;
|
|
4171
4433
|
static EntityName: string;
|
|
4172
4434
|
static EntityType: string;
|
|
4173
|
-
id?: number | null;
|
|
4174
4435
|
lastUpdate?: Date | null;
|
|
4175
4436
|
kod?: string | null;
|
|
4176
4437
|
nazev?: string | null;
|
|
@@ -4211,7 +4472,6 @@ declare class AFRadaPohledavky extends AFEntity {
|
|
|
4211
4472
|
static EntityPath: string;
|
|
4212
4473
|
static EntityName: string;
|
|
4213
4474
|
static EntityType: string;
|
|
4214
|
-
id?: number | null;
|
|
4215
4475
|
lastUpdate?: Date | null;
|
|
4216
4476
|
kod?: string | null;
|
|
4217
4477
|
nazev?: string | null;
|
|
@@ -4234,7 +4494,6 @@ declare class AFTypPohledavky extends AFEntity {
|
|
|
4234
4494
|
static EntityPath: string;
|
|
4235
4495
|
static EntityName: string;
|
|
4236
4496
|
static EntityType: string;
|
|
4237
|
-
id?: number | null;
|
|
4238
4497
|
lastUpdate?: Date | null;
|
|
4239
4498
|
kod?: string | null;
|
|
4240
4499
|
nazev?: string | null;
|
|
@@ -4290,7 +4549,6 @@ declare class AFRadaZavazku extends AFEntity {
|
|
|
4290
4549
|
static EntityPath: string;
|
|
4291
4550
|
static EntityName: string;
|
|
4292
4551
|
static EntityType: string;
|
|
4293
|
-
id?: number | null;
|
|
4294
4552
|
lastUpdate?: Date | null;
|
|
4295
4553
|
kod?: string | null;
|
|
4296
4554
|
nazev?: string | null;
|
|
@@ -4313,7 +4571,6 @@ declare class AFTypZavazku extends AFEntity {
|
|
|
4313
4571
|
static EntityPath: string;
|
|
4314
4572
|
static EntityName: string;
|
|
4315
4573
|
static EntityType: string;
|
|
4316
|
-
id?: number | null;
|
|
4317
4574
|
lastUpdate?: Date | null;
|
|
4318
4575
|
kod?: string | null;
|
|
4319
4576
|
nazev?: string | null;
|
|
@@ -4369,7 +4626,6 @@ declare class AFRadaPokladniPohyb extends AFEntity {
|
|
|
4369
4626
|
static EntityPath: string;
|
|
4370
4627
|
static EntityName: string;
|
|
4371
4628
|
static EntityType: string;
|
|
4372
|
-
id?: number | null;
|
|
4373
4629
|
lastUpdate?: Date | null;
|
|
4374
4630
|
kod?: string | null;
|
|
4375
4631
|
nazev?: string | null;
|
|
@@ -4392,7 +4648,6 @@ declare class AFPokladna extends AFEntity {
|
|
|
4392
4648
|
static EntityPath: string;
|
|
4393
4649
|
static EntityName: string;
|
|
4394
4650
|
static EntityType: string;
|
|
4395
|
-
id?: number | null;
|
|
4396
4651
|
lastUpdate?: Date | null;
|
|
4397
4652
|
kod?: string | null;
|
|
4398
4653
|
nazev?: string | null;
|
|
@@ -4423,7 +4678,6 @@ declare class AFTypPokladniPohyb extends AFEntity {
|
|
|
4423
4678
|
static EntityPath: string;
|
|
4424
4679
|
static EntityName: string;
|
|
4425
4680
|
static EntityType: string;
|
|
4426
|
-
id?: number | null;
|
|
4427
4681
|
lastUpdate?: Date | null;
|
|
4428
4682
|
kod?: string | null;
|
|
4429
4683
|
nazev?: string | null;
|
|
@@ -4488,7 +4742,6 @@ declare class AFTypBanka extends AFEntity {
|
|
|
4488
4742
|
static EntityPath: string;
|
|
4489
4743
|
static EntityName: string;
|
|
4490
4744
|
static EntityType: string;
|
|
4491
|
-
id?: number | null;
|
|
4492
4745
|
lastUpdate?: Date | null;
|
|
4493
4746
|
kod?: string | null;
|
|
4494
4747
|
nazev?: string | null;
|
|
@@ -4528,12 +4781,34 @@ declare class AFTypBanka extends AFEntity {
|
|
|
4528
4781
|
static propAnnotations: Record<string, TypeAnnotation>;
|
|
4529
4782
|
}
|
|
4530
4783
|
//#endregion
|
|
4784
|
+
//#region src/generated/entities/AFDefiniceSekvence.d.ts
|
|
4785
|
+
declare class AFDefiniceSekvence extends AFEntity {
|
|
4786
|
+
static EntityPath: string;
|
|
4787
|
+
static EntityName: string;
|
|
4788
|
+
static EntityType: string;
|
|
4789
|
+
lastUpdate?: Date | null;
|
|
4790
|
+
kod?: string | null;
|
|
4791
|
+
nazev?: string | null;
|
|
4792
|
+
nazevA?: string | null;
|
|
4793
|
+
nazevB?: string | null;
|
|
4794
|
+
nazevC?: string | null;
|
|
4795
|
+
poznam?: string | null;
|
|
4796
|
+
popis?: string | null;
|
|
4797
|
+
nextValue?: string | null;
|
|
4798
|
+
uuid?: string | null;
|
|
4799
|
+
createdDate?: Date | null;
|
|
4800
|
+
updatedBy?: AFUzivatel | null;
|
|
4801
|
+
createdBy?: AFUzivatel | null;
|
|
4802
|
+
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
4803
|
+
get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
|
|
4804
|
+
static propAnnotations: Record<string, TypeAnnotation>;
|
|
4805
|
+
}
|
|
4806
|
+
//#endregion
|
|
4531
4807
|
//#region src/generated/entities/AFAdresarBankovniUcet.d.ts
|
|
4532
4808
|
declare class AFAdresarBankovniUcet extends AFEntity {
|
|
4533
4809
|
static EntityPath: string;
|
|
4534
4810
|
static EntityName: string;
|
|
4535
4811
|
static EntityType: string;
|
|
4536
|
-
id?: number | null;
|
|
4537
4812
|
lastUpdate?: Date | null;
|
|
4538
4813
|
ulice?: string | null;
|
|
4539
4814
|
mesto?: string | null;
|
|
@@ -4563,7 +4838,6 @@ declare class AFNastaveni extends AFEntity {
|
|
|
4563
4838
|
static EntityPath: string;
|
|
4564
4839
|
static EntityName: string;
|
|
4565
4840
|
static EntityType: string;
|
|
4566
|
-
id?: number | null;
|
|
4567
4841
|
lastUpdate?: Date | null;
|
|
4568
4842
|
platiOdData?: Date | null;
|
|
4569
4843
|
nazFirmy?: string | null;
|
|
@@ -4671,6 +4945,7 @@ declare class AFNastaveni extends AFEntity {
|
|
|
4671
4945
|
mzdSplatDobirka?: number | null;
|
|
4672
4946
|
mzdSplatPrispevky?: number | null;
|
|
4673
4947
|
mzdTydenPracDobaK?: TydenPracDoba | null;
|
|
4948
|
+
mzdFondSta?: Big | null;
|
|
4674
4949
|
denniKurzK?: DenniKurz | null;
|
|
4675
4950
|
rocniKurzK?: RocniKurz | null;
|
|
4676
4951
|
jakyTypFavK?: JakyTypDokl | null;
|
|
@@ -4705,6 +4980,9 @@ declare class AFNastaveni extends AFEntity {
|
|
|
4705
4980
|
zpracovaniGdpr?: boolean | null;
|
|
4706
4981
|
polozkyCenikObrazky?: boolean | null;
|
|
4707
4982
|
datZacNovelyZdph19?: Date | null;
|
|
4983
|
+
mzdTypKolSmlouvaK?: MzdKolSmlouva | null;
|
|
4984
|
+
mzdFormaKontrolyK?: MzdFormaKontroly | null;
|
|
4985
|
+
mzdChranTrhPrace?: boolean | null;
|
|
4708
4986
|
statLegislativa?: AFStat | null;
|
|
4709
4987
|
typOrganizace?: AFTypOrganizace | null;
|
|
4710
4988
|
mena?: AFMena | null;
|
|
@@ -4746,6 +5024,7 @@ declare class AFNastaveni extends AFEntity {
|
|
|
4746
5024
|
fuUzemPrac?: AFAdresar | null;
|
|
4747
5025
|
tdBanPrijem?: AFTypBanka | null;
|
|
4748
5026
|
tdBanVydej?: AFTypBanka | null;
|
|
5027
|
+
seqDefProduct?: AFDefiniceSekvence | null;
|
|
4749
5028
|
mzdAdrSocPoj?: AFAdresar | null;
|
|
4750
5029
|
mzdAdrDan?: AFAdresar | null;
|
|
4751
5030
|
mzdBanDanZal?: AFAdresarBankovniUcet | null;
|
|
@@ -4787,7 +5066,6 @@ declare class AFReport extends AFEntity {
|
|
|
4787
5066
|
static EntityPath: string;
|
|
4788
5067
|
static EntityName: string;
|
|
4789
5068
|
static EntityType: string;
|
|
4790
|
-
id?: number | null;
|
|
4791
5069
|
lastUpdate?: Date | null;
|
|
4792
5070
|
kod?: string | null;
|
|
4793
5071
|
nazev?: string | null;
|
|
@@ -4815,7 +5093,6 @@ declare class AFTypSmlouvy extends AFEntity {
|
|
|
4815
5093
|
static EntityPath: string;
|
|
4816
5094
|
static EntityName: string;
|
|
4817
5095
|
static EntityType: string;
|
|
4818
|
-
id?: number | null;
|
|
4819
5096
|
lastUpdate?: Date | null;
|
|
4820
5097
|
kod?: string | null;
|
|
4821
5098
|
nazev?: string | null;
|
|
@@ -4855,7 +5132,6 @@ declare class AFStavSmlouvy extends AFEntity {
|
|
|
4855
5132
|
static EntityPath: string;
|
|
4856
5133
|
static EntityName: string;
|
|
4857
5134
|
static EntityType: string;
|
|
4858
|
-
id?: number | null;
|
|
4859
5135
|
lastUpdate?: Date | null;
|
|
4860
5136
|
kod?: string | null;
|
|
4861
5137
|
nazev?: string | null;
|
|
@@ -4877,7 +5153,6 @@ declare class AFSmlouvaPolozka extends AFEntity {
|
|
|
4877
5153
|
static EntityPath: string;
|
|
4878
5154
|
static EntityName: string;
|
|
4879
5155
|
static EntityType: string;
|
|
4880
|
-
id?: number | null;
|
|
4881
5156
|
lastUpdate?: Date | null;
|
|
4882
5157
|
kod?: string | null;
|
|
4883
5158
|
nazev?: string | null;
|
|
@@ -4931,11 +5206,14 @@ declare class AFSmlouvaPolozka extends AFEntity {
|
|
|
4931
5206
|
}
|
|
4932
5207
|
//#endregion
|
|
4933
5208
|
//#region src/generated/entities/AFSmlouva.d.ts
|
|
5209
|
+
declare enum AFSmlouvaAction {
|
|
5210
|
+
GenerovaniFaktur = "generovani-faktur",
|
|
5211
|
+
}
|
|
4934
5212
|
declare class AFSmlouva extends AFEntity {
|
|
4935
5213
|
static EntityPath: string;
|
|
4936
5214
|
static EntityName: string;
|
|
4937
5215
|
static EntityType: string;
|
|
4938
|
-
|
|
5216
|
+
static Actions: typeof AFSmlouvaAction;
|
|
4939
5217
|
lastUpdate?: Date | null;
|
|
4940
5218
|
kod?: string | null;
|
|
4941
5219
|
nazev?: string | null;
|
|
@@ -5004,7 +5282,6 @@ declare class AFStromKoren extends AFEntity {
|
|
|
5004
5282
|
static EntityPath: string;
|
|
5005
5283
|
static EntityName: string;
|
|
5006
5284
|
static EntityType: string;
|
|
5007
|
-
id?: number | null;
|
|
5008
5285
|
lastUpdate?: Date | null;
|
|
5009
5286
|
kod?: string | null;
|
|
5010
5287
|
nazev?: string | null;
|
|
@@ -5027,7 +5304,6 @@ declare class AFStrom extends AFEntity {
|
|
|
5027
5304
|
static EntityPath: string;
|
|
5028
5305
|
static EntityName: string;
|
|
5029
5306
|
static EntityType: string;
|
|
5030
|
-
id?: number | null;
|
|
5031
5307
|
lastUpdate?: Date | null;
|
|
5032
5308
|
kod?: string | null;
|
|
5033
5309
|
nazev?: string | null;
|
|
@@ -5055,7 +5331,6 @@ declare class AFPriloha extends AFEntity {
|
|
|
5055
5331
|
static EntityPath: string;
|
|
5056
5332
|
static EntityName: string;
|
|
5057
5333
|
static EntityType: string;
|
|
5058
|
-
id?: number | null;
|
|
5059
5334
|
lastUpdate?: Date | null;
|
|
5060
5335
|
nazSoub?: string | null;
|
|
5061
5336
|
poznam?: string | null;
|
|
@@ -5097,7 +5372,6 @@ declare class AFZakazka extends AFEntity {
|
|
|
5097
5372
|
static EntityPath: string;
|
|
5098
5373
|
static EntityName: string;
|
|
5099
5374
|
static EntityType: string;
|
|
5100
|
-
id?: number | null;
|
|
5101
5375
|
lastUpdate?: Date | null;
|
|
5102
5376
|
kod?: string | null;
|
|
5103
5377
|
nazev?: string | null;
|
|
@@ -5150,7 +5424,6 @@ declare class AFOdpisovaSkupina extends AFEntity {
|
|
|
5150
5424
|
static EntityPath: string;
|
|
5151
5425
|
static EntityName: string;
|
|
5152
5426
|
static EntityType: string;
|
|
5153
|
-
id?: number | null;
|
|
5154
5427
|
lastUpdate?: Date | null;
|
|
5155
5428
|
kod?: string | null;
|
|
5156
5429
|
nazev?: string | null;
|
|
@@ -5182,7 +5455,6 @@ declare class AFUmisteni extends AFEntity {
|
|
|
5182
5455
|
static EntityPath: string;
|
|
5183
5456
|
static EntityName: string;
|
|
5184
5457
|
static EntityType: string;
|
|
5185
|
-
id?: number | null;
|
|
5186
5458
|
lastUpdate?: Date | null;
|
|
5187
5459
|
kod?: string | null;
|
|
5188
5460
|
nazev?: string | null;
|
|
@@ -5203,7 +5475,6 @@ declare class AFTypMajetku extends AFEntity {
|
|
|
5203
5475
|
static EntityPath: string;
|
|
5204
5476
|
static EntityName: string;
|
|
5205
5477
|
static EntityType: string;
|
|
5206
|
-
id?: number | null;
|
|
5207
5478
|
lastUpdate?: Date | null;
|
|
5208
5479
|
kod?: string | null;
|
|
5209
5480
|
nazev?: string | null;
|
|
@@ -5235,7 +5506,6 @@ declare class AFCleneniDph extends AFEntity {
|
|
|
5235
5506
|
static EntityPath: string;
|
|
5236
5507
|
static EntityName: string;
|
|
5237
5508
|
static EntityType: string;
|
|
5238
|
-
id?: number | null;
|
|
5239
5509
|
lastUpdate?: Date | null;
|
|
5240
5510
|
kod?: string | null;
|
|
5241
5511
|
nazev?: string | null;
|
|
@@ -5264,7 +5534,6 @@ declare class AFSazbaDph extends AFEntity {
|
|
|
5264
5534
|
static EntityPath: string;
|
|
5265
5535
|
static EntityName: string;
|
|
5266
5536
|
static EntityType: string;
|
|
5267
|
-
id?: number | null;
|
|
5268
5537
|
lastUpdate?: Date | null;
|
|
5269
5538
|
typSzbDphK?: TypSzbDph | null;
|
|
5270
5539
|
szbDph?: Big | null;
|
|
@@ -5283,7 +5552,6 @@ declare class AFDodavatelskyTypSmlouvy extends AFEntity {
|
|
|
5283
5552
|
static EntityPath: string;
|
|
5284
5553
|
static EntityName: string;
|
|
5285
5554
|
static EntityType: string;
|
|
5286
|
-
id?: number | null;
|
|
5287
5555
|
lastUpdate?: Date | null;
|
|
5288
5556
|
kod?: string | null;
|
|
5289
5557
|
nazev?: string | null;
|
|
@@ -5313,11 +5581,14 @@ declare class AFDodavatelskyTypSmlouvy extends AFEntity {
|
|
|
5313
5581
|
}
|
|
5314
5582
|
//#endregion
|
|
5315
5583
|
//#region src/generated/entities/AFDodavatelskaSmlouva.d.ts
|
|
5584
|
+
declare enum AFDodavatelskaSmlouvaAction {
|
|
5585
|
+
GenerovaniFaktur = "generovani-faktur",
|
|
5586
|
+
}
|
|
5316
5587
|
declare class AFDodavatelskaSmlouva extends AFEntity {
|
|
5317
5588
|
static EntityPath: string;
|
|
5318
5589
|
static EntityName: string;
|
|
5319
5590
|
static EntityType: string;
|
|
5320
|
-
|
|
5591
|
+
static Actions: typeof AFDodavatelskaSmlouvaAction;
|
|
5321
5592
|
lastUpdate?: Date | null;
|
|
5322
5593
|
kod?: string | null;
|
|
5323
5594
|
nazev?: string | null;
|
|
@@ -5383,7 +5654,6 @@ declare class AFSkupinaPlneni extends AFEntity {
|
|
|
5383
5654
|
static EntityPath: string;
|
|
5384
5655
|
static EntityName: string;
|
|
5385
5656
|
static EntityType: string;
|
|
5386
|
-
id?: number | null;
|
|
5387
5657
|
lastUpdate?: Date | null;
|
|
5388
5658
|
kod?: string | null;
|
|
5389
5659
|
nazev?: string | null;
|
|
@@ -5400,11 +5670,14 @@ declare class AFSkupinaPlneni extends AFEntity {
|
|
|
5400
5670
|
}
|
|
5401
5671
|
//#endregion
|
|
5402
5672
|
//#region src/generated/entities/AFFakturaPrijataPolozka.d.ts
|
|
5673
|
+
declare enum AFFakturaPrijataPolozkaAction {
|
|
5674
|
+
Storno = "storno",
|
|
5675
|
+
}
|
|
5403
5676
|
declare class AFFakturaPrijataPolozka extends AFEntity {
|
|
5404
5677
|
static EntityPath: string;
|
|
5405
5678
|
static EntityName: string;
|
|
5406
5679
|
static EntityType: string;
|
|
5407
|
-
|
|
5680
|
+
static Actions: typeof AFFakturaPrijataPolozkaAction;
|
|
5408
5681
|
lastUpdate?: Date | null;
|
|
5409
5682
|
updatedBy?: AFUzivatel | null;
|
|
5410
5683
|
createdBy?: AFUzivatel | null;
|
|
@@ -5574,11 +5847,15 @@ declare class AFCastkyKOdpoctu extends AFEntity {
|
|
|
5574
5847
|
}
|
|
5575
5848
|
//#endregion
|
|
5576
5849
|
//#region src/generated/entities/AFFakturaPrijata.d.ts
|
|
5850
|
+
declare enum AFFakturaPrijataAction {
|
|
5851
|
+
Storno = "storno",
|
|
5852
|
+
UhradZapoctem = "uhrad-zapoctem",
|
|
5853
|
+
}
|
|
5577
5854
|
declare class AFFakturaPrijata extends AFEntity {
|
|
5578
5855
|
static EntityPath: string;
|
|
5579
5856
|
static EntityName: string;
|
|
5580
5857
|
static EntityType: string;
|
|
5581
|
-
|
|
5858
|
+
static Actions: typeof AFFakturaPrijataAction;
|
|
5582
5859
|
lastUpdate?: Date | null;
|
|
5583
5860
|
updatedBy?: AFUzivatel | null;
|
|
5584
5861
|
createdBy?: AFUzivatel | null;
|
|
@@ -5751,7 +6028,6 @@ declare class AFDanovyOdpis extends AFEntity {
|
|
|
5751
6028
|
static EntityPath: string;
|
|
5752
6029
|
static EntityName: string;
|
|
5753
6030
|
static EntityType: string;
|
|
5754
|
-
id?: number | null;
|
|
5755
6031
|
ucetni?: boolean | null;
|
|
5756
6032
|
zmena?: boolean | null;
|
|
5757
6033
|
datVyst?: Date | null;
|
|
@@ -5778,7 +6054,6 @@ declare class AFUcetniOdpis extends AFEntity {
|
|
|
5778
6054
|
static EntityPath: string;
|
|
5779
6055
|
static EntityName: string;
|
|
5780
6056
|
static EntityType: string;
|
|
5781
|
-
id?: number | null;
|
|
5782
6057
|
ucetni?: boolean | null;
|
|
5783
6058
|
zmena?: boolean | null;
|
|
5784
6059
|
datVyst?: Date | null;
|
|
@@ -5804,7 +6079,6 @@ declare class AFMajetekUdalost extends AFEntity {
|
|
|
5804
6079
|
static EntityPath: string;
|
|
5805
6080
|
static EntityName: string;
|
|
5806
6081
|
static EntityType: string;
|
|
5807
|
-
id?: number | null;
|
|
5808
6082
|
lastUpdate?: Date | null;
|
|
5809
6083
|
ucetni?: boolean | null;
|
|
5810
6084
|
typUdalostiK?: TypUdal | null;
|
|
@@ -5839,7 +6113,6 @@ declare class AFTypLeasingu extends AFEntity {
|
|
|
5839
6113
|
static EntityPath: string;
|
|
5840
6114
|
static EntityName: string;
|
|
5841
6115
|
static EntityType: string;
|
|
5842
|
-
id?: number | null;
|
|
5843
6116
|
lastUpdate?: Date | null;
|
|
5844
6117
|
kod?: string | null;
|
|
5845
6118
|
nazev?: string | null;
|
|
@@ -5870,7 +6143,6 @@ declare class AFSplatkovyKalendar extends AFEntity {
|
|
|
5870
6143
|
static EntityPath: string;
|
|
5871
6144
|
static EntityName: string;
|
|
5872
6145
|
static EntityType: string;
|
|
5873
|
-
id?: number | null;
|
|
5874
6146
|
lastUpdate?: Date | null;
|
|
5875
6147
|
ucetni?: boolean | null;
|
|
5876
6148
|
clenSplK?: ClenSpl | null;
|
|
@@ -5907,7 +6179,6 @@ declare class AFDanovyNaklad extends AFEntity {
|
|
|
5907
6179
|
static EntityPath: string;
|
|
5908
6180
|
static EntityName: string;
|
|
5909
6181
|
static EntityType: string;
|
|
5910
|
-
id?: number | null;
|
|
5911
6182
|
lastUpdate?: Date | null;
|
|
5912
6183
|
ucetni?: boolean | null;
|
|
5913
6184
|
datVyst?: Date | null;
|
|
@@ -5932,7 +6203,6 @@ declare class AFLeasing extends AFEntity {
|
|
|
5932
6203
|
static EntityPath: string;
|
|
5933
6204
|
static EntityName: string;
|
|
5934
6205
|
static EntityType: string;
|
|
5935
|
-
id?: number | null;
|
|
5936
6206
|
lastUpdate?: Date | null;
|
|
5937
6207
|
kod?: string | null;
|
|
5938
6208
|
nazev?: string | null;
|
|
@@ -5995,7 +6265,6 @@ declare class AFZapujcka extends AFEntity {
|
|
|
5995
6265
|
static EntityPath: string;
|
|
5996
6266
|
static EntityName: string;
|
|
5997
6267
|
static EntityType: string;
|
|
5998
|
-
id?: number | null;
|
|
5999
6268
|
lastUpdate?: Date | null;
|
|
6000
6269
|
jmeno?: string | null;
|
|
6001
6270
|
prijmeni?: string | null;
|
|
@@ -6027,7 +6296,6 @@ declare class AFMajetek extends AFEntity {
|
|
|
6027
6296
|
static EntityPath: string;
|
|
6028
6297
|
static EntityName: string;
|
|
6029
6298
|
static EntityType: string;
|
|
6030
|
-
id?: number | null;
|
|
6031
6299
|
lastUpdate?: Date | null;
|
|
6032
6300
|
kod?: string | null;
|
|
6033
6301
|
nazev?: string | null;
|
|
@@ -6113,7 +6381,6 @@ declare class AFTypNakladu extends AFEntity {
|
|
|
6113
6381
|
static EntityPath: string;
|
|
6114
6382
|
static EntityName: string;
|
|
6115
6383
|
static EntityType: string;
|
|
6116
|
-
id?: number | null;
|
|
6117
6384
|
lastUpdate?: Date | null;
|
|
6118
6385
|
kod?: string | null;
|
|
6119
6386
|
nazev?: string | null;
|
|
@@ -6135,7 +6402,6 @@ declare class AFNaklad extends AFEntity {
|
|
|
6135
6402
|
static EntityPath: string;
|
|
6136
6403
|
static EntityName: string;
|
|
6137
6404
|
static EntityType: string;
|
|
6138
|
-
id?: number | null;
|
|
6139
6405
|
lastUpdate?: Date | null;
|
|
6140
6406
|
faktMnoz?: Big | null;
|
|
6141
6407
|
fakturovat?: boolean | null;
|
|
@@ -6157,7 +6423,6 @@ declare class AFUdalost extends AFEntity {
|
|
|
6157
6423
|
static EntityPath: string;
|
|
6158
6424
|
static EntityName: string;
|
|
6159
6425
|
static EntityType: string;
|
|
6160
|
-
id?: number | null;
|
|
6161
6426
|
lastUpdate?: Date | null;
|
|
6162
6427
|
popis?: string | null;
|
|
6163
6428
|
poznam?: string | null;
|
|
@@ -6205,7 +6470,6 @@ declare class AFUzivatel extends AFEntity {
|
|
|
6205
6470
|
static EntityPath: string;
|
|
6206
6471
|
static EntityName: string;
|
|
6207
6472
|
static EntityType: string;
|
|
6208
|
-
id?: number | null;
|
|
6209
6473
|
lastUpdate?: Date | null;
|
|
6210
6474
|
ulice?: string | null;
|
|
6211
6475
|
mesto?: string | null;
|
|
@@ -6248,7 +6512,6 @@ declare class AFAdresar extends AFEntity {
|
|
|
6248
6512
|
static EntityPath: string;
|
|
6249
6513
|
static EntityName: string;
|
|
6250
6514
|
static EntityType: string;
|
|
6251
|
-
id?: number | null;
|
|
6252
6515
|
lastUpdate?: Date | null;
|
|
6253
6516
|
kod?: string | null;
|
|
6254
6517
|
nazev?: string | null;
|
|
@@ -6336,7 +6599,6 @@ declare class AFStat extends AFEntity {
|
|
|
6336
6599
|
static EntityPath: string;
|
|
6337
6600
|
static EntityName: string;
|
|
6338
6601
|
static EntityType: string;
|
|
6339
|
-
id?: number | null;
|
|
6340
6602
|
lastUpdate?: Date | null;
|
|
6341
6603
|
kod?: string | null;
|
|
6342
6604
|
nazev?: string | null;
|
|
@@ -6366,7 +6628,6 @@ declare class AFKontakt extends AFEntity {
|
|
|
6366
6628
|
static EntityPath: string;
|
|
6367
6629
|
static EntityName: string;
|
|
6368
6630
|
static EntityType: string;
|
|
6369
|
-
id?: number | null;
|
|
6370
6631
|
lastUpdate?: Date | null;
|
|
6371
6632
|
ulice?: string | null;
|
|
6372
6633
|
mesto?: string | null;
|
|
@@ -6418,7 +6679,6 @@ declare class AFSmlouvaZurnal extends AFEntity {
|
|
|
6418
6679
|
static EntityPath: string;
|
|
6419
6680
|
static EntityName: string;
|
|
6420
6681
|
static EntityType: string;
|
|
6421
|
-
id?: number | null;
|
|
6422
6682
|
lastUpdate?: Date | null;
|
|
6423
6683
|
datCas?: Date | null;
|
|
6424
6684
|
transakceK?: OperaceZurnalSmlouvy | null;
|
|
@@ -6434,7 +6694,6 @@ declare class AFStavObchodnihoDokladu extends AFEntity {
|
|
|
6434
6694
|
static EntityPath: string;
|
|
6435
6695
|
static EntityName: string;
|
|
6436
6696
|
static EntityType: string;
|
|
6437
|
-
id?: number | null;
|
|
6438
6697
|
lastUpdate?: Date | null;
|
|
6439
6698
|
kod?: string | null;
|
|
6440
6699
|
nazev?: string | null;
|
|
@@ -6460,11 +6719,14 @@ declare class AFStavObchodnihoDokladu extends AFEntity {
|
|
|
6460
6719
|
}
|
|
6461
6720
|
//#endregion
|
|
6462
6721
|
//#region src/generated/entities/AFObjednavkaPrijataPolozka.d.ts
|
|
6722
|
+
declare enum AFObjednavkaPrijataPolozkaAction {
|
|
6723
|
+
Storno = "storno",
|
|
6724
|
+
}
|
|
6463
6725
|
declare class AFObjednavkaPrijataPolozka extends AFEntity {
|
|
6464
6726
|
static EntityPath: string;
|
|
6465
6727
|
static EntityName: string;
|
|
6466
6728
|
static EntityType: string;
|
|
6467
|
-
|
|
6729
|
+
static Actions: typeof AFObjednavkaPrijataPolozkaAction;
|
|
6468
6730
|
lastUpdate?: Date | null;
|
|
6469
6731
|
updatedBy?: AFUzivatel | null;
|
|
6470
6732
|
createdBy?: AFUzivatel | null;
|
|
@@ -6547,11 +6809,14 @@ declare class AFObjednavkaPrijataPolozka extends AFEntity {
|
|
|
6547
6809
|
}
|
|
6548
6810
|
//#endregion
|
|
6549
6811
|
//#region src/generated/entities/AFObjednavkaPrijata.d.ts
|
|
6812
|
+
declare enum AFObjednavkaPrijataAction {
|
|
6813
|
+
Storno = "storno",
|
|
6814
|
+
}
|
|
6550
6815
|
declare class AFObjednavkaPrijata extends AFEntity {
|
|
6551
6816
|
static EntityPath: string;
|
|
6552
6817
|
static EntityName: string;
|
|
6553
6818
|
static EntityType: string;
|
|
6554
|
-
|
|
6819
|
+
static Actions: typeof AFObjednavkaPrijataAction;
|
|
6555
6820
|
lastUpdate?: Date | null;
|
|
6556
6821
|
updatedBy?: AFUzivatel | null;
|
|
6557
6822
|
createdBy?: AFUzivatel | null;
|
|
@@ -6680,11 +6945,14 @@ declare class AFObjednavkaPrijata extends AFEntity {
|
|
|
6680
6945
|
}
|
|
6681
6946
|
//#endregion
|
|
6682
6947
|
//#region src/generated/entities/AFObjednavkaVydanaPolozka.d.ts
|
|
6948
|
+
declare enum AFObjednavkaVydanaPolozkaAction {
|
|
6949
|
+
Storno = "storno",
|
|
6950
|
+
}
|
|
6683
6951
|
declare class AFObjednavkaVydanaPolozka extends AFEntity {
|
|
6684
6952
|
static EntityPath: string;
|
|
6685
6953
|
static EntityName: string;
|
|
6686
6954
|
static EntityType: string;
|
|
6687
|
-
|
|
6955
|
+
static Actions: typeof AFObjednavkaVydanaPolozkaAction;
|
|
6688
6956
|
lastUpdate?: Date | null;
|
|
6689
6957
|
updatedBy?: AFUzivatel | null;
|
|
6690
6958
|
createdBy?: AFUzivatel | null;
|
|
@@ -6751,11 +7019,14 @@ declare class AFObjednavkaVydanaPolozka extends AFEntity {
|
|
|
6751
7019
|
}
|
|
6752
7020
|
//#endregion
|
|
6753
7021
|
//#region src/generated/entities/AFObjednavkaVydana.d.ts
|
|
7022
|
+
declare enum AFObjednavkaVydanaAction {
|
|
7023
|
+
Storno = "storno",
|
|
7024
|
+
}
|
|
6754
7025
|
declare class AFObjednavkaVydana extends AFEntity {
|
|
6755
7026
|
static EntityPath: string;
|
|
6756
7027
|
static EntityName: string;
|
|
6757
7028
|
static EntityType: string;
|
|
6758
|
-
|
|
7029
|
+
static Actions: typeof AFObjednavkaVydanaAction;
|
|
6759
7030
|
lastUpdate?: Date | null;
|
|
6760
7031
|
updatedBy?: AFUzivatel | null;
|
|
6761
7032
|
createdBy?: AFUzivatel | null;
|
|
@@ -6864,11 +7135,14 @@ declare class AFObjednavkaVydana extends AFEntity {
|
|
|
6864
7135
|
}
|
|
6865
7136
|
//#endregion
|
|
6866
7137
|
//#region src/generated/entities/AFPoptavkaVydanaPolozka.d.ts
|
|
7138
|
+
declare enum AFPoptavkaVydanaPolozkaAction {
|
|
7139
|
+
Storno = "storno",
|
|
7140
|
+
}
|
|
6867
7141
|
declare class AFPoptavkaVydanaPolozka extends AFEntity {
|
|
6868
7142
|
static EntityPath: string;
|
|
6869
7143
|
static EntityName: string;
|
|
6870
7144
|
static EntityType: string;
|
|
6871
|
-
|
|
7145
|
+
static Actions: typeof AFPoptavkaVydanaPolozkaAction;
|
|
6872
7146
|
lastUpdate?: Date | null;
|
|
6873
7147
|
updatedBy?: AFUzivatel | null;
|
|
6874
7148
|
createdBy?: AFUzivatel | null;
|
|
@@ -6929,11 +7203,14 @@ declare class AFPoptavkaVydanaPolozka extends AFEntity {
|
|
|
6929
7203
|
}
|
|
6930
7204
|
//#endregion
|
|
6931
7205
|
//#region src/generated/entities/AFPoptavkaVydana.d.ts
|
|
7206
|
+
declare enum AFPoptavkaVydanaAction {
|
|
7207
|
+
Storno = "storno",
|
|
7208
|
+
}
|
|
6932
7209
|
declare class AFPoptavkaVydana extends AFEntity {
|
|
6933
7210
|
static EntityPath: string;
|
|
6934
7211
|
static EntityName: string;
|
|
6935
7212
|
static EntityType: string;
|
|
6936
|
-
|
|
7213
|
+
static Actions: typeof AFPoptavkaVydanaAction;
|
|
6937
7214
|
lastUpdate?: Date | null;
|
|
6938
7215
|
updatedBy?: AFUzivatel | null;
|
|
6939
7216
|
createdBy?: AFUzivatel | null;
|
|
@@ -7041,7 +7318,6 @@ declare class AFRadaPoptavkyPrijate extends AFEntity {
|
|
|
7041
7318
|
static EntityPath: string;
|
|
7042
7319
|
static EntityName: string;
|
|
7043
7320
|
static EntityType: string;
|
|
7044
|
-
id?: number | null;
|
|
7045
7321
|
lastUpdate?: Date | null;
|
|
7046
7322
|
kod?: string | null;
|
|
7047
7323
|
nazev?: string | null;
|
|
@@ -7064,7 +7340,6 @@ declare class AFTypPoptavkyPrijate extends AFEntity {
|
|
|
7064
7340
|
static EntityPath: string;
|
|
7065
7341
|
static EntityName: string;
|
|
7066
7342
|
static EntityType: string;
|
|
7067
|
-
id?: number | null;
|
|
7068
7343
|
lastUpdate?: Date | null;
|
|
7069
7344
|
kod?: string | null;
|
|
7070
7345
|
nazev?: string | null;
|
|
@@ -7100,11 +7375,14 @@ declare class AFTypPoptavkyPrijate extends AFEntity {
|
|
|
7100
7375
|
}
|
|
7101
7376
|
//#endregion
|
|
7102
7377
|
//#region src/generated/entities/AFPoptavkaPrijataPolozka.d.ts
|
|
7378
|
+
declare enum AFPoptavkaPrijataPolozkaAction {
|
|
7379
|
+
Storno = "storno",
|
|
7380
|
+
}
|
|
7103
7381
|
declare class AFPoptavkaPrijataPolozka extends AFEntity {
|
|
7104
7382
|
static EntityPath: string;
|
|
7105
7383
|
static EntityName: string;
|
|
7106
7384
|
static EntityType: string;
|
|
7107
|
-
|
|
7385
|
+
static Actions: typeof AFPoptavkaPrijataPolozkaAction;
|
|
7108
7386
|
lastUpdate?: Date | null;
|
|
7109
7387
|
updatedBy?: AFUzivatel | null;
|
|
7110
7388
|
createdBy?: AFUzivatel | null;
|
|
@@ -7178,11 +7456,14 @@ declare class AFPoptavkaPrijataPolozka extends AFEntity {
|
|
|
7178
7456
|
}
|
|
7179
7457
|
//#endregion
|
|
7180
7458
|
//#region src/generated/entities/AFPoptavkaPrijata.d.ts
|
|
7459
|
+
declare enum AFPoptavkaPrijataAction {
|
|
7460
|
+
Storno = "storno",
|
|
7461
|
+
}
|
|
7181
7462
|
declare class AFPoptavkaPrijata extends AFEntity {
|
|
7182
7463
|
static EntityPath: string;
|
|
7183
7464
|
static EntityName: string;
|
|
7184
7465
|
static EntityType: string;
|
|
7185
|
-
|
|
7466
|
+
static Actions: typeof AFPoptavkaPrijataAction;
|
|
7186
7467
|
lastUpdate?: Date | null;
|
|
7187
7468
|
updatedBy?: AFUzivatel | null;
|
|
7188
7469
|
createdBy?: AFUzivatel | null;
|
|
@@ -7290,11 +7571,14 @@ declare class AFPoptavkaPrijata extends AFEntity {
|
|
|
7290
7571
|
}
|
|
7291
7572
|
//#endregion
|
|
7292
7573
|
//#region src/generated/entities/AFNabidkaVydanaPolozka.d.ts
|
|
7574
|
+
declare enum AFNabidkaVydanaPolozkaAction {
|
|
7575
|
+
Storno = "storno",
|
|
7576
|
+
}
|
|
7293
7577
|
declare class AFNabidkaVydanaPolozka extends AFEntity {
|
|
7294
7578
|
static EntityPath: string;
|
|
7295
7579
|
static EntityName: string;
|
|
7296
7580
|
static EntityType: string;
|
|
7297
|
-
|
|
7581
|
+
static Actions: typeof AFNabidkaVydanaPolozkaAction;
|
|
7298
7582
|
lastUpdate?: Date | null;
|
|
7299
7583
|
updatedBy?: AFUzivatel | null;
|
|
7300
7584
|
createdBy?: AFUzivatel | null;
|
|
@@ -7368,11 +7652,14 @@ declare class AFNabidkaVydanaPolozka extends AFEntity {
|
|
|
7368
7652
|
}
|
|
7369
7653
|
//#endregion
|
|
7370
7654
|
//#region src/generated/entities/AFNabidkaVydana.d.ts
|
|
7655
|
+
declare enum AFNabidkaVydanaAction {
|
|
7656
|
+
Storno = "storno",
|
|
7657
|
+
}
|
|
7371
7658
|
declare class AFNabidkaVydana extends AFEntity {
|
|
7372
7659
|
static EntityPath: string;
|
|
7373
7660
|
static EntityName: string;
|
|
7374
7661
|
static EntityType: string;
|
|
7375
|
-
|
|
7662
|
+
static Actions: typeof AFNabidkaVydanaAction;
|
|
7376
7663
|
lastUpdate?: Date | null;
|
|
7377
7664
|
updatedBy?: AFUzivatel | null;
|
|
7378
7665
|
createdBy?: AFUzivatel | null;
|
|
@@ -7481,11 +7768,14 @@ declare class AFNabidkaVydana extends AFEntity {
|
|
|
7481
7768
|
}
|
|
7482
7769
|
//#endregion
|
|
7483
7770
|
//#region src/generated/entities/AFNabidkaPrijataPolozka.d.ts
|
|
7771
|
+
declare enum AFNabidkaPrijataPolozkaAction {
|
|
7772
|
+
Storno = "storno",
|
|
7773
|
+
}
|
|
7484
7774
|
declare class AFNabidkaPrijataPolozka extends AFEntity {
|
|
7485
7775
|
static EntityPath: string;
|
|
7486
7776
|
static EntityName: string;
|
|
7487
7777
|
static EntityType: string;
|
|
7488
|
-
|
|
7778
|
+
static Actions: typeof AFNabidkaPrijataPolozkaAction;
|
|
7489
7779
|
lastUpdate?: Date | null;
|
|
7490
7780
|
updatedBy?: AFUzivatel | null;
|
|
7491
7781
|
createdBy?: AFUzivatel | null;
|
|
@@ -7546,11 +7836,14 @@ declare class AFNabidkaPrijataPolozka extends AFEntity {
|
|
|
7546
7836
|
}
|
|
7547
7837
|
//#endregion
|
|
7548
7838
|
//#region src/generated/entities/AFNabidkaPrijata.d.ts
|
|
7839
|
+
declare enum AFNabidkaPrijataAction {
|
|
7840
|
+
Storno = "storno",
|
|
7841
|
+
}
|
|
7549
7842
|
declare class AFNabidkaPrijata extends AFEntity {
|
|
7550
7843
|
static EntityPath: string;
|
|
7551
7844
|
static EntityName: string;
|
|
7552
7845
|
static EntityType: string;
|
|
7553
|
-
|
|
7846
|
+
static Actions: typeof AFNabidkaPrijataAction;
|
|
7554
7847
|
lastUpdate?: Date | null;
|
|
7555
7848
|
updatedBy?: AFUzivatel | null;
|
|
7556
7849
|
createdBy?: AFUzivatel | null;
|
|
@@ -7660,7 +7953,6 @@ declare class AFDefStore extends AFEntity {
|
|
|
7660
7953
|
static EntityPath: string;
|
|
7661
7954
|
static EntityName: string;
|
|
7662
7955
|
static EntityType: string;
|
|
7663
|
-
id?: number | null;
|
|
7664
7956
|
lastUpdate?: Date | null;
|
|
7665
7957
|
nazev?: string | null;
|
|
7666
7958
|
nazevA?: string | null;
|
|
@@ -7685,7 +7977,6 @@ declare class AFText extends AFEntity {
|
|
|
7685
7977
|
static EntityPath: string;
|
|
7686
7978
|
static EntityName: string;
|
|
7687
7979
|
static EntityType: string;
|
|
7688
|
-
id?: number | null;
|
|
7689
7980
|
lastUpdate?: Date | null;
|
|
7690
7981
|
popis?: string | null;
|
|
7691
7982
|
nazev?: string | null;
|
|
@@ -7722,7 +8013,6 @@ declare class AFBankovniUcetSkladPokladna extends AFEntity {
|
|
|
7722
8013
|
static EntityPath: string;
|
|
7723
8014
|
static EntityName: string;
|
|
7724
8015
|
static EntityType: string;
|
|
7725
|
-
id?: number | null;
|
|
7726
8016
|
lastUpdate?: Date | null;
|
|
7727
8017
|
kod?: string | null;
|
|
7728
8018
|
nazev?: string | null;
|
|
@@ -7895,7 +8185,6 @@ declare class AFBankovniUcetPokladna extends AFEntity {
|
|
|
7895
8185
|
static EntityPath: string;
|
|
7896
8186
|
static EntityName: string;
|
|
7897
8187
|
static EntityType: string;
|
|
7898
|
-
id?: number | null;
|
|
7899
8188
|
lastUpdate?: Date | null;
|
|
7900
8189
|
kod?: string | null;
|
|
7901
8190
|
nazev?: string | null;
|
|
@@ -7918,11 +8207,14 @@ declare class AFBankovniUcetPokladna extends AFEntity {
|
|
|
7918
8207
|
}
|
|
7919
8208
|
//#endregion
|
|
7920
8209
|
//#region src/generated/entities/AFInterniDokladPolozka.d.ts
|
|
8210
|
+
declare enum AFInterniDokladPolozkaAction {
|
|
8211
|
+
Storno = "storno",
|
|
8212
|
+
}
|
|
7921
8213
|
declare class AFInterniDokladPolozka extends AFEntity {
|
|
7922
8214
|
static EntityPath: string;
|
|
7923
8215
|
static EntityName: string;
|
|
7924
8216
|
static EntityType: string;
|
|
7925
|
-
|
|
8217
|
+
static Actions: typeof AFInterniDokladPolozkaAction;
|
|
7926
8218
|
lastUpdate?: Date | null;
|
|
7927
8219
|
updatedBy?: AFUzivatel | null;
|
|
7928
8220
|
createdBy?: AFUzivatel | null;
|
|
@@ -8017,11 +8309,14 @@ declare class AFInterniDokladPolozka extends AFEntity {
|
|
|
8017
8309
|
}
|
|
8018
8310
|
//#endregion
|
|
8019
8311
|
//#region src/generated/entities/AFInterniDoklad.d.ts
|
|
8312
|
+
declare enum AFInterniDokladAction {
|
|
8313
|
+
Storno = "storno",
|
|
8314
|
+
}
|
|
8020
8315
|
declare class AFInterniDoklad extends AFEntity {
|
|
8021
8316
|
static EntityPath: string;
|
|
8022
8317
|
static EntityName: string;
|
|
8023
8318
|
static EntityType: string;
|
|
8024
|
-
|
|
8319
|
+
static Actions: typeof AFInterniDokladAction;
|
|
8025
8320
|
lastUpdate?: Date | null;
|
|
8026
8321
|
updatedBy?: AFUzivatel | null;
|
|
8027
8322
|
createdBy?: AFUzivatel | null;
|
|
@@ -8098,7 +8393,6 @@ declare class AFInterniDoklad extends AFEntity {
|
|
|
8098
8393
|
protiUcet?: AFUcet | null;
|
|
8099
8394
|
dphZaklUcet?: AFUcet | null;
|
|
8100
8395
|
dphSnizUcet?: AFUcet | null;
|
|
8101
|
-
dphSniz2Ucet?: AFUcet | null;
|
|
8102
8396
|
statDph?: AFStatDph | null;
|
|
8103
8397
|
clenDph?: AFCleneniDph | null;
|
|
8104
8398
|
stredisko?: AFStredisko | null;
|
|
@@ -8280,11 +8574,14 @@ declare class AFNeuhrazenePoSplatnosti2 extends AFEntity {
|
|
|
8280
8574
|
}
|
|
8281
8575
|
//#endregion
|
|
8282
8576
|
//#region src/generated/entities/AFPokladniPohybPolozka.d.ts
|
|
8577
|
+
declare enum AFPokladniPohybPolozkaAction {
|
|
8578
|
+
Storno = "storno",
|
|
8579
|
+
}
|
|
8283
8580
|
declare class AFPokladniPohybPolozka extends AFEntity {
|
|
8284
8581
|
static EntityPath: string;
|
|
8285
8582
|
static EntityName: string;
|
|
8286
8583
|
static EntityType: string;
|
|
8287
|
-
|
|
8584
|
+
static Actions: typeof AFPokladniPohybPolozkaAction;
|
|
8288
8585
|
lastUpdate?: Date | null;
|
|
8289
8586
|
updatedBy?: AFUzivatel | null;
|
|
8290
8587
|
createdBy?: AFUzivatel | null;
|
|
@@ -8393,11 +8690,15 @@ declare class AFPokladniPohybPolozka extends AFEntity {
|
|
|
8393
8690
|
}
|
|
8394
8691
|
//#endregion
|
|
8395
8692
|
//#region src/generated/entities/AFDokladKUhrade.d.ts
|
|
8693
|
+
declare enum AFDokladKUhradeAction {
|
|
8694
|
+
Storno = "storno",
|
|
8695
|
+
UhradZapoctem = "uhrad-zapoctem",
|
|
8696
|
+
}
|
|
8396
8697
|
declare class AFDokladKUhrade extends AFEntity {
|
|
8397
8698
|
static EntityPath: string;
|
|
8398
8699
|
static EntityName: string;
|
|
8399
8700
|
static EntityType: string;
|
|
8400
|
-
|
|
8701
|
+
static Actions: typeof AFDokladKUhradeAction;
|
|
8401
8702
|
lastUpdate?: Date | null;
|
|
8402
8703
|
kod?: string | null;
|
|
8403
8704
|
modul?: string | null;
|
|
@@ -8604,11 +8905,15 @@ declare class AFDokladKUhrade extends AFEntity {
|
|
|
8604
8905
|
}
|
|
8605
8906
|
//#endregion
|
|
8606
8907
|
//#region src/generated/entities/AFPokladniPohyb.d.ts
|
|
8908
|
+
declare enum AFPokladniPohybAction {
|
|
8909
|
+
Storno = "storno",
|
|
8910
|
+
AutomatickeParovani = "automaticke-parovani",
|
|
8911
|
+
}
|
|
8607
8912
|
declare class AFPokladniPohyb extends AFEntity {
|
|
8608
8913
|
static EntityPath: string;
|
|
8609
8914
|
static EntityName: string;
|
|
8610
8915
|
static EntityType: string;
|
|
8611
|
-
|
|
8916
|
+
static Actions: typeof AFPokladniPohybAction;
|
|
8612
8917
|
lastUpdate?: Date | null;
|
|
8613
8918
|
updatedBy?: AFUzivatel | null;
|
|
8614
8919
|
createdBy?: AFUzivatel | null;
|
|
@@ -8743,11 +9048,14 @@ declare class AFPokladniPohyb extends AFEntity {
|
|
|
8743
9048
|
}
|
|
8744
9049
|
//#endregion
|
|
8745
9050
|
//#region src/generated/entities/AFBankaPolozka.d.ts
|
|
9051
|
+
declare enum AFBankaPolozkaAction {
|
|
9052
|
+
Storno = "storno",
|
|
9053
|
+
}
|
|
8746
9054
|
declare class AFBankaPolozka extends AFEntity {
|
|
8747
9055
|
static EntityPath: string;
|
|
8748
9056
|
static EntityName: string;
|
|
8749
9057
|
static EntityType: string;
|
|
8750
|
-
|
|
9058
|
+
static Actions: typeof AFBankaPolozkaAction;
|
|
8751
9059
|
lastUpdate?: Date | null;
|
|
8752
9060
|
updatedBy?: AFUzivatel | null;
|
|
8753
9061
|
createdBy?: AFUzivatel | null;
|
|
@@ -8807,11 +9115,15 @@ declare class AFBankaPolozka extends AFEntity {
|
|
|
8807
9115
|
}
|
|
8808
9116
|
//#endregion
|
|
8809
9117
|
//#region src/generated/entities/AFBanka.d.ts
|
|
9118
|
+
declare enum AFBankaAction {
|
|
9119
|
+
Storno = "storno",
|
|
9120
|
+
AutomatickeParovani = "automaticke-parovani",
|
|
9121
|
+
}
|
|
8810
9122
|
declare class AFBanka extends AFEntity {
|
|
8811
9123
|
static EntityPath: string;
|
|
8812
9124
|
static EntityName: string;
|
|
8813
9125
|
static EntityType: string;
|
|
8814
|
-
|
|
9126
|
+
static Actions: typeof AFBankaAction;
|
|
8815
9127
|
lastUpdate?: Date | null;
|
|
8816
9128
|
updatedBy?: AFUzivatel | null;
|
|
8817
9129
|
createdBy?: AFUzivatel | null;
|
|
@@ -8937,11 +9249,14 @@ declare class AFBanka extends AFEntity {
|
|
|
8937
9249
|
}
|
|
8938
9250
|
//#endregion
|
|
8939
9251
|
//#region src/generated/entities/AFPohledavkaPolozka.d.ts
|
|
9252
|
+
declare enum AFPohledavkaPolozkaAction {
|
|
9253
|
+
Storno = "storno",
|
|
9254
|
+
}
|
|
8940
9255
|
declare class AFPohledavkaPolozka extends AFEntity {
|
|
8941
9256
|
static EntityPath: string;
|
|
8942
9257
|
static EntityName: string;
|
|
8943
9258
|
static EntityType: string;
|
|
8944
|
-
|
|
9259
|
+
static Actions: typeof AFPohledavkaPolozkaAction;
|
|
8945
9260
|
lastUpdate?: Date | null;
|
|
8946
9261
|
updatedBy?: AFUzivatel | null;
|
|
8947
9262
|
createdBy?: AFUzivatel | null;
|
|
@@ -9036,11 +9351,15 @@ declare class AFPohledavkaPolozka extends AFEntity {
|
|
|
9036
9351
|
}
|
|
9037
9352
|
//#endregion
|
|
9038
9353
|
//#region src/generated/entities/AFPohledavka.d.ts
|
|
9354
|
+
declare enum AFPohledavkaAction {
|
|
9355
|
+
Storno = "storno",
|
|
9356
|
+
UhradZapoctem = "uhrad-zapoctem",
|
|
9357
|
+
}
|
|
9039
9358
|
declare class AFPohledavka extends AFEntity {
|
|
9040
9359
|
static EntityPath: string;
|
|
9041
9360
|
static EntityName: string;
|
|
9042
9361
|
static EntityType: string;
|
|
9043
|
-
|
|
9362
|
+
static Actions: typeof AFPohledavkaAction;
|
|
9044
9363
|
lastUpdate?: Date | null;
|
|
9045
9364
|
updatedBy?: AFUzivatel | null;
|
|
9046
9365
|
createdBy?: AFUzivatel | null;
|
|
@@ -9201,7 +9520,6 @@ declare class AFRadaUplatneniDaneZavazku extends AFEntity {
|
|
|
9201
9520
|
static EntityPath: string;
|
|
9202
9521
|
static EntityName: string;
|
|
9203
9522
|
static EntityType: string;
|
|
9204
|
-
id?: number | null;
|
|
9205
9523
|
lastUpdate?: Date | null;
|
|
9206
9524
|
kod?: string | null;
|
|
9207
9525
|
nazev?: string | null;
|
|
@@ -9224,7 +9542,6 @@ declare class AFTypUplatneniDaneZavazku extends AFEntity {
|
|
|
9224
9542
|
static EntityPath: string;
|
|
9225
9543
|
static EntityName: string;
|
|
9226
9544
|
static EntityType: string;
|
|
9227
|
-
id?: number | null;
|
|
9228
9545
|
lastUpdate?: Date | null;
|
|
9229
9546
|
kod?: string | null;
|
|
9230
9547
|
nazev?: string | null;
|
|
@@ -9261,11 +9578,14 @@ declare class AFTypUplatneniDaneZavazku extends AFEntity {
|
|
|
9261
9578
|
}
|
|
9262
9579
|
//#endregion
|
|
9263
9580
|
//#region src/generated/entities/AFUplatneniDaneZavazkuPolozka.d.ts
|
|
9581
|
+
declare enum AFUplatneniDaneZavazkuPolozkaAction {
|
|
9582
|
+
Storno = "storno",
|
|
9583
|
+
}
|
|
9264
9584
|
declare class AFUplatneniDaneZavazkuPolozka extends AFEntity {
|
|
9265
9585
|
static EntityPath: string;
|
|
9266
9586
|
static EntityName: string;
|
|
9267
9587
|
static EntityType: string;
|
|
9268
|
-
|
|
9588
|
+
static Actions: typeof AFUplatneniDaneZavazkuPolozkaAction;
|
|
9269
9589
|
lastUpdate?: Date | null;
|
|
9270
9590
|
updatedBy?: AFUzivatel | null;
|
|
9271
9591
|
createdBy?: AFUzivatel | null;
|
|
@@ -9361,11 +9681,14 @@ declare class AFUplatneniDaneZavazkuPolozka extends AFEntity {
|
|
|
9361
9681
|
}
|
|
9362
9682
|
//#endregion
|
|
9363
9683
|
//#region src/generated/entities/AFUplatneniDaneZavazku.d.ts
|
|
9684
|
+
declare enum AFUplatneniDaneZavazkuAction {
|
|
9685
|
+
Storno = "storno",
|
|
9686
|
+
}
|
|
9364
9687
|
declare class AFUplatneniDaneZavazku extends AFEntity {
|
|
9365
9688
|
static EntityPath: string;
|
|
9366
9689
|
static EntityName: string;
|
|
9367
9690
|
static EntityType: string;
|
|
9368
|
-
|
|
9691
|
+
static Actions: typeof AFUplatneniDaneZavazkuAction;
|
|
9369
9692
|
lastUpdate?: Date | null;
|
|
9370
9693
|
updatedBy?: AFUzivatel | null;
|
|
9371
9694
|
createdBy?: AFUzivatel | null;
|
|
@@ -9478,7 +9801,6 @@ declare class AFPrikazKUhradePolozka extends AFEntity {
|
|
|
9478
9801
|
static EntityPath: string;
|
|
9479
9802
|
static EntityName: string;
|
|
9480
9803
|
static EntityType: string;
|
|
9481
|
-
id?: number | null;
|
|
9482
9804
|
lastUpdate?: Date | null;
|
|
9483
9805
|
buc?: string | null;
|
|
9484
9806
|
bic?: string | null;
|
|
@@ -9521,7 +9843,6 @@ declare class AFPrikazKUhrade extends AFEntity {
|
|
|
9521
9843
|
static EntityPath: string;
|
|
9522
9844
|
static EntityName: string;
|
|
9523
9845
|
static EntityType: string;
|
|
9524
|
-
id?: number | null;
|
|
9525
9846
|
lastUpdate?: Date | null;
|
|
9526
9847
|
datVytvor?: Date | null;
|
|
9527
9848
|
datSplat?: Date | null;
|
|
@@ -9552,7 +9873,6 @@ declare class AFPrikazKInkasuPolozka extends AFEntity {
|
|
|
9552
9873
|
static EntityPath: string;
|
|
9553
9874
|
static EntityName: string;
|
|
9554
9875
|
static EntityType: string;
|
|
9555
|
-
id?: number | null;
|
|
9556
9876
|
lastUpdate?: Date | null;
|
|
9557
9877
|
buc?: string | null;
|
|
9558
9878
|
bic?: string | null;
|
|
@@ -9595,7 +9915,6 @@ declare class AFPrikazKInkasu extends AFEntity {
|
|
|
9595
9915
|
static EntityPath: string;
|
|
9596
9916
|
static EntityName: string;
|
|
9597
9917
|
static EntityType: string;
|
|
9598
|
-
id?: number | null;
|
|
9599
9918
|
lastUpdate?: Date | null;
|
|
9600
9919
|
datVytvor?: Date | null;
|
|
9601
9920
|
datSplat?: Date | null;
|
|
@@ -9625,7 +9944,6 @@ declare class AFTypVzajemnychZapoctu extends AFEntity {
|
|
|
9625
9944
|
static EntityPath: string;
|
|
9626
9945
|
static EntityName: string;
|
|
9627
9946
|
static EntityType: string;
|
|
9628
|
-
id?: number | null;
|
|
9629
9947
|
lastUpdate?: Date | null;
|
|
9630
9948
|
kod?: string | null;
|
|
9631
9949
|
nazev?: string | null;
|
|
@@ -9667,11 +9985,15 @@ declare class AFTypVzajemnychZapoctu extends AFEntity {
|
|
|
9667
9985
|
}
|
|
9668
9986
|
//#endregion
|
|
9669
9987
|
//#region src/generated/entities/AFVzajemnyZapocet.d.ts
|
|
9988
|
+
declare enum AFVzajemnyZapocetAction {
|
|
9989
|
+
Storno = "storno",
|
|
9990
|
+
AutomatickeParovani = "automaticke-parovani",
|
|
9991
|
+
}
|
|
9670
9992
|
declare class AFVzajemnyZapocet extends AFEntity {
|
|
9671
9993
|
static EntityPath: string;
|
|
9672
9994
|
static EntityName: string;
|
|
9673
9995
|
static EntityType: string;
|
|
9674
|
-
|
|
9996
|
+
static Actions: typeof AFVzajemnyZapocetAction;
|
|
9675
9997
|
lastUpdate?: Date | null;
|
|
9676
9998
|
updatedBy?: AFUzivatel | null;
|
|
9677
9999
|
createdBy?: AFUzivatel | null;
|
|
@@ -9817,11 +10139,14 @@ declare class AFDoklad extends AFEntity {
|
|
|
9817
10139
|
}
|
|
9818
10140
|
//#endregion
|
|
9819
10141
|
//#region src/generated/entities/AFFakturaVydanaPolozka.d.ts
|
|
10142
|
+
declare enum AFFakturaVydanaPolozkaAction {
|
|
10143
|
+
Storno = "storno",
|
|
10144
|
+
}
|
|
9820
10145
|
declare class AFFakturaVydanaPolozka extends AFEntity {
|
|
9821
10146
|
static EntityPath: string;
|
|
9822
10147
|
static EntityName: string;
|
|
9823
10148
|
static EntityType: string;
|
|
9824
|
-
|
|
10149
|
+
static Actions: typeof AFFakturaVydanaPolozkaAction;
|
|
9825
10150
|
lastUpdate?: Date | null;
|
|
9826
10151
|
updatedBy?: AFUzivatel | null;
|
|
9827
10152
|
createdBy?: AFUzivatel | null;
|
|
@@ -9936,11 +10261,16 @@ declare class AFFakturaVydanaPolozka extends AFEntity {
|
|
|
9936
10261
|
}
|
|
9937
10262
|
//#endregion
|
|
9938
10263
|
//#region src/generated/entities/AFFakturaVydana.d.ts
|
|
10264
|
+
declare enum AFFakturaVydanaAction {
|
|
10265
|
+
Storno = "storno",
|
|
10266
|
+
UhradPreplatky = "uhrad-preplatky",
|
|
10267
|
+
UhradZapoctem = "uhrad-zapoctem",
|
|
10268
|
+
}
|
|
9939
10269
|
declare class AFFakturaVydana extends AFEntity {
|
|
9940
10270
|
static EntityPath: string;
|
|
9941
10271
|
static EntityName: string;
|
|
9942
10272
|
static EntityType: string;
|
|
9943
|
-
|
|
10273
|
+
static Actions: typeof AFFakturaVydanaAction;
|
|
9944
10274
|
lastUpdate?: Date | null;
|
|
9945
10275
|
updatedBy?: AFUzivatel | null;
|
|
9946
10276
|
createdBy?: AFUzivatel | null;
|
|
@@ -10138,7 +10468,6 @@ declare class AFTypProdejky extends AFEntity {
|
|
|
10138
10468
|
static EntityPath: string;
|
|
10139
10469
|
static EntityName: string;
|
|
10140
10470
|
static EntityType: string;
|
|
10141
|
-
id?: number | null;
|
|
10142
10471
|
lastUpdate?: Date | null;
|
|
10143
10472
|
kod?: string | null;
|
|
10144
10473
|
nazev?: string | null;
|
|
@@ -10209,11 +10538,16 @@ declare class AFTypProdejky extends AFEntity {
|
|
|
10209
10538
|
}
|
|
10210
10539
|
//#endregion
|
|
10211
10540
|
//#region src/generated/entities/AFProdejka.d.ts
|
|
10541
|
+
declare enum AFProdejkaAction {
|
|
10542
|
+
Storno = "storno",
|
|
10543
|
+
UhradPreplatky = "uhrad-preplatky",
|
|
10544
|
+
UhradZapoctem = "uhrad-zapoctem",
|
|
10545
|
+
}
|
|
10212
10546
|
declare class AFProdejka extends AFEntity {
|
|
10213
10547
|
static EntityPath: string;
|
|
10214
10548
|
static EntityName: string;
|
|
10215
10549
|
static EntityType: string;
|
|
10216
|
-
|
|
10550
|
+
static Actions: typeof AFProdejkaAction;
|
|
10217
10551
|
lastUpdate?: Date | null;
|
|
10218
10552
|
updatedBy?: AFUzivatel | null;
|
|
10219
10553
|
createdBy?: AFUzivatel | null;
|
|
@@ -10388,7 +10722,6 @@ declare class AFProdejkaPlatba extends AFEntity {
|
|
|
10388
10722
|
static EntityPath: string;
|
|
10389
10723
|
static EntityName: string;
|
|
10390
10724
|
static EntityType: string;
|
|
10391
|
-
id?: number | null;
|
|
10392
10725
|
lastUpdate?: Date | null;
|
|
10393
10726
|
kurz?: Big | null;
|
|
10394
10727
|
kurzMnozstvi?: Big | null;
|
|
@@ -10411,7 +10744,6 @@ declare class AFPravoViditelnosti extends AFEntity {
|
|
|
10411
10744
|
static EntityPath: string;
|
|
10412
10745
|
static EntityName: string;
|
|
10413
10746
|
static EntityType: string;
|
|
10414
|
-
id?: number | null;
|
|
10415
10747
|
idUzivatel?: number | null;
|
|
10416
10748
|
typDatK?: any | null;
|
|
10417
10749
|
modulK?: any | null;
|
|
@@ -10420,50 +10752,14 @@ declare class AFPravoViditelnosti extends AFEntity {
|
|
|
10420
10752
|
static propAnnotations: Record<string, TypeAnnotation>;
|
|
10421
10753
|
}
|
|
10422
10754
|
//#endregion
|
|
10423
|
-
//#region src/generated/entities/AFZamek.d.ts
|
|
10424
|
-
declare class AFZamek extends AFEntity {
|
|
10425
|
-
static EntityPath: string;
|
|
10426
|
-
static EntityName: string;
|
|
10427
|
-
static EntityType: string;
|
|
10428
|
-
id?: number | null;
|
|
10429
|
-
lastUpdate?: Date | null;
|
|
10430
|
-
zamekK?: Zamek | null;
|
|
10431
|
-
platiOdData?: Date | null;
|
|
10432
|
-
platiDoData?: Date | null;
|
|
10433
|
-
modulFav?: boolean | null;
|
|
10434
|
-
modulFap?: boolean | null;
|
|
10435
|
-
modulPhl?: boolean | null;
|
|
10436
|
-
modulZav?: boolean | null;
|
|
10437
|
-
modulTxp?: boolean | null;
|
|
10438
|
-
modulTxz?: boolean | null;
|
|
10439
|
-
modulBan?: boolean | null;
|
|
10440
|
-
modulPok?: boolean | null;
|
|
10441
|
-
modulInt?: boolean | null;
|
|
10442
|
-
modulSkl?: boolean | null;
|
|
10443
|
-
modulPpp?: boolean | null;
|
|
10444
|
-
modulPpv?: boolean | null;
|
|
10445
|
-
modulNap?: boolean | null;
|
|
10446
|
-
modulNav?: boolean | null;
|
|
10447
|
-
modulObp?: boolean | null;
|
|
10448
|
-
modulObv?: boolean | null;
|
|
10449
|
-
modulMaj?: boolean | null;
|
|
10450
|
-
modulLea?: boolean | null;
|
|
10451
|
-
modulMzd?: boolean | null;
|
|
10452
|
-
neucetni?: boolean | null;
|
|
10453
|
-
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
10454
|
-
get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
|
|
10455
|
-
static propAnnotations: Record<string, TypeAnnotation>;
|
|
10456
|
-
}
|
|
10457
|
-
//#endregion
|
|
10458
10755
|
//#region src/generated/entities/AFKurzProCenotvorbu.d.ts
|
|
10459
10756
|
declare class AFKurzProCenotvorbu extends AFEntity {
|
|
10460
10757
|
static EntityPath: string;
|
|
10461
10758
|
static EntityName: string;
|
|
10462
10759
|
static EntityType: string;
|
|
10463
|
-
id?: number | null;
|
|
10464
10760
|
lastUpdate?: Date | null;
|
|
10465
10761
|
platiOdData?: Date | null;
|
|
10466
|
-
|
|
10762
|
+
kurz?: Big | null;
|
|
10467
10763
|
kurzMnozstvi?: Big | null;
|
|
10468
10764
|
mena?: AFMena | null;
|
|
10469
10765
|
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
@@ -10476,10 +10772,9 @@ declare class AFKurzProPreceneni extends AFEntity {
|
|
|
10476
10772
|
static EntityPath: string;
|
|
10477
10773
|
static EntityName: string;
|
|
10478
10774
|
static EntityType: string;
|
|
10479
|
-
id?: number | null;
|
|
10480
10775
|
lastUpdate?: Date | null;
|
|
10481
10776
|
platiOdData?: Date | null;
|
|
10482
|
-
|
|
10777
|
+
kurz?: Big | null;
|
|
10483
10778
|
kurzMnozstvi?: Big | null;
|
|
10484
10779
|
mena?: AFMena | null;
|
|
10485
10780
|
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
@@ -10492,7 +10787,6 @@ declare class AFPsc extends AFEntity {
|
|
|
10492
10787
|
static EntityPath: string;
|
|
10493
10788
|
static EntityName: string;
|
|
10494
10789
|
static EntityType: string;
|
|
10495
|
-
id?: number | null;
|
|
10496
10790
|
lastUpdate?: Date | null;
|
|
10497
10791
|
kod?: string | null;
|
|
10498
10792
|
nazev?: string | null;
|
|
@@ -10519,7 +10813,6 @@ declare class AFSablonaUpominky extends AFEntity {
|
|
|
10519
10813
|
static EntityPath: string;
|
|
10520
10814
|
static EntityName: string;
|
|
10521
10815
|
static EntityType: string;
|
|
10522
|
-
id?: number | null;
|
|
10523
10816
|
lastUpdate?: Date | null;
|
|
10524
10817
|
datum?: string | null;
|
|
10525
10818
|
datuma?: string | null;
|
|
@@ -10560,7 +10853,6 @@ declare class AFCertifikacniAutorita extends AFEntity {
|
|
|
10560
10853
|
static EntityPath: string;
|
|
10561
10854
|
static EntityName: string;
|
|
10562
10855
|
static EntityType: string;
|
|
10563
|
-
id?: number | null;
|
|
10564
10856
|
lastUpdate?: Date | null;
|
|
10565
10857
|
uzivNazev?: string | null;
|
|
10566
10858
|
certNazev?: string | null;
|
|
@@ -10577,7 +10869,6 @@ declare class AFCertifikatFinbricks extends AFEntity {
|
|
|
10577
10869
|
static EntityPath: string;
|
|
10578
10870
|
static EntityName: string;
|
|
10579
10871
|
static EntityType: string;
|
|
10580
|
-
id?: number | null;
|
|
10581
10872
|
lastUpdate?: Date | null;
|
|
10582
10873
|
uzivNazev?: string | null;
|
|
10583
10874
|
certNazev?: string | null;
|
|
@@ -10596,7 +10887,6 @@ declare class AFCertifikat extends AFEntity {
|
|
|
10596
10887
|
static EntityPath: string;
|
|
10597
10888
|
static EntityName: string;
|
|
10598
10889
|
static EntityType: string;
|
|
10599
|
-
id?: number | null;
|
|
10600
10890
|
lastUpdate?: Date | null;
|
|
10601
10891
|
uzivNazev?: string | null;
|
|
10602
10892
|
certNazev?: string | null;
|
|
@@ -10615,7 +10905,6 @@ declare class AFCisloBaliku extends AFEntity {
|
|
|
10615
10905
|
static EntityPath: string;
|
|
10616
10906
|
static EntityName: string;
|
|
10617
10907
|
static EntityType: string;
|
|
10618
|
-
id?: number | null;
|
|
10619
10908
|
lastUpdate?: Date | null;
|
|
10620
10909
|
cislo?: string | null;
|
|
10621
10910
|
formaDopravy?: AFFormaDopravy | null;
|
|
@@ -10632,7 +10921,6 @@ declare class AFVztah extends AFEntity {
|
|
|
10632
10921
|
static EntityPath: string;
|
|
10633
10922
|
static EntityName: string;
|
|
10634
10923
|
static EntityType: string;
|
|
10635
|
-
id?: number | null;
|
|
10636
10924
|
lastUpdate?: Date | null;
|
|
10637
10925
|
kod?: string | null;
|
|
10638
10926
|
nazev?: string | null;
|
|
@@ -10656,10 +10944,9 @@ declare class AFIntrastatKurz extends AFEntity {
|
|
|
10656
10944
|
static EntityPath: string;
|
|
10657
10945
|
static EntityName: string;
|
|
10658
10946
|
static EntityType: string;
|
|
10659
|
-
id?: number | null;
|
|
10660
10947
|
lastUpdate?: Date | null;
|
|
10661
10948
|
platiOdData?: Date | null;
|
|
10662
|
-
|
|
10949
|
+
kurz?: Big | null;
|
|
10663
10950
|
kurzMnozstvi?: Big | null;
|
|
10664
10951
|
mena?: AFMena | null;
|
|
10665
10952
|
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
@@ -10672,7 +10959,6 @@ declare class AFIndividualniCenik extends AFEntity {
|
|
|
10672
10959
|
static EntityPath: string;
|
|
10673
10960
|
static EntityName: string;
|
|
10674
10961
|
static EntityType: string;
|
|
10675
|
-
id?: number | null;
|
|
10676
10962
|
kod?: string | null;
|
|
10677
10963
|
nazev?: string | null;
|
|
10678
10964
|
nazevA?: string | null;
|
|
@@ -10696,11 +10982,15 @@ declare class AFIndividualniCenik extends AFEntity {
|
|
|
10696
10982
|
}
|
|
10697
10983
|
//#endregion
|
|
10698
10984
|
//#region src/generated/entities/AFKusovnik.d.ts
|
|
10985
|
+
declare enum AFKusovnikAction {
|
|
10986
|
+
PrepoctiNakupniCenu = "prepocti-nakupni-cenu",
|
|
10987
|
+
PrepoctiProdejniCenu = "prepocti-prodejni-cenu",
|
|
10988
|
+
}
|
|
10699
10989
|
declare class AFKusovnik extends AFEntity {
|
|
10700
10990
|
static EntityPath: string;
|
|
10701
10991
|
static EntityName: string;
|
|
10702
10992
|
static EntityType: string;
|
|
10703
|
-
|
|
10993
|
+
static Actions: typeof AFKusovnikAction;
|
|
10704
10994
|
lastUpdate?: Date | null;
|
|
10705
10995
|
nazev?: string | null;
|
|
10706
10996
|
nazevA?: string | null;
|
|
@@ -10723,7 +11013,6 @@ declare class AFStromCenik extends AFEntity {
|
|
|
10723
11013
|
static EntityPath: string;
|
|
10724
11014
|
static EntityName: string;
|
|
10725
11015
|
static EntityType: string;
|
|
10726
|
-
id?: number | null;
|
|
10727
11016
|
lastUpdate?: Date | null;
|
|
10728
11017
|
idZaznamu?: number | null;
|
|
10729
11018
|
uzel?: AFStrom | null;
|
|
@@ -10735,7 +11024,6 @@ declare class AFMapovaniSkladu extends AFEntity {
|
|
|
10735
11024
|
static EntityPath: string;
|
|
10736
11025
|
static EntityName: string;
|
|
10737
11026
|
static EntityType: string;
|
|
10738
|
-
id?: number | null;
|
|
10739
11027
|
lastUpdate?: Date | null;
|
|
10740
11028
|
stredisko?: AFStredisko | null;
|
|
10741
11029
|
skupZboz?: AFSkupinaZbozi | null;
|
|
@@ -10751,7 +11039,6 @@ declare class AFUmisteniVeSkladuRegal extends AFEntity {
|
|
|
10751
11039
|
static EntityPath: string;
|
|
10752
11040
|
static EntityName: string;
|
|
10753
11041
|
static EntityType: string;
|
|
10754
|
-
id?: number | null;
|
|
10755
11042
|
lastUpdate?: Date | null;
|
|
10756
11043
|
kod?: string | null;
|
|
10757
11044
|
nazev?: string | null;
|
|
@@ -10774,7 +11061,6 @@ declare class AFUmisteniVeSkladuPolice extends AFEntity {
|
|
|
10774
11061
|
static EntityPath: string;
|
|
10775
11062
|
static EntityName: string;
|
|
10776
11063
|
static EntityType: string;
|
|
10777
|
-
id?: number | null;
|
|
10778
11064
|
lastUpdate?: Date | null;
|
|
10779
11065
|
kod?: string | null;
|
|
10780
11066
|
nazev?: string | null;
|
|
@@ -10797,7 +11083,6 @@ declare class AFUmisteniVeSkladuMistnost extends AFEntity {
|
|
|
10797
11083
|
static EntityPath: string;
|
|
10798
11084
|
static EntityName: string;
|
|
10799
11085
|
static EntityType: string;
|
|
10800
|
-
id?: number | null;
|
|
10801
11086
|
lastUpdate?: Date | null;
|
|
10802
11087
|
kod?: string | null;
|
|
10803
11088
|
nazev?: string | null;
|
|
@@ -10820,7 +11105,6 @@ declare class AFTypStavuCeniku extends AFEntity {
|
|
|
10820
11105
|
static EntityPath: string;
|
|
10821
11106
|
static EntityName: string;
|
|
10822
11107
|
static EntityType: string;
|
|
10823
|
-
id?: number | null;
|
|
10824
11108
|
lastUpdate?: Date | null;
|
|
10825
11109
|
kod?: string | null;
|
|
10826
11110
|
nazev?: string | null;
|
|
@@ -10845,7 +11129,6 @@ declare class AFSkupinaAtributu extends AFEntity {
|
|
|
10845
11129
|
static EntityPath: string;
|
|
10846
11130
|
static EntityName: string;
|
|
10847
11131
|
static EntityType: string;
|
|
10848
|
-
id?: number | null;
|
|
10849
11132
|
lastUpdate?: Date | null;
|
|
10850
11133
|
kod?: string | null;
|
|
10851
11134
|
nazev?: string | null;
|
|
@@ -10890,7 +11173,6 @@ declare class AFSarzeExpirace extends AFEntity {
|
|
|
10890
11173
|
static EntityPath: string;
|
|
10891
11174
|
static EntityName: string;
|
|
10892
11175
|
static EntityType: string;
|
|
10893
|
-
id?: number | null;
|
|
10894
11176
|
pocet?: Big | null;
|
|
10895
11177
|
cenaMj?: Big | null;
|
|
10896
11178
|
datVyst?: Date | null;
|
|
@@ -10910,7 +11192,6 @@ declare class AFOsobaHlavicka extends AFEntity {
|
|
|
10910
11192
|
static EntityPath: string;
|
|
10911
11193
|
static EntityName: string;
|
|
10912
11194
|
static EntityType: string;
|
|
10913
|
-
id?: number | null;
|
|
10914
11195
|
lastUpdate?: Date | null;
|
|
10915
11196
|
osbCis?: string | null;
|
|
10916
11197
|
prijmeni?: string | null;
|
|
@@ -10918,6 +11199,10 @@ declare class AFOsobaHlavicka extends AFEntity {
|
|
|
10918
11199
|
titul?: string | null;
|
|
10919
11200
|
password?: string | null;
|
|
10920
11201
|
email?: string | null;
|
|
11202
|
+
rodCis?: string | null;
|
|
11203
|
+
ecp?: string | null;
|
|
11204
|
+
oic?: string | null;
|
|
11205
|
+
duchodOd?: Date | null;
|
|
10921
11206
|
prilohy?: AFPriloha[];
|
|
10922
11207
|
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
10923
11208
|
get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
|
|
@@ -10929,7 +11214,6 @@ declare class AFSkupinaOsob extends AFEntity {
|
|
|
10929
11214
|
static EntityPath: string;
|
|
10930
11215
|
static EntityName: string;
|
|
10931
11216
|
static EntityType: string;
|
|
10932
|
-
id?: number | null;
|
|
10933
11217
|
lastUpdate?: Date | null;
|
|
10934
11218
|
kod?: string | null;
|
|
10935
11219
|
nazev?: string | null;
|
|
@@ -10941,6 +11225,7 @@ declare class AFSkupinaOsob extends AFEntity {
|
|
|
10941
11225
|
platiOd?: Date | null;
|
|
10942
11226
|
platiDo?: Date | null;
|
|
10943
11227
|
tydenPracDobaK?: TydenPracDoba | null;
|
|
11228
|
+
fondSta?: Big | null;
|
|
10944
11229
|
workFlow?: boolean | null;
|
|
10945
11230
|
tdIntHruba?: AFTypInternihoDokladu | null;
|
|
10946
11231
|
tdIntNahrad?: AFTypInternihoDokladu | null;
|
|
@@ -10963,26 +11248,17 @@ declare class AFSkupinaOsob extends AFEntity {
|
|
|
10963
11248
|
static propAnnotations: Record<string, TypeAnnotation>;
|
|
10964
11249
|
}
|
|
10965
11250
|
//#endregion
|
|
10966
|
-
//#region src/generated/entities/
|
|
10967
|
-
declare class
|
|
11251
|
+
//#region src/generated/entities/AFOsobaBlizkaHlav.d.ts
|
|
11252
|
+
declare class AFOsobaBlizkaHlav extends AFEntity {
|
|
10968
11253
|
static EntityPath: string;
|
|
10969
11254
|
static EntityName: string;
|
|
10970
11255
|
static EntityType: string;
|
|
10971
|
-
id?: number | null;
|
|
10972
11256
|
lastUpdate?: Date | null;
|
|
10973
11257
|
prijmeni?: string | null;
|
|
10974
11258
|
jmeno?: string | null;
|
|
10975
|
-
datNaroz?: Date | null;
|
|
10976
|
-
pohlaviK?: Pohlavi | null;
|
|
10977
11259
|
rodCis?: string | null;
|
|
10978
|
-
|
|
10979
|
-
ztp_POd?: Date | null;
|
|
10980
|
-
ztp_PDo?: Date | null;
|
|
10981
|
-
poznam?: string | null;
|
|
10982
|
-
dite?: boolean | null;
|
|
10983
|
-
stitky?: string | null;
|
|
11260
|
+
datNaroz?: Date | null;
|
|
10984
11261
|
osoba?: AFOsobaHlavicka | null;
|
|
10985
|
-
vztah?: AFVztah | null;
|
|
10986
11262
|
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
10987
11263
|
get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
|
|
10988
11264
|
static propAnnotations: Record<string, TypeAnnotation>;
|
|
@@ -10993,7 +11269,6 @@ declare class AFOsoba extends AFEntity {
|
|
|
10993
11269
|
static EntityPath: string;
|
|
10994
11270
|
static EntityName: string;
|
|
10995
11271
|
static EntityType: string;
|
|
10996
|
-
id?: number | null;
|
|
10997
11272
|
lastUpdate?: Date | null;
|
|
10998
11273
|
platiOd?: Date | null;
|
|
10999
11274
|
platiDo?: Date | null;
|
|
@@ -11004,6 +11279,7 @@ declare class AFOsoba extends AFEntity {
|
|
|
11004
11279
|
titul?: string | null;
|
|
11005
11280
|
datNaroz?: Date | null;
|
|
11006
11281
|
rodCis?: string | null;
|
|
11282
|
+
ecp?: string | null;
|
|
11007
11283
|
pohlaviK?: Pohlavi | null;
|
|
11008
11284
|
kvalifikace?: string | null;
|
|
11009
11285
|
funkce?: string | null;
|
|
@@ -11033,12 +11309,10 @@ declare class AFOsoba extends AFEntity {
|
|
|
11033
11309
|
nezDo?: Date | null;
|
|
11034
11310
|
poznam?: string | null;
|
|
11035
11311
|
ulice?: string | null;
|
|
11036
|
-
cisDomu?: string | null;
|
|
11037
11312
|
psc?: string | null;
|
|
11038
11313
|
posta?: string | null;
|
|
11039
11314
|
mesto?: string | null;
|
|
11040
11315
|
uliceKon?: string | null;
|
|
11041
|
-
cisDomuKon?: string | null;
|
|
11042
11316
|
pscKon?: string | null;
|
|
11043
11317
|
postaKon?: string | null;
|
|
11044
11318
|
mestoKon?: string | null;
|
|
@@ -11047,7 +11321,6 @@ declare class AFOsoba extends AFEntity {
|
|
|
11047
11321
|
mobil?: string | null;
|
|
11048
11322
|
telefon?: string | null;
|
|
11049
11323
|
uliceKonTuz?: string | null;
|
|
11050
|
-
cisDomuKonTuz?: string | null;
|
|
11051
11324
|
pscKonTuz?: string | null;
|
|
11052
11325
|
postaKonTuz?: string | null;
|
|
11053
11326
|
mestoKonTuz?: string | null;
|
|
@@ -11055,6 +11328,7 @@ declare class AFOsoba extends AFEntity {
|
|
|
11055
11328
|
podpisProhl?: boolean | null;
|
|
11056
11329
|
danNerezid?: boolean | null;
|
|
11057
11330
|
zdrPojDoplat?: boolean | null;
|
|
11331
|
+
zdrPojDoplatVzdy?: boolean | null;
|
|
11058
11332
|
zdrPojDoplatRozdel?: boolean | null;
|
|
11059
11333
|
cisPojist?: string | null;
|
|
11060
11334
|
prukazZTP?: boolean | null;
|
|
@@ -11065,14 +11339,10 @@ declare class AFOsoba extends AFEntity {
|
|
|
11065
11339
|
minuleZdrav?: Big | null;
|
|
11066
11340
|
invalCast?: boolean | null;
|
|
11067
11341
|
invalPlna?: boolean | null;
|
|
11068
|
-
invalOd?: Date | null;
|
|
11069
11342
|
student?: boolean | null;
|
|
11070
11343
|
slevaPoplat?: boolean | null;
|
|
11071
11344
|
odpocetDeti?: number | null;
|
|
11072
11345
|
odpocetDeti3?: number | null;
|
|
11073
|
-
odpocetDetiZtp?: number | null;
|
|
11074
|
-
odpocetDite1Ztp?: boolean | null;
|
|
11075
|
-
odpocetDite2Ztp?: boolean | null;
|
|
11076
11346
|
snizVymZaklZp?: boolean | null;
|
|
11077
11347
|
password?: string | null;
|
|
11078
11348
|
predNemPoj?: string | null;
|
|
@@ -11081,14 +11351,49 @@ declare class AFOsoba extends AFEntity {
|
|
|
11081
11351
|
cisUcastDuchSpor?: string | null;
|
|
11082
11352
|
slevaSpPracDuchodce?: boolean | null;
|
|
11083
11353
|
cizPojNazev?: string | null;
|
|
11084
|
-
cizPojSpec?: string | null;
|
|
11085
11354
|
cizPojUlice?: string | null;
|
|
11086
|
-
cizPojCisDomu?: string | null;
|
|
11087
11355
|
cizPojMesto?: string | null;
|
|
11088
11356
|
cizPojPsc?: string | null;
|
|
11089
11357
|
cizPojCislo?: string | null;
|
|
11090
11358
|
pocetPriloh?: number | null;
|
|
11091
11359
|
stitky?: string | null;
|
|
11360
|
+
oic?: string | null;
|
|
11361
|
+
cizVcp?: string | null;
|
|
11362
|
+
cizTypDanIdentifK?: MzdTypDanIdentifOsoba | null;
|
|
11363
|
+
cizTaxIdRez?: string | null;
|
|
11364
|
+
cizTypDokladuK?: MzdTypDokladuCiz | null;
|
|
11365
|
+
cizCisDoklTotoznosti?: string | null;
|
|
11366
|
+
cizDoklTotoznostiVydal?: string | null;
|
|
11367
|
+
cisPopisne?: string | null;
|
|
11368
|
+
cisOrientacni?: string | null;
|
|
11369
|
+
cisPopisneKon?: string | null;
|
|
11370
|
+
cisOrientacniKon?: string | null;
|
|
11371
|
+
cisPopisneKonTuz?: string | null;
|
|
11372
|
+
cisOrientacniKonTuz?: string | null;
|
|
11373
|
+
cizPojPopisneCis?: string | null;
|
|
11374
|
+
cizPojOrientacniCis?: string | null;
|
|
11375
|
+
kodRuian?: string | null;
|
|
11376
|
+
kodRuianKon?: string | null;
|
|
11377
|
+
kodRuianKonTuz?: string | null;
|
|
11378
|
+
zdravOmezeniDo?: Date | null;
|
|
11379
|
+
typZdravOmezeniK?: MzdTypZdravOmezeni | null;
|
|
11380
|
+
nejvyssiVzdelaniK?: MzdKatDosazVzdelani | null;
|
|
11381
|
+
cizPojSpecK?: MzdCizNositelPojisteni | null;
|
|
11382
|
+
volnyPristupTrhPrace?: boolean | null;
|
|
11383
|
+
cizVolnyPristupTrhPraceDuvodK?: MzdCizVolnyTrhPrace | null;
|
|
11384
|
+
cizDruhPracOpravneniK?: MzdCizDruhPracOpravneni | null;
|
|
11385
|
+
pracOpravneniVydalK?: MzdPobockaUP | null;
|
|
11386
|
+
idPracOpravneni?: string | null;
|
|
11387
|
+
pracOpravneniOd?: Date | null;
|
|
11388
|
+
pracOpravneniDo?: Date | null;
|
|
11389
|
+
ciziPravniPredpisy?: boolean | null;
|
|
11390
|
+
snizDuchVek?: boolean | null;
|
|
11391
|
+
duchVekOd?: Date | null;
|
|
11392
|
+
duchodMimoCssz?: boolean | null;
|
|
11393
|
+
duchodJinyNositelPojisteniOd?: Date | null;
|
|
11394
|
+
detiVyzivujeJinaOsoba?: boolean | null;
|
|
11395
|
+
hesloVyplneno?: boolean | null;
|
|
11396
|
+
nepobiraDuchodVPlneVysi?: boolean | null;
|
|
11092
11397
|
osobaHlav?: AFOsobaHlavicka | null;
|
|
11093
11398
|
skupOsob?: AFSkupinaOsob | null;
|
|
11094
11399
|
nadzizeny?: AFOsobaHlavicka | null;
|
|
@@ -11102,20 +11407,51 @@ declare class AFOsoba extends AFEntity {
|
|
|
11102
11407
|
cizPojStat?: AFStat | null;
|
|
11103
11408
|
tdDobirka?: AFTypZavazku | null;
|
|
11104
11409
|
tdZaloha?: AFTypZavazku | null;
|
|
11105
|
-
diteOdpoc1?:
|
|
11106
|
-
diteOdpoc2?:
|
|
11410
|
+
diteOdpoc1?: AFOsobaBlizkaHlav | null;
|
|
11411
|
+
diteOdpoc2?: AFOsobaBlizkaHlav | null;
|
|
11412
|
+
osobaVyzivDeti?: AFOsobaBlizkaHlav | null;
|
|
11413
|
+
statRezidentstvi?: AFStat | null;
|
|
11414
|
+
statVydalDoklTotoznosti?: AFStat | null;
|
|
11415
|
+
statCiziPravniPredpisy?: AFStat | null;
|
|
11107
11416
|
prilohy?: AFPriloha[];
|
|
11108
11417
|
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
11109
11418
|
get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
|
|
11110
11419
|
static propAnnotations: Record<string, TypeAnnotation>;
|
|
11111
11420
|
}
|
|
11112
11421
|
//#endregion
|
|
11422
|
+
//#region src/generated/entities/AFDite.d.ts
|
|
11423
|
+
declare class AFDite extends AFEntity {
|
|
11424
|
+
static EntityPath: string;
|
|
11425
|
+
static EntityName: string;
|
|
11426
|
+
static EntityType: string;
|
|
11427
|
+
lastUpdate?: Date | null;
|
|
11428
|
+
prijmeni?: string | null;
|
|
11429
|
+
jmeno?: string | null;
|
|
11430
|
+
datNaroz?: Date | null;
|
|
11431
|
+
pohlaviK?: Pohlavi | null;
|
|
11432
|
+
rodCis?: string | null;
|
|
11433
|
+
ztp_P?: boolean | null;
|
|
11434
|
+
ztp_POd?: Date | null;
|
|
11435
|
+
ztp_PDo?: Date | null;
|
|
11436
|
+
poznam?: string | null;
|
|
11437
|
+
dite?: boolean | null;
|
|
11438
|
+
student?: boolean | null;
|
|
11439
|
+
platiOd?: Date | null;
|
|
11440
|
+
platiDo?: Date | null;
|
|
11441
|
+
stitky?: string | null;
|
|
11442
|
+
osoba?: AFOsobaHlavicka | null;
|
|
11443
|
+
vztah?: AFVztah | null;
|
|
11444
|
+
osobaBlizkaHlav?: AFOsobaBlizkaHlav | null;
|
|
11445
|
+
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
11446
|
+
get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
|
|
11447
|
+
static propAnnotations: Record<string, TypeAnnotation>;
|
|
11448
|
+
}
|
|
11449
|
+
//#endregion
|
|
11113
11450
|
//#region src/generated/entities/AFOsobaBlizka.d.ts
|
|
11114
11451
|
declare class AFOsobaBlizka extends AFEntity {
|
|
11115
11452
|
static EntityPath: string;
|
|
11116
11453
|
static EntityName: string;
|
|
11117
11454
|
static EntityType: string;
|
|
11118
|
-
id?: number | null;
|
|
11119
11455
|
lastUpdate?: Date | null;
|
|
11120
11456
|
prijmeni?: string | null;
|
|
11121
11457
|
jmeno?: string | null;
|
|
@@ -11127,9 +11463,13 @@ declare class AFOsobaBlizka extends AFEntity {
|
|
|
11127
11463
|
ztp_PDo?: Date | null;
|
|
11128
11464
|
poznam?: string | null;
|
|
11129
11465
|
dite?: boolean | null;
|
|
11466
|
+
student?: boolean | null;
|
|
11467
|
+
platiOd?: Date | null;
|
|
11468
|
+
platiDo?: Date | null;
|
|
11130
11469
|
stitky?: string | null;
|
|
11131
11470
|
osoba?: AFOsobaHlavicka | null;
|
|
11132
11471
|
vztah?: AFVztah | null;
|
|
11472
|
+
osobaBlizkaHlav?: AFOsobaBlizkaHlav | null;
|
|
11133
11473
|
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
11134
11474
|
get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
|
|
11135
11475
|
static propAnnotations: Record<string, TypeAnnotation>;
|
|
@@ -11140,7 +11480,6 @@ declare class AFCiselnikMzdovychSlozek extends AFEntity {
|
|
|
11140
11480
|
static EntityPath: string;
|
|
11141
11481
|
static EntityName: string;
|
|
11142
11482
|
static EntityType: string;
|
|
11143
|
-
id?: number | null;
|
|
11144
11483
|
lastUpdate?: Date | null;
|
|
11145
11484
|
kod?: string | null;
|
|
11146
11485
|
nazev?: string | null;
|
|
@@ -11208,7 +11547,6 @@ declare class AFPracovniPomerHlavicka extends AFEntity {
|
|
|
11208
11547
|
static EntityPath: string;
|
|
11209
11548
|
static EntityName: string;
|
|
11210
11549
|
static EntityType: string;
|
|
11211
|
-
id?: number | null;
|
|
11212
11550
|
lastUpdate?: Date | null;
|
|
11213
11551
|
aktivniOd?: Date | null;
|
|
11214
11552
|
aktivniDo?: Date | null;
|
|
@@ -11220,6 +11558,7 @@ declare class AFPracovniPomerHlavicka extends AFEntity {
|
|
|
11220
11558
|
konecPomeru?: Date | null;
|
|
11221
11559
|
konecZkusDoby?: Date | null;
|
|
11222
11560
|
konecUrciteDoby?: Date | null;
|
|
11561
|
+
idPpv?: string | null;
|
|
11223
11562
|
osoba?: AFOsobaHlavicka | null;
|
|
11224
11563
|
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
11225
11564
|
get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
|
|
@@ -11231,7 +11570,6 @@ declare class AFNepritomnost extends AFEntity {
|
|
|
11231
11570
|
static EntityPath: string;
|
|
11232
11571
|
static EntityName: string;
|
|
11233
11572
|
static EntityType: string;
|
|
11234
|
-
id?: number | null;
|
|
11235
11573
|
lastUpdate?: Date | null;
|
|
11236
11574
|
platiOd?: Date | null;
|
|
11237
11575
|
platiDo?: Date | null;
|
|
@@ -11261,7 +11599,6 @@ declare class AFMzdyBankovniSpojeni extends AFEntity {
|
|
|
11261
11599
|
static EntityPath: string;
|
|
11262
11600
|
static EntityName: string;
|
|
11263
11601
|
static EntityType: string;
|
|
11264
|
-
id?: number | null;
|
|
11265
11602
|
lastUpdate?: Date | null;
|
|
11266
11603
|
ulice?: string | null;
|
|
11267
11604
|
mesto?: string | null;
|
|
@@ -11291,7 +11628,6 @@ declare class AFSrazka extends AFEntity {
|
|
|
11291
11628
|
static EntityPath: string;
|
|
11292
11629
|
static EntityName: string;
|
|
11293
11630
|
static EntityType: string;
|
|
11294
|
-
id?: number | null;
|
|
11295
11631
|
lastUpdate?: Date | null;
|
|
11296
11632
|
prednostni?: boolean | null;
|
|
11297
11633
|
poradi?: number | null;
|
|
@@ -11326,7 +11662,6 @@ declare class AFTypPracovnihoPomeru extends AFEntity {
|
|
|
11326
11662
|
static EntityPath: string;
|
|
11327
11663
|
static EntityName: string;
|
|
11328
11664
|
static EntityType: string;
|
|
11329
|
-
id?: number | null;
|
|
11330
11665
|
lastUpdate?: Date | null;
|
|
11331
11666
|
kod?: string | null;
|
|
11332
11667
|
nazev?: string | null;
|
|
@@ -11347,7 +11682,6 @@ declare class AFPracovniPomer extends AFEntity {
|
|
|
11347
11682
|
static EntityPath: string;
|
|
11348
11683
|
static EntityName: string;
|
|
11349
11684
|
static EntityType: string;
|
|
11350
|
-
id?: number | null;
|
|
11351
11685
|
lastUpdate?: Date | null;
|
|
11352
11686
|
platiOd?: Date | null;
|
|
11353
11687
|
platiDo?: Date | null;
|
|
@@ -11389,6 +11723,7 @@ declare class AFPracovniPomer extends AFEntity {
|
|
|
11389
11723
|
dovoleneRocne?: Big | null;
|
|
11390
11724
|
dovoleneRocneHod?: Big | null;
|
|
11391
11725
|
tydenPracDobaK?: TydenPracDoba | null;
|
|
11726
|
+
fondSta?: Big | null;
|
|
11392
11727
|
uvazPo?: boolean | null;
|
|
11393
11728
|
uvazUt?: boolean | null;
|
|
11394
11729
|
uvazSt?: boolean | null;
|
|
@@ -11402,6 +11737,29 @@ declare class AFPracovniPomer extends AFEntity {
|
|
|
11402
11737
|
duvodUkonceniCsszK?: CsszDuvodUkonceni | null;
|
|
11403
11738
|
duvodNeposkytnutiCsszK?: CsszDuvodNeposkytnuti | null;
|
|
11404
11739
|
stitky?: string | null;
|
|
11740
|
+
ukoncenoSmrti?: boolean | null;
|
|
11741
|
+
zamNenastoupil?: boolean | null;
|
|
11742
|
+
cizDuvodPredcasUkonceniK?: MzdDuvodPredcasKonceZam | null;
|
|
11743
|
+
idPpv?: string | null;
|
|
11744
|
+
pracovniRezimK?: MzdPracRezim | null;
|
|
11745
|
+
nepretrzityProvoz?: boolean | null;
|
|
11746
|
+
praceProbihaK?: MzdPrubehPrace | null;
|
|
11747
|
+
mistoVykPracePredpokl?: string | null;
|
|
11748
|
+
mistoVykPracePracSmlouva?: string | null;
|
|
11749
|
+
mistoVykPracePracSmlouvaObec?: string | null;
|
|
11750
|
+
mistoVykPraceObecPracSmlouvaKod?: string | null;
|
|
11751
|
+
mistoVykPraceObec?: string | null;
|
|
11752
|
+
mistoVykPraceObecKod?: string | null;
|
|
11753
|
+
prispevekApz?: boolean | null;
|
|
11754
|
+
nastrojApzK?: MzdNastrojAPZ | null;
|
|
11755
|
+
profeseKod?: string | null;
|
|
11756
|
+
poziceNazev?: string | null;
|
|
11757
|
+
vedouciPozice?: boolean | null;
|
|
11758
|
+
blizsiUrceniPpvK?: MzdyBlizsiUrceniPPV | null;
|
|
11759
|
+
profeseMinVzdelaniK?: MzdKatDosazVzdelani | null;
|
|
11760
|
+
postaveniVZamestnani?: string | null;
|
|
11761
|
+
dppOvocnarstvi?: boolean | null;
|
|
11762
|
+
rizikPrace3sk?: boolean | null;
|
|
11405
11763
|
pracPomHlav?: AFPracovniPomerHlavicka | null;
|
|
11406
11764
|
osoba?: AFOsobaHlavicka | null;
|
|
11407
11765
|
typPracPom?: AFTypPracovnihoPomeru | null;
|
|
@@ -11419,6 +11777,7 @@ declare class AFPracovniPomer extends AFEntity {
|
|
|
11419
11777
|
tuoZavZdrFir?: AFPredpisZauctovani | null;
|
|
11420
11778
|
tuoZavDan?: AFPredpisZauctovani | null;
|
|
11421
11779
|
tdSrazkaStrav?: AFTypDokladu | null;
|
|
11780
|
+
statMistoVykPrace?: AFStat | null;
|
|
11422
11781
|
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
11423
11782
|
get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
|
|
11424
11783
|
static propAnnotations: Record<string, TypeAnnotation>;
|
|
@@ -11429,7 +11788,6 @@ declare class AFStalaMzdovaSlozka extends AFEntity {
|
|
|
11429
11788
|
static EntityPath: string;
|
|
11430
11789
|
static EntityName: string;
|
|
11431
11790
|
static EntityType: string;
|
|
11432
|
-
id?: number | null;
|
|
11433
11791
|
lastUpdate?: Date | null;
|
|
11434
11792
|
kod?: string | null;
|
|
11435
11793
|
nazev?: string | null;
|
|
@@ -11473,7 +11831,6 @@ declare class AFMzdovaSlozka extends AFEntity {
|
|
|
11473
11831
|
static EntityPath: string;
|
|
11474
11832
|
static EntityName: string;
|
|
11475
11833
|
static EntityType: string;
|
|
11476
|
-
id?: number | null;
|
|
11477
11834
|
lastUpdate?: Date | null;
|
|
11478
11835
|
cisRad?: number | null;
|
|
11479
11836
|
kod?: string | null;
|
|
@@ -11527,7 +11884,6 @@ declare class AFSmena extends AFEntity {
|
|
|
11527
11884
|
static EntityPath: string;
|
|
11528
11885
|
static EntityName: string;
|
|
11529
11886
|
static EntityType: string;
|
|
11530
|
-
id?: number | null;
|
|
11531
11887
|
lastUpdate?: Date | null;
|
|
11532
11888
|
rok?: number | null;
|
|
11533
11889
|
mesic?: number | null;
|
|
@@ -11546,7 +11902,6 @@ declare class AFPrace extends AFEntity {
|
|
|
11546
11902
|
static EntityPath: string;
|
|
11547
11903
|
static EntityName: string;
|
|
11548
11904
|
static EntityType: string;
|
|
11549
|
-
id?: number | null;
|
|
11550
11905
|
lastUpdate?: Date | null;
|
|
11551
11906
|
datumOd?: Date | null;
|
|
11552
11907
|
datumDo?: Date | null;
|
|
@@ -11567,7 +11922,6 @@ declare class AFPraceMesic extends AFEntity {
|
|
|
11567
11922
|
static EntityPath: string;
|
|
11568
11923
|
static EntityName: string;
|
|
11569
11924
|
static EntityType: string;
|
|
11570
|
-
id?: number | null;
|
|
11571
11925
|
lastUpdate?: Date | null;
|
|
11572
11926
|
rok?: number | null;
|
|
11573
11927
|
mesic?: number | null;
|
|
@@ -11710,11 +12064,14 @@ declare class AFPrehledZamestnancu extends AFEntity {
|
|
|
11710
12064
|
}
|
|
11711
12065
|
//#endregion
|
|
11712
12066
|
//#region src/generated/entities/AFZavazekPolozka.d.ts
|
|
12067
|
+
declare enum AFZavazekPolozkaAction {
|
|
12068
|
+
Storno = "storno",
|
|
12069
|
+
}
|
|
11713
12070
|
declare class AFZavazekPolozka extends AFEntity {
|
|
11714
12071
|
static EntityPath: string;
|
|
11715
12072
|
static EntityName: string;
|
|
11716
12073
|
static EntityType: string;
|
|
11717
|
-
|
|
12074
|
+
static Actions: typeof AFZavazekPolozkaAction;
|
|
11718
12075
|
lastUpdate?: Date | null;
|
|
11719
12076
|
updatedBy?: AFUzivatel | null;
|
|
11720
12077
|
createdBy?: AFUzivatel | null;
|
|
@@ -11809,11 +12166,15 @@ declare class AFZavazekPolozka extends AFEntity {
|
|
|
11809
12166
|
}
|
|
11810
12167
|
//#endregion
|
|
11811
12168
|
//#region src/generated/entities/AFZavazek.d.ts
|
|
12169
|
+
declare enum AFZavazekAction {
|
|
12170
|
+
Storno = "storno",
|
|
12171
|
+
UhradZapoctem = "uhrad-zapoctem",
|
|
12172
|
+
}
|
|
11812
12173
|
declare class AFZavazek extends AFEntity {
|
|
11813
12174
|
static EntityPath: string;
|
|
11814
12175
|
static EntityName: string;
|
|
11815
12176
|
static EntityType: string;
|
|
11816
|
-
|
|
12177
|
+
static Actions: typeof AFZavazekAction;
|
|
11817
12178
|
lastUpdate?: Date | null;
|
|
11818
12179
|
updatedBy?: AFUzivatel | null;
|
|
11819
12180
|
createdBy?: AFUzivatel | null;
|
|
@@ -11974,7 +12335,6 @@ declare class AFFiltr extends AFEntity {
|
|
|
11974
12335
|
static EntityPath: string;
|
|
11975
12336
|
static EntityName: string;
|
|
11976
12337
|
static EntityType: string;
|
|
11977
|
-
id?: number | null;
|
|
11978
12338
|
lastUpdate?: Date | null;
|
|
11979
12339
|
kod?: string | null;
|
|
11980
12340
|
nazev?: string | null;
|
|
@@ -11996,7 +12356,6 @@ declare class AFParametr extends AFEntity {
|
|
|
11996
12356
|
static EntityPath: string;
|
|
11997
12357
|
static EntityName: string;
|
|
11998
12358
|
static EntityType: string;
|
|
11999
|
-
id?: number | null;
|
|
12000
12359
|
lastUpdate?: Date | null;
|
|
12001
12360
|
paramK?: any | null;
|
|
12002
12361
|
hodnota?: string | null;
|
|
@@ -12020,7 +12379,6 @@ declare class AFUzivatelskyDotazParametr extends AFEntity {
|
|
|
12020
12379
|
static EntityPath: string;
|
|
12021
12380
|
static EntityName: string;
|
|
12022
12381
|
static EntityType: string;
|
|
12023
|
-
id?: number | null;
|
|
12024
12382
|
lastUpdate?: Date | null;
|
|
12025
12383
|
kod?: string | null;
|
|
12026
12384
|
nazev?: string | null;
|
|
@@ -12046,7 +12404,6 @@ declare class AFUzivatelskyDotazVlastnost extends AFEntity {
|
|
|
12046
12404
|
static EntityPath: string;
|
|
12047
12405
|
static EntityName: string;
|
|
12048
12406
|
static EntityType: string;
|
|
12049
|
-
id?: number | null;
|
|
12050
12407
|
lastUpdate?: Date | null;
|
|
12051
12408
|
kod?: string | null;
|
|
12052
12409
|
nazev?: string | null;
|
|
@@ -12073,7 +12430,6 @@ declare class AFUzivatelskyDotaz extends AFEntity {
|
|
|
12073
12430
|
static EntityPath: string;
|
|
12074
12431
|
static EntityName: string;
|
|
12075
12432
|
static EntityType: string;
|
|
12076
|
-
id?: number | null;
|
|
12077
12433
|
lastUpdate?: Date | null;
|
|
12078
12434
|
kod?: string | null;
|
|
12079
12435
|
nazev?: string | null;
|
|
@@ -12101,7 +12457,6 @@ declare class AFCustomButton extends AFEntity {
|
|
|
12101
12457
|
static EntityPath: string;
|
|
12102
12458
|
static EntityName: string;
|
|
12103
12459
|
static EntityType: string;
|
|
12104
|
-
id?: number | null;
|
|
12105
12460
|
kod?: string | null;
|
|
12106
12461
|
url?: string | null;
|
|
12107
12462
|
title?: string | null;
|
|
@@ -12119,7 +12474,6 @@ declare class AFSettingStore extends AFEntity {
|
|
|
12119
12474
|
static EntityPath: string;
|
|
12120
12475
|
static EntityName: string;
|
|
12121
12476
|
static EntityType: string;
|
|
12122
|
-
id?: number | null;
|
|
12123
12477
|
klic?: string | null;
|
|
12124
12478
|
hodnota?: string | null;
|
|
12125
12479
|
uzivatelId?: number | null;
|
|
@@ -12131,7 +12485,6 @@ declare class AFGlobalStore extends AFEntity {
|
|
|
12131
12485
|
static EntityPath: string;
|
|
12132
12486
|
static EntityName: string;
|
|
12133
12487
|
static EntityType: string;
|
|
12134
|
-
id?: number | null;
|
|
12135
12488
|
klic?: string | null;
|
|
12136
12489
|
hodnota?: string | null;
|
|
12137
12490
|
static propAnnotations: Record<string, TypeAnnotation>;
|
|
@@ -12142,7 +12495,6 @@ declare class AFDashboardPanel extends AFEntity {
|
|
|
12142
12495
|
static EntityPath: string;
|
|
12143
12496
|
static EntityName: string;
|
|
12144
12497
|
static EntityType: string;
|
|
12145
|
-
id?: number | null;
|
|
12146
12498
|
lastUpdate?: Date | null;
|
|
12147
12499
|
kod?: string | null;
|
|
12148
12500
|
nazev?: string | null;
|
|
@@ -12168,7 +12520,6 @@ declare class AFDashboardSharing extends AFEntity {
|
|
|
12168
12520
|
static EntityPath: string;
|
|
12169
12521
|
static EntityName: string;
|
|
12170
12522
|
static EntityType: string;
|
|
12171
|
-
id?: number | null;
|
|
12172
12523
|
hidden?: boolean | null;
|
|
12173
12524
|
priority?: number | null;
|
|
12174
12525
|
user?: AFUzivatel | null;
|
|
@@ -12183,7 +12534,6 @@ declare class AFInsight extends AFEntity {
|
|
|
12183
12534
|
static EntityPath: string;
|
|
12184
12535
|
static EntityName: string;
|
|
12185
12536
|
static EntityType: string;
|
|
12186
|
-
id?: number | null;
|
|
12187
12537
|
lastUpdate?: Date | null;
|
|
12188
12538
|
kod?: string | null;
|
|
12189
12539
|
nazev?: string | null;
|
|
@@ -12201,12 +12551,73 @@ declare class AFInsight extends AFEntity {
|
|
|
12201
12551
|
static propAnnotations: Record<string, TypeAnnotation>;
|
|
12202
12552
|
}
|
|
12203
12553
|
//#endregion
|
|
12554
|
+
//#region src/generated/entities/AFIntegrace.d.ts
|
|
12555
|
+
declare class AFIntegrace extends AFEntity {
|
|
12556
|
+
static EntityPath: string;
|
|
12557
|
+
static EntityName: string;
|
|
12558
|
+
static EntityType: string;
|
|
12559
|
+
nazev?: string | null;
|
|
12560
|
+
kod?: string | null;
|
|
12561
|
+
registerUrl?: string | null;
|
|
12562
|
+
authTokenPart?: string | null;
|
|
12563
|
+
orgId?: string | null;
|
|
12564
|
+
instanceId?: string | null;
|
|
12565
|
+
addonStoreId?: number | null;
|
|
12566
|
+
statusK?: StatusIntegrace | null;
|
|
12567
|
+
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
12568
|
+
get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
|
|
12569
|
+
static propAnnotations: Record<string, TypeAnnotation>;
|
|
12570
|
+
}
|
|
12571
|
+
//#endregion
|
|
12572
|
+
//#region src/generated/entities/AFDoplnek.d.ts
|
|
12573
|
+
declare class AFDoplnek extends AFEntity {
|
|
12574
|
+
static EntityPath: string;
|
|
12575
|
+
static EntityName: string;
|
|
12576
|
+
static EntityType: string;
|
|
12577
|
+
kod?: string | null;
|
|
12578
|
+
nazev?: string | null;
|
|
12579
|
+
integratorAddonId?: string | null;
|
|
12580
|
+
statusK?: StatusDoplnku | null;
|
|
12581
|
+
version?: string | null;
|
|
12582
|
+
price?: Big | null;
|
|
12583
|
+
priceUrl?: string | null;
|
|
12584
|
+
activateUrl?: string | null;
|
|
12585
|
+
configUrl?: string | null;
|
|
12586
|
+
pauseUrl?: string | null;
|
|
12587
|
+
unpauseUrl?: string | null;
|
|
12588
|
+
statusUrl?: string | null;
|
|
12589
|
+
deactivateUrl?: string | null;
|
|
12590
|
+
cenikKodFakturace?: string | null;
|
|
12591
|
+
addonStoreId?: number | null;
|
|
12592
|
+
createdDate?: Date | null;
|
|
12593
|
+
integrace?: AFIntegrace | null;
|
|
12594
|
+
apiUser?: AFUzivatel | null;
|
|
12595
|
+
updatedBy?: AFUzivatel | null;
|
|
12596
|
+
createdBy?: AFUzivatel | null;
|
|
12597
|
+
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
12598
|
+
get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
|
|
12599
|
+
static propAnnotations: Record<string, TypeAnnotation>;
|
|
12600
|
+
}
|
|
12601
|
+
//#endregion
|
|
12602
|
+
//#region src/generated/entities/AFObjektDoplnku.d.ts
|
|
12603
|
+
declare class AFObjektDoplnku extends AFEntity {
|
|
12604
|
+
static EntityPath: string;
|
|
12605
|
+
static EntityName: string;
|
|
12606
|
+
static EntityType: string;
|
|
12607
|
+
objektId?: number | null;
|
|
12608
|
+
beanResourceKey?: string | null;
|
|
12609
|
+
isOwner?: boolean | null;
|
|
12610
|
+
doplnek?: AFDoplnek | null;
|
|
12611
|
+
'uzivatelske-vazby'?: AFUzivatelskaVazba[];
|
|
12612
|
+
get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
|
|
12613
|
+
static propAnnotations: Record<string, TypeAnnotation>;
|
|
12614
|
+
}
|
|
12615
|
+
//#endregion
|
|
12204
12616
|
//#region src/generated/entities/AFXslt.d.ts
|
|
12205
12617
|
declare class AFXslt extends AFEntity {
|
|
12206
12618
|
static EntityPath: string;
|
|
12207
12619
|
static EntityName: string;
|
|
12208
12620
|
static EntityType: string;
|
|
12209
|
-
id?: number | null;
|
|
12210
12621
|
lastUpdate?: Date | null;
|
|
12211
12622
|
kod?: string | null;
|
|
12212
12623
|
nazev?: string | null;
|
|
@@ -12226,7 +12637,6 @@ declare class AFObrat extends AFEntity {
|
|
|
12226
12637
|
static EntityPath: string;
|
|
12227
12638
|
static EntityName: string;
|
|
12228
12639
|
static EntityType: string;
|
|
12229
|
-
id?: number | null;
|
|
12230
12640
|
lastUpdate?: Date | null;
|
|
12231
12641
|
obdobi?: number | null;
|
|
12232
12642
|
rok?: number | null;
|
|
@@ -12471,6 +12881,7 @@ declare class AFPodkladyDph extends AFEntity {
|
|
|
12471
12881
|
rokDuzp?: number | null;
|
|
12472
12882
|
typUcOp?: AFPredpisZauctovani | null;
|
|
12473
12883
|
dic?: string | null;
|
|
12884
|
+
cisDosle?: string | null;
|
|
12474
12885
|
vypRozdilDphMen?: Big | null;
|
|
12475
12886
|
vypRozdilDphTuz?: Big | null;
|
|
12476
12887
|
vypSumDphMen?: Big | null;
|
|
@@ -12558,6 +12969,7 @@ declare class AFAnalyzaZakazky extends AFEntity {
|
|
|
12558
12969
|
modul?: string | null;
|
|
12559
12970
|
nazFirmy?: string | null;
|
|
12560
12971
|
dic?: string | null;
|
|
12972
|
+
cisDosle?: string | null;
|
|
12561
12973
|
popis?: string | null;
|
|
12562
12974
|
protiUcet?: AFUcet | null;
|
|
12563
12975
|
statDph?: AFStatDph | null;
|
|
@@ -12608,6 +13020,7 @@ declare class AFPohybNaUctech extends AFEntity {
|
|
|
12608
13020
|
modul?: string | null;
|
|
12609
13021
|
nazFirmy?: string | null;
|
|
12610
13022
|
dic?: string | null;
|
|
13023
|
+
cisDosle?: string | null;
|
|
12611
13024
|
popis?: string | null;
|
|
12612
13025
|
protiUcet?: AFUcet | null;
|
|
12613
13026
|
statDph?: AFStatDph | null;
|
|
@@ -12694,7 +13107,6 @@ declare class AFSestava extends AFEntity {
|
|
|
12694
13107
|
static EntityPath: string;
|
|
12695
13108
|
static EntityName: string;
|
|
12696
13109
|
static EntityType: string;
|
|
12697
|
-
id?: number | null;
|
|
12698
13110
|
lastUpdate?: Date | null;
|
|
12699
13111
|
kod?: string | null;
|
|
12700
13112
|
nazev?: string | null;
|
|
@@ -12774,7 +13186,6 @@ declare class AFStandardniPredpis extends AFEntity {
|
|
|
12774
13186
|
static EntityPath: string;
|
|
12775
13187
|
static EntityName: string;
|
|
12776
13188
|
static EntityType: string;
|
|
12777
|
-
id?: number | null;
|
|
12778
13189
|
lastUpdate?: Date | null;
|
|
12779
13190
|
druhUctuK?: DruhUctu | null;
|
|
12780
13191
|
cisSloup?: number | null;
|
|
@@ -12793,7 +13204,6 @@ declare class AFSumaceSestavy extends AFEntity {
|
|
|
12793
13204
|
static EntityPath: string;
|
|
12794
13205
|
static EntityName: string;
|
|
12795
13206
|
static EntityType: string;
|
|
12796
|
-
id?: number | null;
|
|
12797
13207
|
lastUpdate?: Date | null;
|
|
12798
13208
|
prevratZnam?: boolean | null;
|
|
12799
13209
|
radek?: AFRadekSestavy | null;
|
|
@@ -12808,7 +13218,6 @@ declare class AFRadekSestavy extends AFEntity {
|
|
|
12808
13218
|
static EntityPath: string;
|
|
12809
13219
|
static EntityName: string;
|
|
12810
13220
|
static EntityType: string;
|
|
12811
|
-
id?: number | null;
|
|
12812
13221
|
lastUpdate?: Date | null;
|
|
12813
13222
|
cisRad?: number | null;
|
|
12814
13223
|
kodRad?: string | null;
|
|
@@ -12926,6 +13335,7 @@ declare class AFSaldo extends AFEntity {
|
|
|
12926
13335
|
modul?: string | null;
|
|
12927
13336
|
nazFirmy?: string | null;
|
|
12928
13337
|
dic?: string | null;
|
|
13338
|
+
cisDosle?: string | null;
|
|
12929
13339
|
popis?: string | null;
|
|
12930
13340
|
protiUcet?: AFUcet | null;
|
|
12931
13341
|
statDph?: AFStatDph | null;
|
|
@@ -13817,7 +14227,6 @@ declare class AFSubjekt extends AFEntity {
|
|
|
13817
14227
|
static EntityPath: string;
|
|
13818
14228
|
static EntityName: string;
|
|
13819
14229
|
static EntityType: string;
|
|
13820
|
-
id?: number | null;
|
|
13821
14230
|
platiOd?: Date | null;
|
|
13822
14231
|
platiDo?: Date | null;
|
|
13823
14232
|
typVztahuK?: GdprTypVztahu | null;
|
|
@@ -13835,7 +14244,6 @@ declare class AFRadekPriznaniDph extends AFEntity {
|
|
|
13835
14244
|
static EntityPath: string;
|
|
13836
14245
|
static EntityName: string;
|
|
13837
14246
|
static EntityType: string;
|
|
13838
|
-
id?: number | null;
|
|
13839
14247
|
lastUpdate?: Date | null;
|
|
13840
14248
|
rok?: number | null;
|
|
13841
14249
|
mesic?: number | null;
|
|
@@ -13858,7 +14266,6 @@ declare class AFUlozenePriznaniDph extends AFEntity {
|
|
|
13858
14266
|
static EntityPath: string;
|
|
13859
14267
|
static EntityName: string;
|
|
13860
14268
|
static EntityType: string;
|
|
13861
|
-
id?: number | null;
|
|
13862
14269
|
lastUpdate?: Date | null;
|
|
13863
14270
|
rok?: number | null;
|
|
13864
14271
|
mesic?: number | null;
|
|
@@ -13877,7 +14284,6 @@ declare class AFUlozenePriznaniKonVykDph extends AFEntity {
|
|
|
13877
14284
|
static EntityPath: string;
|
|
13878
14285
|
static EntityName: string;
|
|
13879
14286
|
static EntityType: string;
|
|
13880
|
-
id?: number | null;
|
|
13881
14287
|
lastUpdate?: Date | null;
|
|
13882
14288
|
rok?: number | null;
|
|
13883
14289
|
mesic?: number | null;
|
|
@@ -13897,7 +14303,6 @@ declare class AFZurnal extends AFEntity {
|
|
|
13897
14303
|
static EntityPath: string;
|
|
13898
14304
|
static EntityName: string;
|
|
13899
14305
|
static EntityType: string;
|
|
13900
|
-
id?: number | null;
|
|
13901
14306
|
tabulka?: string | null;
|
|
13902
14307
|
idZaznamu?: number | null;
|
|
13903
14308
|
sloupec?: string | null;
|
|
@@ -13918,5 +14323,5 @@ declare function extractServer(inUrl: string): string;
|
|
|
13918
14323
|
declare function extractCompany(inUrl: string): string;
|
|
13919
14324
|
declare function extractEvidence(inUrl: string): string;
|
|
13920
14325
|
//#endregion
|
|
13921
|
-
export { AFAdresar, AFAdresarBankovniUcet, AFAnalyzaNakupu, AFAnalyzaProdeje, AFAnalyzaZakazky, AFApiClient, type AFApiConfig, AFApiSession, AFAtribut, AFAutotisk, AFBanka, AFBankaPolozka, AFBankovniUcet, AFBankovniUcetPokladna, AFBankovniUcetSkladPokladna, AFCastkyKOdpoctu, AFCenik, AFCenikObal, AFCenikTypSazbyDph, AFCenikovaSkupina, AFCenikovyPohybNakup, AFCenikovyPohybProdej, AFCenovaUroven, AFCertifikacniAutorita, AFCertifikat, AFCertifikatFinbricks, AFCinnost, AFCiselnikMzdovychSlozek, AFCisloBaliku, AFCleneniDph, AFCleneniKontrolniHlaseni, type AFCompany, AFCustomButton, AFDanovyNaklad, AFDanovyOdpis, AFDashboardPanel, AFDashboardSharing, AFDefStore, AFDite, AFDodavatel, AFDodavatelskaSmlouva, AFDodavatelskyTypSmlouvy, AFDoklad, AFDokladKUhrade, AFDoporuceni, AFEntity, AFError, AFErrorCode, AFFakturaPrijata, AFFakturaPrijataPolozka, AFFakturaVydana, AFFakturaVydanaPolozka, AFFilter, AFFiltr, AFFormaDopravy, AFFormaUhrady, AFFormaUhradyZauctovani, AFFormatElektronickehoBankovnictvi, AFFormatElektronickehoPrikazu, AFGlobalStore, AFHlavniKniha, AFHodnoceniZakazky, AFIndividualniCenik, AFInsight, AFInterniDoklad, AFInterniDokladPolozka, AFIntrastatDodaciPodminky, AFIntrastatDruhDopravy, AFIntrastatKodNomenklatury, AFIntrastatKrajUrceni, AFIntrastatKurz, AFIntrastatMernaJednotka, AFIntrastatObchodniTransakce, AFIntrastatZvlastniPohyb, AFInventura, AFInventuraPolozka, AFKonstSymbol, AFKontakt, AFKontrolniHlaseniDph, AFKurz, AFKurzProCenotvorbu, AFKurzProPreceneni, AFKusovnik, AFLeasing, AFMajetek, AFMajetekUdalost, AFMapovaniSkladu, AFMena, AFMernaJednotka, AFMistoUrceni, AFMzda, AFMzdovaSlozka, AFMzdyBankovniSpojeni, AFNabidkaPrijata, AFNabidkaPrijataPolozka, AFNabidkaVydana, AFNabidkaVydanaPolozka, AFNaklad, AFNastaveni, AFNepritomnost, type AFNestedDetail, AFNeuhrazenePoSplatnosti, AFNeuhrazenePoSplatnosti2, AFObjednavkaPrijata, AFObjednavkaPrijataPolozka, AFObjednavkaVydana, AFObjednavkaVydanaPolozka, AFObrat, AFObratPolozky, AFObratovaPredvaha, AFOdberatel, AFOdpisovaSkupina, AFOsoba, AFOsobaBlizka, AFOsobaHlavicka, AFParametr, AFPenezniUstav, AFPoSplatnosti, AFPodkladyDph, AFPodobneZbozi, AFPohledavka, AFPohledavkaPolozka, AFPohybNaUctech, AFPokladna, AFPokladniPohyb, AFPokladniPohybPolozka, AFPoplatek, AFPoptavkaPrijata, AFPoptavkaPrijataPolozka, AFPoptavkaVydana, AFPoptavkaVydanaPolozka, type AFPopulateOptions, AFPrace, AFPraceMesic, AFPracovniPomer, AFPracovniPomerHlavicka, AFPravoViditelnosti, AFPredpisZauctovani, AFPrehledZamestnancu, AFPreneseniDph, AFPricteniRozdilu, AFPrikazKInkasu, AFPrikazKInkasuPolozka, AFPrikazKUhrade, AFPrikazKUhradePolozka, AFPriloha, AFPrislustenstvi, AFProdejka, AFProdejkaPlatba, AFPsc, AFQueryDetail, type AFQueryOptions, AFRada, AFRadaBanka, AFRadaFakturyPrijate, AFRadaFakturyVydane, AFRadaInternihoDokladu, AFRadaNabidkyPrijate, AFRadaNabidkyVydane, AFRadaObjednavkyPrijate, AFRadaObjednavkyVydane, AFRadaPohledavky, AFRadaPokladniPohyb, AFRadaPoptavkyPrijate, AFRadaPoptavkyVydane, AFRadaSkladovyPohyb, AFRadaUplatneniDaneZavazku, AFRadaZavazku, AFRadekPriznaniDph, AFRadekSestavy, AFRegion, AFReport, AFRezervace, AFRocniRada, AFRole, AFRozvahaPoUctech, AFSablonaMail, AFSablonaUpominky, AFSadyAKomplety, AFSaldo, AFSaldoKDatu, AFSarzeExpirace, AFSazbaDph, type AFSessionConfig, AFSessionStatus, AFSestava, AFSettingStore, AFSklad, AFSkladovaKarta, AFSkladovyPohyb, AFSkladovyPohybPolozka, AFSkupinaAtributu, AFSkupinaFirem, AFSkupinaOsob, AFSkupinaPlneni, AFSkupinaStitku, AFSkupinaZbozi, AFSmena, AFSmlouva, AFSmlouvaPolozka, AFSmlouvaZurnal, AFSouhrnneHlaseniDph, AFSplatkovyKalendar, AFSrazka, AFStalaMzdovaSlozka, AFStandardniPredpis, AFStat, AFStatDph, AFStavCeniku, AFStavObchodnihoDokladu, AFStavSkladuKDatu, AFStavSmlouvy, AFStavUctu, AFStavZakazky, AFStitek, AFStredisko, AFStrom, AFStromCenik, AFStromKoren, AFSubjekt, AFSumaceSestavy, AFText, AFTypAktivity, AFTypAtributu, AFTypBanka, AFTypDokladu, AFTypFakturyPrijate, AFTypFakturyVydane, AFTypInternihoDokladu, AFTypLeasingu, AFTypMajetku, AFTypNabidkyPrijate, AFTypNabidkyVydane, AFTypNakladu, AFTypObjednavkyPrijate, AFTypObjednavkyVydane, AFTypOrganizace, AFTypPohledavky, AFTypPokladniPohyb, AFTypPoptavkyPrijate, AFTypPoptavkyVydane, AFTypPracovnihoPomeru, AFTypProdejky, AFTypSkladovyPohyb, AFTypSmlouvy, AFTypStavuCeniku, AFTypUplatneniDaneZavazku, AFTypUzivatelskeVazby, AFTypVzajemnychZapoctu, AFTypZakazky, AFTypZavazku, type AFURelOptions, type AFURelResult, AFUcet, AFUcetniDenik, AFUcetniDenikZjednoduseny, AFUcetniObdobi, AFUcetniOdpis, AFUcetniOsnova, AFUdalost, AFUlozenePriznaniDph, AFUlozenePriznaniKonVykDph, AFUmisteni, AFUmisteniUctu, AFUmisteniVeSkladu, AFUmisteniVeSkladuMistnost, AFUmisteniVeSkladuPolice, AFUmisteniVeSkladuRegal, AFUplatneniDaneZavazku, AFUplatneniDaneZavazkuPolozka, AFUzivatel, AFUzivatelskaVazba, AFUzivatelskyDotaz, AFUzivatelskyDotazParametr, AFUzivatelskyDotazVlastnost, AFVazba, AFVazebniDoklad, AFVykazHospodareni, AFVyrobniCislo, AFVysledovkaPoUctech, AFVzajemnyZapocet, AFVztah, AFXslt, AFZakazka, AFZalohaKOdpoctu,
|
|
14326
|
+
export { AFAdresar, AFAdresarBankovniUcet, AFAnalyzaNakupu, AFAnalyzaProdeje, AFAnalyzaZakazky, AFApiClient, type AFApiConfig, AFApiSession, AFAtribut, AFAutotisk, AFBanka, AFBankaAction, AFBankaPolozka, AFBankaPolozkaAction, AFBankovniUcet, AFBankovniUcetPokladna, AFBankovniUcetSkladPokladna, AFCastkyKOdpoctu, AFCenik, AFCenikObal, AFCenikTypSazbyDph, AFCenikovaSkupina, AFCenikovyPohybNakup, AFCenikovyPohybProdej, AFCenovaUroven, AFCertifikacniAutorita, AFCertifikat, AFCertifikatFinbricks, AFCinnost, AFCiselnikMzdovychSlozek, AFCisloBaliku, AFCleneniDph, AFCleneniKontrolniHlaseni, type AFCompany, AFCustomButton, AFDanovyNaklad, AFDanovyOdpis, AFDashboardPanel, AFDashboardSharing, AFDefStore, AFDefiniceSekvence, AFDite, AFDodavatel, AFDodavatelskaSmlouva, AFDodavatelskaSmlouvaAction, AFDodavatelskyTypSmlouvy, AFDoklad, AFDokladKUhrade, AFDokladKUhradeAction, AFDoplnek, AFDoporuceni, AFEntity, AFError, AFErrorCode, AFFakturaPrijata, AFFakturaPrijataAction, AFFakturaPrijataPolozka, AFFakturaPrijataPolozkaAction, AFFakturaVydana, AFFakturaVydanaAction, AFFakturaVydanaPolozka, AFFakturaVydanaPolozkaAction, type AFFileResult, AFFilter, AFFiltr, AFFormaDopravy, AFFormaUhrady, AFFormaUhradyZauctovani, AFFormatElektronickehoBankovnictvi, AFFormatElektronickehoPrikazu, AFGlobalStore, AFHlavniKniha, AFHodnoceniZakazky, AFIndividualniCenik, AFInsight, AFIntegrace, AFInterniDoklad, AFInterniDokladAction, AFInterniDokladPolozka, AFInterniDokladPolozkaAction, AFIntrastatDodaciPodminky, AFIntrastatDruhDopravy, AFIntrastatKodNomenklatury, AFIntrastatKrajUrceni, AFIntrastatKurz, AFIntrastatMernaJednotka, AFIntrastatObchodniTransakce, AFIntrastatZvlastniPohyb, AFInventura, AFInventuraPolozka, AFKonstSymbol, AFKontakt, AFKontrolniHlaseniDph, AFKurz, AFKurzProCenotvorbu, AFKurzProPreceneni, AFKusovnik, AFKusovnikAction, AFLeasing, AFMajetek, AFMajetekUdalost, AFMapovaniSkladu, AFMena, AFMernaJednotka, AFMistoUrceni, AFMzda, AFMzdovaSlozka, AFMzdyBankovniSpojeni, AFNabidkaPrijata, AFNabidkaPrijataAction, AFNabidkaPrijataPolozka, AFNabidkaPrijataPolozkaAction, AFNabidkaVydana, AFNabidkaVydanaAction, AFNabidkaVydanaPolozka, AFNabidkaVydanaPolozkaAction, AFNaklad, AFNastaveni, AFNepritomnost, type AFNestedDetail, AFNeuhrazenePoSplatnosti, AFNeuhrazenePoSplatnosti2, AFObjednavkaPrijata, AFObjednavkaPrijataAction, AFObjednavkaPrijataPolozka, AFObjednavkaPrijataPolozkaAction, AFObjednavkaVydana, AFObjednavkaVydanaAction, AFObjednavkaVydanaPolozka, AFObjednavkaVydanaPolozkaAction, AFObjektDoplnku, AFObrat, AFObratPolozky, AFObratovaPredvaha, AFOdberatel, AFOdpisovaSkupina, AFOsoba, AFOsobaBlizka, AFOsobaBlizkaHlav, AFOsobaHlavicka, AFParametr, AFPenezniUstav, AFPoSplatnosti, AFPodkladyDph, AFPodobneZbozi, AFPohledavka, AFPohledavkaAction, AFPohledavkaPolozka, AFPohledavkaPolozkaAction, AFPohybNaUctech, AFPokladna, AFPokladniPohyb, AFPokladniPohybAction, AFPokladniPohybPolozka, AFPokladniPohybPolozkaAction, AFPoplatek, AFPoptavkaPrijata, AFPoptavkaPrijataAction, AFPoptavkaPrijataPolozka, AFPoptavkaPrijataPolozkaAction, AFPoptavkaVydana, AFPoptavkaVydanaAction, AFPoptavkaVydanaPolozka, AFPoptavkaVydanaPolozkaAction, type AFPopulateOptions, AFPrace, AFPraceMesic, AFPracovniPomer, AFPracovniPomerHlavicka, AFPravoViditelnosti, AFPredpisZauctovani, AFPrehledZamestnancu, AFPreneseniDph, AFPricteniRozdilu, AFPrikazKInkasu, AFPrikazKInkasuPolozka, AFPrikazKUhrade, AFPrikazKUhradePolozka, AFPriloha, AFPrislustenstvi, AFPristupovePravo, AFProdejka, AFProdejkaAction, AFProdejkaPlatba, AFPsc, AFQueryDetail, type AFQueryFileOptions, type AFQueryOptions, type AFQueryReportsOptions, AFRada, AFRadaBanka, AFRadaFakturyPrijate, AFRadaFakturyVydane, AFRadaInternihoDokladu, AFRadaNabidkyPrijate, AFRadaNabidkyVydane, AFRadaObjednavkyPrijate, AFRadaObjednavkyVydane, AFRadaPohledavky, AFRadaPokladniPohyb, AFRadaPoptavkyPrijate, AFRadaPoptavkyVydane, AFRadaSkladovyPohyb, AFRadaUplatneniDaneZavazku, AFRadaZavazku, AFRadekPriznaniDph, AFRadekSestavy, AFRegion, AFReport, type AFReportInfo, type AFReportLanguage, type AFResponseFormat, AFRezervace, AFRocniRada, AFRole, AFRozvahaPoUctech, AFSablonaMail, AFSablonaUpominky, AFSadyAKomplety, AFSaldo, AFSaldoKDatu, AFSarzeExpirace, AFSazbaDph, type AFSessionConfig, AFSessionStatus, AFSestava, AFSettingStore, AFSklad, AFSkladovaKarta, AFSkladovyPohyb, AFSkladovyPohybAction, AFSkladovyPohybPolozka, AFSkladovyPohybPolozkaAction, AFSkupinaAtributu, AFSkupinaFirem, AFSkupinaOsob, AFSkupinaPlneni, AFSkupinaStitku, AFSkupinaZbozi, AFSmena, AFSmlouva, AFSmlouvaAction, AFSmlouvaPolozka, AFSmlouvaZurnal, AFSouhrnneHlaseniDph, AFSplatkovyKalendar, AFSrazka, AFStalaMzdovaSlozka, AFStandardniPredpis, AFStat, AFStatDph, AFStavCeniku, AFStavObchodnihoDokladu, AFStavSkladuKDatu, AFStavSmlouvy, AFStavUctu, AFStavZakazky, AFStitek, AFStredisko, AFStrom, AFStromCenik, AFStromKoren, AFSubjekt, AFSumaceSestavy, AFText, AFTypAktivity, AFTypAtributu, AFTypBanka, AFTypDokladu, AFTypFakturyPrijate, AFTypFakturyVydane, AFTypInternihoDokladu, AFTypLeasingu, AFTypMajetku, AFTypNabidkyPrijate, AFTypNabidkyVydane, AFTypNakladu, AFTypObjednavkyPrijate, AFTypObjednavkyVydane, AFTypOrganizace, AFTypPohledavky, AFTypPokladniPohyb, AFTypPoptavkyPrijate, AFTypPoptavkyVydane, AFTypPracovnihoPomeru, AFTypProdejky, AFTypSkladovyPohyb, AFTypSmlouvy, AFTypStavuCeniku, AFTypUplatneniDaneZavazku, AFTypUzivatelskeVazby, AFTypVzajemnychZapoctu, AFTypZakazky, AFTypZavazku, type AFURelOptions, type AFURelResult, AFUcet, AFUcetniDenik, AFUcetniDenikZjednoduseny, AFUcetniObdobi, AFUcetniOdpis, AFUcetniOsnova, AFUdalost, AFUlozenePriznaniDph, AFUlozenePriznaniKonVykDph, AFUmisteni, AFUmisteniUctu, AFUmisteniVeSkladu, AFUmisteniVeSkladuMistnost, AFUmisteniVeSkladuPolice, AFUmisteniVeSkladuRegal, AFUplatneniDaneZavazku, AFUplatneniDaneZavazkuAction, AFUplatneniDaneZavazkuPolozka, AFUplatneniDaneZavazkuPolozkaAction, AFUzivatel, AFUzivatelskaVazba, AFUzivatelskyDotaz, AFUzivatelskyDotazParametr, AFUzivatelskyDotazVlastnost, AFVazba, AFVazebniDoklad, AFVykazHospodareni, AFVyrobniCislo, AFVysledovkaPoUctech, AFVzajemnyZapocet, AFVzajemnyZapocetAction, AFVztah, AFXslt, AFZakazka, AFZalohaKOdpoctu, AFZapujcka, AFZavazek, AFZavazekAction, AFZavazekPolozka, AFZavazekPolozkaAction, AFZurnal, AutoSendMailMod, BarvaMaterialu, CODE, ClenSpl, CsszDuvodNeposkytnuti, CsszDuvodOsetrovne, CsszDuvodOtcovske, CsszDuvodPrevzeti, CsszDuvodUkonceni, CsszRodVztahKod, CsszVztahKod, DashboardPanelVisibility, DatazTypParam, DefinitionType, DenniKurz, DoporuceniCil, DruhLeas, DruhMaj, DruhStavuZakazky, DruhUctu, DruhUdal, DuvodSlevaSpFirma, EXT, EetStav, EetTyp, Ekokom, ElPrikazPoplatek, ElPrikazStav, ElVypisDuplicita, EntityByName, FapDatProDuzpUctoK, Filter, FormExport, FormaDopravy, FormaUhr, FrDanNakl, GdprTypVztahu, ID, IsdocPrilohaMailu, JakUhrazeno, JakyTypDokl, Jazyk, KodPlneni, LitterObal, LogoPozice, Material, MetodaZaokr, MjHmot, MjZaruky, ModulUcetni, MzdCizDruhPracOpravneni, MzdCizNositelPojisteni, MzdCizVolnyTrhPrace, MzdDuvodPredcasKonceZam, MzdFormaKontroly, MzdKatDosazVzdelani, MzdKolSmlouva, MzdNastrojAPZ, MzdPobockaUP, MzdPracRezim, MzdPrubehPrace, MzdTypDanIdentifOsoba, MzdTypDokladuCiz, MzdTypZdravOmezeni, MzdyBlizsiUrceniPPV, NO_LIMIT, type NO_LIMIT_T, NahrUcet, NormalMj, Objednat, OmezPrenDanPov, OperaceZurnalSmlouvy, PlneniOdprDoby, Pohlavi, PracRozvrh, PredvybranyPocet, PrepocetCen, Priorita, PristupovePravoFeatureK, RazeniProTisk, RezimRezervaci, RocniKurz, RodStav, SkupinaSlozky, StatusDoplnku, StatusIntegrace, StavDoklObch, StavInventury, StavMail, StavOdp, StavPriznaniDph, StavPriznaniKonVykDph, StavSklad, StavUdal, StavUhr, StavUziv, type StitkyCacheStrategy, Surovina, TydenPracDoba, TypAtribut, TypBanUctu, TypCeny, TypCenyVychozi, TypDokladu, TypMj, TypMzdy, TypObalu, TypObchodu, TypOdp, TypPlneni, TypPohybu, TypPohybuSklad, TypPolozky, TypPoplatku, TypPouziti, TypPrav, TypPrilohy, TypPristPrav, TypSablony, TypSestavy, TypSlozky, TypSpl, TypSzbDph, TypUcJednotky, TypUctu, TypUdal, TypUmisteniSklad, TypVazbyDokl, TypVypCeny, TypVypSestavy, TypVzniku, TypVztahu, TypVztahuOsoba, TypZak, TypZasoby, UcelCertK, VyznamSlozky, Zamek, ZaokrJak, ZaokrNa, ZastupceTyp, ZobrLogo, ZobrazWebKompMod, ZpusobFakt, ZpusobOdp, ZpusobPlatby, ZpusobStahKurz, ZpusobVypo, ZvysZrych, extractCompany, extractEvidence, extractServer };
|
|
13922
14327
|
//# sourceMappingURL=index.d.mts.map
|