From 16047f79327ff56b043ba955331dc57e972b46cc Mon Sep 17 00:00:00 2001 From: david Date: Fri, 14 Sep 2012 16:55:27 +0000 Subject: [PATCH] Tarea #1078 -> Poner una columna de VISIBLE en los conceptos de presupuestos y contratos git-svn-id: https://192.168.0.254/svn/Proyectos.Acana_FactuGES2/trunk@572 f4e31baf-9722-1c47-927c-6f952f962d4b --- Database/scripts/factuges.sql | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Database/scripts/factuges.sql b/Database/scripts/factuges.sql index 1d258217..9b52f9cd 100644 --- a/Database/scripts/factuges.sql +++ b/Database/scripts/factuges.sql @@ -1259,7 +1259,8 @@ CREATE TABLE PRESUPUESTOS_CLIENTE_DETALLES ( DESCUENTO TIPO_PORCENTAJE, IMPORTE_PORTE TIPO_IMPORTE, IMPORTE_TOTAL TIPO_IMPORTE, - VISIBLE TIPO_BOOLEANO, + VISIBLE TIPO_BOOLEANO, + VISIBLE2 TIPO_BOOLEANO, FECHA_ALTA TIMESTAMP, FECHA_MODIFICACION TIMESTAMP ); @@ -1322,6 +1323,7 @@ CREATE TABLE CONTRATOS_CLIENTE_DETALLES ( IMPORTE_PORTE TIPO_IMPORTE, IMPORTE_TOTAL TIPO_IMPORTE, VISIBLE TIPO_BOOLEANO, + VISIBLE2 TIPO_BOOLEANO, FECHA_ALTA TIMESTAMP, FECHA_MODIFICACION TIMESTAMP ); @@ -5212,6 +5214,7 @@ returns ( concepto varchar(2000), importe_total numeric(11,4), visible smallint, + visible2 smallint, tipo_articulo varchar(2), descuento float, importe_descuento numeric(11,4))