-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEntidadesDB.iri
93 lines (73 loc) · 1.72 KB
/
EntidadesDB.iri
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
type TypReceta is record
Id : integer;
Codigo: string;
Nombre: string;
end record;
type TypArrayReceta is array[10] of TypReceta;
--*****************Tipo Usos*****************
type TypInsumo is record
Id : integer;
Codigo: string;
Nombre: string;
Activo: Integer;
NumBalanza: Integer;
NBalanza: String;
end record;
type TypArrayInsumo is array[10] of TypInsumo;
--*****************Tipo Usos*****************
type TypBalanza is record
Id : integer;
Numero: integer;
Nombre: string;
end record;
type TypArrayBalanza is array[10] of TypBalanza;
type TypMantGenerico is record
Id: integer;
Codigo : string;
Nombre: string;
NumBalanza:Integer;
end record;
type TypDtReceta is record
Id: Integer;
IdReceta: Integer;
CodReceta: String;
NombreReceta: String;
IdInsumo: Integer;
CodInsumo: String;
NombreInsumo : String;
Porcentaje: Real;
Activo: Integer;
end record;
type TypArrayDtReceta is array[10] of TypDtReceta;
type TypOrdenes is record
Id: Integer;
Lote: String;
IdReceta: Integer;
NombreReceta: string;
Prioridad: Integer;
CodigoOperacion: String;
PorcentajeTotal: Real;
PesoTotal: Real;
CantidadItemEnOrden:integer;
DatosOrdenes:string;
end record;
type TypArrayOrdenes is array[12] of TypOrdenes;
type TypMantOrdenes is record
Id: Integer;
Lote: String;
IdReceta: Integer;
Prioridad: Integer;
CodigoOperacion: String;
PesoTotal: Real;
end record;
type TypDtPesaje is record
Id: Integer;
IdPesaje: Integer;
IdInsumo: Integer;
PesoObjetivo: Real;
PesoCapturado: Real;
ProporcionSolicitado: Real;
ProporcionObtenido: Real;
Fecha: DateTime;
end record;
type TypArrayDtPesaje is array[10] of TypDtPesaje;