31 lines
1014 B
Plaintext
31 lines
1014 B
Plaintext
{
|
|
-------------------------------------------------------------------------------
|
|
FORMULARIO : CCFMRP001
|
|
OBJETIVO : Pantalla para listar los Clientes sin Ventas en
|
|
un rango de dias (CCPRRP001)
|
|
PROGRAMADOR : Lic. Abner Montalvo Zapata
|
|
FECHA REALIZACION : Marzo 26, 1993
|
|
-------------------------------------------------------------------------------
|
|
}
|
|
database marmotech
|
|
screen size 24 by 80
|
|
{
|
|
|
|
Dia Minimo [a ]
|
|
Dia Maximo [b ]
|
|
Fecha de Corte [c ]
|
|
Cliente [k ]
|
|
}
|
|
end
|
|
tables
|
|
cctb00001
|
|
attributes
|
|
k = formonly.sec_cliente;
|
|
a = formonly.dia_minimo type integer,autonext,
|
|
comments = "Dia minimo sin compra para el cliente";
|
|
b = formonly.dia_maximo type integer,autonext,
|
|
comments = "Dia maximo sin compra para el cliente";
|
|
c = formonly.fecha_corte type date, autonext, format = "dd/mm/yyyy",
|
|
comments = "Digite la fecha de Corte del Reporte";
|
|
end
|