40 lines
1.4 KiB
Plaintext
40 lines
1.4 KiB
Plaintext
{
|
|
-------------------------------------------------------------------------------
|
|
FORMULARIO : NOFMRP034
|
|
OBJETIVO : Pantalla para el programa que lista las horas extras
|
|
(NOPRRP011)
|
|
PROGRAMADOR : Ing. Betania Guerrero Perez
|
|
FECHA REALIZACION : Septiembre 07, 1993
|
|
-------------------------------------------------------------------------------
|
|
}
|
|
database smarmotech
|
|
screen size 24 by 80
|
|
{
|
|
Empleado [a1 ] Departamento [dp ]
|
|
|
|
Registro No. [a ]
|
|
Formulario No. [c ]
|
|
Tipo Reporte [t ]
|
|
|
|
Fecha Inicial [f2 ]
|
|
Fecha Final [f1 ]
|
|
Idioma [p ]
|
|
|
|
|
|
}
|
|
end
|
|
tables
|
|
notb00007
|
|
ATTRIBUTES
|
|
RADIOGROUP p = formonly.idioma_office, ITEMS=(("E","ESPANOL"),("I","INGLES")),default="I",
|
|
COMMENTS = "Favor especificar el idioma del OFFICE que tiene instalado en su PC";
|
|
COMBOBOX t = formonly.tipo_reporte, ITEMS=(("DGT3","DGT3-ANUAL"),("DGT4","DGT4-MENSUAL")),default="DGT4";
|
|
a1 = formonly.num_emp;
|
|
dp = formonly.departamento;
|
|
a = formonly.registro_no;
|
|
c = formonly.formulario_no,comments = "Digite el numero del formulario";
|
|
DATEEDIT f1 = formonly.fecha2 TYPE date,format="dd/mm/yyyy",required;
|
|
DATEEDIT f2 = formonly.fecha_formulario type date,format = "dd/mm/yyyy",required,
|
|
comments = "Fecha Final";
|
|
end
|