sigo-entities 1.2.259 → 1.2.260
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/.ai_context.md +50 -0
- package/build.log +0 -0
- package/dist/index.d.mts +520 -1
- package/dist/index.d.ts +520 -1
- package/dist/index.js +9073 -6374
- package/dist/index.mjs +7348 -4712
- package/package.json +1 -1
package/.ai_context.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# Contexto del Proyecto
|
|
2
|
+
|
|
3
|
+
**Nombre:** Ingeniero Brayan Valero
|
|
4
|
+
**Preferencias de idioma:** Español (Indispensable)
|
|
5
|
+
**Formato de Planes y Tareas:** Siempre en Español
|
|
6
|
+
**Contexto del proyecto:** Librería transversal para entidades compartidas (Front y Back)
|
|
7
|
+
**Nombre del Asistente:** Latas
|
|
8
|
+
|
|
9
|
+
**Tipo de Proyecto:** Shared Library
|
|
10
|
+
**Ubicación Raíz:** `d:\16_SIGO_ENTITYS\sigo-entities`
|
|
11
|
+
|
|
12
|
+
Este archivo contiene la visión general del proyecto `sigo-entities`.
|
|
13
|
+
|
|
14
|
+
## Descripción
|
|
15
|
+
`sigo-entities` es la librería donde se alojan las entidades compartidas por front y back. En ambos hay un archivo de contexto llamado `.ai_context.md`, donde almacenamos la configuración del proyecto, estructura del mismo y contexto de workflows para tareas futuras.
|
|
16
|
+
|
|
17
|
+
## Normas Generales
|
|
18
|
+
1. **Archivos de Contexto**: Mantener actualizados los `.ai_context.md` locales.
|
|
19
|
+
2. **Git Ignore**: Asegurarse de que `**/.ai_context.md` esté ignorado.
|
|
20
|
+
3. **sigo-entities**: Librería transversal para tipos compartidos.
|
|
21
|
+
|
|
22
|
+
## Guía de Desarrollo de Entidades y DTOs
|
|
23
|
+
|
|
24
|
+
### Estructura de Carpetas
|
|
25
|
+
- **DTOs compartidos**: `src/programados/procesos/[Entidad]/shared`
|
|
26
|
+
- **Request DTOs**: `src/programados/procesos/[Entidad]/shared/requestDto`
|
|
27
|
+
|
|
28
|
+
### Convenciones de Nombres
|
|
29
|
+
- **Archivos**: `kebab-case` con sufijo `-dto.ts` (ej. `job-macro-request-dto.ts`).
|
|
30
|
+
- **Clases**: `PascalCase` con sufijo `DTO` (ej. `JobMacroRequestDTO`).
|
|
31
|
+
|
|
32
|
+
### Reglas de Implementación
|
|
33
|
+
1. **Librerías**: Usar `class-transformer` (@Expose, @Type) y `class-validator` (IsString, IsNumber, etc.).
|
|
34
|
+
2. **Mensajes de Validación**: Deben ser en español (ej. "debe ser un texto", "es requerido").
|
|
35
|
+
3. **Inicialización**: Todas las propiedades deben tener valor inicial (ej. `string = ''`, `number = 0`).
|
|
36
|
+
4. **Exposición**: Decorar todas las propiedades con `@Expose()`.
|
|
37
|
+
|
|
38
|
+
## Proceso de Despliegue (sigo-entities)
|
|
39
|
+
|
|
40
|
+
1. **Validación**: Confirmar que la nueva entidad o DTO es correcto y cumple con las normas (preguntar al usuario).
|
|
41
|
+
- *Aprendizaje*: No incluir campos como `UsuarioEdicion` si el backend puede obtenerlos del token. Los DTOs de actualización deben ser lo más minimalistas posible (ID, nuevos valores, observaciones).
|
|
42
|
+
2. **Sincronización Inicial**: Bajar cambios (`git pull`) y subir cambios de la nueva entidad (`git push`).
|
|
43
|
+
3. **Versionamiento**: Incrementar la versión en el `package.json` (ej: `1.2.205` -> `1.2.206`).
|
|
44
|
+
4. **Sincronización de Versión**: Bajar y subir cambios nuevamente para asegurar la versión en el repositorio.
|
|
45
|
+
5. **Publicación**: Ejecutar `npm publish`.
|
|
46
|
+
6. **Actualización en Servicios**:
|
|
47
|
+
- Posicionarse en el servicio (Back/Front) objetivo mediante el comando `cd`.
|
|
48
|
+
- Ejecutar `npm i sigo-entities@latest`.
|
|
49
|
+
- Verificar importaciones.
|
|
50
|
+
- *Aprendizaje*: Los DTOs de procesos deben exportarse desde el `index.ts` principal de la entidad (ej. `obra/index.ts`) y no solo desde el `shared/index.ts`.
|
package/build.log
ADDED
|
Binary file
|
package/dist/index.d.mts
CHANGED
|
@@ -5233,6 +5233,525 @@ declare class ConsumosP117ENTITY {
|
|
|
5233
5233
|
Observaciones: string;
|
|
5234
5234
|
}
|
|
5235
5235
|
|
|
5236
|
+
declare class AprobacionDto {
|
|
5237
|
+
Nivel: number;
|
|
5238
|
+
}
|
|
5239
|
+
|
|
5240
|
+
declare class AcceptedDto {
|
|
5241
|
+
IdDate: number;
|
|
5242
|
+
Date: string;
|
|
5243
|
+
}
|
|
5244
|
+
|
|
5245
|
+
declare class AlbaranDto {
|
|
5246
|
+
IdDate: number;
|
|
5247
|
+
Date: string;
|
|
5248
|
+
}
|
|
5249
|
+
|
|
5250
|
+
declare class ClosedDto {
|
|
5251
|
+
IdDate: number;
|
|
5252
|
+
Date: string;
|
|
5253
|
+
}
|
|
5254
|
+
|
|
5255
|
+
declare class EmisionDto {
|
|
5256
|
+
IdDate: number;
|
|
5257
|
+
Date: string;
|
|
5258
|
+
}
|
|
5259
|
+
|
|
5260
|
+
declare class FacturaDto {
|
|
5261
|
+
IdDate: number;
|
|
5262
|
+
Date: string;
|
|
5263
|
+
}
|
|
5264
|
+
|
|
5265
|
+
declare class OrdenDto {
|
|
5266
|
+
IdDate: number;
|
|
5267
|
+
Date: string;
|
|
5268
|
+
}
|
|
5269
|
+
|
|
5270
|
+
declare class PreAcceptedDto {
|
|
5271
|
+
IdDate: number;
|
|
5272
|
+
Date: string;
|
|
5273
|
+
}
|
|
5274
|
+
|
|
5275
|
+
declare class RegistryDto {
|
|
5276
|
+
IdDate: number;
|
|
5277
|
+
Date: string;
|
|
5278
|
+
}
|
|
5279
|
+
|
|
5280
|
+
declare class UpdateDto {
|
|
5281
|
+
IdDate: number;
|
|
5282
|
+
Date: string;
|
|
5283
|
+
}
|
|
5284
|
+
|
|
5285
|
+
declare class DateDto {
|
|
5286
|
+
Registry: RegistryDto;
|
|
5287
|
+
Update: UpdateDto;
|
|
5288
|
+
Closed: ClosedDto;
|
|
5289
|
+
PreAccepted: PreAcceptedDto;
|
|
5290
|
+
Accepted: AcceptedDto;
|
|
5291
|
+
Albaran: AlbaranDto;
|
|
5292
|
+
Factura: FacturaDto;
|
|
5293
|
+
Orden: OrdenDto;
|
|
5294
|
+
Emision: EmisionDto;
|
|
5295
|
+
}
|
|
5296
|
+
|
|
5297
|
+
declare class UserDto {
|
|
5298
|
+
Registry: RegistryDto;
|
|
5299
|
+
Update: UpdateDto;
|
|
5300
|
+
Closed: ClosedDto;
|
|
5301
|
+
PreAccepted: PreAcceptedDto;
|
|
5302
|
+
Accepted: AcceptedDto;
|
|
5303
|
+
Albaran: AlbaranDto;
|
|
5304
|
+
Factura: FacturaDto;
|
|
5305
|
+
Orden: OrdenDto;
|
|
5306
|
+
Emision: EmisionDto;
|
|
5307
|
+
}
|
|
5308
|
+
|
|
5309
|
+
declare class BitacoraDto {
|
|
5310
|
+
Action: string;
|
|
5311
|
+
Date: DateDto;
|
|
5312
|
+
User: UserDto;
|
|
5313
|
+
}
|
|
5314
|
+
|
|
5315
|
+
declare class CategoriaDto {
|
|
5316
|
+
Code: string;
|
|
5317
|
+
Description: string;
|
|
5318
|
+
}
|
|
5319
|
+
|
|
5320
|
+
declare class DatosEmpresaDto {
|
|
5321
|
+
CodEmpresa: string;
|
|
5322
|
+
CDEmpresa: string;
|
|
5323
|
+
Empresa: string;
|
|
5324
|
+
Grupo: string;
|
|
5325
|
+
}
|
|
5326
|
+
|
|
5327
|
+
declare class DatosNavDto {
|
|
5328
|
+
Orden: string;
|
|
5329
|
+
Albaran: string;
|
|
5330
|
+
Factura: string;
|
|
5331
|
+
}
|
|
5332
|
+
|
|
5333
|
+
declare class BankVendorDto {
|
|
5334
|
+
Codigo: string;
|
|
5335
|
+
Name: string;
|
|
5336
|
+
CuentaBancaria: string;
|
|
5337
|
+
CuentaInterBancaria: string;
|
|
5338
|
+
}
|
|
5339
|
+
|
|
5340
|
+
declare class FormaPagoDto {
|
|
5341
|
+
Codigo: string;
|
|
5342
|
+
Descripcion: string;
|
|
5343
|
+
}
|
|
5344
|
+
|
|
5345
|
+
declare class ImporteDto {
|
|
5346
|
+
Monto: number;
|
|
5347
|
+
IGV: number;
|
|
5348
|
+
MontoIVA: number;
|
|
5349
|
+
Total: number;
|
|
5350
|
+
VATProd: string;
|
|
5351
|
+
FactorCambio: number;
|
|
5352
|
+
DateFactorCambio: number;
|
|
5353
|
+
}
|
|
5354
|
+
|
|
5355
|
+
declare class MonedaDto {
|
|
5356
|
+
Codigo: string;
|
|
5357
|
+
Descripcion: string;
|
|
5358
|
+
}
|
|
5359
|
+
|
|
5360
|
+
declare class TerminoPagoDto {
|
|
5361
|
+
Codigo: string;
|
|
5362
|
+
Descripcion: string;
|
|
5363
|
+
}
|
|
5364
|
+
|
|
5365
|
+
declare class DatosPagoDto {
|
|
5366
|
+
FormaPago: FormaPagoDto;
|
|
5367
|
+
TerminoPago: TerminoPagoDto;
|
|
5368
|
+
FechaPosibleEntrega: string;
|
|
5369
|
+
CodicionesEntrega: string;
|
|
5370
|
+
Comentarios: string;
|
|
5371
|
+
BankVendor: BankVendorDto;
|
|
5372
|
+
Moneda: MonedaDto;
|
|
5373
|
+
Importe: ImporteDto;
|
|
5374
|
+
}
|
|
5375
|
+
|
|
5376
|
+
declare class DatosPaiDto {
|
|
5377
|
+
CDPais: string;
|
|
5378
|
+
Code: string;
|
|
5379
|
+
Name: string;
|
|
5380
|
+
}
|
|
5381
|
+
|
|
5382
|
+
declare class AlmacenDto {
|
|
5383
|
+
Codigo: string;
|
|
5384
|
+
Almacen: string;
|
|
5385
|
+
Direccion: string;
|
|
5386
|
+
}
|
|
5387
|
+
|
|
5388
|
+
declare class DelegacionDto {
|
|
5389
|
+
Codigo: string;
|
|
5390
|
+
Delegacion: string;
|
|
5391
|
+
FullDelegacion: string;
|
|
5392
|
+
}
|
|
5393
|
+
|
|
5394
|
+
declare class OtDto {
|
|
5395
|
+
Codigo: string;
|
|
5396
|
+
OT: string;
|
|
5397
|
+
FullOT: string;
|
|
5398
|
+
}
|
|
5399
|
+
|
|
5400
|
+
declare class DatosTrabajoDto {
|
|
5401
|
+
Delegacion: DelegacionDto;
|
|
5402
|
+
OT: OtDto;
|
|
5403
|
+
Code01: string;
|
|
5404
|
+
Code02: string;
|
|
5405
|
+
Almacen: AlmacenDto;
|
|
5406
|
+
}
|
|
5407
|
+
|
|
5408
|
+
declare class DetalleCotizacionDto {
|
|
5409
|
+
IdCotizacion: number;
|
|
5410
|
+
Descripcion: string;
|
|
5411
|
+
Name: string;
|
|
5412
|
+
}
|
|
5413
|
+
|
|
5414
|
+
declare class TipoItemDto {
|
|
5415
|
+
Key: string;
|
|
5416
|
+
Name: string;
|
|
5417
|
+
Procedencia: string;
|
|
5418
|
+
}
|
|
5419
|
+
|
|
5420
|
+
declare class DetalleDto {
|
|
5421
|
+
Activo: boolean;
|
|
5422
|
+
Mostrar: boolean;
|
|
5423
|
+
TipoItem: TipoItemDto;
|
|
5424
|
+
}
|
|
5425
|
+
|
|
5426
|
+
declare class FechaEntregaDto {
|
|
5427
|
+
IdDate: number;
|
|
5428
|
+
Formato: string;
|
|
5429
|
+
Date: string;
|
|
5430
|
+
}
|
|
5431
|
+
|
|
5432
|
+
declare class RecepcionDto {
|
|
5433
|
+
Almacen: string;
|
|
5434
|
+
Cantidad: number;
|
|
5435
|
+
}
|
|
5436
|
+
|
|
5437
|
+
declare class TipoFamiliaDto {
|
|
5438
|
+
Codigo: string;
|
|
5439
|
+
Descripcion: string;
|
|
5440
|
+
}
|
|
5441
|
+
|
|
5442
|
+
declare class TipoGranFamiliaDto {
|
|
5443
|
+
Codigo: string;
|
|
5444
|
+
Descripcion: string;
|
|
5445
|
+
}
|
|
5446
|
+
|
|
5447
|
+
declare class TipoProductoDto {
|
|
5448
|
+
Codigo: string;
|
|
5449
|
+
TipoProducto: string;
|
|
5450
|
+
}
|
|
5451
|
+
|
|
5452
|
+
declare class TipoSubFamiliaDto {
|
|
5453
|
+
Codigo: string;
|
|
5454
|
+
Descripcion: string;
|
|
5455
|
+
}
|
|
5456
|
+
|
|
5457
|
+
declare class TipoVarianteDto {
|
|
5458
|
+
Codigo: string;
|
|
5459
|
+
TipoVariante: string;
|
|
5460
|
+
}
|
|
5461
|
+
|
|
5462
|
+
declare class ProductoDto {
|
|
5463
|
+
CodigoProducto: string;
|
|
5464
|
+
Codigo: string;
|
|
5465
|
+
Producto: string;
|
|
5466
|
+
Detalle: DetalleDto;
|
|
5467
|
+
TipoProducto: TipoProductoDto;
|
|
5468
|
+
FechaEntrega: FechaEntregaDto;
|
|
5469
|
+
TipoVariante: TipoVarianteDto;
|
|
5470
|
+
TipoGranFamilia: TipoGranFamiliaDto;
|
|
5471
|
+
TipoFamilia: TipoFamiliaDto;
|
|
5472
|
+
TipoSubFamilia: TipoSubFamiliaDto;
|
|
5473
|
+
DescripcionADD: string;
|
|
5474
|
+
Observacion: string;
|
|
5475
|
+
Unidad: string;
|
|
5476
|
+
Cantidad: number;
|
|
5477
|
+
Precio: number;
|
|
5478
|
+
IGV: number;
|
|
5479
|
+
esFraccion: boolean;
|
|
5480
|
+
CantidadComparativo: number;
|
|
5481
|
+
VATProd: string;
|
|
5482
|
+
discountLine: number;
|
|
5483
|
+
Recibido: number;
|
|
5484
|
+
CantidadOriginal: number;
|
|
5485
|
+
CantidadDisponible: number;
|
|
5486
|
+
Recepcion: RecepcionDto[];
|
|
5487
|
+
}
|
|
5488
|
+
|
|
5489
|
+
declare class DatosJefeObraDto {
|
|
5490
|
+
TipoDocumento: string;
|
|
5491
|
+
Identificacion: string;
|
|
5492
|
+
ApellidoPaterno: string;
|
|
5493
|
+
ApellidoMaterno: string;
|
|
5494
|
+
Nombres: string;
|
|
5495
|
+
FullName: string;
|
|
5496
|
+
}
|
|
5497
|
+
|
|
5498
|
+
declare class DatosPersonalDto {
|
|
5499
|
+
}
|
|
5500
|
+
|
|
5501
|
+
declare class RequerimientoDto {
|
|
5502
|
+
Codigo: string;
|
|
5503
|
+
DatosPersonal: DatosPersonalDto;
|
|
5504
|
+
DatosJefeObra: DatosJefeObraDto;
|
|
5505
|
+
DatosEmpresa: DatosEmpresaDto;
|
|
5506
|
+
DatosTrabajo: DatosTrabajoDto;
|
|
5507
|
+
}
|
|
5508
|
+
|
|
5509
|
+
declare class DetalleProductoDto {
|
|
5510
|
+
Requerimiento: RequerimientoDto;
|
|
5511
|
+
Producto: ProductoDto;
|
|
5512
|
+
}
|
|
5513
|
+
|
|
5514
|
+
declare class TipoDocumentoDto {
|
|
5515
|
+
TipoDocumento: string;
|
|
5516
|
+
}
|
|
5517
|
+
|
|
5518
|
+
declare class EmpresaGanadoraDto {
|
|
5519
|
+
TipoDocumento: TipoDocumentoDto;
|
|
5520
|
+
NroDocumento: string;
|
|
5521
|
+
Empresa: string;
|
|
5522
|
+
VATBus: string;
|
|
5523
|
+
}
|
|
5524
|
+
|
|
5525
|
+
declare class EnviarNavDto {
|
|
5526
|
+
result: string;
|
|
5527
|
+
error: boolean;
|
|
5528
|
+
date: DateDto;
|
|
5529
|
+
}
|
|
5530
|
+
|
|
5531
|
+
declare class IconoDto {
|
|
5532
|
+
IdStatus: number;
|
|
5533
|
+
Status: string;
|
|
5534
|
+
}
|
|
5535
|
+
|
|
5536
|
+
declare class NavDto {
|
|
5537
|
+
IdStatus: number;
|
|
5538
|
+
Status: string;
|
|
5539
|
+
}
|
|
5540
|
+
|
|
5541
|
+
declare class ProcedenciaDto {
|
|
5542
|
+
CDEmpresa: string;
|
|
5543
|
+
Origen: string;
|
|
5544
|
+
Nav: number;
|
|
5545
|
+
}
|
|
5546
|
+
|
|
5547
|
+
declare class SolicitudDto {
|
|
5548
|
+
IdStatus: number;
|
|
5549
|
+
Status: string;
|
|
5550
|
+
}
|
|
5551
|
+
|
|
5552
|
+
declare class StatuDto {
|
|
5553
|
+
Nav: NavDto;
|
|
5554
|
+
Solicitud: SolicitudDto;
|
|
5555
|
+
Icono: IconoDto;
|
|
5556
|
+
Digitalizado: boolean;
|
|
5557
|
+
AsociarOrdenCompra: boolean;
|
|
5558
|
+
FactorCambio: boolean;
|
|
5559
|
+
PreOrden: boolean;
|
|
5560
|
+
Procedencia: ProcedenciaDto;
|
|
5561
|
+
}
|
|
5562
|
+
|
|
5563
|
+
declare class AnexoPreOrdenDto {
|
|
5564
|
+
Code: string;
|
|
5565
|
+
Name: string;
|
|
5566
|
+
FileName: string;
|
|
5567
|
+
Extension: string;
|
|
5568
|
+
LoadName: string;
|
|
5569
|
+
Status: StatuDto;
|
|
5570
|
+
Dates: DateDto;
|
|
5571
|
+
Users: UserDto;
|
|
5572
|
+
Bitacora: BitacoraDto[];
|
|
5573
|
+
}
|
|
5574
|
+
|
|
5575
|
+
declare class ComparativoDto {
|
|
5576
|
+
Code: string;
|
|
5577
|
+
Name: string;
|
|
5578
|
+
FileName: string;
|
|
5579
|
+
Extension: string;
|
|
5580
|
+
LoadName: string;
|
|
5581
|
+
Status: StatuDto;
|
|
5582
|
+
Dates: DateDto;
|
|
5583
|
+
Users: UserDto;
|
|
5584
|
+
Bitacora: BitacoraDto[];
|
|
5585
|
+
}
|
|
5586
|
+
|
|
5587
|
+
declare class CotizacionDto {
|
|
5588
|
+
Code: string;
|
|
5589
|
+
Name: string;
|
|
5590
|
+
FileName: string;
|
|
5591
|
+
Extension: string;
|
|
5592
|
+
LoadName: string;
|
|
5593
|
+
Status: StatuDto;
|
|
5594
|
+
Dates: DateDto;
|
|
5595
|
+
Users: UserDto;
|
|
5596
|
+
Bitacora: BitacoraDto[];
|
|
5597
|
+
}
|
|
5598
|
+
|
|
5599
|
+
declare class PedidoCompraDto {
|
|
5600
|
+
Code: string;
|
|
5601
|
+
Name: string;
|
|
5602
|
+
FileName: string;
|
|
5603
|
+
Extension: string;
|
|
5604
|
+
LoadName: string;
|
|
5605
|
+
Status: StatuDto;
|
|
5606
|
+
Dates: DateDto;
|
|
5607
|
+
Users: UserDto;
|
|
5608
|
+
Bitacora: BitacoraDto[];
|
|
5609
|
+
}
|
|
5610
|
+
|
|
5611
|
+
declare class FileDto {
|
|
5612
|
+
AnexoPreOrden: AnexoPreOrdenDto[];
|
|
5613
|
+
Comparativo: ComparativoDto[];
|
|
5614
|
+
Cotizacion: CotizacionDto[];
|
|
5615
|
+
PedidoCompra: PedidoCompraDto[];
|
|
5616
|
+
Albaran: AlbaranDto[];
|
|
5617
|
+
}
|
|
5618
|
+
|
|
5619
|
+
declare class FlujoDto {
|
|
5620
|
+
Code: string;
|
|
5621
|
+
Codigo: string;
|
|
5622
|
+
Name: string;
|
|
5623
|
+
Descripcion: string;
|
|
5624
|
+
Aprobacion: AprobacionDto[];
|
|
5625
|
+
}
|
|
5626
|
+
|
|
5627
|
+
declare class ContabilizadoDto {
|
|
5628
|
+
IdStatus: number;
|
|
5629
|
+
Status: string;
|
|
5630
|
+
}
|
|
5631
|
+
|
|
5632
|
+
declare class MovimientoDto {
|
|
5633
|
+
DatosTrabajo: DatosTrabajoDto;
|
|
5634
|
+
DatosEmpresa: DatosEmpresaDto;
|
|
5635
|
+
IdProducto: number;
|
|
5636
|
+
Codigo: string;
|
|
5637
|
+
Requerimiento: string;
|
|
5638
|
+
Producto: string;
|
|
5639
|
+
Detalle: DetalleDto;
|
|
5640
|
+
Cantidad: number;
|
|
5641
|
+
Unidad: string;
|
|
5642
|
+
TipoProducto: string;
|
|
5643
|
+
FechaEntrega: FechaEntregaDto;
|
|
5644
|
+
Precio: number;
|
|
5645
|
+
discountLine: number;
|
|
5646
|
+
SubTotal: number;
|
|
5647
|
+
IGV: number;
|
|
5648
|
+
ImporteIGV: number;
|
|
5649
|
+
Total: number;
|
|
5650
|
+
DescripcionADD: string;
|
|
5651
|
+
Observacion: string;
|
|
5652
|
+
VATProd: string;
|
|
5653
|
+
Recibido: number;
|
|
5654
|
+
Pendiente: number;
|
|
5655
|
+
RecibidoTemp: number;
|
|
5656
|
+
PendienteTemp: number;
|
|
5657
|
+
aRecibir: number;
|
|
5658
|
+
SubTotalRecepcion: number;
|
|
5659
|
+
aLiquidar: number;
|
|
5660
|
+
DetalleModelos: any[];
|
|
5661
|
+
}
|
|
5662
|
+
|
|
5663
|
+
declare class MovimientosRecepcionDto {
|
|
5664
|
+
Code: string;
|
|
5665
|
+
Serie: string;
|
|
5666
|
+
Documento: string;
|
|
5667
|
+
Almacen: AlmacenDto;
|
|
5668
|
+
Observacion: string;
|
|
5669
|
+
Movimiento: MovimientoDto[];
|
|
5670
|
+
Date: DateDto;
|
|
5671
|
+
User: UserDto;
|
|
5672
|
+
TieneWorkflow: boolean;
|
|
5673
|
+
Importe: number;
|
|
5674
|
+
Emitido: number;
|
|
5675
|
+
Pendiente: number;
|
|
5676
|
+
Solicitud: SolicitudDto;
|
|
5677
|
+
Contabilizado: ContabilizadoDto;
|
|
5678
|
+
}
|
|
5679
|
+
|
|
5680
|
+
declare class TipoCompraDto {
|
|
5681
|
+
Code: string;
|
|
5682
|
+
Description: string;
|
|
5683
|
+
}
|
|
5684
|
+
|
|
5685
|
+
declare class TipoOperacionDto {
|
|
5686
|
+
IdTipoOperacion: number;
|
|
5687
|
+
Code: string;
|
|
5688
|
+
Codigo: string;
|
|
5689
|
+
TipoOperacion: string;
|
|
5690
|
+
}
|
|
5691
|
+
|
|
5692
|
+
declare class NavisionpreordenEntity {
|
|
5693
|
+
ID_NavisionpreordenEntity: number;
|
|
5694
|
+
IdPreOrden: number;
|
|
5695
|
+
Codigo: string;
|
|
5696
|
+
DatosEmpresa: DatosEmpresaDto;
|
|
5697
|
+
DatosTrabajo: DatosTrabajoDto;
|
|
5698
|
+
DatosPais: DatosPaiDto;
|
|
5699
|
+
DetalleProductos: DetalleProductoDto[];
|
|
5700
|
+
DetalleCotizacion: DetalleCotizacionDto[];
|
|
5701
|
+
EmpresaGanadora: EmpresaGanadoraDto;
|
|
5702
|
+
DatosPago: DatosPagoDto;
|
|
5703
|
+
TipoOperacion: TipoOperacionDto;
|
|
5704
|
+
Categoria: CategoriaDto;
|
|
5705
|
+
Aprobacion: AprobacionDto;
|
|
5706
|
+
isSinRq: boolean;
|
|
5707
|
+
PDF: string;
|
|
5708
|
+
PDFComparativo: string;
|
|
5709
|
+
Status: StatuDto;
|
|
5710
|
+
Dates: DateDto;
|
|
5711
|
+
Users: UserDto;
|
|
5712
|
+
Bitacora: BitacoraDto[];
|
|
5713
|
+
TipoCompra: TipoCompraDto;
|
|
5714
|
+
Files: FileDto;
|
|
5715
|
+
PDFTipoPedido: any;
|
|
5716
|
+
Flujo: FlujoDto;
|
|
5717
|
+
isCompliance: boolean;
|
|
5718
|
+
DatosNav: DatosNavDto;
|
|
5719
|
+
enviarNav: EnviarNavDto;
|
|
5720
|
+
MovimientosRecepcion: MovimientosRecepcionDto[];
|
|
5721
|
+
isModelSIGO: boolean;
|
|
5722
|
+
}
|
|
5723
|
+
|
|
5724
|
+
declare class CrearNavisionpreordenEntityRequestDto {
|
|
5725
|
+
IdPreOrden: number;
|
|
5726
|
+
Codigo: string;
|
|
5727
|
+
DatosEmpresa: DatosEmpresaDto;
|
|
5728
|
+
DatosTrabajo: DatosTrabajoDto;
|
|
5729
|
+
DatosPais: DatosPaiDto;
|
|
5730
|
+
DetalleProductos: DetalleProductoDto[];
|
|
5731
|
+
DetalleCotizacion: DetalleCotizacionDto[];
|
|
5732
|
+
EmpresaGanadora: EmpresaGanadoraDto;
|
|
5733
|
+
DatosPago: DatosPagoDto;
|
|
5734
|
+
TipoOperacion: TipoOperacionDto;
|
|
5735
|
+
Categoria: CategoriaDto;
|
|
5736
|
+
Aprobacion: AprobacionDto;
|
|
5737
|
+
isSinRq: boolean;
|
|
5738
|
+
PDF: string;
|
|
5739
|
+
PDFComparativo: string;
|
|
5740
|
+
Status: StatuDto;
|
|
5741
|
+
Dates: DateDto;
|
|
5742
|
+
Users: UserDto;
|
|
5743
|
+
Bitacora: BitacoraDto[];
|
|
5744
|
+
TipoCompra: TipoCompraDto;
|
|
5745
|
+
Files: FileDto;
|
|
5746
|
+
PDFTipoPedido: any;
|
|
5747
|
+
Flujo: FlujoDto;
|
|
5748
|
+
isCompliance: boolean;
|
|
5749
|
+
DatosNav: DatosNavDto;
|
|
5750
|
+
enviarNav: EnviarNavDto;
|
|
5751
|
+
MovimientosRecepcion: MovimientosRecepcionDto[];
|
|
5752
|
+
isModelSIGO: boolean;
|
|
5753
|
+
}
|
|
5754
|
+
|
|
5236
5755
|
declare class OptionCatalogoDTO {
|
|
5237
5756
|
Code: string;
|
|
5238
5757
|
Key: string;
|
|
@@ -7763,4 +8282,4 @@ declare class DelegacionEntity extends BaseEntity {
|
|
|
7763
8282
|
nombre: string;
|
|
7764
8283
|
}
|
|
7765
8284
|
|
|
7766
|
-
export { ADM_RM_ZonasActividadENTITY, ActaFinalCubicacionDTO, ActaFinalCubicacionSharedDTO, ActividadZonasActividadDTO, ActividadesDTO, AddMOPContrataMODTO, AddressListENTITY, AgenciaDTO, AgenciaENTITY, AgenciasDTO, AjusteReprocesoDTO, AlmacenDTO, AlmacenENTITY, AlmacenExtraENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AnexosDetailMantenanceOrderDTO, AreaGOMDTO, AreaGOMDatosReferenciaDTO, AreaGOMENTITY, AreaGOMResumenDTO, AreaGOMSubGOMSDTO, AreaGomCentroCostosDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AsistenciaENTITY, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AttendanceDTO, AttendanceStatus, AutoInventarioENTITY, BaremoAlemaniaENTITY, BaremoProcessENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraDeOrdenesDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, BodyUpdateFasesDTO, BodyUpdateOne, CHILE_9512_PaquetizadoManoObraENTITY, CHILE_9512_PaquetizadoMaterialENTITY, CabeceraCubicacionColombiaDTO, CabeceraCubicajeAlemaniaDTO, CabeceraCubicajeChileDTO, CabeceraCubicajeDTO, CabeceraCubicajePeruDTO, CalculatePercentsDTO, CalculatePercentsPeruDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CargoPersonalENTITY, CausacionCubicacionColombiaDTO, CausacionCubicacionDTO, CausacionDTO, CentroCostosDTO, CentroCostosENTITY, CertificacionDTO, ChangeStateBaremosDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, ClienteWAOOENTITY, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreDto, CodigoNombreMinLengthDto, CodigoNombreUMDTO, CodigoRazonSocialDTO, CodigoTituloDTO, CondicionDTO, ConsumoMaterialAlemaniaENTITY, ConsumoMaterialENTITY, ConsumosMaterialDTO, ConsumosMaterialExcelDTO, ConsumosP117ENTITY, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ContratoPagosENTITY, Contrato_DTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CosumoMaterialAlemaniaDTO, CuadrillaBaremoDTO, CuadrillaDTO, CuadrillaENTITY, CuadrillaLiberacionPagosDTO, CuadrillasDTO, CubicacionAlemaniaAL02ENTITY, CubicacionChile9512ENTITY, CubicacionColombia9612ENTITY, CubicacionENTITY, CubicacionPeru9112ENTITY, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DataChildrenTreeNodes, DataDocumentacionDTO, DataDocumentacionPeruDTO, DataGridTabBusinessHP, DataGridTabBusinessHPPeruDTO, DataGridTabResidentialHP, DataScraperClaroVTRENTITY, DataWithPercentItemChile, DataWithPercentItemPeruDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoItemDTO, DatosCatalogoMODTO, DatosFacturacionDTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosIssueProduccionDTO, DatosIssueProduccionEmpresaDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTecnicosDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionEntity, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetailMaintenanceOrderDTO, DetalleAlemaniaDTO, DetalleAtipicaDTO, DetalleAtipicaPeruDTO, DetalleChileAlemaniaObraDTO, DetalleChileChileObraDTO, DetalleChileColombiaObraDTO, DetalleChileDTO$1 as DetalleChileDTO, DetalleChileObraDTO, DetalleChilePeruObraDTO, DetalleChileValorizacionMODTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleColombiaDTO, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleOrdenRealDTO, DetallePeruDTO, DetallePeruFechasDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, DireccionDTO, DocumentacionBaremoPexENTITY, DocumentacionPEXENTITY, DocumentoDetalleClienteDTO, DocumentoDetalleClientePeruDTO, DocumentoDetalleNoClienteDTO, DocumentoDetalleNoClientePeruDTO, DocumentosInicialesDTO, DocumentosInicialesPeruDTO, EECCClienteWAOODTO, EECCDBTOADTO, EECCDBWINDTO, EECCFibramasDBDTO, EECC_DTO, EFaseObraBaremo, EmpalmeDTO, EmpresaBaremoDTO, EmpresaDTO$2 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EmpresaZonasActividadDTO, EncargadoDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, EspecialidadDTO, EstadoAntiguoDTO, EstadoDTO, EstadoDePagoDTO, EstadoFaseObraBaremo, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoObraDTO, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, EstadoProcesoValPeru, EstadoProcesoValPeruDTO, EstadoProcesoValSomacyl, EstadoProcesoValSomacylDTO, type EstadoVal, Estado_Model_MO, EstadosTuvesEnum, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO, FaseENTITY, FasePagoDTO, FasesObraBaremoDTO, FasesType, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FechasValorizacionBaremoDTO, FilesDocDTO, FlagsDTO, FlujoDocDTO, ForceString, FotoDTO, FotosDTO, FotosDetailMaintenanceDTO, FotosSSTDTO, GOMDTO, GomENTITY, GomNovedadesDTO, GomNovedadesTipoNovedadDTO, GranFamiliaItemDTO, GranFamiliaItemENTITY, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistorialCubicacionDTO, HistorialEstadoswinDBDTO, HistorialEstadoswinDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, HomePassDTO$1 as HomePassDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, ImgLogoNavBarDTO, IncidenciasChileDTO, IncidenciasDTO, IncidenciasPeruDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioExistenteDTO, InventarioLiqDTO, InventarioValDTO, IssueENTITY, ItemAlemaniaENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemDetallePMDTO, ItemENTITY, ItemExtraENTITY, ItemLogisticaDTO, ItemsOrdenDTO, ItemsOrdenScraperClaroVTRDTO, JobMacroByGemeindeRequestDTO, KCMActividadDTO, KeyDTO, KeyIntegracionENTITY, KitConsumoMaterialENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, ListaCapacidadesCableDTO, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MOBaremoDTO, MOChileVigenciaDTO, MacroObraChileENTITY, MacroObraENTITY, MacroObraPeruENTITY, MailStructureENTITY, ManoObraAlemaniaENTITY, ManoObraBaremoDTO, ManoObraBaremoENTITY, ManoObraBaremoProduccionDTO, ManoObraBaseENTITY, ManoObraENTITY, ManoObraGlobalDTO, ManoObraGlobalENTITY, ManoObraGlobalPCIssueAlemaniaAL02DTO, ManoObraGlobalPCIssueDTO, ManoObraGlobalPCMOAlemaniaAL02DTO, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, ManoObraMttoENTITY, ManoObraPorUnidadObraENTITY, MarcaDTO, MaterialAmapDTO, MaterialAmapMODTO, MaterialCubicacionColombiaDTO, MaterialCubicacionPeruDTO, MaterialLogisticaDTO, MaterialMOGlobalDTO, MaterialUtilizadoRetiradoBaremoDTO, MaterialesClaroDTO, MaterialesClienteWAOODTO, MaterialesConsumoDTO, MaterialesCubicacionDTO, MaterialesDTO$1 as MaterialesDTO, MaterialesFibramasDBDTO, MaterialesFibramasDTO, MaterialesSomacylDTO, MaterialestoaDBDTO, MaterialestoaDTO, MaterialeswinDBDTO, MaterialeswinDTO, MateterialesTuvesDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTBYESPECIALIDADGEMEINDEENTITY, OTDTO, OTENTITY, OTGlobalDTO, OTGlobalENTITY, ObraAlemaniaAL02ENTITY, ObraAlemaniaAL04ENTITY, ObraChile9512ENTITY, ObraColombia9612ENTITY, ObraENTITY, ObraPeru9112ENTITY, OnnetFibraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, OrdReclMatDescargadoDTO, OrdenDetailMaintenanceDTO, OrdenesInstalacionDTO, OrderStockENTITY, OrigenCUB, PBbyMaterialQuantitiesDTO, PBbyMaterialQuantitiesSomacylDTO, PagosECBaremoDTO, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO, PasosDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoBaremoDTO, PeriodoDTO$4 as PeriodoDTO, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PermisosAppENTITY, PersonalCuadrillaDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PersonalTOADTO, PersonalTrabajoDTO, Peru9112FibramasENTITY, Peru9112FibramasENTITYDB, Peru9112TOAENTITY, Peru9112TOAENTITYDB, Peru9112WinENTITY, Peru9112WinENTITYDB, PlantaDBDTO, PlantaDTO, PlantaSomacylDTO, PrecioActualDTO, PrecioAgencia_mam_onnetENTITY, PrecioContratistaIssueAL02ENTITY, PrecioContratistaIssueENTITY, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioContratistaMaterialENTITY, PrecioDTO, PrecioEmpresaDTO, PrecioEspecialidadENTITY, PrecioManoObraENTITY, PrecioMaterialENTITY, PrecioTrabajoDTO, PreciosVigentesDTO, PresupuestadoTotalObraChilaDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaCuadrillaPeruDTO, PresupuestadoTotalObraEmpresaDTO, PresupuestadoTotalObraEmpresaPeruDTO, PresupuestadoTotalObraPeruDTO, PresupuestoDTO, PresupuestoOTENTITY, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProduccionDTO, ProductosServiciosContratadoDBDTO, ProductosServiciosContratadoDTO, ProductosServiciosContratadoSomacylDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RM_ActividadENTITY, RM_ComunaENTITY, RM_ManoObraENTITY, RM_MaterialENTITY, RM_PaquetizadoENTITY, RM_ZonasActividadENTITY, ReclamosDistribuidorDTO, RecursosPersonalDTO, RegistroAudioDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, RequeridoEnum, RequestDataMigrationDTO, RequestNumberTTLENTITY, ReservaENTITY, ReservaManoObraRegularizacionENTITY, ResultadoDTO, ResumemENTITY, ResumenAvanceChileDTO, ResumenAvanceDataDocumentacionDTO, ResumenAvanceDataDocumentacionDataWithPercentsByFasesChileDTO, ResumenAvanceDataDocumentacionDataWithPercentsByFasesPeruDTO, ResumenAvanceDataDocumentacionDataWithPercentsChile, ResumenAvanceDataDocumentacionDataWithPercentsPeruDTO, ResumenAvanceDataDocumentacionPeruDTO, ResumenAvanceDataGranTotal, ResumenAvanceDataGranTotalEmpresasChileDTO, ResumenAvanceDataGranTotalEmpresasPeruDTO, ResumenAvanceDataGranTotalManoObraCHILEDTO, ResumenAvanceDataGranTotalManoObraPeruDTO, ResumenAvanceDataGranTotalPeruDTO, ResumenAvanceDataGranTotalValorizacionesByPeriodosDTO, ResumenAvanceDataGranTotalValorizacionesByPeriodosPeruDTO, ResumenAvancePeruDTO, ResumenProcessENTITY, ResumentAvanceDocumentacionHPDTO, ResumentAvanceDocumentacionHPPeruDTO, RptProduccionCurso_Baremos_FasesENTITY, SEUpdateAnexosObraRequestBody, SEUpdateAnexosTrabajoRequestBody, STB_DTH_ToaENTITY, STB_DTH_ToaPlanta, STB_DTH_ToaUbicacion, SalidaAlmacenENTITY, ScrapingCredentialENTITY, SegmentoDBDTO, SeguimientoObraDTO, SiNoEnum, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SistemaRecurso, SizeDTO, SmartDateTransformer, SocketDTO, SomacylEntregablesDTO, SomacylOrderENTITY, StateFibramas, StateInternalOrder, StateInternalOrderClienteWAOO, StateInternalOrderTOA, StateInventory, StateServiceFibramas, StateWin, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, StockQuantityEmployeeDTO, SubEstadoInternoDTO, SubManoObraDTO$1 as SubManoObraDTO, SummaryDTO, TOAClaroOrderStockENTITY, TOAOrdenLiquidacionENTITY, TOAOrdenLiquidacionENTITYDB, TOAOrderStockENTITY, TUVESOrdReclMatDescargadoDTO, TUVESOrdReclamosFinDTO, TecnicoValDTO, ThemeConfigCountryENTITY, TipoActividadMOENTITY, TipoAlmacenDTO, TipoAlmacenENTITY, TipoClaveENTITY, TipoConsumoMaterial, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, type TipoLiq, TipoMOPCIssueDTO, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovilCuadrillaDTO, TipoMovilENTITY, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoObraENTITY, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockENTITY, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, ToaClaroENTITY, ToaSegmentoDBDTO, ToaSegmentoDTO, TotBaremosDTO, TotalGeneralObraChile9512DTO, TotalGeneralObraChileDTO, TotalGeneralObraColombia9612DTO, TotalGeneralObraDTO, TotalGeneralObraPeru9112DTO, TotalGeneralObraPeruDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoHechoEnum, TrabajoMacroObraAlemaniaENTITY, TrabajoMacroObraENTITY, TransaccionFoliosENTITY, TransaccionesDTO, TuvesENTITY, TuvesOrdEqFinalizadasDTO, TuvesOrdEqMatDescargadosDTO, TuvesOrderStockENTITY, UbicacionAlmacenDTO, UbicacionDTO, UbicacionObraDTO, UbicacionPresupuestoDTO, UbicacionSomacylDTO, UbicacionTdCDTO, UbicaciontoaDBDTO, UbicaciontoaDTO, UbicacionwinDBDTO, UbicacionwinDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO, Ultima_PreLiquidacionDTO$1 as Ultima_PreLiquidacionDTO, Ultima_PreLiquidacionTMOAlemaniaDTO, Ultima_asignacionAlemaniaDTO, Ultima_asignacionDTO$1 as Ultima_asignacionDTO, UltimoEstadoClienteDTO, Ultimo_Estado_InternoDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaENTITY, UnidadMedidaLiberacionPagosDTO, UnidadObraENTITY, UnidadObraMaterialENTITY, UpdateEstadoInternoObraRequestDTO, UpdateUltimaFaseFacturacionDTO, UsuarioBaremoDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLiqDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO, ValorizacionDTO$1 as ValorizacionDTO, ValorizacionManoObraBaseDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizacionPeruTOADTO, ValorizacionSomacylDTO, ValorizacionTMOAlemaniaDTO, ValorizacionesDTO$1 as ValorizacionesDTO, ValorizadaTOAENTITY, ValorizadoPorEstado, ValorizadoPorEstadoPeruDTO, ValorizadoTotalObraColombia9612DTO, ValorizadoTotalObraDTO, ValorizadoTotalObraPeruDTO, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaIssueDTO, VigenciaKeyDTO, VigenciaOTDTO, VigenciaPCMODTO, WBEDTO, ZonaTrabajoCuadrillaDTO, ZonaTrabajoDTO, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, convertTypeNumber, enumToArray, latLngDTO, transformToDateIfEmpty, trimAndUpperCaseString, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };
|
|
8285
|
+
export { ADM_RM_ZonasActividadENTITY, AcceptedDto, ActaFinalCubicacionDTO, ActaFinalCubicacionSharedDTO, ActividadZonasActividadDTO, ActividadesDTO, AddMOPContrataMODTO, AddressListENTITY, AgenciaDTO, AgenciaENTITY, AgenciasDTO, AjusteReprocesoDTO, AlbaranDto, AlmacenDTO, AlmacenDto, AlmacenENTITY, AlmacenExtraENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AnexoPreOrdenDto, AnexosDetailMantenanceOrderDTO, AprobacionDto, AreaGOMDTO, AreaGOMDatosReferenciaDTO, AreaGOMENTITY, AreaGOMResumenDTO, AreaGOMSubGOMSDTO, AreaGomCentroCostosDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AsistenciaENTITY, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AttendanceDTO, AttendanceStatus, AutoInventarioENTITY, BankVendorDto, BaremoAlemaniaENTITY, BaremoProcessENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraDeOrdenesDTO, BitacoraDto, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, BodyUpdateFasesDTO, BodyUpdateOne, CHILE_9512_PaquetizadoManoObraENTITY, CHILE_9512_PaquetizadoMaterialENTITY, CabeceraCubicacionColombiaDTO, CabeceraCubicajeAlemaniaDTO, CabeceraCubicajeChileDTO, CabeceraCubicajeDTO, CabeceraCubicajePeruDTO, CalculatePercentsDTO, CalculatePercentsPeruDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CargoPersonalENTITY, CategoriaDto, CausacionCubicacionColombiaDTO, CausacionCubicacionDTO, CausacionDTO, CentroCostosDTO, CentroCostosENTITY, CertificacionDTO, ChangeStateBaremosDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, ClienteWAOOENTITY, Cliente_ContratistaDTO, ClosedDto, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreDto, CodigoNombreMinLengthDto, CodigoNombreUMDTO, CodigoRazonSocialDTO, CodigoTituloDTO, ComparativoDto, CondicionDTO, ConsumoMaterialAlemaniaENTITY, ConsumoMaterialENTITY, ConsumosMaterialDTO, ConsumosMaterialExcelDTO, ConsumosP117ENTITY, ContabilizadoDto, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ContratoPagosENTITY, Contrato_DTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CosumoMaterialAlemaniaDTO, CotizacionDto, CrearNavisionpreordenEntityRequestDto, CuadrillaBaremoDTO, CuadrillaDTO, CuadrillaENTITY, CuadrillaLiberacionPagosDTO, CuadrillasDTO, CubicacionAlemaniaAL02ENTITY, CubicacionChile9512ENTITY, CubicacionColombia9612ENTITY, CubicacionENTITY, CubicacionPeru9112ENTITY, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DataChildrenTreeNodes, DataDocumentacionDTO, DataDocumentacionPeruDTO, DataGridTabBusinessHP, DataGridTabBusinessHPPeruDTO, DataGridTabResidentialHP, DataScraperClaroVTRENTITY, DataWithPercentItemChile, DataWithPercentItemPeruDTO, DateDto, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoItemDTO, DatosCatalogoMODTO, DatosEmpresaDto, DatosFacturacionDTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosIssueProduccionDTO, DatosIssueProduccionEmpresaDTO, DatosJefeObraDto, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosNavDto, DatosPagoDto, DatosPaiDto, DatosPersonalDto, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTecnicosDTO, DatosTrabajoCatalogoDTO, DatosTrabajoDto, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionDto, DelegacionEntity, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetailMaintenanceOrderDTO, DetalleAlemaniaDTO, DetalleAtipicaDTO, DetalleAtipicaPeruDTO, DetalleChileAlemaniaObraDTO, DetalleChileChileObraDTO, DetalleChileColombiaObraDTO, DetalleChileDTO$1 as DetalleChileDTO, DetalleChileObraDTO, DetalleChilePeruObraDTO, DetalleChileValorizacionMODTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleColombiaDTO, DetalleCotizacionDto, DetalleCubicajeDTO, DetalleDTO, DetalleDto, DetalleManoObraChileDTO, DetalleOrdenRealDTO, DetallePeruDTO, DetallePeruFechasDTO, DetalleProductoDto, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, DireccionDTO, DocumentacionBaremoPexENTITY, DocumentacionPEXENTITY, DocumentoDetalleClienteDTO, DocumentoDetalleClientePeruDTO, DocumentoDetalleNoClienteDTO, DocumentoDetalleNoClientePeruDTO, DocumentosInicialesDTO, DocumentosInicialesPeruDTO, EECCClienteWAOODTO, EECCDBTOADTO, EECCDBWINDTO, EECCFibramasDBDTO, EECC_DTO, EFaseObraBaremo, EmisionDto, EmpalmeDTO, EmpresaBaremoDTO, EmpresaDTO$2 as EmpresaDTO, EmpresaENTITY, EmpresaGanadoraDto, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EmpresaZonasActividadDTO, EncargadoDTO, EnviarNavDto, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, EspecialidadDTO, EstadoAntiguoDTO, EstadoDTO, EstadoDePagoDTO, EstadoFaseObraBaremo, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoObraDTO, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, EstadoProcesoValPeru, EstadoProcesoValPeruDTO, EstadoProcesoValSomacyl, EstadoProcesoValSomacylDTO, type EstadoVal, Estado_Model_MO, EstadosTuvesEnum, FacturaDto, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO, FaseENTITY, FasePagoDTO, FasesObraBaremoDTO, FasesType, FechaDTO, FechaEntregaDto, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FechasValorizacionBaremoDTO, FileDto, FilesDocDTO, FlagsDTO, FlujoDocDTO, FlujoDto, ForceString, FormaPagoDto, FotoDTO, FotosDTO, FotosDetailMaintenanceDTO, FotosSSTDTO, GOMDTO, GomENTITY, GomNovedadesDTO, GomNovedadesTipoNovedadDTO, GranFamiliaItemDTO, GranFamiliaItemENTITY, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistorialCubicacionDTO, HistorialEstadoswinDBDTO, HistorialEstadoswinDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, HomePassDTO$1 as HomePassDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IconoDto, ImgLogoNavBarDTO, ImporteDto, IncidenciasChileDTO, IncidenciasDTO, IncidenciasPeruDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioExistenteDTO, InventarioLiqDTO, InventarioValDTO, IssueENTITY, ItemAlemaniaENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemDetallePMDTO, ItemENTITY, ItemExtraENTITY, ItemLogisticaDTO, ItemsOrdenDTO, ItemsOrdenScraperClaroVTRDTO, JobMacroByGemeindeRequestDTO, KCMActividadDTO, KeyDTO, KeyIntegracionENTITY, KitConsumoMaterialENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, ListaCapacidadesCableDTO, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MOBaremoDTO, MOChileVigenciaDTO, MacroObraChileENTITY, MacroObraENTITY, MacroObraPeruENTITY, MailStructureENTITY, ManoObraAlemaniaENTITY, ManoObraBaremoDTO, ManoObraBaremoENTITY, ManoObraBaremoProduccionDTO, ManoObraBaseENTITY, ManoObraENTITY, ManoObraGlobalDTO, ManoObraGlobalENTITY, ManoObraGlobalPCIssueAlemaniaAL02DTO, ManoObraGlobalPCIssueDTO, ManoObraGlobalPCMOAlemaniaAL02DTO, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, ManoObraMttoENTITY, ManoObraPorUnidadObraENTITY, MarcaDTO, MaterialAmapDTO, MaterialAmapMODTO, MaterialCubicacionColombiaDTO, MaterialCubicacionPeruDTO, MaterialLogisticaDTO, MaterialMOGlobalDTO, MaterialUtilizadoRetiradoBaremoDTO, MaterialesClaroDTO, MaterialesClienteWAOODTO, MaterialesConsumoDTO, MaterialesCubicacionDTO, MaterialesDTO$1 as MaterialesDTO, MaterialesFibramasDBDTO, MaterialesFibramasDTO, MaterialesSomacylDTO, MaterialestoaDBDTO, MaterialestoaDTO, MaterialeswinDBDTO, MaterialeswinDTO, MateterialesTuvesDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MonedaDto, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, MovimientoDto, MovimientosRecepcionDto, NavDto, NavisionpreordenEntity, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTBYESPECIALIDADGEMEINDEENTITY, OTDTO, OTENTITY, OTGlobalDTO, OTGlobalENTITY, ObraAlemaniaAL02ENTITY, ObraAlemaniaAL04ENTITY, ObraChile9512ENTITY, ObraColombia9612ENTITY, ObraENTITY, ObraPeru9112ENTITY, OnnetFibraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, OrdReclMatDescargadoDTO, OrdenDetailMaintenanceDTO, OrdenDto, OrdenesInstalacionDTO, OrderStockENTITY, OrigenCUB, OtDto, PBbyMaterialQuantitiesDTO, PBbyMaterialQuantitiesSomacylDTO, PagosECBaremoDTO, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO, PasosDTO, type PayloadTokenDTO, PedidoCompraDto, PerfilesENTITY, PeriodoBaremoDTO, PeriodoDTO$4 as PeriodoDTO, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PermisosAppENTITY, PersonalCuadrillaDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PersonalTOADTO, PersonalTrabajoDTO, Peru9112FibramasENTITY, Peru9112FibramasENTITYDB, Peru9112TOAENTITY, Peru9112TOAENTITYDB, Peru9112WinENTITY, Peru9112WinENTITYDB, PlantaDBDTO, PlantaDTO, PlantaSomacylDTO, PreAcceptedDto, PrecioActualDTO, PrecioAgencia_mam_onnetENTITY, PrecioContratistaIssueAL02ENTITY, PrecioContratistaIssueENTITY, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioContratistaMaterialENTITY, PrecioDTO, PrecioEmpresaDTO, PrecioEspecialidadENTITY, PrecioManoObraENTITY, PrecioMaterialENTITY, PrecioTrabajoDTO, PreciosVigentesDTO, PresupuestadoTotalObraChilaDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaCuadrillaPeruDTO, PresupuestadoTotalObraEmpresaDTO, PresupuestadoTotalObraEmpresaPeruDTO, PresupuestadoTotalObraPeruDTO, PresupuestoDTO, PresupuestoOTENTITY, PrioridadNotificacion, ProcedenciaDto, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProduccionDTO, ProductoDto, ProductosServiciosContratadoDBDTO, ProductosServiciosContratadoDTO, ProductosServiciosContratadoSomacylDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RM_ActividadENTITY, RM_ComunaENTITY, RM_ManoObraENTITY, RM_MaterialENTITY, RM_PaquetizadoENTITY, RM_ZonasActividadENTITY, RecepcionDto, ReclamosDistribuidorDTO, RecursosPersonalDTO, RegistroAudioDTO, RegistryDto, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, RequeridoEnum, RequerimientoDto, RequestDataMigrationDTO, RequestNumberTTLENTITY, ReservaENTITY, ReservaManoObraRegularizacionENTITY, ResultadoDTO, ResumemENTITY, ResumenAvanceChileDTO, ResumenAvanceDataDocumentacionDTO, ResumenAvanceDataDocumentacionDataWithPercentsByFasesChileDTO, ResumenAvanceDataDocumentacionDataWithPercentsByFasesPeruDTO, ResumenAvanceDataDocumentacionDataWithPercentsChile, ResumenAvanceDataDocumentacionDataWithPercentsPeruDTO, ResumenAvanceDataDocumentacionPeruDTO, ResumenAvanceDataGranTotal, ResumenAvanceDataGranTotalEmpresasChileDTO, ResumenAvanceDataGranTotalEmpresasPeruDTO, ResumenAvanceDataGranTotalManoObraCHILEDTO, ResumenAvanceDataGranTotalManoObraPeruDTO, ResumenAvanceDataGranTotalPeruDTO, ResumenAvanceDataGranTotalValorizacionesByPeriodosDTO, ResumenAvanceDataGranTotalValorizacionesByPeriodosPeruDTO, ResumenAvancePeruDTO, ResumenProcessENTITY, ResumentAvanceDocumentacionHPDTO, ResumentAvanceDocumentacionHPPeruDTO, RptProduccionCurso_Baremos_FasesENTITY, SEUpdateAnexosObraRequestBody, SEUpdateAnexosTrabajoRequestBody, STB_DTH_ToaENTITY, STB_DTH_ToaPlanta, STB_DTH_ToaUbicacion, SalidaAlmacenENTITY, ScrapingCredentialENTITY, SegmentoDBDTO, SeguimientoObraDTO, SiNoEnum, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SistemaRecurso, SizeDTO, SmartDateTransformer, SocketDTO, SolicitudDto, SomacylEntregablesDTO, SomacylOrderENTITY, StateFibramas, StateInternalOrder, StateInternalOrderClienteWAOO, StateInternalOrderTOA, StateInventory, StateServiceFibramas, StateWin, StatuDto, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, StockQuantityEmployeeDTO, SubEstadoInternoDTO, SubManoObraDTO$1 as SubManoObraDTO, SummaryDTO, TOAClaroOrderStockENTITY, TOAOrdenLiquidacionENTITY, TOAOrdenLiquidacionENTITYDB, TOAOrderStockENTITY, TUVESOrdReclMatDescargadoDTO, TUVESOrdReclamosFinDTO, TecnicoValDTO, TerminoPagoDto, ThemeConfigCountryENTITY, TipoActividadMOENTITY, TipoAlmacenDTO, TipoAlmacenENTITY, TipoClaveENTITY, TipoCompraDto, TipoConsumoMaterial, TipoDocumentoDto, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, TipoFamiliaDto, TipoGranFamiliaDto, TipoItemDto, type TipoLiq, TipoMOPCIssueDTO, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovilCuadrillaDTO, TipoMovilENTITY, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoObraENTITY, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoOperacionDto, TipoProductoDto, TipoSistemaDTO, TipoStockENTITY, TipoStockStockPersonalDTO, TipoSubFamiliaDto, type TipoVal, TipoVarianteDto, Tipo_MO, ToaClaroENTITY, ToaSegmentoDBDTO, ToaSegmentoDTO, TotBaremosDTO, TotalGeneralObraChile9512DTO, TotalGeneralObraChileDTO, TotalGeneralObraColombia9612DTO, TotalGeneralObraDTO, TotalGeneralObraPeru9112DTO, TotalGeneralObraPeruDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoHechoEnum, TrabajoMacroObraAlemaniaENTITY, TrabajoMacroObraENTITY, TransaccionFoliosENTITY, TransaccionesDTO, TuvesENTITY, TuvesOrdEqFinalizadasDTO, TuvesOrdEqMatDescargadosDTO, TuvesOrderStockENTITY, UbicacionAlmacenDTO, UbicacionDTO, UbicacionObraDTO, UbicacionPresupuestoDTO, UbicacionSomacylDTO, UbicacionTdCDTO, UbicaciontoaDBDTO, UbicaciontoaDTO, UbicacionwinDBDTO, UbicacionwinDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO, Ultima_PreLiquidacionDTO$1 as Ultima_PreLiquidacionDTO, Ultima_PreLiquidacionTMOAlemaniaDTO, Ultima_asignacionAlemaniaDTO, Ultima_asignacionDTO$1 as Ultima_asignacionDTO, UltimoEstadoClienteDTO, Ultimo_Estado_InternoDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaENTITY, UnidadMedidaLiberacionPagosDTO, UnidadObraENTITY, UnidadObraMaterialENTITY, UpdateDto, UpdateEstadoInternoObraRequestDTO, UpdateUltimaFaseFacturacionDTO, UserDto, UsuarioBaremoDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLiqDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO, ValorizacionDTO$1 as ValorizacionDTO, ValorizacionManoObraBaseDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizacionPeruTOADTO, ValorizacionSomacylDTO, ValorizacionTMOAlemaniaDTO, ValorizacionesDTO$1 as ValorizacionesDTO, ValorizadaTOAENTITY, ValorizadoPorEstado, ValorizadoPorEstadoPeruDTO, ValorizadoTotalObraColombia9612DTO, ValorizadoTotalObraDTO, ValorizadoTotalObraPeruDTO, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaIssueDTO, VigenciaKeyDTO, VigenciaOTDTO, VigenciaPCMODTO, WBEDTO, ZonaTrabajoCuadrillaDTO, ZonaTrabajoDTO, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, convertTypeNumber, enumToArray, latLngDTO, transformToDateIfEmpty, trimAndUpperCaseString, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };
|