Subida inicial de tecsitel con el repaso del módulo de contactos
git-svn-id: https://192.168.0.254/svn/Proyectos.LuisLeon_FactuGES2/trunk@1 b2cfbe5a-eba1-4a0c-8b32-7feea0a119f2
BIN
Build/Build.fbl6
Normal file
21
Build/Build.fbpInf
Normal file
@ -0,0 +1,21 @@
|
||||
<project ServerProjectName="">
|
||||
<watches/>
|
||||
<collapsedNodes></collapsedNodes>
|
||||
<breakpoints></breakpoints>
|
||||
<actions/>
|
||||
<propertysets/>
|
||||
<variables>
|
||||
<project_path>
|
||||
<![CDATA[C:\Codigo]]>
|
||||
</project_path>
|
||||
</variables>
|
||||
<properties>
|
||||
<Author></Author>
|
||||
<Notes>
|
||||
<![CDATA[]]>
|
||||
</Notes>
|
||||
<LastBuildRun>00:05:14</LastBuildRun>
|
||||
<LastBuildStart>22/06/2010 17:34:41</LastBuildStart>
|
||||
<LastBuildState>True</LastBuildState>
|
||||
</properties>
|
||||
</project>
|
||||
BIN
Build/Build.fbz6
Normal file
21
Build/Installer.fbpInf
Normal file
@ -0,0 +1,21 @@
|
||||
<project ServerProjectName="">
|
||||
<watches/>
|
||||
<collapsedNodes></collapsedNodes>
|
||||
<breakpoints></breakpoints>
|
||||
<actions/>
|
||||
<propertysets/>
|
||||
<variables>
|
||||
<project_path>
|
||||
<![CDATA[C:\Codigo]]>
|
||||
</project_path>
|
||||
</variables>
|
||||
<properties>
|
||||
<Author></Author>
|
||||
<Notes>
|
||||
<![CDATA[]]>
|
||||
</Notes>
|
||||
<LastBuildRun>00:00:00</LastBuildRun>
|
||||
<LastBuildStart>30/12/1899</LastBuildStart>
|
||||
<LastBuildState>True</LastBuildState>
|
||||
</properties>
|
||||
</project>
|
||||
21
Build/Installer.fbpInf.bak
Normal file
@ -0,0 +1,21 @@
|
||||
<project ServerProjectName="">
|
||||
<watches/>
|
||||
<collapsedNodes></collapsedNodes>
|
||||
<breakpoints></breakpoints>
|
||||
<actions/>
|
||||
<propertysets/>
|
||||
<variables>
|
||||
<project_path>
|
||||
<![CDATA[C:\Codigo Tecsitel]]>
|
||||
</project_path>
|
||||
</variables>
|
||||
<properties>
|
||||
<Author></Author>
|
||||
<Notes>
|
||||
<![CDATA[]]>
|
||||
</Notes>
|
||||
<LastBuildRun>00:00:00</LastBuildRun>
|
||||
<LastBuildStart>30/12/1899</LastBuildStart>
|
||||
<LastBuildState>True</LastBuildState>
|
||||
</properties>
|
||||
</project>
|
||||
BIN
Build/Installer.fbz6
Normal file
17
Build/UploadFTP.fbpInf
Normal file
@ -0,0 +1,17 @@
|
||||
<project ServerProjectName="">
|
||||
<watches/>
|
||||
<collapsedNodes></collapsedNodes>
|
||||
<breakpoints></breakpoints>
|
||||
<actions/>
|
||||
<propertysets/>
|
||||
<variables/>
|
||||
<properties>
|
||||
<Author></Author>
|
||||
<Notes>
|
||||
<![CDATA[]]>
|
||||
</Notes>
|
||||
<LastBuildRun>00:00:00</LastBuildRun>
|
||||
<LastBuildStart>30/12/1899</LastBuildStart>
|
||||
<LastBuildState>True</LastBuildState>
|
||||
</properties>
|
||||
</project>
|
||||
BIN
Build/UploadFTP.fbz6
Normal file
299
Database/Migracion/SCRIPT para migración tecsitel.TXT
Normal file
@ -0,0 +1,299 @@
|
||||
delete from contactos_categorias;
|
||||
delete from contactos_direcciones;
|
||||
delete from contactos_datos_banco;
|
||||
delete from clientes_dtos_proveedores;
|
||||
delete from agentes_comisiones;
|
||||
delete from clientes_datos;
|
||||
delete from proveedores_datos;
|
||||
delete from personal_datos;
|
||||
|
||||
delete from pedidos_cliente_detalles;
|
||||
delete from albaranes_cliente_detalles;
|
||||
delete from facturas_cliente_detalles;
|
||||
delete from pagos_cliente;
|
||||
delete from facturas_cliente;
|
||||
delete from albaranes_cliente;
|
||||
delete from pedidos_cliente;
|
||||
|
||||
delete from pedidos_proveedor_detalles;
|
||||
delete from albaranes_proveedor_detalles;
|
||||
delete from facturas_proveedor_detalles;
|
||||
delete from pagos_proveedor;
|
||||
delete from facturas_proveedor;
|
||||
delete from albaranes_proveedor;
|
||||
delete from pedidos_proveedor;
|
||||
|
||||
delete from comisiones_liquidadas;
|
||||
delete from contactos;
|
||||
|
||||
|
||||
Extract MetaData con cmapos blob, lanzar script en nueva base de datos
|
||||
|
||||
CREATE TABLE PROVEEDORES (
|
||||
CODIGO VARCHAR(10) NOT NULL,
|
||||
NIFCIF VARCHAR(10) CHARACTER SET ISO8859_1,
|
||||
NOMBRE VARCHAR(100) CHARACTER SET ISO8859_1,
|
||||
CALLE VARCHAR(150) CHARACTER SET ISO8859_1,
|
||||
NUMERO VARCHAR(20) CHARACTER SET ISO8859_1,
|
||||
PISO VARCHAR(20) CHARACTER SET ISO8859_1,
|
||||
CODIGOPOSTAL VARCHAR(5) CHARACTER SET ISO8859_1,
|
||||
POBLACION VARCHAR(40) CHARACTER SET ISO8859_1,
|
||||
PROVINCIA VARCHAR(30) CHARACTER SET ISO8859_1,
|
||||
TELEFONO1 VARCHAR(30) CHARACTER SET ISO8859_1,
|
||||
TELEFONO2 VARCHAR(30) CHARACTER SET ISO8859_1,
|
||||
FAX VARCHAR(30) CHARACTER SET ISO8859_1,
|
||||
CORREO VARCHAR(60) CHARACTER SET ISO8859_1,
|
||||
PERSONACONTACTO VARCHAR(100) CHARACTER SET ISO8859_1,
|
||||
OBSERVACIONES BLOB SUB_TYPE 1 SEGMENT SIZE 100 CHARACTER SET ISO8859_1,
|
||||
CODIGOCLIENTE VARCHAR(10),
|
||||
ETIQUETADO SMALLINT,
|
||||
ULTIMOCAMBIO TIMESTAMP
|
||||
);
|
||||
|
||||
ALTER TABLE PROVEEDORES ADD CONSTRAINT PK_PROVEEDORES PRIMARY KEY (CODIGO);
|
||||
|
||||
CREATE TABLE SUCURSALESPROVEEDOR (
|
||||
CODIGOPROVEEDOR VARCHAR(10) NOT NULL,
|
||||
CODIGO SMALLINT NOT NULL,
|
||||
CALLE VARCHAR(150),
|
||||
NUMERO VARCHAR(20),
|
||||
PISO VARCHAR(20),
|
||||
CODIGOPOSTAL VARCHAR(5),
|
||||
POBLACION VARCHAR(40),
|
||||
PROVINCIA VARCHAR(30),
|
||||
TELEFONO1 VARCHAR(30),
|
||||
TELEFONO2 VARCHAR(30),
|
||||
FAX VARCHAR(30),
|
||||
CORREO VARCHAR(60),
|
||||
PERSONACONTACTO VARCHAR(100)
|
||||
);
|
||||
ALTER TABLE SUCURSALESPROVEEDOR ADD CONSTRAINT PK_SUCURSALESPROVEEDOR PRIMARY KEY (CODIGOPROVEEDOR, CODIGO);
|
||||
ALTER TABLE SUCURSALESPROVEEDOR ADD FOREIGN KEY (CODIGOPROVEEDOR) REFERENCES PROVEEDORES (CODIGO) ON DELETE CASCADE ON UPDATE NO ACTION;
|
||||
|
||||
|
||||
COMMIT WORK;
|
||||
|
||||
/*DATOS*/
|
||||
|
||||
|
||||
Poner generador de ID_CONTACTOS a 1
|
||||
|
||||
DECLARE EXTERNAL FUNCTION substr
|
||||
CSTRING(255), SMALLINT, SMALLINT
|
||||
RETURNS CSTRING(255) FREE_IT
|
||||
ENTRY_POINT 'IB_UDF_substr' MODULE_NAME 'ib_udf';
|
||||
|
||||
|
||||
insert into CONTACTOS
|
||||
(ID, REFERENCIA, NIF_CIF, NOMBRE, CALLE, POBLACION, PROVINCIA, CODIGO_POSTAL, TELEFONO_1, TELEFONO_2,
|
||||
FAX, EMAIL_1, PERSONA_CONTACTO, NOTAS)
|
||||
|
||||
select
|
||||
GEN_ID(GEN_CONTACTOS_ID, 1),
|
||||
proveedores.CODIGO AS REFERENCIA,
|
||||
proveedores.NIFCIF AS NIF_CIF,
|
||||
proveedores.NOMBRE AS NOMBRE,
|
||||
(COALESCE(proveedores.CALLE,'') || ', ' || COALESCE(proveedores.NUMERO,'') || ' ' || COALESCE(proveedores.PISO,'')) AS CALLE,
|
||||
proveedores.POBLACION AS POBLACION,
|
||||
proveedores.PROVINCIA AS PROVINCIA,
|
||||
proveedores.CODIGOPOSTAL AS CODIGO_POSTAL,
|
||||
substr(proveedores.TELEFONO1,1,25) AS TELEFONO_1,
|
||||
substr(proveedores.TELEFONO2,1,25) AS TELEFONO_2,
|
||||
substr(proveedores.FAX,1,25) AS FAX,
|
||||
proveedores.CORREO AS EMAIL_1,
|
||||
proveedores.PERSONACONTACTO AS PERSONA_CONTACTO,
|
||||
proveedores.OBSERVACIONES AS NOTAS
|
||||
|
||||
from proveedores;
|
||||
|
||||
insert into contactos_categorias
|
||||
(ID_CONTACTO, ID_CATEGORIA)
|
||||
select ID, 2
|
||||
from contactos;
|
||||
|
||||
insert into proveedores_datos
|
||||
(ID_PROVEEDOR, ID_TIPO_IVA)
|
||||
select CONTACTOS.ID, 1
|
||||
from CONTACTOS
|
||||
left join contactos_categorias on contactos_categorias.id_contacto = contactos.id
|
||||
where contactos_categorias.id_categoria = 2;
|
||||
|
||||
delete from proveedores_datos
|
||||
where proveedores_datos.id_proveedor in (
|
||||
select CONTACTOS.ID
|
||||
from CONTACTOS
|
||||
left join proveedores on proveedores.codigo = contactos.referencia
|
||||
WHERE proveedores.CODIGOCLIENTE is not null);
|
||||
|
||||
insert into proveedores_datos
|
||||
(ID_PROVEEDOR, ID_TIPO_IVA, CODIGO_ASIGNADO)
|
||||
select CONTACTOS.ID, 2, proveedores.CODIGOCLIENTE
|
||||
from CONTACTOS
|
||||
left join proveedores on proveedores.codigo = contactos.referencia
|
||||
WHERE proveedores.CODIGOCLIENTE is not null;
|
||||
|
||||
INSERT INTO CONTACTOS_DIRECCIONES
|
||||
(ID, ID_CONTACTO, CALLE, POBLACION, PROVINCIA, CODIGO_POSTAL, PERSONA_CONTACTO,
|
||||
TELEFONO, MOVIL, FAX, EMAIL)
|
||||
/* Insertamos la sucursales de los proveedores */
|
||||
select
|
||||
GEN_ID(GEN_CONTACTOS_DIR_ID, 1),
|
||||
contactos.id AS ID_CONTACTO,
|
||||
(COALESCE(sucursalesproveedor.CALLE,'') || ', ' || COALESCE(sucursalesproveedor.NUMERO,'') || ' ' || COALESCE(sucursalesproveedor.PISO,'')) AS CALLE,
|
||||
sucursalesproveedor.POBLACION AS POBLACION,
|
||||
sucursalesproveedor.PROVINCIA AS PROVINCIA,
|
||||
sucursalesproveedor.CODIGOPOSTAL AS CODIGO_POSTAL,
|
||||
sucursalesproveedor.PERSONACONTACTO AS PERSONA_CONTACTO,
|
||||
substr(sucursalesproveedor.TELEFONO1,1,25) AS TELEFONO,
|
||||
substr(sucursalesproveedor.TELEFONO2,1,25) AS MOVIL,
|
||||
substr(sucursalesproveedor.FAX,1,25) AS FAX,
|
||||
sucursalesproveedor.CORREO AS EMAIL
|
||||
from sucursalesproveedor
|
||||
left join contactos on contactos.referencia = sucursalesproveedor.codigoproveedor
|
||||
left join contactos_categorias on contactos_categorias.id_contacto = contactos.id
|
||||
where contactos_categorias.id_categoria = 2
|
||||
and (COALESCE(sucursalesproveedor.CALLE,'') || ', ' || COALESCE(sucursalesproveedor.NUMERO,'') || ' ' || COALESCE(sucursalesproveedor.PISO,'')) <> ',';
|
||||
|
||||
|
||||
|
||||
Extract MetaData con cmapos blob, lanzar script en nueva base de datos
|
||||
|
||||
CREATE TABLE CLIENTES (
|
||||
CODIGO VARCHAR(10) NOT NULL,
|
||||
NIFCIF VARCHAR(10) CHARACTER SET ISO8859_1,
|
||||
NOMBRE VARCHAR(100) CHARACTER SET ISO8859_1,
|
||||
CALLE VARCHAR(150) CHARACTER SET ISO8859_1,
|
||||
NUMERO VARCHAR(20) CHARACTER SET ISO8859_1,
|
||||
PISO VARCHAR(20) CHARACTER SET ISO8859_1,
|
||||
CODIGOPOSTAL VARCHAR(5) CHARACTER SET ISO8859_1,
|
||||
POBLACION VARCHAR(40) CHARACTER SET ISO8859_1,
|
||||
PROVINCIA VARCHAR(30) CHARACTER SET ISO8859_1,
|
||||
TELEFONO1 VARCHAR(30) CHARACTER SET ISO8859_1,
|
||||
TELEFONO2 VARCHAR(30) CHARACTER SET ISO8859_1,
|
||||
FAX VARCHAR(30) CHARACTER SET ISO8859_1,
|
||||
CORREO VARCHAR(60) CHARACTER SET ISO8859_1,
|
||||
PERSONACONTACTO VARCHAR(100) CHARACTER SET ISO8859_1,
|
||||
OBSERVACIONES BLOB SUB_TYPE 1 SEGMENT SIZE 100 CHARACTER SET ISO8859_1,
|
||||
BANCO VARCHAR(100) CHARACTER SET ISO8859_1,
|
||||
IVA FLOAT DEFAULT 0,
|
||||
DESCUENTO FLOAT DEFAULT 0,
|
||||
TIPOCLIENTE VARCHAR(50) CHARACTER SET ISO8859_1,
|
||||
ETIQUETADO SMALLINT,
|
||||
ULTIMOCAMBIO TIMESTAMP
|
||||
);
|
||||
ALTER TABLE CLIENTES ADD CONSTRAINT PK_CLIENTES PRIMARY KEY (CODIGO);
|
||||
|
||||
CREATE TABLE SUCURSALESCLIENTE (
|
||||
CODIGOCLIENTE VARCHAR(10) NOT NULL,
|
||||
CODIGO SMALLINT NOT NULL,
|
||||
CALLE VARCHAR(150),
|
||||
NUMERO VARCHAR(20),
|
||||
PISO VARCHAR(20),
|
||||
CODIGOPOSTAL VARCHAR(5),
|
||||
POBLACION VARCHAR(40),
|
||||
PROVINCIA VARCHAR(30),
|
||||
TELEFONO1 VARCHAR(30),
|
||||
TELEFONO2 VARCHAR(30),
|
||||
FAX VARCHAR(30),
|
||||
CORREO VARCHAR(60),
|
||||
PERSONACONTACTO VARCHAR(100)
|
||||
);
|
||||
ALTER TABLE SUCURSALESCLIENTE ADD CONSTRAINT PK_SUCURSALESCLIENTE PRIMARY KEY (CODIGOCLIENTE, CODIGO);
|
||||
ALTER TABLE SUCURSALESCLIENTE ADD FOREIGN KEY (CODIGOCLIENTE) REFERENCES CLIENTES (CODIGO) ON DELETE CASCADE ON UPDATE NO ACTION;
|
||||
|
||||
|
||||
insert into CONTACTOS
|
||||
(ID, REFERENCIA, NIF_CIF, NOMBRE, CALLE, POBLACION, PROVINCIA, CODIGO_POSTAL, TELEFONO_1, TELEFONO_2,
|
||||
FAX, EMAIL_1, PERSONA_CONTACTO, NOTAS)
|
||||
|
||||
select
|
||||
GEN_ID(GEN_CONTACTOS_ID, 1),
|
||||
clientes.CODIGO AS REFERENCIA,
|
||||
clientes.NIFCIF AS NIF_CIF,
|
||||
clientes.NOMBRE AS NOMBRE,
|
||||
(COALESCE(clientes.CALLE,'') || ', ' || COALESCE(clientes.NUMERO,'') || ' ' || COALESCE(clientes.PISO,'')) AS CALLE,
|
||||
clientes.POBLACION AS POBLACION,
|
||||
clientes.PROVINCIA AS PROVINCIA,
|
||||
clientes.CODIGOPOSTAL AS CODIGO_POSTAL,
|
||||
substr(clientes.TELEFONO1,1,25) AS TELEFONO_1,
|
||||
substr(clientes.TELEFONO2,1,25) AS TELEFONO_2,
|
||||
substr(clientes.FAX,1,25) AS FAX,
|
||||
clientes.CORREO AS EMAIL_1,
|
||||
clientes.PERSONACONTACTO AS PERSONA_CONTACTO,
|
||||
clientes.OBSERVACIONES AS NOTAS
|
||||
|
||||
from clientes;
|
||||
|
||||
|
||||
insert into contactos_categorias
|
||||
(ID_CONTACTO, ID_CATEGORIA)
|
||||
select ID, 1
|
||||
from contactos
|
||||
where ID not in (select ID_CONTACTO from contactos_categorias);
|
||||
|
||||
|
||||
MIRAR SI TODOS LOS CLIENTES TIENEN DESCUENTO NULL
|
||||
select *
|
||||
from clientes
|
||||
where descuento is not null;
|
||||
|
||||
|
||||
MIRAR SI TODOS LOS CLIENTES TIENEN IVA 16%
|
||||
select DISTINCT IVA
|
||||
from clientes;
|
||||
|
||||
//Establecemos el tipo de iva al 16 para todos los clientes
|
||||
insert into clientes_datos
|
||||
(ID_CLIENTE, ID_TIPO_IVA, REGIMEN_IVA)
|
||||
select CONTACTOS.ID, 1, 'General'
|
||||
from CONTACTOS
|
||||
left join contactos_categorias on contactos_categorias.id_contacto = contactos.id
|
||||
where contactos_categorias.id_categoria = 1;
|
||||
|
||||
SET GENERATOR GEN_CONTACTOS_DATOS_BANCO_ID TO 1;
|
||||
|
||||
|
||||
insert into contactos_datos_banco
|
||||
(ID, ID_contacto, titular)
|
||||
select GEN_ID(GEN_CONTACTOS_DATOS_BANCO_ID, 1), CONTACTOS.ID, clientes.banco
|
||||
from CONTACTOS
|
||||
left join clientes on clientes.codigo = contactos.referencia
|
||||
WHERE clientes.banco is not null;
|
||||
|
||||
|
||||
//Insertamos la distintas sucursales de cliente
|
||||
INSERT INTO CONTACTOS_DIRECCIONES
|
||||
(ID, ID_CONTACTO, CALLE, POBLACION, PROVINCIA, CODIGO_POSTAL, PERSONA_CONTACTO,
|
||||
TELEFONO, MOVIL, FAX, EMAIL)
|
||||
|
||||
select
|
||||
|
||||
GEN_ID(GEN_CONTACTOS_DIR_ID, 1),
|
||||
contactos.id AS ID_CONTACTO,
|
||||
(COALESCE(sucursalescliente.CALLE,'') || ', ' || COALESCE(sucursalescliente.NUMERO,'') || ' ' || COALESCE(sucursalescliente.PISO,'')) AS CALLE,
|
||||
sucursalescliente.POBLACION AS POBLACION,
|
||||
sucursalescliente.PROVINCIA AS PROVINCIA,
|
||||
sucursalescliente.CODIGOPOSTAL AS CODIGO_POSTAL,
|
||||
sucursalescliente.PERSONACONTACTO AS PERSONA_CONTACTO,
|
||||
substr(sucursalescliente.TELEFONO1,1,25) AS TELEFONO,
|
||||
substr(sucursalescliente.TELEFONO2,1,25) AS MOVIL,
|
||||
substr(sucursalescliente.FAX,1,25) AS FAX,
|
||||
sucursalescliente.CORREO AS EMAIL
|
||||
|
||||
from sucursalescliente
|
||||
left join contactos on contactos.referencia = sucursalescliente.codigocliente
|
||||
left join contactos_categorias on contactos_categorias.id_contacto = contactos.id
|
||||
where contactos_categorias.id_categoria = 1
|
||||
and (COALESCE(sucursalescliente.CALLE,'') || ', ' || COALESCE(sucursalescliente.NUMERO,'') || ' ' || COALESCE(sucursalescliente.PISO,'')) <> ',';
|
||||
|
||||
|
||||
drop table sucursalesproveedor;
|
||||
DROP TABLE PROVEEDORES;
|
||||
drop table sucursalescliente;
|
||||
DROP TABLE CLIENTES;
|
||||
|
||||
|
||||
insert into empresas_contactos
|
||||
(ID, ID_empresa, ID_contacto)
|
||||
select GEN_ID(GEN_EMPRESAS_CONTACTOS_ID, 1), 1, id
|
||||
from contactos;
|
||||
75
Database/RodaxSoftware.FactuGES.Database.proj
Normal file
@ -0,0 +1,75 @@
|
||||
<Project DefaultTargets="Build" InitialTargets="CreateOutputPath" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
|
||||
<!-- ASCII Constants -->
|
||||
<PropertyGroup>
|
||||
<DOUBLE_QUOTES>%22</DOUBLE_QUOTES>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<DBUser Condition=" '$(DBUser)' == '' ">sysdba</DBUser>
|
||||
<DBPassword Condition=" '$(DBPassword)' == '' ">masterkey</DBPassword>
|
||||
<DBServer Condition=" '$(SqlCmdRunner)' == '' ">localhost</DBServer>
|
||||
<DeploymentBuild Condition=" '$(DeploymentBuild)' == '' ">false</DeploymentBuild>
|
||||
<SqlScriptsFolder Condition=" '$(SqlScriptsFolder)' == '' ">$(MSBuildProjectDirectory)\Scripts</SqlScriptsFolder>
|
||||
<ToolsFolder Condition=" '$(ToolsFolder)' == '' ">$(MSBuildProjectDirectory)\..\Tools</ToolsFolder>
|
||||
<CodeOutputFolder Condition=" '$(CodeOutputFolder)' == '' ">$(MSBuildProjectDirectory)\..\Output</CodeOutputFolder>
|
||||
<SqlCmdRunner Condition=" '$(SqlCmdRunner)' == '' ">$(ToolsFolder)\ISQL\isql.exe</SqlCmdRunner>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition=" '|$(Configuration)|' == '|Debug|' ">
|
||||
<OutputPath>$(CodeOutputFolder)\Debug\Database</OutputPath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '|$(Configuration)|' == '|Release|' ">
|
||||
<OutputPath>$(CodeOutputFolder)\Release\Database</OutputPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Sql Include="$(SqlScriptsFolder)\factuges.sql" />
|
||||
<Sql Include="$(SqlScriptsFolder)\factuges_sysdata.sql" />
|
||||
<SqlOutput Include="$(OutputPath)\factuges.fdb" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="CreateOutputPath">
|
||||
<MakeDir Directories="$(OutputPath)" Condition="!Exists('$(OutputPath)')"/>
|
||||
</Target>
|
||||
|
||||
<Target Name="Build"
|
||||
DependsOnTargets="CreateDatabase;InsertSysData"/>
|
||||
|
||||
|
||||
<Target Name="CreateDatabase"
|
||||
Inputs="@(Sql)"
|
||||
Outputs="@(SqlOutput)">
|
||||
|
||||
<Exec Command="$(DOUBLE_QUOTES)$(SqlCmdRunner)$(DOUBLE_QUOTES) -i $(DOUBLE_QUOTES)$(SqlScriptsFolder)\factuges.sql$(DOUBLE_QUOTES) -u $(DBUser) -p $(DBPassword) -q"
|
||||
WorkingDirectory="$(OutputPath)" />
|
||||
</Target>
|
||||
|
||||
<Target Name="InsertSysData">
|
||||
<Exec Command="$(DOUBLE_QUOTES)$(SqlCmdRunner)$(DOUBLE_QUOTES) -i $(DOUBLE_QUOTES)$(SqlScriptsFolder)\factuges_sysdata.sql$(DOUBLE_QUOTES) -u $(DBUser) -p $(DBPassword) -q $(DOUBLE_QUOTES)$(OutputPath)\factuges.fdb$(DOUBLE_QUOTES)"
|
||||
WorkingDirectory="$(OutputPath)" />
|
||||
|
||||
<Exec Command="$(DOUBLE_QUOTES)$(SqlCmdRunner)$(DOUBLE_QUOTES) -i $(DOUBLE_QUOTES)$(SqlScriptsFolder)\factuges_listaprovincias.sql$(DOUBLE_QUOTES) -u $(DBUser) -p $(DBPassword) -q $(DOUBLE_QUOTES)$(OutputPath)\factuges.fdb$(DOUBLE_QUOTES)"
|
||||
WorkingDirectory="$(OutputPath)" />
|
||||
|
||||
<Exec Command="$(DOUBLE_QUOTES)$(SqlCmdRunner)$(DOUBLE_QUOTES) -i $(DOUBLE_QUOTES)$(SqlScriptsFolder)\factuges_listapoblaciones.sql$(DOUBLE_QUOTES) -u $(DBUser) -p $(DBPassword) -q $(DOUBLE_QUOTES)$(OutputPath)\factuges.fdb$(DOUBLE_QUOTES)"
|
||||
WorkingDirectory="$(OutputPath)" />
|
||||
</Target>
|
||||
|
||||
<Target Name="Extract"
|
||||
Inputs="$(OutputPath)\factuges.fdb"
|
||||
Outputs="$(OutputPath)\factuges_$(Configuration).sql">
|
||||
|
||||
<Exec Command="$(DOUBLE_QUOTES)$(SqlCmdRunner)$(DOUBLE_QUOTES) -a -d factuges.fdb -u $(DBUser) -p $(DBPassword) -o $(DOUBLE_QUOTES)$(OutputPath)\factuges_$(Configuration).sql$(DOUBLE_QUOTES) $(DOUBLE_QUOTES)$(OutputPath)\factuges.fdb$(DOUBLE_QUOTES) -b"
|
||||
WorkingDirectory="$(OutputPath)" />
|
||||
</Target>
|
||||
|
||||
<Target Name="Rebuild"
|
||||
DependsOnTargets="Clean;Build"/>
|
||||
|
||||
<Target Name="Clean">
|
||||
<Delete Files="@(SqlOutput)"/>
|
||||
</Target>
|
||||
|
||||
</Project>
|
||||
14
Database/_db_enviroment.bat
Normal file
@ -0,0 +1,14 @@
|
||||
rem Full path to the firebird isql utility.
|
||||
SET ISQL="..\Tools\ISQL\isql.exe"
|
||||
|
||||
SET DB_LOGIN=-USER SYSDBA -PASSWORD masterkey
|
||||
|
||||
rem DB ALIAS
|
||||
SET DB_ALIAS=FACTUGES.FDB
|
||||
SET DB_ALIAS_TEST=FACTUGES_TEST.FDB
|
||||
|
||||
set DB_SQL_SCRIPT=scripts\factuges.sql
|
||||
set DB_SQL_SYSDATA=scripts\factuges.sql
|
||||
|
||||
set DB_DEBUG_PATH=..\output\debug\database
|
||||
set DB_RELEASE_PATH=..\output\release\database
|
||||
67
Database/db_execute.bat
Normal file
@ -0,0 +1,67 @@
|
||||
rem @echo off
|
||||
call _db_enviroment.bat
|
||||
|
||||
if "%1" == "drop" goto drop
|
||||
if "%1" == "create" goto create
|
||||
if "%1" == "extract" goto extract
|
||||
if "%1" == "insert_data" goto insert_data
|
||||
if "%1" == "recreate" goto recreate
|
||||
goto ayuda
|
||||
|
||||
:recreate
|
||||
call %0 drop
|
||||
IF %ERRORLEVEL% == 1 GOTO ERROR
|
||||
call %0 create
|
||||
IF %ERRORLEVEL% == 1 GOTO ERROR
|
||||
call %0 insert_data
|
||||
IF %ERRORLEVEL% == 1 GOTO ERROR
|
||||
goto end
|
||||
|
||||
:drop
|
||||
echo Borrando la base de datos %DB_ALIAS%...
|
||||
IF EXIST "%DB_DEBUG_PATH%\%DB_ALIAS%" DEL %DB_DEBUG_PATH%\%DB_ALIAS%
|
||||
IF %ERRORLEVEL% == 1 GOTO ERROR
|
||||
goto done
|
||||
|
||||
:create
|
||||
echo Creando la base de datos %DB_ALIAS% en %DB_DEBUG_PATH%\%DB_ALIAS%
|
||||
%ISQL% -i %DB_SQL_SCRIPT% %DB_LOGIN% -q
|
||||
IF %ERRORLEVEL% == 1 GOTO ERROR
|
||||
move %DB_ALIAS% "%DB_DEBUG_PATH%"
|
||||
goto done
|
||||
|
||||
:extract
|
||||
echo Extrayendo %DB_ALIAS% al script SQL %DB_SQL_SCRIPT%...
|
||||
IF EXIST %DB_SQL_SCRIPT% DEL %DB_SQL_SCRIPT%
|
||||
%ISQL% -a -d %DB_ALIAS% %DB_LOGIN% -o %DB_SQL_SCRIPT% %DB_DEBUG_PATH%\%DB_ALIAS% -b
|
||||
IF %ERRORLEVEL% == 1 GOTO ERROR
|
||||
goto done
|
||||
|
||||
:insert_data
|
||||
echo Insertando datos del sistema en %DB_ALIAS%...
|
||||
%ISQL% -i %DB_SQL_SYSDATA% %DB_LOGIN% %DB_DEBUG_PATH%\%DB_ALIAS%
|
||||
IF %ERRORLEVEL% == 1 GOTO ERROR
|
||||
goto done
|
||||
|
||||
:error
|
||||
ECHO Se ha producido un error!!!!
|
||||
goto end
|
||||
|
||||
:ayuda
|
||||
echo Modo de uso: %0 [create / drop / extract]
|
||||
echo ------------
|
||||
echo create: crear la base de datos %DB_ALIAS% (la borra antes si ya existe)
|
||||
echo drop: borrar la base de datos %DB_ALIAS%
|
||||
echo extract: extrae los metadatos de la BD a un fichero SQL (%DB_SQL_SCRIPT%)
|
||||
echo insert_data: extrae los metadatos de la BD a un fichero SQL (%DB_SQL_SCRIPT%)
|
||||
echo.
|
||||
echo recreate: rehacer la BD: borrarla si existe, crearla e insertar los datos del sistema
|
||||
echo.
|
||||
goto end
|
||||
|
||||
:done
|
||||
echo Hecho!
|
||||
echo.
|
||||
goto end
|
||||
|
||||
:end
|
||||
4052
Database/scripts/factuges.sql
Normal file
4050
Database/scripts/factuges.sql.bak
Normal file
33066
Database/scripts/factuges_listapoblaciones.sql
Normal file
54
Database/scripts/factuges_listaprovincias.sql
Normal file
@ -0,0 +1,54 @@
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (1, 'Álava');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (2, 'Albacete');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (3, 'Alicante');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (4, 'Almería');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (5, 'Ávila');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (6, 'Badajoz');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (7, 'Baleares');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (8, 'Barcelona');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (9, 'Burgos');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (10, 'Cáceres');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (11, 'Cádiz');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (12, 'Castellón');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (13, 'Ciudad Real');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (14, 'Córdoba');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (15, 'La Coruña');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (16, 'Cuenca');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (17, 'Gerona');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (18, 'Granada');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (19, 'Guadalajara');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (20, 'Guipúzcoa');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (21, 'Huelva');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (22, 'Huesca');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (23, 'Jaén');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (24, 'León');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (25, 'Lérida');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (26, 'La Rioja');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (27, 'Lugo');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (28, 'Madrid');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (29, 'Málaga');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (30, 'Murcia');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (31, 'Navarra');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (32, 'Orense');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (33, 'Asturias');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (34, 'Palencia');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (35, 'Las Palmas');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (36, 'Pontevedra');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (37, 'Salamanca');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (38, 'Santa Cruz de Tenerife');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (39, 'Cantabria');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (40, 'Segovia');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (41, 'Sevilla');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (42, 'Soria');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (43, 'Tarragona');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (44, 'Teruel');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (45, 'Toledo');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (46, 'Valencia');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (47, 'Valladolid');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (48, 'Vizcaya');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (49, 'Zamora');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (50, 'Zaragoza');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (51, 'Ceuta');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (52, 'Melilla');
|
||||
INSERT INTO PROVINCIAS (ID, DESCRIPCION) VALUES (85, 'Andorra');
|
||||
COMMIT WORK;
|
||||
194
Database/scripts/factuges_sysdata.sql
Normal file
@ -0,0 +1,194 @@
|
||||
SET SQL DIALECT 3;
|
||||
|
||||
SET NAMES UTF8;
|
||||
|
||||
INSERT INTO CATEGORIAS (ID, CATEGORIA) VALUES (1, 'CLIENTE');
|
||||
INSERT INTO CATEGORIAS (ID, CATEGORIA) VALUES (2, 'PROVEEDOR');
|
||||
INSERT INTO CATEGORIAS (ID, CATEGORIA) VALUES (3, 'AGENTE');
|
||||
INSERT INTO CATEGORIAS (ID, CATEGORIA) VALUES (4, 'EMPLEADO');
|
||||
SET GENERATOR GEN_CATEGORIAS_ID TO 4;
|
||||
COMMIT WORK;
|
||||
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (1, 1, 'VENTAS ARTICULOS', 'InfVentasArticuloController', 4, 'Ventas por artículo', 'Informe de ventas por artículo', NULL, 'S', NULL);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (2, 1, 'VENTAS ARTICULOS', 'InfVentasArticuloController', 4, 'Ventas por cliente', 'Informe de ventas por cliente y artículo', NULL, 'S', NULL);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (3, 1, 'VENTAS ARTICULOS', 'InfVentasArticuloController', 4, 'Ventas por agente y cliente', 'Informe de ventas por agente y cliente', NULL, 'S', NULL);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (4, 1, 'MARGEN ARTICULOS', 'InfMargenArticuloController', 0, 'Margen (promedio) por artículo', 'Informe de margen por artículo teniendo en cuenta el precio neto de venta promedio', NULL, 'S', 0);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (5, 1, 'VENTAS ARTICULOS', 'InfVentasArticuloController', 4, 'Ventas por proveedor', 'Informe de ventas por proveedor y artículo', NULL, 'S', NULL);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (6, 1, 'MARGEN ARTICULOS', 'InfMargenArticuloController', 0, 'Margen (promedio) por cliente', 'Informe de margen por artículo agrupado por cliente teniendo en cuenta el precio neto de venta promedio', NULL, 'S', 1);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (7, 1, 'MARGEN ARTICULOS', 'InfMargenArticuloController', 0, 'Margen (promedio) por agente y cliente', 'Informe de margen por artículo agrupado por agente y cliente teniendo en cuenta el precio neto de venta promedio', NULL, 'S', 1);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (8, 1, 'MARGEN ARTICULOS', 'InfMargenArticuloController', 2, 'Margen (ult. venta) por artículo', 'Informe de margen por artículo teniendo en cuenta el precio neto de última venta', NULL, 'S', 0);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (9, 1, 'MARGEN ARTICULOS', 'InfMargenArticuloController', 2, 'Margen (ult.venta) por clientes', 'Informe de margen por artículo agrupado por cliente teniendo en cuenta el precio neto de última venta', NULL, 'S', 1);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (10, 1, 'MARGEN ARTICULOS', 'InfMargenArticuloController', 2, 'Margen (ult. venta) por agente y cliente', 'Informe de margen por artículo agrupado por agente y cliente teniendo en cuenta el precio neto de última venta', NULL, 'S', 1);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (11, 1, 'VENTAS ARTICULOS', 'InfVentasArticuloController', 4, 'Ventas articulo por fecha y cliente', 'Informe de ventas con frcha y factura agrupado por cliente', NULL, 'S', NULL);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (12, 1, 'MARGEN ARTICULOS', 'InfMargenArticuloController', 0, 'Margen ventas - compras pro', 'Informe que nos da el margen de las ventas de un periodo de tiempo en base al importe neto de compras promedio', NULL, 'S', 2);
|
||||
SET GENERATOR GEN_INFORMES_ID TO 13;
|
||||
COMMIT WORK;
|
||||
|
||||
|
||||
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (1, 'REF_FACTURAS_CLIENTE', 'EL/0001', 1, 'Ref. facturas de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (2, 'REF_PEDIDOS_CLIENTE', '00001', 1, 'Ref. pedidos de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (3, 'REF_PEDIDOS_PROVEEDOR', '00001', 1, 'Ref. pedidos de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (4, 'REF_ALBARANES_CLIENTE', '00001', 1, 'Ref. albaranes de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (5, 'REF_ALBARANES_PROVEEDOR', '00001', 1, 'Ref. albaranes de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (6, 'REF_REMESAS_CLIENTE', '00001', 1, 'Ref. remesas de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (7, 'REF_COMISIONES', '00001', 1, 'Ref. liquidaciones de comision');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (8, 'REF_FACTURAS_PROVEEDOR', '2010/0001', 1, 'Ref. facturas de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (9, 'REF_ALBARANES_DEV_CLIENTE', '00001', 1, 'Ref. ordenes de devolucion de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (10, 'REF_ALBARANES_DEV_PROVEEDOR', '00001', 1, 'Ref. ordenes de devolucion de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (11, 'REF_REMESAS_PROVEEDOR', '00001', 1, 'Ref. remesas de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (12, 'REF_ABONOS_CLIENTE', 'AB-EL/0001', 1, 'Ref. abonos de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (13, 'REF_ABONOS_PROVEEDOR', 'A. 2010/0001', 1, 'Ref. abonos de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (14, 'REF_FACTURAS_CLIENTE', 'NFC/0001', 2, 'Ref. facturas de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (15, 'REF_PEDIDOS_CLIENTE', 'NPC/0001', 2, 'Ref. pedidos de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (16, 'REF_PEDIDOS_PROVEEDOR', 'NPP/0001', 2, 'Ref. pedidos de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (17, 'REF_ALBARANES_CLIENTE', 'NAC/0001', 2, 'Ref. albaranes de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (18, 'REF_ALBARANES_PROVEEDOR', 'NAP/0001', 2, 'Ref. albaranes de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (19, 'REF_REMESAS_CLIENTE', 'NRC/0001', 2, 'Ref. remesas de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (20, 'REF_COMISIONES', 'NL/0001', 2, 'Ref. liquidaciones de comision');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (21, 'REF_FACTURAS_PROVEEDOR', 'NFP/0001', 2, 'Ref. facturas de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (22, 'REF_ALBARANES_DEV_CLIENTE', 'NOC/0001', 2, 'Ref. ordenes de devolucion de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (23, 'REF_ALBARANES_DEV_PROVEEDOR', 'NOP/0001', 2, 'Ref. ordenes de devolucion de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (24, 'REF_REMESAS_PROVEEDOR', 'NRP/0001', 2, 'Ref. remesas de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (25, 'REF_ABONOS_CLIENTE', 'NFAC/0001', 2, 'Ref. abonos de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (26, 'REF_ABONOS_PROVEEDOR', 'NFAP/0001', 2, 'Ref. abonos de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (27, 'REF_CLIENTES', '0000000001', NULL, 'Ref. clientes');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (28, 'REF_PROVEEDORES', '0000000001', NULL, 'Ref. proveedores');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (29, 'REF_AGENTES', '00001', NULL, 'Ref. agentes');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (30, 'REF_ARTICULOS', '1', NULL, 'Ref. artículos');
|
||||
SET GENERATOR GEN_REFERENCIAS_ID TO 31;
|
||||
COMMIT WORK;
|
||||
|
||||
INSERT INTO TIPOS_IVA (ID, REFERENCIA, DESCRIPCION, IVA, RE) VALUES (2, 'IVA16', 'IVA16', 16, 4);
|
||||
INSERT INTO TIPOS_IVA (ID, REFERENCIA, DESCRIPCION, IVA, RE) VALUES (3, 'IVA4', 'IVA4', 4, 0.5);
|
||||
INSERT INTO TIPOS_IVA (ID, REFERENCIA, DESCRIPCION, IVA, RE) VALUES (4, 'IVA7', 'IVA7', 7, 1);
|
||||
INSERT INTO TIPOS_IVA (ID, REFERENCIA, DESCRIPCION, IVA, RE) VALUES (6, 'EXENTO', 'EXTRANJERO', 0, 0);
|
||||
INSERT INTO TIPOS_IVA (ID, REFERENCIA, DESCRIPCION, IVA, RE) VALUES (1, 'IVA20', 'IVA20', 20, NULL);
|
||||
INSERT INTO TIPOS_IVA (ID, REFERENCIA, DESCRIPCION, IVA, RE) VALUES (7, '18%', '18%', 18, 4);
|
||||
SET GENERATOR GEN_TIPOS_IVA_ID TO 8;
|
||||
COMMIT WORK;
|
||||
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (8, '15', '15 dias', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (12, 'TALON30', 'Talon 30 DIAS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (7, 'CONTADO', 'Pago al contado', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (13, '30', '30 DIAS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (14, '30-60-90', '3 PLAZOS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (53, '30-60', 'DOS PAGOS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (20, '60', '60 dias', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (21, '90', '90 dias', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (23, 'TALON60', 'TALON 60 DIAS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (29, '45', '45 dias', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (30, '90-120-150', '90-120-150', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (32, 'TALON90', 'TALON 90 DIAS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (33, 'GRATUITO', 'SIN CARGO', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (34, '30-60-90-120', '30-60-90-120', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (35, '30-60-90-120-150-180', '30-60-90-120-150-180', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (36, '60-90-120', '60-90-120', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (37, '90-120', '90-120', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (38, 'TRANSF/CCM 30 DIAS', 'TRANSFERENCIA BANCARIA', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (39, 'CARGO EN CCM', 'CARGO EN CCM', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (40, 'TRASF/ CAIXA C.', 'TRANSFERENCIA CAIXA CATALUÑA', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (44, '60-90', '2 PLAZOS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (41, '7 PAGOS', '120-150-180-210-240-270-300', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (49, 'TRASF N/F CCM.', 'TRANSFERENCIA A NUESTRO FAVOR CCM.', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (48, 'CINCO PAGOS', 'CINCO PAGOS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (50, 'DESCARGA', 'PAGO A LA ENTREGA', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (51, 'VISA', 'PAGO POR VISA', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (54, '30-45', '2 PAGOS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (55, 'TALON', 'TALON', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (56, 'TRANS. 10 DIAS', 'TRANSF. 10 DIAS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (57, ' 1 DIA', 'UN DIA', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (58, 'TALON120 DIAS', 'TALON 120 DIAS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (61, '30-60-90-120-150', '30-60-90-120-150', NULL, NULL, NULL, NULL, NULL);
|
||||
SET GENERATOR GEN_FORMAS_PAGO_ID TO 62;
|
||||
COMMIT WORK;
|
||||
|
||||
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (65, 42, 60, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (12, 14, 30, 33.33);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (13, 14, 60, 33.33);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (14, 14, 90, 33.34);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (93, 53, 30, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (19, 12, 30, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (20, 23, 60, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (6, 8, 15, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (29, 29, 45, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (30, 30, 90, 33.33);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (23, 20, 60, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (24, 21, 90, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (31, 30, 120, 33.33);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (32, 30, 150, 33.34);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (33, 32, 90, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (34, 7, 0, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (35, 34, 30, 25);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (36, 34, 60, 25);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (37, 34, 90, 25);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (38, 34, 120, 25);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (39, 35, 30, 16.67);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (40, 35, 60, 16.67);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (41, 35, 90, 16.67);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (42, 35, 120, 16.66);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (43, 35, 150, 16.67);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (44, 35, 180, 16.67);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (45, 36, 60, 33.33);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (46, 36, 90, 33.33);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (47, 36, 120, 33.33);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (48, 37, 90, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (49, 37, 120, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (50, 38, 30, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (66, 42, 90, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (67, 43, 60, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (68, 43, 90, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (69, 44, 60, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (70, 44, 90, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (82, 48, 30, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (57, 13, 30, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (72, 46, 30, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (73, 46, 60, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (74, 46, 90, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (75, 46, 120, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (76, 46, 150, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (77, 47, 30, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (58, 41, 120, 14.29);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (59, 41, 150, 14.29);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (60, 41, 180, 14.29);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (61, 41, 210, 14.29);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (62, 41, 240, 14.29);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (63, 41, 270, 14.29);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (64, 41, 300, 14.29);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (78, 47, 60, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (79, 47, 90, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (80, 47, 120, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (81, 47, 150, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (83, 48, 60, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (84, 48, 90, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (85, 48, 120, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (86, 48, 150, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (87, 40, 0, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (88, 50, 1, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (89, 51, 1, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (90, 49, 1, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (91, 52, 60, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (92, 39, NULL, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (94, 53, 60, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (95, 54, 30, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (96, 54, 45, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (97, 56, 10, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (100, 58, 120, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (101, 57, NULL, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (102, 55, 0, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (103, 59, 0, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (104, 33, NULL, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (106, 61, 30, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (107, 61, 60, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (108, 61, 90, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (109, 61, 120, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (110, 61, 150, 20);
|
||||
SET GENERATOR GEN_FORMAS_PAGO_PLAZOS_ID TO 111;
|
||||
COMMIT WORK;
|
||||
|
||||
INSERT INTO EMPRESAS (ID, NIF_CIF, NOMBRE, RAZON_SOCIAL, CALLE, POBLACION, PROVINCIA, CODIGO_POSTAL, TELEFONO_1, TELEFONO_2, MOVIL_1, MOVIL_2, FAX, EMAIL_1, EMAIL_2, PAGINA_WEB, FECHA_ALTA, FECHA_MODIFICACION, USUARIO, REGISTRO_MERCANTIL, ID_TIPO_IVA) VALUES (1, 'B82780453', 'Luis León Representaciones S.L.', NULL, 'C/ Sur, 4, Bajo 1', 'Moraleja de Enmedio', 'Madrid', '28950', '916004041', NULL, NULL, NULL, '916093287', NULL, NULL, NULL, NULL, NULL, NULL, '', 7);
|
||||
INSERT INTO EMPRESAS (ID, NIF_CIF, NOMBRE, RAZON_SOCIAL, CALLE, POBLACION, PROVINCIA, CODIGO_POSTAL, TELEFONO_1, TELEFONO_2, MOVIL_1, MOVIL_2, FAX, EMAIL_1, EMAIL_2, PAGINA_WEB, FECHA_ALTA, FECHA_MODIFICACION, USUARIO, REGISTRO_MERCANTIL, ID_TIPO_IVA) VALUES (2, 'ssss2', 'ssssss', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 7);
|
||||
SET GENERATOR GEN_EMPRESAS_ID TO 3;
|
||||
COMMIT WORK;
|
||||
|
||||
193
Database/scripts/factuges_sysdata.sql.bak
Normal file
@ -0,0 +1,193 @@
|
||||
SET SQL DIALECT 3;
|
||||
|
||||
SET NAMES UTF8;
|
||||
|
||||
INSERT INTO CATEGORIAS (ID, CATEGORIA) VALUES (1, 'CLIENTE');
|
||||
INSERT INTO CATEGORIAS (ID, CATEGORIA) VALUES (2, 'PROVEEDOR');
|
||||
INSERT INTO CATEGORIAS (ID, CATEGORIA) VALUES (3, 'AGENTE');
|
||||
SET GENERATOR GEN_CATEGORIAS_ID TO 4;
|
||||
COMMIT WORK;
|
||||
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (1, 1, 'VENTAS ARTICULOS', 'InfVentasArticuloController', 4, 'Ventas por artículo', 'Informe de ventas por artículo', NULL, 'S', NULL);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (2, 1, 'VENTAS ARTICULOS', 'InfVentasArticuloController', 4, 'Ventas por cliente', 'Informe de ventas por cliente y artículo', NULL, 'S', NULL);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (3, 1, 'VENTAS ARTICULOS', 'InfVentasArticuloController', 4, 'Ventas por agente y cliente', 'Informe de ventas por agente y cliente', NULL, 'S', NULL);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (4, 1, 'MARGEN ARTICULOS', 'InfMargenArticuloController', 0, 'Margen (promedio) por artículo', 'Informe de margen por artículo teniendo en cuenta el precio neto de venta promedio', NULL, 'S', 0);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (5, 1, 'VENTAS ARTICULOS', 'InfVentasArticuloController', 4, 'Ventas por proveedor', 'Informe de ventas por proveedor y artículo', NULL, 'S', NULL);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (6, 1, 'MARGEN ARTICULOS', 'InfMargenArticuloController', 0, 'Margen (promedio) por cliente', 'Informe de margen por artículo agrupado por cliente teniendo en cuenta el precio neto de venta promedio', NULL, 'S', 1);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (7, 1, 'MARGEN ARTICULOS', 'InfMargenArticuloController', 0, 'Margen (promedio) por agente y cliente', 'Informe de margen por artículo agrupado por agente y cliente teniendo en cuenta el precio neto de venta promedio', NULL, 'S', 1);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (8, 1, 'MARGEN ARTICULOS', 'InfMargenArticuloController', 2, 'Margen (ult. venta) por artículo', 'Informe de margen por artículo teniendo en cuenta el precio neto de última venta', NULL, 'S', 0);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (9, 1, 'MARGEN ARTICULOS', 'InfMargenArticuloController', 2, 'Margen (ult.venta) por clientes', 'Informe de margen por artículo agrupado por cliente teniendo en cuenta el precio neto de última venta', NULL, 'S', 1);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (10, 1, 'MARGEN ARTICULOS', 'InfMargenArticuloController', 2, 'Margen (ult. venta) por agente y cliente', 'Informe de margen por artículo agrupado por agente y cliente teniendo en cuenta el precio neto de última venta', NULL, 'S', 1);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (11, 1, 'VENTAS ARTICULOS', 'InfVentasArticuloController', 4, 'Ventas articulo por fecha y cliente', 'Informe de ventas con frcha y factura agrupado por cliente', NULL, 'S', NULL);
|
||||
INSERT INTO INFORMES (ID, ID_EMPRESA, CATEGORIA, CONTROLLER, ICONO, NOMBRE, DESCRIPCION, ORDEN, MODIFICABLE, TIPO_AGRUPACION) VALUES (12, 1, 'MARGEN ARTICULOS', 'InfMargenArticuloController', 0, 'Margen ventas - compras pro', 'Informe que nos da el margen de las ventas de un periodo de tiempo en base al importe neto de compras promedio', NULL, 'S', 2);
|
||||
SET GENERATOR GEN_INFORMES_ID TO 13;
|
||||
COMMIT WORK;
|
||||
|
||||
|
||||
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (1, 'REF_FACTURAS_CLIENTE', 'EL/0001', 1, 'Ref. facturas de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (2, 'REF_PEDIDOS_CLIENTE', '00001', 1, 'Ref. pedidos de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (3, 'REF_PEDIDOS_PROVEEDOR', '00001', 1, 'Ref. pedidos de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (4, 'REF_ALBARANES_CLIENTE', '00001', 1, 'Ref. albaranes de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (5, 'REF_ALBARANES_PROVEEDOR', '00001', 1, 'Ref. albaranes de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (6, 'REF_REMESAS_CLIENTE', '00001', 1, 'Ref. remesas de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (7, 'REF_COMISIONES', '00001', 1, 'Ref. liquidaciones de comision');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (8, 'REF_FACTURAS_PROVEEDOR', '2010/0001', 1, 'Ref. facturas de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (9, 'REF_ALBARANES_DEV_CLIENTE', '00001', 1, 'Ref. ordenes de devolucion de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (10, 'REF_ALBARANES_DEV_PROVEEDOR', '00001', 1, 'Ref. ordenes de devolucion de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (11, 'REF_REMESAS_PROVEEDOR', '00001', 1, 'Ref. remesas de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (12, 'REF_ABONOS_CLIENTE', 'AB-EL/0001', 1, 'Ref. abonos de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (13, 'REF_ABONOS_PROVEEDOR', 'A. 2010/0001', 1, 'Ref. abonos de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (14, 'REF_FACTURAS_CLIENTE', 'NFC/0001', 2, 'Ref. facturas de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (15, 'REF_PEDIDOS_CLIENTE', 'NPC/0001', 2, 'Ref. pedidos de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (16, 'REF_PEDIDOS_PROVEEDOR', 'NPP/0001', 2, 'Ref. pedidos de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (17, 'REF_ALBARANES_CLIENTE', 'NAC/0001', 2, 'Ref. albaranes de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (18, 'REF_ALBARANES_PROVEEDOR', 'NAP/0001', 2, 'Ref. albaranes de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (19, 'REF_REMESAS_CLIENTE', 'NRC/0001', 2, 'Ref. remesas de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (20, 'REF_COMISIONES', 'NL/0001', 2, 'Ref. liquidaciones de comision');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (21, 'REF_FACTURAS_PROVEEDOR', 'NFP/0001', 2, 'Ref. facturas de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (22, 'REF_ALBARANES_DEV_CLIENTE', 'NOC/0001', 2, 'Ref. ordenes de devolucion de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (23, 'REF_ALBARANES_DEV_PROVEEDOR', 'NOP/0001', 2, 'Ref. ordenes de devolucion de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (24, 'REF_REMESAS_PROVEEDOR', 'NRP/0001', 2, 'Ref. remesas de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (25, 'REF_ABONOS_CLIENTE', 'NFAC/0001', 2, 'Ref. abonos de cliente');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (26, 'REF_ABONOS_PROVEEDOR', 'NFAP/0001', 2, 'Ref. abonos de proveedor');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (27, 'REF_CLIENTES', '0000000001', NULL, 'Ref. clientes');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (28, 'REF_PROVEEDORES', '0000000001', NULL, 'Ref. proveedores');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (29, 'REF_AGENTES', '00001', NULL, 'Ref. agentes');
|
||||
INSERT INTO REFERENCIAS (ID, CODIGO, VALOR, ID_EMPRESA, DESCRIPCION) VALUES (30, 'REF_ARTICULOS', '1', NULL, 'Ref. artículos');
|
||||
SET GENERATOR GEN_REFERENCIAS_ID TO 31;
|
||||
COMMIT WORK;
|
||||
|
||||
INSERT INTO TIPOS_IVA (ID, REFERENCIA, DESCRIPCION, IVA, RE) VALUES (2, 'IVA16', 'IVA16', 16, 4);
|
||||
INSERT INTO TIPOS_IVA (ID, REFERENCIA, DESCRIPCION, IVA, RE) VALUES (3, 'IVA4', 'IVA4', 4, 0.5);
|
||||
INSERT INTO TIPOS_IVA (ID, REFERENCIA, DESCRIPCION, IVA, RE) VALUES (4, 'IVA7', 'IVA7', 7, 1);
|
||||
INSERT INTO TIPOS_IVA (ID, REFERENCIA, DESCRIPCION, IVA, RE) VALUES (6, 'EXENTO', 'EXTRANJERO', 0, 0);
|
||||
INSERT INTO TIPOS_IVA (ID, REFERENCIA, DESCRIPCION, IVA, RE) VALUES (1, 'IVA20', 'IVA20', 20, NULL);
|
||||
INSERT INTO TIPOS_IVA (ID, REFERENCIA, DESCRIPCION, IVA, RE) VALUES (7, '18%', '18%', 18, 4);
|
||||
SET GENERATOR GEN_TIPOS_IVA_ID TO 8;
|
||||
COMMIT WORK;
|
||||
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (8, '15', '15 dias', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (12, 'TALON30', 'Talon 30 DIAS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (7, 'CONTADO', 'Pago al contado', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (13, '30', '30 DIAS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (14, '30-60-90', '3 PLAZOS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (53, '30-60', 'DOS PAGOS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (20, '60', '60 dias', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (21, '90', '90 dias', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (23, 'TALON60', 'TALON 60 DIAS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (29, '45', '45 dias', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (30, '90-120-150', '90-120-150', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (32, 'TALON90', 'TALON 90 DIAS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (33, 'GRATUITO', 'SIN CARGO', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (34, '30-60-90-120', '30-60-90-120', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (35, '30-60-90-120-150-180', '30-60-90-120-150-180', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (36, '60-90-120', '60-90-120', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (37, '90-120', '90-120', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (38, 'TRANSF/CCM 30 DIAS', 'TRANSFERENCIA BANCARIA', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (39, 'CARGO EN CCM', 'CARGO EN CCM', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (40, 'TRASF/ CAIXA C.', 'TRANSFERENCIA CAIXA CATALUÑA', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (44, '60-90', '2 PLAZOS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (41, '7 PAGOS', '120-150-180-210-240-270-300', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (49, 'TRASF N/F CCM.', 'TRANSFERENCIA A NUESTRO FAVOR CCM.', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (48, 'CINCO PAGOS', 'CINCO PAGOS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (50, 'DESCARGA', 'PAGO A LA ENTREGA', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (51, 'VISA', 'PAGO POR VISA', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (54, '30-45', '2 PAGOS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (55, 'TALON', 'TALON', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (56, 'TRANS. 10 DIAS', 'TRANSF. 10 DIAS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (57, ' 1 DIA', 'UN DIA', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (58, 'TALON120 DIAS', 'TALON 120 DIAS', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO FORMAS_PAGO (ID, REFERENCIA, DESCRIPCION, TITULAR, ENTIDAD, SUCURSAL, DC, CUENTA) VALUES (61, '30-60-90-120-150', '30-60-90-120-150', NULL, NULL, NULL, NULL, NULL);
|
||||
SET GENERATOR GEN_FORMAS_PAGO_ID TO 62;
|
||||
COMMIT WORK;
|
||||
|
||||
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (65, 42, 60, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (12, 14, 30, 33.33);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (13, 14, 60, 33.33);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (14, 14, 90, 33.34);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (93, 53, 30, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (19, 12, 30, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (20, 23, 60, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (6, 8, 15, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (29, 29, 45, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (30, 30, 90, 33.33);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (23, 20, 60, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (24, 21, 90, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (31, 30, 120, 33.33);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (32, 30, 150, 33.34);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (33, 32, 90, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (34, 7, 0, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (35, 34, 30, 25);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (36, 34, 60, 25);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (37, 34, 90, 25);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (38, 34, 120, 25);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (39, 35, 30, 16.67);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (40, 35, 60, 16.67);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (41, 35, 90, 16.67);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (42, 35, 120, 16.66);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (43, 35, 150, 16.67);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (44, 35, 180, 16.67);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (45, 36, 60, 33.33);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (46, 36, 90, 33.33);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (47, 36, 120, 33.33);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (48, 37, 90, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (49, 37, 120, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (50, 38, 30, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (66, 42, 90, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (67, 43, 60, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (68, 43, 90, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (69, 44, 60, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (70, 44, 90, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (82, 48, 30, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (57, 13, 30, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (72, 46, 30, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (73, 46, 60, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (74, 46, 90, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (75, 46, 120, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (76, 46, 150, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (77, 47, 30, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (58, 41, 120, 14.29);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (59, 41, 150, 14.29);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (60, 41, 180, 14.29);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (61, 41, 210, 14.29);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (62, 41, 240, 14.29);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (63, 41, 270, 14.29);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (64, 41, 300, 14.29);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (78, 47, 60, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (79, 47, 90, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (80, 47, 120, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (81, 47, 150, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (83, 48, 60, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (84, 48, 90, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (85, 48, 120, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (86, 48, 150, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (87, 40, 0, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (88, 50, 1, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (89, 51, 1, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (90, 49, 1, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (91, 52, 60, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (92, 39, NULL, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (94, 53, 60, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (95, 54, 30, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (96, 54, 45, 50);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (97, 56, 10, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (100, 58, 120, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (101, 57, NULL, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (102, 55, 0, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (103, 59, 0, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (104, 33, NULL, 100);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (106, 61, 30, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (107, 61, 60, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (108, 61, 90, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (109, 61, 120, 20);
|
||||
INSERT INTO FORMAS_PAGO_PLAZOS (ID, ID_FORMA_PAGO, NUM_DIAS, PORCENTAJE) VALUES (110, 61, 150, 20);
|
||||
SET GENERATOR GEN_FORMAS_PAGO_PLAZOS_ID TO 111;
|
||||
COMMIT WORK;
|
||||
|
||||
INSERT INTO EMPRESAS (ID, NIF_CIF, NOMBRE, RAZON_SOCIAL, CALLE, POBLACION, PROVINCIA, CODIGO_POSTAL, TELEFONO_1, TELEFONO_2, MOVIL_1, MOVIL_2, FAX, EMAIL_1, EMAIL_2, PAGINA_WEB, FECHA_ALTA, FECHA_MODIFICACION, USUARIO, REGISTRO_MERCANTIL, ID_TIPO_IVA) VALUES (1, 'B82780453', 'Luis León Representaciones S.L.', NULL, 'C/ Sur, 4, Bajo 1', 'Moraleja de Enmedio', 'Madrid', '28950', '916004041', NULL, NULL, NULL, '916093287', NULL, NULL, NULL, NULL, NULL, NULL, '', 7);
|
||||
INSERT INTO EMPRESAS (ID, NIF_CIF, NOMBRE, RAZON_SOCIAL, CALLE, POBLACION, PROVINCIA, CODIGO_POSTAL, TELEFONO_1, TELEFONO_2, MOVIL_1, MOVIL_2, FAX, EMAIL_1, EMAIL_2, PAGINA_WEB, FECHA_ALTA, FECHA_MODIFICACION, USUARIO, REGISTRO_MERCANTIL, ID_TIPO_IVA) VALUES (2, 'ssss2', 'ssssss', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 7);
|
||||
SET GENERATOR GEN_EMPRESAS_ID TO 3;
|
||||
COMMIT WORK;
|
||||
|
||||
237
Database/udfs/funciones.pas
Normal file
@ -0,0 +1,237 @@
|
||||
unit funciones;
|
||||
|
||||
interface
|
||||
|
||||
function RtfToText(Cadena: PChar): PChar; cdecl; export;
|
||||
|
||||
implementation
|
||||
|
||||
uses
|
||||
Forms, Classes, SysUtils, StdCtrls, ComCtrls;
|
||||
|
||||
|
||||
// Esta función falla cuando hay caracteres especiales en el texto (ñ, por ejemplo).
|
||||
// Mejor la de abajo.
|
||||
|
||||
function RtfToText2(Cadena: PChar): PChar;
|
||||
var
|
||||
i: integer;
|
||||
CadenaAux1: String;
|
||||
|
||||
begin
|
||||
//Si no tiene ninguna llave no esta guardado como rtf
|
||||
if (Pos('{', Cadena) = 0) then
|
||||
Result := Cadena
|
||||
else
|
||||
//Esta guardado con rtf
|
||||
begin
|
||||
//Quitamos todo lo que está antes de \fs1x
|
||||
i := Pos('\fs', Cadena);
|
||||
CadenaAux1 := Copy(Cadena, i, StrLen(Cadena)-1);
|
||||
|
||||
//Quitamos la parte de delante \fs1x
|
||||
i:= Pos(' ', CadenaAux1);
|
||||
CadenaAux1 := Copy(PChar(CadenaAux1), i+1, StrLen(PChar(CadenaAux1))-1);
|
||||
|
||||
//Quitamos todo lo de la parte de atras a partir de la primera barra \ que tengamos
|
||||
i:= Pos('\', CadenaAux1);
|
||||
CadenaAux1 := Copy(PChar(CadenaAux1), 0, i-1);
|
||||
|
||||
Result := PChar(CadenaAux1);
|
||||
end;
|
||||
end;
|
||||
|
||||
|
||||
{
|
||||
Convert RTF enabled text to plain.
|
||||
http://www.delphipraxis.net/topic45179.html
|
||||
}
|
||||
|
||||
// HAY QUE LIMPIAR LA CADENA DE ENTRADA DE SALTOS DE LÍNEA (#$D#$A) POR QUE
|
||||
// SI NO, NO ES UNA CADENA CON TEXTO RTF VÁLIDO
|
||||
|
||||
function RtfToText(Cadena: PChar): PChar;
|
||||
const
|
||||
SaltoLinea = #13#10; //--> #$D#$A
|
||||
var
|
||||
aSource: string; // <- Para almacenar la cadena de entrada sin saltos de línea
|
||||
Source: string;
|
||||
NChar: Integer;
|
||||
|
||||
function ProcessGroupRecursevly: string;
|
||||
|
||||
function HexToInt(HexStr: String): Integer;
|
||||
begin
|
||||
result := StrToInt('$' + HexStr);
|
||||
end;
|
||||
|
||||
procedure SkipStar;
|
||||
var
|
||||
BracesOpened: Integer;
|
||||
Escaped: Boolean;
|
||||
begin
|
||||
BracesOpened:=1;
|
||||
Escaped:=false;
|
||||
while BracesOpened>0
|
||||
do begin
|
||||
Inc (NChar);
|
||||
case Source [NChar] of
|
||||
'{': if Escaped
|
||||
then Escaped:=false
|
||||
else Inc (BracesOpened);
|
||||
'}': if Escaped
|
||||
then Escaped:=false
|
||||
else Dec (BracesOpened);
|
||||
'\': Escaped:=not Escaped;
|
||||
else Escaped:=false;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
||||
function UnicodeCharCode2ANSIChar (aCode: LongInt): Char;
|
||||
type
|
||||
TUnicode2ANSITable=array [$0410..$044f] of Char;
|
||||
const
|
||||
Unicode2ANSITable: TUnicode2AnsiTable=('À', 'Á', 'Â', 'Ã', 'Ä', 'Å', 'Æ', 'Ç', 'È', 'É', 'Ê', 'Ë', 'Ì', 'Í', 'Î', 'Ï', 'Ð', 'Ñ', 'Ò', 'Ó', 'Ô', 'Õ', 'Ö', '×', 'Ø', 'Ù', 'Ú', 'Û', 'Ü', 'Ý', 'Þ', 'ß',
|
||||
'à', 'á', 'â', 'ã', 'ä', 'å', 'æ', 'ç', 'è', 'é', 'ê', 'ë', 'ì', 'í', 'î', 'ï', 'ð', 'ñ', 'ò', 'ó', 'ô', 'õ', 'ö', '÷', 'ø', 'ù', 'ú', 'û', 'ü', 'ý', 'þ', 'ÿ');
|
||||
begin
|
||||
if (Low (Unicode2ANSITable)<=aCode) and (aCode<=High (Unicode2ANSITable)) then
|
||||
UnicodeCharCode2ANSIChar:=Unicode2ANSITable [aCode]
|
||||
else UnicodeCharCode2ANSIChar:='?';
|
||||
end;
|
||||
|
||||
var
|
||||
Control, NumericValue, TextValue: string;
|
||||
begin
|
||||
Result:='';
|
||||
Inc (NChar);
|
||||
while NChar<=Length (Source)
|
||||
do case Source [NChar] of
|
||||
'{': Result:=Result+ProcessGroupRecursevly;
|
||||
'}': begin
|
||||
Inc (NChar);
|
||||
Break;
|
||||
end;
|
||||
'\': begin
|
||||
Inc (NChar);
|
||||
case Source [NChar] of
|
||||
'''': begin
|
||||
Result:=Result+Chr (HexToInt (Copy (Source, NChar+1, 2)));
|
||||
Inc (NChar, 3);
|
||||
end;
|
||||
'~': Result:=Result+#$20;
|
||||
'*': SkipStar;
|
||||
'a'..'z': begin
|
||||
Control:='';
|
||||
while Source [NChar] in ['a'..'z']
|
||||
do begin
|
||||
Control:=Control+Source [NChar];
|
||||
Inc (NChar);
|
||||
end;
|
||||
if Source [NChar]='-'
|
||||
then begin
|
||||
NumericValue:=Source [NChar];
|
||||
Inc (NChar);
|
||||
end
|
||||
else NumericValue:='';
|
||||
while Source [NChar] in ['0'..'9']
|
||||
do begin
|
||||
NumericValue:=NumericValue+Source [NChar];
|
||||
Inc (NChar);
|
||||
end;
|
||||
if Source [NChar]='{'
|
||||
then ProcessGroupRecursevly;
|
||||
TextValue:='';
|
||||
if not (Source [NChar] in ['a'..'z', '{', '}', '\'])
|
||||
then begin
|
||||
Inc (NChar);
|
||||
while not (Source [NChar] in ['{', '}', '\'])
|
||||
do begin
|
||||
TextValue:=TextValue+Source [NChar];
|
||||
Inc (NChar);
|
||||
end;
|
||||
end;
|
||||
if (Control='line') or (Control='par')
|
||||
then Result:=Result+#$0D#$0A
|
||||
else if Control='tab'
|
||||
then Result:=Result+#$09
|
||||
else if Control='u'
|
||||
then Result:=Result+UnicodeCharCode2ANSIChar (StrToInt (NumericValue))
|
||||
else if Control='colortbl'
|
||||
then TextValue:='';
|
||||
if Length (TextValue)>0
|
||||
then if (not ((TextValue [Length (TextValue)]=';') and (Source [NChar]='}')))
|
||||
then begin
|
||||
Result:=Result+TextValue;
|
||||
TextValue:='';
|
||||
end;
|
||||
end;
|
||||
else begin
|
||||
Result:=Result+Source [NChar];
|
||||
Inc (NChar);
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
else begin
|
||||
Result:=Result+Source [NChar];
|
||||
Inc (NChar);
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
||||
function InitSource: Boolean;
|
||||
var
|
||||
BracesCount: Integer;
|
||||
Escaped: Boolean;
|
||||
begin
|
||||
if Copy (aSource, 1, 5) <> '{\rtf' then
|
||||
InitSource:=false
|
||||
else begin
|
||||
Source:='';
|
||||
BracesCount:=0;
|
||||
Escaped:=false;
|
||||
NChar:=1;
|
||||
while (NChar<=Length (aSource)) and (BracesCount>=0)
|
||||
do begin
|
||||
if not (aSource [NChar] in [#$0D, #$0A])
|
||||
then begin
|
||||
Source:=Source+aSource [NChar];
|
||||
case aSource [NChar] of
|
||||
'{': if not Escaped
|
||||
then Inc (BracesCount)
|
||||
else Escaped:=false;
|
||||
'}': if not Escaped
|
||||
then Dec (BracesCount)
|
||||
else Escaped:=false;
|
||||
'\': Escaped:=true;
|
||||
else Escaped:=false;
|
||||
end;
|
||||
end;
|
||||
Inc (NChar);
|
||||
end;
|
||||
InitSource:=BracesCount=0;
|
||||
end;
|
||||
end;
|
||||
|
||||
begin
|
||||
// Hay que quitar el salto de línea al final de la aSource RTF
|
||||
aSource := Copy(Cadena, 1, length(Cadena)-2);
|
||||
|
||||
// Cambiar los saltos de línea que no son de RTF por un caracter para
|
||||
// que se limpien.
|
||||
aSource := StringReplace(aSource, SaltoLinea, '^', [rfreplaceall]);
|
||||
|
||||
if InitSource then
|
||||
begin
|
||||
NChar:=1;
|
||||
Result:= PChar(ProcessGroupRecursevly);
|
||||
end
|
||||
else
|
||||
Result := PChar(aSource);
|
||||
end;
|
||||
|
||||
end.
|
||||
|
||||
|
||||
|
||||
|
||||
498
Database/udfs/udf_RtfToText.bdsproj
Normal file
@ -0,0 +1,498 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<BorlandProject>
|
||||
<PersonalityInfo>
|
||||
<Option>
|
||||
<Option Name="Personality">Delphi.Personality</Option>
|
||||
<Option Name="ProjectType"></Option>
|
||||
<Option Name="Version">1.0</Option>
|
||||
<Option Name="GUID">{5EB7350E-C612-4139-A532-3B8A4617E544}</Option>
|
||||
</Option>
|
||||
</PersonalityInfo>
|
||||
<Delphi.Personality>
|
||||
<Source>
|
||||
<Source Name="MainSource">udf_RtfToText.dpr</Source>
|
||||
</Source>
|
||||
<FileVersion>
|
||||
<FileVersion Name="Version">7.0</FileVersion>
|
||||
</FileVersion>
|
||||
<Compiler>
|
||||
<Compiler Name="A">8</Compiler>
|
||||
<Compiler Name="B">0</Compiler>
|
||||
<Compiler Name="C">1</Compiler>
|
||||
<Compiler Name="D">1</Compiler>
|
||||
<Compiler Name="E">0</Compiler>
|
||||
<Compiler Name="F">0</Compiler>
|
||||
<Compiler Name="G">1</Compiler>
|
||||
<Compiler Name="H">1</Compiler>
|
||||
<Compiler Name="I">1</Compiler>
|
||||
<Compiler Name="J">0</Compiler>
|
||||
<Compiler Name="K">0</Compiler>
|
||||
<Compiler Name="L">1</Compiler>
|
||||
<Compiler Name="M">0</Compiler>
|
||||
<Compiler Name="N">1</Compiler>
|
||||
<Compiler Name="O">1</Compiler>
|
||||
<Compiler Name="P">1</Compiler>
|
||||
<Compiler Name="Q">0</Compiler>
|
||||
<Compiler Name="R">0</Compiler>
|
||||
<Compiler Name="S">0</Compiler>
|
||||
<Compiler Name="T">0</Compiler>
|
||||
<Compiler Name="U">0</Compiler>
|
||||
<Compiler Name="V">1</Compiler>
|
||||
<Compiler Name="W">0</Compiler>
|
||||
<Compiler Name="X">1</Compiler>
|
||||
<Compiler Name="Y">1</Compiler>
|
||||
<Compiler Name="Z">1</Compiler>
|
||||
<Compiler Name="ShowHints">True</Compiler>
|
||||
<Compiler Name="ShowWarnings">True</Compiler>
|
||||
<Compiler Name="UnitAliases">WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;</Compiler>
|
||||
<Compiler Name="NamespacePrefix"></Compiler>
|
||||
<Compiler Name="GenerateDocumentation">False</Compiler>
|
||||
<Compiler Name="DefaultNamespace"></Compiler>
|
||||
<Compiler Name="SymbolDeprecated">True</Compiler>
|
||||
<Compiler Name="SymbolLibrary">True</Compiler>
|
||||
<Compiler Name="SymbolPlatform">True</Compiler>
|
||||
<Compiler Name="SymbolExperimental">True</Compiler>
|
||||
<Compiler Name="UnitLibrary">True</Compiler>
|
||||
<Compiler Name="UnitPlatform">True</Compiler>
|
||||
<Compiler Name="UnitDeprecated">True</Compiler>
|
||||
<Compiler Name="UnitExperimental">True</Compiler>
|
||||
<Compiler Name="HResultCompat">True</Compiler>
|
||||
<Compiler Name="HidingMember">True</Compiler>
|
||||
<Compiler Name="HiddenVirtual">True</Compiler>
|
||||
<Compiler Name="Garbage">True</Compiler>
|
||||
<Compiler Name="BoundsError">True</Compiler>
|
||||
<Compiler Name="ZeroNilCompat">True</Compiler>
|
||||
<Compiler Name="StringConstTruncated">True</Compiler>
|
||||
<Compiler Name="ForLoopVarVarPar">True</Compiler>
|
||||
<Compiler Name="TypedConstVarPar">True</Compiler>
|
||||
<Compiler Name="AsgToTypedConst">True</Compiler>
|
||||
<Compiler Name="CaseLabelRange">True</Compiler>
|
||||
<Compiler Name="ForVariable">True</Compiler>
|
||||
<Compiler Name="ConstructingAbstract">True</Compiler>
|
||||
<Compiler Name="ComparisonFalse">True</Compiler>
|
||||
<Compiler Name="ComparisonTrue">True</Compiler>
|
||||
<Compiler Name="ComparingSignedUnsigned">True</Compiler>
|
||||
<Compiler Name="CombiningSignedUnsigned">True</Compiler>
|
||||
<Compiler Name="UnsupportedConstruct">True</Compiler>
|
||||
<Compiler Name="FileOpen">True</Compiler>
|
||||
<Compiler Name="FileOpenUnitSrc">True</Compiler>
|
||||
<Compiler Name="BadGlobalSymbol">True</Compiler>
|
||||
<Compiler Name="DuplicateConstructorDestructor">True</Compiler>
|
||||
<Compiler Name="InvalidDirective">True</Compiler>
|
||||
<Compiler Name="PackageNoLink">True</Compiler>
|
||||
<Compiler Name="PackageThreadVar">True</Compiler>
|
||||
<Compiler Name="ImplicitImport">True</Compiler>
|
||||
<Compiler Name="HPPEMITIgnored">True</Compiler>
|
||||
<Compiler Name="NoRetVal">True</Compiler>
|
||||
<Compiler Name="UseBeforeDef">True</Compiler>
|
||||
<Compiler Name="ForLoopVarUndef">True</Compiler>
|
||||
<Compiler Name="UnitNameMismatch">True</Compiler>
|
||||
<Compiler Name="NoCFGFileFound">True</Compiler>
|
||||
<Compiler Name="ImplicitVariants">True</Compiler>
|
||||
<Compiler Name="UnicodeToLocale">True</Compiler>
|
||||
<Compiler Name="LocaleToUnicode">True</Compiler>
|
||||
<Compiler Name="ImagebaseMultiple">True</Compiler>
|
||||
<Compiler Name="SuspiciousTypecast">True</Compiler>
|
||||
<Compiler Name="PrivatePropAccessor">True</Compiler>
|
||||
<Compiler Name="UnsafeType">False</Compiler>
|
||||
<Compiler Name="UnsafeCode">False</Compiler>
|
||||
<Compiler Name="UnsafeCast">False</Compiler>
|
||||
<Compiler Name="OptionTruncated">True</Compiler>
|
||||
<Compiler Name="WideCharReduced">True</Compiler>
|
||||
<Compiler Name="DuplicatesIgnored">True</Compiler>
|
||||
<Compiler Name="UnitInitSeq">True</Compiler>
|
||||
<Compiler Name="LocalPInvoke">True</Compiler>
|
||||
<Compiler Name="MessageDirective">True</Compiler>
|
||||
<Compiler Name="CodePage"></Compiler>
|
||||
</Compiler>
|
||||
<Linker>
|
||||
<Linker Name="MapFile">3</Linker>
|
||||
<Linker Name="OutputObjs">0</Linker>
|
||||
<Linker Name="GenerateHpps">False</Linker>
|
||||
<Linker Name="ConsoleApp">1</Linker>
|
||||
<Linker Name="DebugInfo">False</Linker>
|
||||
<Linker Name="RemoteSymbols">False</Linker>
|
||||
<Linker Name="GenerateDRC">False</Linker>
|
||||
<Linker Name="MinStackSize">16384</Linker>
|
||||
<Linker Name="MaxStackSize">1048576</Linker>
|
||||
<Linker Name="ImageBase">4194304</Linker>
|
||||
<Linker Name="ExeDescription"></Linker>
|
||||
</Linker>
|
||||
<Directories>
|
||||
<Directories Name="OutputDir"></Directories>
|
||||
<Directories Name="UnitOutputDir"></Directories>
|
||||
<Directories Name="PackageDLLOutputDir"></Directories>
|
||||
<Directories Name="PackageDCPOutputDir"></Directories>
|
||||
<Directories Name="SearchPath"></Directories>
|
||||
<Directories Name="Packages"></Directories>
|
||||
<Directories Name="Conditionals">EUREKALOG;EUREKALOG_VER5</Directories>
|
||||
<Directories Name="DebugSourceDirs"></Directories>
|
||||
<Directories Name="UsePackages">False</Directories>
|
||||
</Directories>
|
||||
<Parameters>
|
||||
<Parameters Name="RunParams"></Parameters>
|
||||
<Parameters Name="HostApplication"></Parameters>
|
||||
<Parameters Name="Launcher"></Parameters>
|
||||
<Parameters Name="UseLauncher">False</Parameters>
|
||||
<Parameters Name="DebugCWD"></Parameters>
|
||||
<Parameters Name="Debug Symbols Search Path"></Parameters>
|
||||
<Parameters Name="LoadAllSymbols">True</Parameters>
|
||||
<Parameters Name="LoadUnspecifiedSymbols">False</Parameters>
|
||||
</Parameters>
|
||||
<Language>
|
||||
<Language Name="ActiveLang"></Language>
|
||||
<Language Name="ProjectLang">$00000000</Language>
|
||||
<Language Name="RootDir"></Language>
|
||||
</Language>
|
||||
<VersionInfo>
|
||||
<VersionInfo Name="IncludeVerInfo">False</VersionInfo>
|
||||
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
||||
<VersionInfo Name="MajorVer">1</VersionInfo>
|
||||
<VersionInfo Name="MinorVer">0</VersionInfo>
|
||||
<VersionInfo Name="Release">0</VersionInfo>
|
||||
<VersionInfo Name="Build">0</VersionInfo>
|
||||
<VersionInfo Name="Debug">False</VersionInfo>
|
||||
<VersionInfo Name="PreRelease">False</VersionInfo>
|
||||
<VersionInfo Name="Special">False</VersionInfo>
|
||||
<VersionInfo Name="Private">False</VersionInfo>
|
||||
<VersionInfo Name="DLL">False</VersionInfo>
|
||||
<VersionInfo Name="Locale">3082</VersionInfo>
|
||||
<VersionInfo Name="CodePage">1252</VersionInfo>
|
||||
</VersionInfo>
|
||||
<VersionInfoKeys>
|
||||
<VersionInfoKeys Name="CompanyName"></VersionInfoKeys>
|
||||
<VersionInfoKeys Name="FileDescription"></VersionInfoKeys>
|
||||
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="InternalName"></VersionInfoKeys>
|
||||
<VersionInfoKeys Name="LegalCopyright"></VersionInfoKeys>
|
||||
<VersionInfoKeys Name="LegalTrademarks"></VersionInfoKeys>
|
||||
<VersionInfoKeys Name="OriginalFilename"></VersionInfoKeys>
|
||||
<VersionInfoKeys Name="ProductName"></VersionInfoKeys>
|
||||
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="Comments"></VersionInfoKeys>
|
||||
</VersionInfoKeys>
|
||||
|
||||
|
||||
<Excluded_Packages>
|
||||
<Excluded_Packages Name="C:\Documents and Settings\Usuario\Mis documentos\Borland Studio Projects\Bpl\EasyListviewD10.bpl">Muststang Peak EasyListview Runtime Package</Excluded_Packages>
|
||||
<Excluded_Packages Name="C:\Archivos de programa\RemObjects Software\Pascal Script\Dcu\D10\PascalScript_RO_D10.bpl">RemObjects Pascal Script - RemObjects SDK 3.0 Integration</Excluded_Packages>
|
||||
</Excluded_Packages>
|
||||
</Delphi.Personality>
|
||||
<!-- EurekaLog First Line
|
||||
[Exception Log]
|
||||
EurekaLog Version=519
|
||||
Activate=1
|
||||
Activate Handle=1
|
||||
Save Log File=1
|
||||
Foreground Tab=0
|
||||
Freeze Activate=0
|
||||
Freeze Timeout=0
|
||||
Freeze Message=The application seems to be frozen.
|
||||
SMTP From=eurekalog@email.com
|
||||
SMTP Host=
|
||||
SMTP Port=25
|
||||
SMTP UserID=
|
||||
SMTP Password=
|
||||
Append to Log=0
|
||||
Show TerminateBtn=1
|
||||
TerminateBtn Operation=1
|
||||
Errors Number=32
|
||||
Errors Terminate=3
|
||||
Email Address=
|
||||
Email Object=
|
||||
Email Send Options=0
|
||||
Output Path=
|
||||
Encrypt Password=
|
||||
AutoCloseDialogSecs=0
|
||||
WebSendMode=0
|
||||
SupportULR=
|
||||
HTMLLayout Count=15
|
||||
HTMLLine0="%3Chtml%3E"
|
||||
HTMLLine1=" %3Chead%3E"
|
||||
HTMLLine2=" %3C/head%3E"
|
||||
HTMLLine3=" %3Cbody TopMargin=10 LeftMargin=10%3E"
|
||||
HTMLLine4=" %3Ctable width="100%%" border="0"%3E"
|
||||
HTMLLine5=" %3Ctr%3E"
|
||||
HTMLLine6=" %3Ctd nowrap%3E"
|
||||
HTMLLine7=" %3Cfont face="Lucida Console, Courier" size="2"%3E"
|
||||
HTMLLine8=" %3C%%HTML_TAG%%%3E"
|
||||
HTMLLine9=" %3C/font%3E"
|
||||
HTMLLine10=" %3C/td%3E"
|
||||
HTMLLine11=" %3C/tr%3E"
|
||||
HTMLLine12=" %3C/table%3E"
|
||||
HTMLLine13=" %3C/body%3E"
|
||||
HTMLLine14="%3C/html%3E"
|
||||
AutoCrashOperation=1
|
||||
AutoCrashNumber=10
|
||||
AutoCrashMinutes=1
|
||||
WebURL=
|
||||
WebUserID=
|
||||
WebPassword=
|
||||
WebPort=0
|
||||
AttachedFiles=
|
||||
Count=0
|
||||
EMail Message Line Count=0
|
||||
loNoDuplicateErrors=0
|
||||
loAppendReproduceText=0
|
||||
loDeleteLogAtVersionChange=0
|
||||
loAddComputerNameInLogFileName=0
|
||||
loSaveModulesSection=1
|
||||
loSaveCPUSection=1
|
||||
soAppStartDate=1
|
||||
soAppName=1
|
||||
soAppVersionNumber=1
|
||||
soAppParameters=1
|
||||
soAppCompilationDate=1
|
||||
soExcDate=1
|
||||
soExcAddress=1
|
||||
soExcModule=1
|
||||
soExcType=1
|
||||
soExcMessage=1
|
||||
soActCtlsFormClass=1
|
||||
soActCtlsFormText=1
|
||||
soActCtlsControlClass=1
|
||||
soActCtlsControlText=1
|
||||
soCmpName=1
|
||||
soCmpUser=1
|
||||
soCmpTotalMemory=1
|
||||
soCmpFreeMemory=1
|
||||
soCmpTotalDisk=1
|
||||
soCmpFreeDisk=1
|
||||
soCmpSysUpTime=1
|
||||
soCmpProcessor=1
|
||||
soCmpDisplayMode=1
|
||||
soOSType=1
|
||||
soOSBuildN=1
|
||||
soOSUpdate=1
|
||||
soOSLanguage=1
|
||||
soNetIP=1
|
||||
soNetSubmask=1
|
||||
soNetGateway=1
|
||||
soNetDNS1=1
|
||||
soNetDNS2=1
|
||||
soNetDHCP=1
|
||||
sndShowSendDialog=1
|
||||
sndShowSuccessFailureMsg=0
|
||||
sndSendEntireLog=0
|
||||
sndSendXMLLogCopy=0
|
||||
sndSendScreenshot=0
|
||||
sndUseOnlyActiveWindow=0
|
||||
sndSendLastHTMLPage=1
|
||||
sndSendInSeparatedThread=0
|
||||
sndAddDateInFileName=0
|
||||
sndCompressAllFiles=0
|
||||
edoShowExceptionDialog=1
|
||||
edoSendEmailChecked=1
|
||||
edoAttachScreenshotChecked=1
|
||||
edoShowCopyToClipOption=1
|
||||
edoShowDetailsButton=1
|
||||
edoShowInDetailedMode=0
|
||||
edoShowInTopMostMode=0
|
||||
edoUseEurekaLogLookAndFeel=1
|
||||
csoShowDLLs=1
|
||||
csoShowBPLs=1
|
||||
csoShowBorlandThreads=1
|
||||
csoShowWindowsThreads=1
|
||||
csoShowProcedureOffset=0
|
||||
boActivateCrashDetection=0
|
||||
boPauseBorlandThreads=0
|
||||
boDoNotPauseMainThread=0
|
||||
boPauseWindowsThreads=0
|
||||
boUseMainModuleOptions=1
|
||||
boCopyLogInCaseOfError=1
|
||||
boSaveCompressedCopyInCaseOfError=0
|
||||
Count mtInformationMsgCaption=1
|
||||
mtInformationMsgCaption0="Information."
|
||||
Count mtQuestionMsgCaption=1
|
||||
mtQuestionMsgCaption0="Question."
|
||||
Count mtDialog_Caption=1
|
||||
mtDialog_Caption0="Error."
|
||||
Count mtDialog_ErrorMsgCaption=2
|
||||
mtDialog_ErrorMsgCaption0="An error has occurred during program execution."
|
||||
mtDialog_ErrorMsgCaption1="Please read the following information for further details."
|
||||
Count mtDialog_GeneralCaption=1
|
||||
mtDialog_GeneralCaption0="General"
|
||||
Count mtDialog_GeneralHeader=1
|
||||
mtDialog_GeneralHeader0="General Information"
|
||||
Count mtDialog_CallStackCaption=1
|
||||
mtDialog_CallStackCaption0="Call Stack"
|
||||
Count mtDialog_CallStackHeader=1
|
||||
mtDialog_CallStackHeader0="Call Stack Information"
|
||||
Count mtDialog_ModulesCaption=1
|
||||
mtDialog_ModulesCaption0="Modules"
|
||||
Count mtDialog_ModulesHeader=1
|
||||
mtDialog_ModulesHeader0="Modules Information"
|
||||
Count mtDialog_CPUCaption=1
|
||||
mtDialog_CPUCaption0="CPU"
|
||||
Count mtDialog_CPUHeader=1
|
||||
mtDialog_CPUHeader0="CPU Information"
|
||||
Count mtDialog_CustomDataCaption=1
|
||||
mtDialog_CustomDataCaption0="Other"
|
||||
Count mtDialog_CustomDataHeader=1
|
||||
mtDialog_CustomDataHeader0="Other Information"
|
||||
Count mtDialog_OKButtonCaption=1
|
||||
mtDialog_OKButtonCaption0="%26OK"
|
||||
Count mtDialog_TerminateButtonCaption=1
|
||||
mtDialog_TerminateButtonCaption0="%26Terminate"
|
||||
Count mtDialog_RestartButtonCaption=1
|
||||
mtDialog_RestartButtonCaption0="%26Restart"
|
||||
Count mtDialog_DetailsButtonCaption=1
|
||||
mtDialog_DetailsButtonCaption0="%26Details"
|
||||
Count mtDialog_SendMessage=1
|
||||
mtDialog_SendMessage0="%26Send this error via Internet"
|
||||
Count mtDialog_ScreenshotMessage=1
|
||||
mtDialog_ScreenshotMessage0="%26Attach a Screenshot image"
|
||||
Count mtDialog_CopyMessage=1
|
||||
mtDialog_CopyMessage0="%26Copy to Clipboard"
|
||||
Count mtDialog_SupportMessage=1
|
||||
mtDialog_SupportMessage0="Go to the Support Page"
|
||||
Count mtLog_AppHeader=1
|
||||
mtLog_AppHeader0="Application"
|
||||
Count mtLog_AppStartDate=1
|
||||
mtLog_AppStartDate0="Start Date"
|
||||
Count mtLog_AppName=1
|
||||
mtLog_AppName0="Name/Description"
|
||||
Count mtLog_AppVersionNumber=1
|
||||
mtLog_AppVersionNumber0="Version Number"
|
||||
Count mtLog_AppParameters=1
|
||||
mtLog_AppParameters0="Parameters"
|
||||
Count mtLog_AppCompilationDate=1
|
||||
mtLog_AppCompilationDate0="Compilation Date"
|
||||
Count mtLog_ExcHeader=1
|
||||
mtLog_ExcHeader0="Exception"
|
||||
Count mtLog_ExcDate=1
|
||||
mtLog_ExcDate0="Date"
|
||||
Count mtLog_ExcAddress=1
|
||||
mtLog_ExcAddress0="Address"
|
||||
Count mtLog_ExcModule=1
|
||||
mtLog_ExcModule0="Module"
|
||||
Count mtLog_ExcType=1
|
||||
mtLog_ExcType0="Type"
|
||||
Count mtLog_ExcMessage=1
|
||||
mtLog_ExcMessage0="Message"
|
||||
Count mtLog_ActCtrlsHeader=1
|
||||
mtLog_ActCtrlsHeader0="Active Controls"
|
||||
Count mtLog_ActCtrlsFormClass=1
|
||||
mtLog_ActCtrlsFormClass0="Form Class"
|
||||
Count mtLog_ActCtrlsFormText=1
|
||||
mtLog_ActCtrlsFormText0="Form Text"
|
||||
Count mtLog_ActCtrlsControlClass=1
|
||||
mtLog_ActCtrlsControlClass0="Control Class"
|
||||
Count mtLog_ActCtrlsControlText=1
|
||||
mtLog_ActCtrlsControlText0="Control Text"
|
||||
Count mtLog_CmpHeader=1
|
||||
mtLog_CmpHeader0="Computer"
|
||||
Count mtLog_CmpName=1
|
||||
mtLog_CmpName0="Name"
|
||||
Count mtLog_CmpUser=1
|
||||
mtLog_CmpUser0="User"
|
||||
Count mtLog_CmpTotalMemory=1
|
||||
mtLog_CmpTotalMemory0="Total Memory"
|
||||
Count mtLog_CmpFreeMemory=1
|
||||
mtLog_CmpFreeMemory0="Free Memory"
|
||||
Count mtLog_CmpTotalDisk=1
|
||||
mtLog_CmpTotalDisk0="Total Disk"
|
||||
Count mtLog_CmpFreeDisk=1
|
||||
mtLog_CmpFreeDisk0="Free Disk"
|
||||
Count mtLog_CmpSystemUpTime=1
|
||||
mtLog_CmpSystemUpTime0="System Up Time"
|
||||
Count mtLog_CmpProcessor=1
|
||||
mtLog_CmpProcessor0="Processor"
|
||||
Count mtLog_CmpDisplayMode=1
|
||||
mtLog_CmpDisplayMode0="Display Mode"
|
||||
Count mtLog_OSHeader=1
|
||||
mtLog_OSHeader0="Operating System"
|
||||
Count mtLog_OSType=1
|
||||
mtLog_OSType0="Type"
|
||||
Count mtLog_OSBuildN=1
|
||||
mtLog_OSBuildN0="Build #"
|
||||
Count mtLog_OSUpdate=1
|
||||
mtLog_OSUpdate0="Update"
|
||||
Count mtLog_OSLanguage=1
|
||||
mtLog_OSLanguage0="Language"
|
||||
Count mtLog_NetHeader=1
|
||||
mtLog_NetHeader0="Network"
|
||||
Count mtLog_NetIP=1
|
||||
mtLog_NetIP0="IP Address"
|
||||
Count mtLog_NetSubmask=1
|
||||
mtLog_NetSubmask0="Submask"
|
||||
Count mtLog_NetGateway=1
|
||||
mtLog_NetGateway0="Gateway"
|
||||
Count mtLog_NetDNS1=1
|
||||
mtLog_NetDNS10="DNS 1"
|
||||
Count mtLog_NetDNS2=1
|
||||
mtLog_NetDNS20="DNS 2"
|
||||
Count mtLog_NetDHCP=1
|
||||
mtLog_NetDHCP0="DHCP"
|
||||
Count mtLog_CustInfoHeader=1
|
||||
mtLog_CustInfoHeader0="Custom Information"
|
||||
Count mtCallStack_Address=1
|
||||
mtCallStack_Address0="Address"
|
||||
Count mtCallStack_Name=1
|
||||
mtCallStack_Name0="Module"
|
||||
Count mtCallStack_Unit=1
|
||||
mtCallStack_Unit0="Unit"
|
||||
Count mtCallStack_Class=1
|
||||
mtCallStack_Class0="Class"
|
||||
Count mtCallStack_Procedure=1
|
||||
mtCallStack_Procedure0="Procedure/Method"
|
||||
Count mtCallStack_Line=1
|
||||
mtCallStack_Line0="Line"
|
||||
Count mtCallStack_MainThread=1
|
||||
mtCallStack_MainThread0="Main"
|
||||
Count mtCallStack_ExceptionThread=1
|
||||
mtCallStack_ExceptionThread0="Exception Thread"
|
||||
Count mtCallStack_RunningThread=1
|
||||
mtCallStack_RunningThread0="Running Thread"
|
||||
Count mtCallStack_CallingThread=1
|
||||
mtCallStack_CallingThread0="Calling Thread"
|
||||
Count mtCallStack_ThreadID=1
|
||||
mtCallStack_ThreadID0="ID"
|
||||
Count mtCallStack_ThreadPriority=1
|
||||
mtCallStack_ThreadPriority0="Priority"
|
||||
Count mtCallStack_ThreadClass=1
|
||||
mtCallStack_ThreadClass0="Class"
|
||||
Count mtSendDialog_Caption=1
|
||||
mtSendDialog_Caption0="Send."
|
||||
Count mtSendDialog_Message=1
|
||||
mtSendDialog_Message0="Message"
|
||||
Count mtSendDialog_Resolving=1
|
||||
mtSendDialog_Resolving0="Resolving DNS..."
|
||||
Count mtSendDialog_Connecting=1
|
||||
mtSendDialog_Connecting0="Connecting with server..."
|
||||
Count mtSendDialog_Connected=1
|
||||
mtSendDialog_Connected0="Connected with server."
|
||||
Count mtSendDialog_Sending=1
|
||||
mtSendDialog_Sending0="Sending message..."
|
||||
Count mtReproduceDialog_Caption=1
|
||||
mtReproduceDialog_Caption0="Request"
|
||||
Count mtReproduceDialog_Request=1
|
||||
mtReproduceDialog_Request0="Please describe the steps to reproduce the error:"
|
||||
Count mtReproduceDialog_OKButtonCaption=1
|
||||
mtReproduceDialog_OKButtonCaption0="%26OK"
|
||||
Count mtModules_Handle=1
|
||||
mtModules_Handle0="Handle"
|
||||
Count mtModules_Name=1
|
||||
mtModules_Name0="Name"
|
||||
Count mtModules_Description=1
|
||||
mtModules_Description0="Description"
|
||||
Count mtModules_Version=1
|
||||
mtModules_Version0="Version"
|
||||
Count mtModules_Size=1
|
||||
mtModules_Size0="Size"
|
||||
Count mtModules_LastModified=1
|
||||
mtModules_LastModified0="Modified"
|
||||
Count mtModules_Path=1
|
||||
mtModules_Path0="Path"
|
||||
Count mtCPU_Registers=1
|
||||
mtCPU_Registers0="Registers"
|
||||
Count mtCPU_Stack=1
|
||||
mtCPU_Stack0="Stack"
|
||||
Count mtCPU_MemoryDump=1
|
||||
mtCPU_MemoryDump0="Memory Dump"
|
||||
Count mtSend_SuccessMsg=1
|
||||
mtSend_SuccessMsg0="The message was sent successfully."
|
||||
Count mtSend_FailureMsg=1
|
||||
mtSend_FailureMsg0="Sorry, sending the message didn't work."
|
||||
EurekaLog Last Line -->
|
||||
</BorlandProject>
|
||||
BIN
Database/udfs/udf_RtfToText.dll
Normal file
17
Database/udfs/udf_RtfToText.dpr
Normal file
@ -0,0 +1,17 @@
|
||||
library udf_RtfToText;
|
||||
|
||||
uses
|
||||
ComServ,
|
||||
funciones in 'funciones.pas';
|
||||
|
||||
exports
|
||||
DllGetClassObject,
|
||||
DllCanUnloadNow,
|
||||
DllRegisterServer,
|
||||
DllUnregisterServer,
|
||||
RtfToText;
|
||||
|
||||
{$R *.RES}
|
||||
|
||||
begin
|
||||
end.
|
||||
593
Database/udfs/udf_RtfToText.dproj
Normal file
@ -0,0 +1,593 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectGuid>{5eb7350e-c612-4139-a532-3b8a4617e544}</ProjectGuid>
|
||||
<MainSource>udf_RtfToText.dpr</MainSource>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<DCC_DCCCompiler>DCC32</DCC_DCCCompiler>
|
||||
<DCC_DependencyCheckOutputName>udf_RtfToText.dll</DCC_DependencyCheckOutputName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<Version>7.0</Version>
|
||||
<DCC_DebugInformation>False</DCC_DebugInformation>
|
||||
<DCC_LocalDebugSymbols>False</DCC_LocalDebugSymbols>
|
||||
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
|
||||
<DCC_MapFile>3</DCC_MapFile>
|
||||
<DCC_Define>EUREKALOG;EUREKALOG_VER5;RELEASE</DCC_Define>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<Version>7.0</Version>
|
||||
<DCC_MapFile>3</DCC_MapFile>
|
||||
<DCC_Define>DEBUG</DCC_Define>
|
||||
</PropertyGroup>
|
||||
<ProjectExtensions>
|
||||
<Borland.Personality>Delphi.Personality</Borland.Personality>
|
||||
<Borland.ProjectType />
|
||||
<BorlandProject>
|
||||
<BorlandProject><Delphi.Personality><Parameters><Parameters Name="UseLauncher">False</Parameters><Parameters Name="LoadAllSymbols">True</Parameters><Parameters Name="LoadUnspecifiedSymbols">False</Parameters>
|
||||
|
||||
|
||||
</Parameters><VersionInfo><VersionInfo Name="IncludeVerInfo">False</VersionInfo><VersionInfo Name="AutoIncBuild">False</VersionInfo><VersionInfo Name="MajorVer">1</VersionInfo><VersionInfo Name="MinorVer">0</VersionInfo><VersionInfo Name="Release">0</VersionInfo><VersionInfo Name="Build">0</VersionInfo><VersionInfo Name="Debug">False</VersionInfo><VersionInfo Name="PreRelease">False</VersionInfo><VersionInfo Name="Special">False</VersionInfo><VersionInfo Name="Private">False</VersionInfo><VersionInfo Name="DLL">False</VersionInfo><VersionInfo Name="Locale">3082</VersionInfo><VersionInfo Name="CodePage">1252</VersionInfo></VersionInfo><VersionInfoKeys><VersionInfoKeys Name="CompanyName"></VersionInfoKeys><VersionInfoKeys Name="FileDescription"></VersionInfoKeys><VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys><VersionInfoKeys Name="InternalName"></VersionInfoKeys><VersionInfoKeys Name="LegalCopyright"></VersionInfoKeys><VersionInfoKeys Name="LegalTrademarks"></VersionInfoKeys><VersionInfoKeys Name="OriginalFilename"></VersionInfoKeys><VersionInfoKeys Name="ProductName"></VersionInfoKeys><VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys><VersionInfoKeys Name="Comments"></VersionInfoKeys></VersionInfoKeys><Excluded_Packages>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Excluded_Packages Name="C:\Documents and Settings\Usuario\Mis documentos\Borland Studio Projects\Bpl\EasyListviewD10.bpl">Muststang Peak EasyListview Runtime Package</Excluded_Packages>
|
||||
<Excluded_Packages Name="C:\Archivos de programa\RemObjects Software\Pascal Script\Dcu\D10\PascalScript_RO_D10.bpl">RemObjects Pascal Script - RemObjects SDK 3.0 Integration</Excluded_Packages>
|
||||
</Excluded_Packages><Source><Source Name="MainSource">udf_RtfToText.dpr</Source></Source></Delphi.Personality></BorlandProject></BorlandProject>
|
||||
</ProjectExtensions>
|
||||
<Import Project="$(MSBuildBinPath)\Borland.Delphi.Targets" />
|
||||
<ItemGroup>
|
||||
<DelphiCompile Include="udf_RtfToText.dpr">
|
||||
<MainSource>MainSource</MainSource>
|
||||
</DelphiCompile>
|
||||
<DCCReference Include="funciones.pas" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
<!-- EurekaLog First Line
|
||||
[Exception Log]
|
||||
EurekaLog Version=6011
|
||||
Activate=0
|
||||
Activate Handle=1
|
||||
Save Log File=1
|
||||
Foreground Tab=0
|
||||
Freeze Activate=0
|
||||
Freeze Timeout=0
|
||||
SMTP From=eurekalog@email.com
|
||||
SMTP Host=
|
||||
SMTP Port=25
|
||||
SMTP UserID=
|
||||
SMTP Password=
|
||||
Append to Log=0
|
||||
TerminateBtn Operation=2
|
||||
Errors Number=32
|
||||
Errors Terminate=3
|
||||
Email Address=
|
||||
Email Object=
|
||||
Email Send Options=0
|
||||
Output Path=
|
||||
Encrypt Password=
|
||||
AutoCloseDialogSecs=0
|
||||
WebSendMode=0
|
||||
SupportULR=
|
||||
HTMLLayout Count=15
|
||||
HTMLLine0="%3Chtml%3E"
|
||||
HTMLLine1=" %3Chead%3E"
|
||||
HTMLLine2=" %3C/head%3E"
|
||||
HTMLLine3=" %3Cbody TopMargin=10 LeftMargin=10%3E"
|
||||
HTMLLine4=" %3Ctable width="100%%" border="0"%3E"
|
||||
HTMLLine5=" %3Ctr%3E"
|
||||
HTMLLine6=" %3Ctd nowrap%3E"
|
||||
HTMLLine7=" %3Cfont face="Lucida Console, Courier" size="2"%3E"
|
||||
HTMLLine8=" %3C%%HTML_TAG%%%3E"
|
||||
HTMLLine9=" %3C/font%3E"
|
||||
HTMLLine10=" %3C/td%3E"
|
||||
HTMLLine11=" %3C/tr%3E"
|
||||
HTMLLine12=" %3C/table%3E"
|
||||
HTMLLine13=" %3C/body%3E"
|
||||
HTMLLine14="%3C/html%3E"
|
||||
AutoCrashOperation=2
|
||||
AutoCrashNumber=10
|
||||
AutoCrashMinutes=1
|
||||
WebURL=
|
||||
WebUserID=
|
||||
WebPassword=
|
||||
WebPort=0
|
||||
AttachedFiles=
|
||||
ProxyURL=
|
||||
ProxyUser=
|
||||
ProxyPassword=
|
||||
ProxyPort=8080
|
||||
TrakerUser=
|
||||
TrakerPassword=
|
||||
TrakerAssignTo=
|
||||
TrakerProject=
|
||||
TrakerCategory=
|
||||
TrakerTrialID=
|
||||
ZipPassword=
|
||||
PreBuildEvent=
|
||||
PostSuccessfulBuildEvent=
|
||||
PostFailureBuildEvent=
|
||||
ExceptionDialogType=2
|
||||
Count=0
|
||||
EMail Message Line Count=0
|
||||
loNoDuplicateErrors=0
|
||||
loAppendReproduceText=0
|
||||
loDeleteLogAtVersionChange=0
|
||||
loAddComputerNameInLogFileName=0
|
||||
loSaveModulesAndProcessesSections=1
|
||||
loSaveAssemblerAndCPUSections=1
|
||||
soAppStartDate=1
|
||||
soAppName=1
|
||||
soAppVersionNumber=1
|
||||
soAppParameters=1
|
||||
soAppCompilationDate=1
|
||||
soAppUpTime=1
|
||||
soExcDate=1
|
||||
soExcAddress=1
|
||||
soExcModuleName=1
|
||||
soExcModuleVersion=1
|
||||
soExcType=1
|
||||
soExcMessage=1
|
||||
soExcID=1
|
||||
soExcCount=1
|
||||
soExcStatus=1
|
||||
soExcNote=1
|
||||
soUserID=1
|
||||
soUserName=1
|
||||
soUserEmail=1
|
||||
soUserPrivileges=1
|
||||
soUserCompany=1
|
||||
soActCtlsFormClass=1
|
||||
soActCtlsFormText=1
|
||||
soActCtlsControlClass=1
|
||||
soActCtlsControlText=1
|
||||
soCmpName=1
|
||||
soCmpTotalMemory=1
|
||||
soCmpFreeMemory=1
|
||||
soCmpTotalDisk=1
|
||||
soCmpFreeDisk=1
|
||||
soCmpSysUpTime=1
|
||||
soCmpProcessor=1
|
||||
soCmpDisplayMode=1
|
||||
soCmpDisplayDPI=1
|
||||
soCmpVideoCard=1
|
||||
soCmpPrinter=1
|
||||
soOSType=1
|
||||
soOSBuildN=1
|
||||
soOSUpdate=1
|
||||
soOSLanguage=1
|
||||
soOSCharset=1
|
||||
soNetIP=1
|
||||
soNetSubmask=1
|
||||
soNetGateway=1
|
||||
soNetDNS1=1
|
||||
soNetDNS2=1
|
||||
soNetDHCP=1
|
||||
soCustomData=1
|
||||
sndShowSendDialog=1
|
||||
sndShowSuccessFailureMsg=0
|
||||
sndSendEntireLog=0
|
||||
sndSendXMLLogCopy=0
|
||||
sndSendScreenshot=1
|
||||
sndUseOnlyActiveWindow=0
|
||||
sndSendLastHTMLPage=1
|
||||
sndSendInSeparatedThread=0
|
||||
sndAddDateInFileName=0
|
||||
sndAddComputerNameInFileName=0
|
||||
edoSendErrorReportChecked=1
|
||||
edoAttachScreenshotChecked=1
|
||||
edoShowCopyToClipOption=1
|
||||
edoShowDetailsButton=1
|
||||
edoShowInDetailedMode=0
|
||||
edoShowInTopMostMode=0
|
||||
edoUseEurekaLogLookAndFeel=0
|
||||
edoShowSendErrorReportOption=1
|
||||
edoShowAttachScreenshotOption=1
|
||||
edoShowCustomButton=0
|
||||
csoShowDLLs=1
|
||||
csoShowBPLs=1
|
||||
csoShowBorlandThreads=1
|
||||
csoShowWindowsThreads=1
|
||||
csoDoNotStoreProcNames=0
|
||||
boPauseBorlandThreads=0
|
||||
boDoNotPauseMainThread=0
|
||||
boPauseWindowsThreads=0
|
||||
boUseMainModuleOptions=1
|
||||
boCopyLogInCaseOfError=1
|
||||
boSaveCompressedCopyInCaseOfError=0
|
||||
boHandleSafeCallExceptions=1
|
||||
boCallRTLExceptionEvent=0
|
||||
boCatchHandledExceptions=0
|
||||
loCatchLeaks=0
|
||||
loGroupsSonLeaks=1
|
||||
loHideBorlandLeaks=1
|
||||
loFreeAllLeaks=1
|
||||
loCatchLeaksExceptions=1
|
||||
cfoReduceFileSize=1
|
||||
cfoCheckFileCorruption=0
|
||||
Count mtInformationMsgCaption=1
|
||||
mtInformationMsgCaption0="Information."
|
||||
Count mtQuestionMsgCaption=1
|
||||
mtQuestionMsgCaption0="Question."
|
||||
Count mtErrorMsgCaption=1
|
||||
mtErrorMsgCaption0="Error."
|
||||
Count mtDialog_Caption=1
|
||||
mtDialog_Caption0="Error occurred"
|
||||
Count mtDialog_ErrorMsgCaption=2
|
||||
mtDialog_ErrorMsgCaption0="An error has occurred during program execution."
|
||||
mtDialog_ErrorMsgCaption1="Please read the following information for further details."
|
||||
Count mtDialog_GeneralCaption=1
|
||||
mtDialog_GeneralCaption0="General"
|
||||
Count mtDialog_GeneralHeader=1
|
||||
mtDialog_GeneralHeader0="General Information"
|
||||
Count mtDialog_CallStackCaption=1
|
||||
mtDialog_CallStackCaption0="Call Stack"
|
||||
Count mtDialog_CallStackHeader=1
|
||||
mtDialog_CallStackHeader0="Call Stack Information"
|
||||
Count mtDialog_ModulesCaption=1
|
||||
mtDialog_ModulesCaption0="Modules"
|
||||
Count mtDialog_ModulesHeader=1
|
||||
mtDialog_ModulesHeader0="Modules Information"
|
||||
Count mtDialog_ProcessesCaption=1
|
||||
mtDialog_ProcessesCaption0="Processes"
|
||||
Count mtDialog_ProcessesHeader=1
|
||||
mtDialog_ProcessesHeader0="Processes Information"
|
||||
Count mtDialog_AsmCaption=1
|
||||
mtDialog_AsmCaption0="Assembler"
|
||||
Count mtDialog_AsmHeader=1
|
||||
mtDialog_AsmHeader0="Assembler Information"
|
||||
Count mtDialog_CPUCaption=1
|
||||
mtDialog_CPUCaption0="CPU"
|
||||
Count mtDialog_CPUHeader=1
|
||||
mtDialog_CPUHeader0="CPU Information"
|
||||
Count mtDialog_OKButtonCaption=1
|
||||
mtDialog_OKButtonCaption0="%26OK"
|
||||
Count mtDialog_TerminateButtonCaption=1
|
||||
mtDialog_TerminateButtonCaption0="%26Terminate"
|
||||
Count mtDialog_RestartButtonCaption=1
|
||||
mtDialog_RestartButtonCaption0="%26Restart"
|
||||
Count mtDialog_DetailsButtonCaption=1
|
||||
mtDialog_DetailsButtonCaption0="%26Details"
|
||||
Count mtDialog_CustomButtonCaption=1
|
||||
mtDialog_CustomButtonCaption0="%26Help"
|
||||
Count mtDialog_SendMessage=1
|
||||
mtDialog_SendMessage0="%26Send this error via Internet"
|
||||
Count mtDialog_ScreenshotMessage=1
|
||||
mtDialog_ScreenshotMessage0="%26Attach a Screenshot image"
|
||||
Count mtDialog_CopyMessage=1
|
||||
mtDialog_CopyMessage0="%26Copy to Clipboard"
|
||||
Count mtDialog_SupportMessage=1
|
||||
mtDialog_SupportMessage0="Go to the Support Page"
|
||||
Count mtMSDialog_ErrorMsgCaption=1
|
||||
mtMSDialog_ErrorMsgCaption0="The application has encountered a problem. We are sorry for the inconvenience."
|
||||
Count mtMSDialog_RestartCaption=1
|
||||
mtMSDialog_RestartCaption0="Restart application."
|
||||
Count mtMSDialog_TerminateCaption=1
|
||||
mtMSDialog_TerminateCaption0="Terminate application."
|
||||
Count mtMSDialog_PleaseCaption=1
|
||||
mtMSDialog_PleaseCaption0="Please tell us about this problem."
|
||||
Count mtMSDialog_DescriptionCaption=1
|
||||
mtMSDialog_DescriptionCaption0="We have created an error report that you can send to us. We will treat this report as confidential and anonymous."
|
||||
Count mtMSDialog_SeeDetailsCaption=1
|
||||
mtMSDialog_SeeDetailsCaption0="To see what data the error report contains,"
|
||||
Count mtMSDialog_SeeClickCaption=1
|
||||
mtMSDialog_SeeClickCaption0="click here."
|
||||
Count mtMSDialog_HowToReproduceCaption=1
|
||||
mtMSDialog_HowToReproduceCaption0="What were you doing when the problem happened (optional)?"
|
||||
Count mtMSDialog_EmailCaption=1
|
||||
mtMSDialog_EmailCaption0="Email address (optional):"
|
||||
Count mtMSDialog_SendButtonCaption=1
|
||||
mtMSDialog_SendButtonCaption0="%26Send Error Report"
|
||||
Count mtMSDialog_NoSendButtonCaption=1
|
||||
mtMSDialog_NoSendButtonCaption0="%26Don't Send"
|
||||
Count mtLog_AppHeader=1
|
||||
mtLog_AppHeader0="Application"
|
||||
Count mtLog_AppStartDate=1
|
||||
mtLog_AppStartDate0="Start Date"
|
||||
Count mtLog_AppName=1
|
||||
mtLog_AppName0="Name/Description"
|
||||
Count mtLog_AppVersionNumber=1
|
||||
mtLog_AppVersionNumber0="Version Number"
|
||||
Count mtLog_AppParameters=1
|
||||
mtLog_AppParameters0="Parameters"
|
||||
Count mtLog_AppCompilationDate=1
|
||||
mtLog_AppCompilationDate0="Compilation Date"
|
||||
Count mtLog_AppUpTime=1
|
||||
mtLog_AppUpTime0="Up Time"
|
||||
Count mtLog_ExcHeader=1
|
||||
mtLog_ExcHeader0="Exception"
|
||||
Count mtLog_ExcDate=1
|
||||
mtLog_ExcDate0="Date"
|
||||
Count mtLog_ExcAddress=1
|
||||
mtLog_ExcAddress0="Address"
|
||||
Count mtLog_ExcModuleName=1
|
||||
mtLog_ExcModuleName0="Module Name"
|
||||
Count mtLog_ExcModuleVersion=1
|
||||
mtLog_ExcModuleVersion0="Module Version"
|
||||
Count mtLog_ExcType=1
|
||||
mtLog_ExcType0="Type"
|
||||
Count mtLog_ExcMessage=1
|
||||
mtLog_ExcMessage0="Message"
|
||||
Count mtLog_ExcID=1
|
||||
mtLog_ExcID0="ID"
|
||||
Count mtLog_ExcCount=1
|
||||
mtLog_ExcCount0="Count"
|
||||
Count mtLog_ExcStatus=1
|
||||
mtLog_ExcStatus0="Status"
|
||||
Count mtLog_ExcNote=1
|
||||
mtLog_ExcNote0="Note"
|
||||
Count mtLog_UserHeader=1
|
||||
mtLog_UserHeader0="User"
|
||||
Count mtLog_UserID=1
|
||||
mtLog_UserID0="ID"
|
||||
Count mtLog_UserName=1
|
||||
mtLog_UserName0="Name"
|
||||
Count mtLog_UserEmail=1
|
||||
mtLog_UserEmail0="Email"
|
||||
Count mtLog_UserCompany=1
|
||||
mtLog_UserCompany0="Company"
|
||||
Count mtLog_UserPrivileges=1
|
||||
mtLog_UserPrivileges0="Privileges"
|
||||
Count mtLog_ActCtrlsHeader=1
|
||||
mtLog_ActCtrlsHeader0="Active Controls"
|
||||
Count mtLog_ActCtrlsFormClass=1
|
||||
mtLog_ActCtrlsFormClass0="Form Class"
|
||||
Count mtLog_ActCtrlsFormText=1
|
||||
mtLog_ActCtrlsFormText0="Form Text"
|
||||
Count mtLog_ActCtrlsControlClass=1
|
||||
mtLog_ActCtrlsControlClass0="Control Class"
|
||||
Count mtLog_ActCtrlsControlText=1
|
||||
mtLog_ActCtrlsControlText0="Control Text"
|
||||
Count mtLog_CmpHeader=1
|
||||
mtLog_CmpHeader0="Computer"
|
||||
Count mtLog_CmpName=1
|
||||
mtLog_CmpName0="Name"
|
||||
Count mtLog_CmpTotalMemory=1
|
||||
mtLog_CmpTotalMemory0="Total Memory"
|
||||
Count mtLog_CmpFreeMemory=1
|
||||
mtLog_CmpFreeMemory0="Free Memory"
|
||||
Count mtLog_CmpTotalDisk=1
|
||||
mtLog_CmpTotalDisk0="Total Disk"
|
||||
Count mtLog_CmpFreeDisk=1
|
||||
mtLog_CmpFreeDisk0="Free Disk"
|
||||
Count mtLog_CmpSystemUpTime=1
|
||||
mtLog_CmpSystemUpTime0="System Up Time"
|
||||
Count mtLog_CmpProcessor=1
|
||||
mtLog_CmpProcessor0="Processor"
|
||||
Count mtLog_CmpDisplayMode=1
|
||||
mtLog_CmpDisplayMode0="Display Mode"
|
||||
Count mtLog_CmpDisplayDPI=1
|
||||
mtLog_CmpDisplayDPI0="Display DPI"
|
||||
Count mtLog_CmpVideoCard=1
|
||||
mtLog_CmpVideoCard0="Video Card"
|
||||
Count mtLog_CmpPrinter=1
|
||||
mtLog_CmpPrinter0="Printer"
|
||||
Count mtLog_OSHeader=1
|
||||
mtLog_OSHeader0="Operating System"
|
||||
Count mtLog_OSType=1
|
||||
mtLog_OSType0="Type"
|
||||
Count mtLog_OSBuildN=1
|
||||
mtLog_OSBuildN0="Build #"
|
||||
Count mtLog_OSUpdate=1
|
||||
mtLog_OSUpdate0="Update"
|
||||
Count mtLog_OSLanguage=1
|
||||
mtLog_OSLanguage0="Language"
|
||||
Count mtLog_OSCharset=1
|
||||
mtLog_OSCharset0="Charset"
|
||||
Count mtLog_NetHeader=1
|
||||
mtLog_NetHeader0="Network"
|
||||
Count mtLog_NetIP=1
|
||||
mtLog_NetIP0="IP Address"
|
||||
Count mtLog_NetSubmask=1
|
||||
mtLog_NetSubmask0="Submask"
|
||||
Count mtLog_NetGateway=1
|
||||
mtLog_NetGateway0="Gateway"
|
||||
Count mtLog_NetDNS1=1
|
||||
mtLog_NetDNS10="DNS 1"
|
||||
Count mtLog_NetDNS2=1
|
||||
mtLog_NetDNS20="DNS 2"
|
||||
Count mtLog_NetDHCP=1
|
||||
mtLog_NetDHCP0="DHCP"
|
||||
Count mtLog_CustInfoHeader=1
|
||||
mtLog_CustInfoHeader0="Custom Information"
|
||||
Count mtCallStack_Address=1
|
||||
mtCallStack_Address0="Address"
|
||||
Count mtCallStack_Name=1
|
||||
mtCallStack_Name0="Module"
|
||||
Count mtCallStack_Unit=1
|
||||
mtCallStack_Unit0="Unit"
|
||||
Count mtCallStack_Class=1
|
||||
mtCallStack_Class0="Class"
|
||||
Count mtCallStack_Procedure=1
|
||||
mtCallStack_Procedure0="Procedure/Method"
|
||||
Count mtCallStack_Line=1
|
||||
mtCallStack_Line0="Line"
|
||||
Count mtCallStack_MainThread=1
|
||||
mtCallStack_MainThread0="Main"
|
||||
Count mtCallStack_ExceptionThread=1
|
||||
mtCallStack_ExceptionThread0="Exception Thread"
|
||||
Count mtCallStack_RunningThread=1
|
||||
mtCallStack_RunningThread0="Running Thread"
|
||||
Count mtCallStack_CallingThread=1
|
||||
mtCallStack_CallingThread0="Calling Thread"
|
||||
Count mtCallStack_ThreadID=1
|
||||
mtCallStack_ThreadID0="ID"
|
||||
Count mtCallStack_ThreadPriority=1
|
||||
mtCallStack_ThreadPriority0="Priority"
|
||||
Count mtCallStack_ThreadClass=1
|
||||
mtCallStack_ThreadClass0="Class"
|
||||
Count mtCallStack_LeakCaption=1
|
||||
mtCallStack_LeakCaption0="Memory Leak"
|
||||
Count mtCallStack_LeakData=1
|
||||
mtCallStack_LeakData0="Data"
|
||||
Count mtCallStack_LeakType=1
|
||||
mtCallStack_LeakType0="Type"
|
||||
Count mtCallStack_LeakSize=1
|
||||
mtCallStack_LeakSize0="Total size"
|
||||
Count mtCallStack_LeakCount=1
|
||||
mtCallStack_LeakCount0="Count"
|
||||
Count mtSendDialog_Caption=1
|
||||
mtSendDialog_Caption0="Send."
|
||||
Count mtSendDialog_Message=1
|
||||
mtSendDialog_Message0="Message"
|
||||
Count mtSendDialog_Resolving=1
|
||||
mtSendDialog_Resolving0="Resolving DNS..."
|
||||
Count mtSendDialog_Login=1
|
||||
mtSendDialog_Login0="Login..."
|
||||
Count mtSendDialog_Connecting=1
|
||||
mtSendDialog_Connecting0="Connecting with server..."
|
||||
Count mtSendDialog_Connected=1
|
||||
mtSendDialog_Connected0="Connected with server."
|
||||
Count mtSendDialog_Sending=1
|
||||
mtSendDialog_Sending0="Sending message..."
|
||||
Count mtSendDialog_Sent=1
|
||||
mtSendDialog_Sent0="Message sent."
|
||||
Count mtSendDialog_SelectProject=1
|
||||
mtSendDialog_SelectProject0="Select project..."
|
||||
Count mtSendDialog_Searching=1
|
||||
mtSendDialog_Searching0="Searching..."
|
||||
Count mtSendDialog_Modifying=1
|
||||
mtSendDialog_Modifying0="Modifying..."
|
||||
Count mtSendDialog_Disconnecting=1
|
||||
mtSendDialog_Disconnecting0="Disconnecting..."
|
||||
Count mtSendDialog_Disconnected=1
|
||||
mtSendDialog_Disconnected0="Disconnected."
|
||||
Count mtReproduceDialog_Caption=1
|
||||
mtReproduceDialog_Caption0="Request"
|
||||
Count mtReproduceDialog_Request=1
|
||||
mtReproduceDialog_Request0="Please describe the steps to reproduce the error:"
|
||||
Count mtReproduceDialog_OKButtonCaption=1
|
||||
mtReproduceDialog_OKButtonCaption0="%26OK"
|
||||
Count mtModules_Handle=1
|
||||
mtModules_Handle0="Handle"
|
||||
Count mtModules_Name=1
|
||||
mtModules_Name0="Name"
|
||||
Count mtModules_Description=1
|
||||
mtModules_Description0="Description"
|
||||
Count mtModules_Version=1
|
||||
mtModules_Version0="Version"
|
||||
Count mtModules_Size=1
|
||||
mtModules_Size0="Size"
|
||||
Count mtModules_LastModified=1
|
||||
mtModules_LastModified0="Modified"
|
||||
Count mtModules_Path=1
|
||||
mtModules_Path0="Path"
|
||||
Count mtProcesses_ID=1
|
||||
mtProcesses_ID0="ID"
|
||||
Count mtProcesses_Name=1
|
||||
mtProcesses_Name0="Name"
|
||||
Count mtProcesses_Description=1
|
||||
mtProcesses_Description0="Description"
|
||||
Count mtProcesses_Version=1
|
||||
mtProcesses_Version0="Version"
|
||||
Count mtProcesses_Memory=1
|
||||
mtProcesses_Memory0="Memory"
|
||||
Count mtProcesses_Priority=1
|
||||
mtProcesses_Priority0="Priority"
|
||||
Count mtProcesses_Threads=1
|
||||
mtProcesses_Threads0="Threads"
|
||||
Count mtProcesses_Path=1
|
||||
mtProcesses_Path0="Path"
|
||||
Count mtCPU_Registers=1
|
||||
mtCPU_Registers0="Registers"
|
||||
Count mtCPU_Stack=1
|
||||
mtCPU_Stack0="Stack"
|
||||
Count mtCPU_MemoryDump=1
|
||||
mtCPU_MemoryDump0="Memory Dump"
|
||||
Count mtSend_SuccessMsg=1
|
||||
mtSend_SuccessMsg0="The message was sent successfully."
|
||||
Count mtSend_FailureMsg=1
|
||||
mtSend_FailureMsg0="Sorry, sending the message didn't work."
|
||||
Count mtSend_BugClosedMsg=2
|
||||
mtSend_BugClosedMsg0="These BUG is just closed."
|
||||
mtSend_BugClosedMsg1="Contact the program support to obtain an update."
|
||||
Count mtSend_UnknownErrorMsg=1
|
||||
mtSend_UnknownErrorMsg0="Unknown error."
|
||||
Count mtSend_InvalidLoginMsg=1
|
||||
mtSend_InvalidLoginMsg0="Invalid login request."
|
||||
Count mtSend_InvalidSearchMsg=1
|
||||
mtSend_InvalidSearchMsg0="Invalid search request."
|
||||
Count mtSend_InvalidSelectionMsg=1
|
||||
mtSend_InvalidSelectionMsg0="Invalid selection request."
|
||||
Count mtSend_InvalidInsertMsg=1
|
||||
mtSend_InvalidInsertMsg0="Invalid insert request."
|
||||
Count mtSend_InvalidModifyMsg=1
|
||||
mtSend_InvalidModifyMsg0="Invalid modify request."
|
||||
Count mtFileCrackedMsg=2
|
||||
mtFileCrackedMsg0="This file is cracked."
|
||||
mtFileCrackedMsg1="The application will be closed."
|
||||
Count mtException_LeakMultiFree=1
|
||||
mtException_LeakMultiFree0="Multi Free memory leak."
|
||||
Count mtException_LeakMemoryOverrun=1
|
||||
mtException_LeakMemoryOverrun0="Memory Overrun leak."
|
||||
Count mtException_AntiFreeze=1
|
||||
mtException_AntiFreeze0="The application seems to be frozen."
|
||||
Count mtInvalidEmailMsg=1
|
||||
mtInvalidEmailMsg0="Invalid email."
|
||||
TextsCollection=English
|
||||
EurekaLog Last Line -->
|
||||
451
Database/udfs/udf_RtfToText.drc
Normal file
@ -0,0 +1,451 @@
|
||||
/* VER185
|
||||
Generated by the CodeGear Delphi Pascal Compiler
|
||||
because -GD or --drc was supplied to the compiler.
|
||||
|
||||
This file contains compiler-generated resources that
|
||||
were bound to the executable.
|
||||
If this file is empty, then no compiler-generated
|
||||
resources were bound to the produced executable.
|
||||
*/
|
||||
|
||||
#define Consts_SDockZoneHasNoCtl 65312
|
||||
#define Consts_SDockZoneVersionConflict 65313
|
||||
#define Consts_SANSIEncoding 65314
|
||||
#define Consts_SASCIIEncoding 65315
|
||||
#define Consts_SUnicodeEncoding 65316
|
||||
#define Consts_SBigEndianEncoding 65317
|
||||
#define Consts_SUTF8Encoding 65318
|
||||
#define Consts_SUTF7Encoding 65319
|
||||
#define Consts_SmkcEnd 65328
|
||||
#define Consts_SmkcHome 65329
|
||||
#define Consts_SmkcLeft 65330
|
||||
#define Consts_SmkcUp 65331
|
||||
#define Consts_SmkcRight 65332
|
||||
#define Consts_SmkcDown 65333
|
||||
#define Consts_SmkcIns 65334
|
||||
#define Consts_SmkcDel 65335
|
||||
#define Consts_SmkcShift 65336
|
||||
#define Consts_SmkcCtrl 65337
|
||||
#define Consts_SmkcAlt 65338
|
||||
#define Consts_SIconToClipboard 65339
|
||||
#define Consts_SDuplicateMenus 65340
|
||||
#define Consts_SDockedCtlNeedsName 65341
|
||||
#define Consts_SDockTreeRemoveError 65342
|
||||
#define Consts_SDockZoneNotFound 65343
|
||||
#define Consts_SMsgDlgOK 65344
|
||||
#define Consts_SMsgDlgCancel 65345
|
||||
#define Consts_SMsgDlgHelp 65346
|
||||
#define Consts_SMsgDlgAbort 65347
|
||||
#define Consts_SMsgDlgRetry 65348
|
||||
#define Consts_SMsgDlgIgnore 65349
|
||||
#define Consts_SMsgDlgAll 65350
|
||||
#define Consts_SMsgDlgNoToAll 65351
|
||||
#define Consts_SMsgDlgYesToAll 65352
|
||||
#define Consts_SmkcBkSp 65353
|
||||
#define Consts_SmkcTab 65354
|
||||
#define Consts_SmkcEsc 65355
|
||||
#define Consts_SmkcEnter 65356
|
||||
#define Consts_SmkcSpace 65357
|
||||
#define Consts_SmkcPgUp 65358
|
||||
#define Consts_SmkcPgDn 65359
|
||||
#define Consts_SCancelButton 65360
|
||||
#define Consts_SYesButton 65361
|
||||
#define Consts_SNoButton 65362
|
||||
#define Consts_SHelpButton 65363
|
||||
#define Consts_SCloseButton 65364
|
||||
#define Consts_SIgnoreButton 65365
|
||||
#define Consts_SRetryButton 65366
|
||||
#define Consts_SAbortButton 65367
|
||||
#define Consts_SAllButton 65368
|
||||
#define Consts_SCannotDragForm 65369
|
||||
#define Consts_SMsgDlgWarning 65370
|
||||
#define Consts_SMsgDlgError 65371
|
||||
#define Consts_SMsgDlgInformation 65372
|
||||
#define Consts_SMsgDlgConfirm 65373
|
||||
#define Consts_SMsgDlgYes 65374
|
||||
#define Consts_SMsgDlgNo 65375
|
||||
#define Consts_SImageWriteFail 65376
|
||||
#define Consts_SWindowDCError 65377
|
||||
#define Consts_SWindowClass 65378
|
||||
#define Consts_SCannotFocus 65379
|
||||
#define Consts_SParentRequired 65380
|
||||
#define Consts_SMDIChildNotVisible 65381
|
||||
#define Consts_SVisibleChanged 65382
|
||||
#define Consts_SCannotShowModal 65383
|
||||
#define Consts_SMenuIndexError 65384
|
||||
#define Consts_SMenuReinserted 65385
|
||||
#define Consts_SMenuNotFound 65386
|
||||
#define Consts_SNoTimers 65387
|
||||
#define Consts_SGroupIndexTooLow 65388
|
||||
#define Consts_SNoMDIForm 65389
|
||||
#define Consts_SControlParentSetToSelf 65390
|
||||
#define Consts_SOKButton 65391
|
||||
#define RTLConsts_SWriteError 65392
|
||||
#define HelpIntfs_hNoTableOfContents 65393
|
||||
#define HelpIntfs_hNothingFound 65394
|
||||
#define HelpIntfs_hNoContext 65395
|
||||
#define HelpIntfs_hNoContextFound 65396
|
||||
#define HelpIntfs_hNoTopics 65397
|
||||
#define Consts_SInvalidBitmap 65398
|
||||
#define Consts_SInvalidIcon 65399
|
||||
#define Consts_SChangeIconSize 65400
|
||||
#define Consts_SUnknownClipboardFormat 65401
|
||||
#define Consts_SOutOfResources 65402
|
||||
#define Consts_SNoCanvasHandle 65403
|
||||
#define Consts_SInvalidImageSize 65404
|
||||
#define Consts_SInvalidImageList 65405
|
||||
#define Consts_SImageIndexError 65406
|
||||
#define Consts_SImageReadFail 65407
|
||||
#define RTLConsts_SInvalidPropertyPath 65408
|
||||
#define RTLConsts_SInvalidPropertyValue 65409
|
||||
#define RTLConsts_SInvalidRegType 65410
|
||||
#define RTLConsts_SListCapacityError 65411
|
||||
#define RTLConsts_SListCountError 65412
|
||||
#define RTLConsts_SListIndexError 65413
|
||||
#define RTLConsts_SMemoryStreamError 65414
|
||||
#define RTLConsts_SPropertyException 65415
|
||||
#define RTLConsts_SReadError 65416
|
||||
#define RTLConsts_SReadOnlyProperty 65417
|
||||
#define RTLConsts_SRegGetDataFailed 65418
|
||||
#define RTLConsts_SResNotFound 65419
|
||||
#define RTLConsts_SSeekNotImplemented 65420
|
||||
#define RTLConsts_SSortedListError 65421
|
||||
#define RTLConsts_SUnknownGroup 65422
|
||||
#define RTLConsts_SUnknownProperty 65423
|
||||
#define ComConst_SNoCloseActiveServer1 65424
|
||||
#define ComConst_SNoCloseActiveServer2 65425
|
||||
#define RTLConsts_SAncestorNotFound 65426
|
||||
#define RTLConsts_SAssignError 65427
|
||||
#define RTLConsts_SBitsIndexError 65428
|
||||
#define RTLConsts_SCantWriteResourceStreamError 65429
|
||||
#define RTLConsts_SCheckSynchronizeError 65430
|
||||
#define RTLConsts_SClassNotFound 65431
|
||||
#define RTLConsts_SDuplicateClass 65432
|
||||
#define RTLConsts_SDuplicateItem 65433
|
||||
#define RTLConsts_SDuplicateName 65434
|
||||
#define RTLConsts_SDuplicateString 65435
|
||||
#define RTLConsts_SFCreateErrorEx 65436
|
||||
#define RTLConsts_SFOpenErrorEx 65437
|
||||
#define RTLConsts_SInvalidImage 65438
|
||||
#define RTLConsts_SInvalidName 65439
|
||||
#define SysConst_SShortDayNameWed 65440
|
||||
#define SysConst_SShortDayNameThu 65441
|
||||
#define SysConst_SShortDayNameFri 65442
|
||||
#define SysConst_SShortDayNameSat 65443
|
||||
#define SysConst_SLongDayNameSun 65444
|
||||
#define SysConst_SLongDayNameMon 65445
|
||||
#define SysConst_SLongDayNameTue 65446
|
||||
#define SysConst_SLongDayNameWed 65447
|
||||
#define SysConst_SLongDayNameThu 65448
|
||||
#define SysConst_SLongDayNameFri 65449
|
||||
#define SysConst_SLongDayNameSat 65450
|
||||
#define ComConst_SOleError 65451
|
||||
#define ComConst_SNoMethod 65452
|
||||
#define ComConst_SVarNotObject 65453
|
||||
#define ComConst_STooManyParams 65454
|
||||
#define ComConst_SAutomationWarning 65455
|
||||
#define SysConst_SShortMonthNameDec 65456
|
||||
#define SysConst_SLongMonthNameJan 65457
|
||||
#define SysConst_SLongMonthNameFeb 65458
|
||||
#define SysConst_SLongMonthNameMar 65459
|
||||
#define SysConst_SLongMonthNameApr 65460
|
||||
#define SysConst_SLongMonthNameMay 65461
|
||||
#define SysConst_SLongMonthNameJun 65462
|
||||
#define SysConst_SLongMonthNameJul 65463
|
||||
#define SysConst_SLongMonthNameAug 65464
|
||||
#define SysConst_SLongMonthNameSep 65465
|
||||
#define SysConst_SLongMonthNameOct 65466
|
||||
#define SysConst_SLongMonthNameNov 65467
|
||||
#define SysConst_SLongMonthNameDec 65468
|
||||
#define SysConst_SShortDayNameSun 65469
|
||||
#define SysConst_SShortDayNameMon 65470
|
||||
#define SysConst_SShortDayNameTue 65471
|
||||
#define SysConst_SAssertError 65472
|
||||
#define SysConst_SAbstractError 65473
|
||||
#define SysConst_SModuleAccessViolation 65474
|
||||
#define SysConst_SOSError 65475
|
||||
#define SysConst_SUnkOSError 65476
|
||||
#define SysConst_SShortMonthNameJan 65477
|
||||
#define SysConst_SShortMonthNameFeb 65478
|
||||
#define SysConst_SShortMonthNameMar 65479
|
||||
#define SysConst_SShortMonthNameApr 65480
|
||||
#define SysConst_SShortMonthNameMay 65481
|
||||
#define SysConst_SShortMonthNameJun 65482
|
||||
#define SysConst_SShortMonthNameJul 65483
|
||||
#define SysConst_SShortMonthNameAug 65484
|
||||
#define SysConst_SShortMonthNameSep 65485
|
||||
#define SysConst_SShortMonthNameOct 65486
|
||||
#define SysConst_SShortMonthNameNov 65487
|
||||
#define SysConst_SVarArrayBounds 65488
|
||||
#define SysConst_SVarArrayLocked 65489
|
||||
#define SysConst_SInvalidVarCast 65490
|
||||
#define SysConst_SInvalidVarOp 65491
|
||||
#define SysConst_SInvalidVarOpWithHResultWithPrefix 65492
|
||||
#define SysConst_SVarTypeCouldNotConvert 65493
|
||||
#define SysConst_SVarTypeConvertOverflow 65494
|
||||
#define SysConst_SVarOverflow 65495
|
||||
#define SysConst_SVarInvalid 65496
|
||||
#define SysConst_SVarBadType 65497
|
||||
#define SysConst_SVarNotImplemented 65498
|
||||
#define SysConst_SVarUnexpected 65499
|
||||
#define SysConst_SExternalException 65500
|
||||
#define SysConst_SAssertionFailed 65501
|
||||
#define SysConst_SIntfCastError 65502
|
||||
#define SysConst_SSafecallException 65503
|
||||
#define SysConst_SUnderflow 65504
|
||||
#define SysConst_SInvalidPointer 65505
|
||||
#define SysConst_SInvalidCast 65506
|
||||
#define SysConst_SAccessViolationArg3 65507
|
||||
#define SysConst_SAccessViolationNoArg 65508
|
||||
#define SysConst_SStackOverflow 65509
|
||||
#define SysConst_SControlC 65510
|
||||
#define SysConst_SPrivilege 65511
|
||||
#define SysConst_SException 65512
|
||||
#define SysConst_SExceptTitle 65513
|
||||
#define SysConst_SInvalidFormat 65514
|
||||
#define SysConst_SArgumentMissing 65515
|
||||
#define SysConst_SDispatchError 65516
|
||||
#define SysConst_SReadAccess 65517
|
||||
#define SysConst_SWriteAccess 65518
|
||||
#define SysConst_SVarArrayCreate 65519
|
||||
#define SysConst_SInvalidInteger 65520
|
||||
#define SysConst_SOutOfMemory 65521
|
||||
#define SysConst_SInOutError 65522
|
||||
#define SysConst_SFileNotFound 65523
|
||||
#define SysConst_SInvalidFilename 65524
|
||||
#define SysConst_STooManyOpenFiles 65525
|
||||
#define SysConst_SAccessDenied 65526
|
||||
#define SysConst_SEndOfFile 65527
|
||||
#define SysConst_SDiskFull 65528
|
||||
#define SysConst_SInvalidInput 65529
|
||||
#define SysConst_SDivByZero 65530
|
||||
#define SysConst_SRangeError 65531
|
||||
#define SysConst_SIntOverflow 65532
|
||||
#define SysConst_SInvalidOp 65533
|
||||
#define SysConst_SZeroDivide 65534
|
||||
#define SysConst_SOverflow 65535
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
Consts_SDockZoneHasNoCtl, " - Dock zone has no control"
|
||||
Consts_SDockZoneVersionConflict, "Error loading dock zone from the stream. Expecting version %d, but found %d."
|
||||
Consts_SANSIEncoding, "ANSI"
|
||||
Consts_SASCIIEncoding, "ASCII"
|
||||
Consts_SUnicodeEncoding, "Unicode"
|
||||
Consts_SBigEndianEncoding, "Big Endian Unicode"
|
||||
Consts_SUTF8Encoding, "UTF-8"
|
||||
Consts_SUTF7Encoding, "UTF-7"
|
||||
Consts_SmkcEnd, "End"
|
||||
Consts_SmkcHome, "Home"
|
||||
Consts_SmkcLeft, "Left"
|
||||
Consts_SmkcUp, "Up"
|
||||
Consts_SmkcRight, "Right"
|
||||
Consts_SmkcDown, "Down"
|
||||
Consts_SmkcIns, "Ins"
|
||||
Consts_SmkcDel, "Del"
|
||||
Consts_SmkcShift, "Shift+"
|
||||
Consts_SmkcCtrl, "Ctrl+"
|
||||
Consts_SmkcAlt, "Alt+"
|
||||
Consts_SIconToClipboard, "Clipboard does not support Icons"
|
||||
Consts_SDuplicateMenus, "Menu '%s' is already being used by another form"
|
||||
Consts_SDockedCtlNeedsName, "Docked control must have a name"
|
||||
Consts_SDockTreeRemoveError, "Error removing control from dock tree"
|
||||
Consts_SDockZoneNotFound, " - Dock zone not found"
|
||||
Consts_SMsgDlgOK, "OK"
|
||||
Consts_SMsgDlgCancel, "Cancel"
|
||||
Consts_SMsgDlgHelp, "&Help"
|
||||
Consts_SMsgDlgAbort, "&Abort"
|
||||
Consts_SMsgDlgRetry, "&Retry"
|
||||
Consts_SMsgDlgIgnore, "&Ignore"
|
||||
Consts_SMsgDlgAll, "&All"
|
||||
Consts_SMsgDlgNoToAll, "N&o to All"
|
||||
Consts_SMsgDlgYesToAll, "Yes to &All"
|
||||
Consts_SmkcBkSp, "BkSp"
|
||||
Consts_SmkcTab, "Tab"
|
||||
Consts_SmkcEsc, "Esc"
|
||||
Consts_SmkcEnter, "Enter"
|
||||
Consts_SmkcSpace, "Space"
|
||||
Consts_SmkcPgUp, "PgUp"
|
||||
Consts_SmkcPgDn, "PgDn"
|
||||
Consts_SCancelButton, "Cancel"
|
||||
Consts_SYesButton, "&Yes"
|
||||
Consts_SNoButton, "&No"
|
||||
Consts_SHelpButton, "&Help"
|
||||
Consts_SCloseButton, "&Close"
|
||||
Consts_SIgnoreButton, "&Ignore"
|
||||
Consts_SRetryButton, "&Retry"
|
||||
Consts_SAbortButton, "Abort"
|
||||
Consts_SAllButton, "&All"
|
||||
Consts_SCannotDragForm, "Cannot drag a form"
|
||||
Consts_SMsgDlgWarning, "Warning"
|
||||
Consts_SMsgDlgError, "Error"
|
||||
Consts_SMsgDlgInformation, "Information"
|
||||
Consts_SMsgDlgConfirm, "Confirm"
|
||||
Consts_SMsgDlgYes, "&Yes"
|
||||
Consts_SMsgDlgNo, "&No"
|
||||
Consts_SImageWriteFail, "Failed to write ImageList data to stream"
|
||||
Consts_SWindowDCError, "Error creating window device context"
|
||||
Consts_SWindowClass, "Error creating window class"
|
||||
Consts_SCannotFocus, "Cannot focus a disabled or invisible window"
|
||||
Consts_SParentRequired, "Control '%s' has no parent window"
|
||||
Consts_SMDIChildNotVisible, "Cannot hide an MDI Child Form"
|
||||
Consts_SVisibleChanged, "Cannot change Visible in OnShow or OnHide"
|
||||
Consts_SCannotShowModal, "Cannot make a visible window modal"
|
||||
Consts_SMenuIndexError, "Menu index out of range"
|
||||
Consts_SMenuReinserted, "Menu inserted twice"
|
||||
Consts_SMenuNotFound, "Sub-menu is not in menu"
|
||||
Consts_SNoTimers, "Not enough timers available"
|
||||
Consts_SGroupIndexTooLow, "GroupIndex cannot be less than a previous menu item's GroupIndex"
|
||||
Consts_SNoMDIForm, "Cannot create form. No MDI forms are currently active"
|
||||
Consts_SControlParentSetToSelf, "A control cannot have itself as its parent"
|
||||
Consts_SOKButton, "OK"
|
||||
RTLConsts_SWriteError, "Stream write error"
|
||||
HelpIntfs_hNoTableOfContents, "Unable to find a Table of Contents"
|
||||
HelpIntfs_hNothingFound, "No help found for %s"
|
||||
HelpIntfs_hNoContext, "No context-sensitive help installed"
|
||||
HelpIntfs_hNoContextFound, "No help found for context"
|
||||
HelpIntfs_hNoTopics, "No topic-based help system installed"
|
||||
Consts_SInvalidBitmap, "Bitmap image is not valid"
|
||||
Consts_SInvalidIcon, "Icon image is not valid"
|
||||
Consts_SChangeIconSize, "Cannot change the size of an icon"
|
||||
Consts_SUnknownClipboardFormat, "Unsupported clipboard format"
|
||||
Consts_SOutOfResources, "Out of system resources"
|
||||
Consts_SNoCanvasHandle, "Canvas does not allow drawing"
|
||||
Consts_SInvalidImageSize, "Invalid image size"
|
||||
Consts_SInvalidImageList, "Invalid ImageList"
|
||||
Consts_SImageIndexError, "Invalid ImageList Index"
|
||||
Consts_SImageReadFail, "Failed to read ImageList data from stream"
|
||||
RTLConsts_SInvalidPropertyPath, "Invalid property path"
|
||||
RTLConsts_SInvalidPropertyValue, "Invalid property value"
|
||||
RTLConsts_SInvalidRegType, "Invalid data type for '%s'"
|
||||
RTLConsts_SListCapacityError, "List capacity out of bounds (%d)"
|
||||
RTLConsts_SListCountError, "List count out of bounds (%d)"
|
||||
RTLConsts_SListIndexError, "List index out of bounds (%d)"
|
||||
RTLConsts_SMemoryStreamError, "Out of memory while expanding memory stream"
|
||||
RTLConsts_SPropertyException, "Error reading %s%s%s: %s"
|
||||
RTLConsts_SReadError, "Stream read error"
|
||||
RTLConsts_SReadOnlyProperty, "Property is read-only"
|
||||
RTLConsts_SRegGetDataFailed, "Failed to get data for '%s'"
|
||||
RTLConsts_SResNotFound, "Resource %s not found"
|
||||
RTLConsts_SSeekNotImplemented, "%s.Seek not implemented"
|
||||
RTLConsts_SSortedListError, "Operation not allowed on sorted list"
|
||||
RTLConsts_SUnknownGroup, "%s not in a class registration group"
|
||||
RTLConsts_SUnknownProperty, "Property %s does not exist"
|
||||
ComConst_SNoCloseActiveServer1, "There are still active COM objects in this application. One or more clients may have references to these objects, so manually closing "
|
||||
ComConst_SNoCloseActiveServer2, "this application may cause those client application(s) to fail.\r\n\r\nAre you sure you want to close this application?"
|
||||
RTLConsts_SAncestorNotFound, "Ancestor for '%s' not found"
|
||||
RTLConsts_SAssignError, "Cannot assign a %s to a %s"
|
||||
RTLConsts_SBitsIndexError, "Bits index out of range"
|
||||
RTLConsts_SCantWriteResourceStreamError, "Can't write to a read-only resource stream"
|
||||
RTLConsts_SCheckSynchronizeError, "CheckSynchronize called from thread $%x, which is NOT the main thread"
|
||||
RTLConsts_SClassNotFound, "Class %s not found"
|
||||
RTLConsts_SDuplicateClass, "A class named %s already exists"
|
||||
RTLConsts_SDuplicateItem, "List does not allow duplicates ($0%x)"
|
||||
RTLConsts_SDuplicateName, "A component named %s already exists"
|
||||
RTLConsts_SDuplicateString, "String list does not allow duplicates"
|
||||
RTLConsts_SFCreateErrorEx, "Cannot create file \"%s\". %s"
|
||||
RTLConsts_SFOpenErrorEx, "Cannot open file \"%s\". %s"
|
||||
RTLConsts_SInvalidImage, "Invalid stream format"
|
||||
RTLConsts_SInvalidName, "''%s'' is not a valid component name"
|
||||
SysConst_SShortDayNameWed, "Wed"
|
||||
SysConst_SShortDayNameThu, "Thu"
|
||||
SysConst_SShortDayNameFri, "Fri"
|
||||
SysConst_SShortDayNameSat, "Sat"
|
||||
SysConst_SLongDayNameSun, "Sunday"
|
||||
SysConst_SLongDayNameMon, "Monday"
|
||||
SysConst_SLongDayNameTue, "Tuesday"
|
||||
SysConst_SLongDayNameWed, "Wednesday"
|
||||
SysConst_SLongDayNameThu, "Thursday"
|
||||
SysConst_SLongDayNameFri, "Friday"
|
||||
SysConst_SLongDayNameSat, "Saturday"
|
||||
ComConst_SOleError, "OLE error %.8x"
|
||||
ComConst_SNoMethod, "Method '%s' not supported by automation object"
|
||||
ComConst_SVarNotObject, "Variant does not reference an automation object"
|
||||
ComConst_STooManyParams, "Dispatch methods do not support more than 64 parameters"
|
||||
ComConst_SAutomationWarning, "COM Server Warning"
|
||||
SysConst_SShortMonthNameDec, "Dec"
|
||||
SysConst_SLongMonthNameJan, "January"
|
||||
SysConst_SLongMonthNameFeb, "February"
|
||||
SysConst_SLongMonthNameMar, "March"
|
||||
SysConst_SLongMonthNameApr, "April"
|
||||
SysConst_SLongMonthNameMay, "May"
|
||||
SysConst_SLongMonthNameJun, "June"
|
||||
SysConst_SLongMonthNameJul, "July"
|
||||
SysConst_SLongMonthNameAug, "August"
|
||||
SysConst_SLongMonthNameSep, "September"
|
||||
SysConst_SLongMonthNameOct, "October"
|
||||
SysConst_SLongMonthNameNov, "November"
|
||||
SysConst_SLongMonthNameDec, "December"
|
||||
SysConst_SShortDayNameSun, "Sun"
|
||||
SysConst_SShortDayNameMon, "Mon"
|
||||
SysConst_SShortDayNameTue, "Tue"
|
||||
SysConst_SAssertError, "%s (%s, line %d)"
|
||||
SysConst_SAbstractError, "Abstract Error"
|
||||
SysConst_SModuleAccessViolation, "Access violation at address %p in module '%s'. %s of address %p"
|
||||
SysConst_SOSError, "System Error. Code: %d.\r\n%s"
|
||||
SysConst_SUnkOSError, "A call to an OS function failed"
|
||||
SysConst_SShortMonthNameJan, "Jan"
|
||||
SysConst_SShortMonthNameFeb, "Feb"
|
||||
SysConst_SShortMonthNameMar, "Mar"
|
||||
SysConst_SShortMonthNameApr, "Apr"
|
||||
SysConst_SShortMonthNameMay, "May"
|
||||
SysConst_SShortMonthNameJun, "Jun"
|
||||
SysConst_SShortMonthNameJul, "Jul"
|
||||
SysConst_SShortMonthNameAug, "Aug"
|
||||
SysConst_SShortMonthNameSep, "Sep"
|
||||
SysConst_SShortMonthNameOct, "Oct"
|
||||
SysConst_SShortMonthNameNov, "Nov"
|
||||
SysConst_SVarArrayBounds, "Variant or safe array index out of bounds"
|
||||
SysConst_SVarArrayLocked, "Variant or safe array is locked"
|
||||
SysConst_SInvalidVarCast, "Invalid variant type conversion"
|
||||
SysConst_SInvalidVarOp, "Invalid variant operation"
|
||||
SysConst_SInvalidVarOpWithHResultWithPrefix, "Invalid variant operation (%s%.8x)\n%s"
|
||||
SysConst_SVarTypeCouldNotConvert, "Could not convert variant of type (%s) into type (%s)"
|
||||
SysConst_SVarTypeConvertOverflow, "Overflow while converting variant of type (%s) into type (%s)"
|
||||
SysConst_SVarOverflow, "Variant overflow"
|
||||
SysConst_SVarInvalid, "Invalid argument"
|
||||
SysConst_SVarBadType, "Invalid variant type"
|
||||
SysConst_SVarNotImplemented, "Operation not supported"
|
||||
SysConst_SVarUnexpected, "Unexpected variant error"
|
||||
SysConst_SExternalException, "External exception %x"
|
||||
SysConst_SAssertionFailed, "Assertion failed"
|
||||
SysConst_SIntfCastError, "Interface not supported"
|
||||
SysConst_SSafecallException, "Exception in safecall method"
|
||||
SysConst_SUnderflow, "Floating point underflow"
|
||||
SysConst_SInvalidPointer, "Invalid pointer operation"
|
||||
SysConst_SInvalidCast, "Invalid class typecast"
|
||||
SysConst_SAccessViolationArg3, "Access violation at address %p. %s of address %p"
|
||||
SysConst_SAccessViolationNoArg, "Access violation"
|
||||
SysConst_SStackOverflow, "Stack overflow"
|
||||
SysConst_SControlC, "Control-C hit"
|
||||
SysConst_SPrivilege, "Privileged instruction"
|
||||
SysConst_SException, "Exception %s in module %s at %p.\r\n%s%s\r\n"
|
||||
SysConst_SExceptTitle, "Application Error"
|
||||
SysConst_SInvalidFormat, "Format '%s' invalid or incompatible with argument"
|
||||
SysConst_SArgumentMissing, "No argument for format '%s'"
|
||||
SysConst_SDispatchError, "Variant method calls not supported"
|
||||
SysConst_SReadAccess, "Read"
|
||||
SysConst_SWriteAccess, "Write"
|
||||
SysConst_SVarArrayCreate, "Error creating variant or safe array"
|
||||
SysConst_SInvalidInteger, "'%s' is not a valid integer value"
|
||||
SysConst_SOutOfMemory, "Out of memory"
|
||||
SysConst_SInOutError, "I/O error %d"
|
||||
SysConst_SFileNotFound, "File not found"
|
||||
SysConst_SInvalidFilename, "Invalid filename"
|
||||
SysConst_STooManyOpenFiles, "Too many open files"
|
||||
SysConst_SAccessDenied, "File access denied"
|
||||
SysConst_SEndOfFile, "Read beyond end of file"
|
||||
SysConst_SDiskFull, "Disk full"
|
||||
SysConst_SInvalidInput, "Invalid numeric input"
|
||||
SysConst_SDivByZero, "Division by zero"
|
||||
SysConst_SRangeError, "Range check error"
|
||||
SysConst_SIntOverflow, "Integer overflow"
|
||||
SysConst_SInvalidOp, "Invalid floating point operation"
|
||||
SysConst_SZeroDivide, "Floating point division by zero"
|
||||
SysConst_SOverflow, "Floating point overflow"
|
||||
END
|
||||
|
||||
/* c:\archivos de programa\codegear\rad studio\5.0\lib\Controls.res */
|
||||
/* c:\archivos de programa\codegear\rad studio\5.0\lib\Buttons.res */
|
||||
/* c:\archivos de programa\codegear\rad studio\5.0\lib\ExtDlgs.res */
|
||||
/* C:\Codigo\Database\udfs\udf_RtfToText.RES */
|
||||
/* C:\Codigo\Database\udfs\udf_RtfToText.drf */
|
||||
451
Database/udfs/udf_RtfToText.drc.bak
Normal file
@ -0,0 +1,451 @@
|
||||
/* VER185
|
||||
Generated by the CodeGear Delphi Pascal Compiler
|
||||
because -GD or --drc was supplied to the compiler.
|
||||
|
||||
This file contains compiler-generated resources that
|
||||
were bound to the executable.
|
||||
If this file is empty, then no compiler-generated
|
||||
resources were bound to the produced executable.
|
||||
*/
|
||||
|
||||
#define Consts_SDockZoneHasNoCtl 65312
|
||||
#define Consts_SDockZoneVersionConflict 65313
|
||||
#define Consts_SANSIEncoding 65314
|
||||
#define Consts_SASCIIEncoding 65315
|
||||
#define Consts_SUnicodeEncoding 65316
|
||||
#define Consts_SBigEndianEncoding 65317
|
||||
#define Consts_SUTF8Encoding 65318
|
||||
#define Consts_SUTF7Encoding 65319
|
||||
#define Consts_SmkcEnd 65328
|
||||
#define Consts_SmkcHome 65329
|
||||
#define Consts_SmkcLeft 65330
|
||||
#define Consts_SmkcUp 65331
|
||||
#define Consts_SmkcRight 65332
|
||||
#define Consts_SmkcDown 65333
|
||||
#define Consts_SmkcIns 65334
|
||||
#define Consts_SmkcDel 65335
|
||||
#define Consts_SmkcShift 65336
|
||||
#define Consts_SmkcCtrl 65337
|
||||
#define Consts_SmkcAlt 65338
|
||||
#define Consts_SIconToClipboard 65339
|
||||
#define Consts_SDuplicateMenus 65340
|
||||
#define Consts_SDockedCtlNeedsName 65341
|
||||
#define Consts_SDockTreeRemoveError 65342
|
||||
#define Consts_SDockZoneNotFound 65343
|
||||
#define Consts_SMsgDlgOK 65344
|
||||
#define Consts_SMsgDlgCancel 65345
|
||||
#define Consts_SMsgDlgHelp 65346
|
||||
#define Consts_SMsgDlgAbort 65347
|
||||
#define Consts_SMsgDlgRetry 65348
|
||||
#define Consts_SMsgDlgIgnore 65349
|
||||
#define Consts_SMsgDlgAll 65350
|
||||
#define Consts_SMsgDlgNoToAll 65351
|
||||
#define Consts_SMsgDlgYesToAll 65352
|
||||
#define Consts_SmkcBkSp 65353
|
||||
#define Consts_SmkcTab 65354
|
||||
#define Consts_SmkcEsc 65355
|
||||
#define Consts_SmkcEnter 65356
|
||||
#define Consts_SmkcSpace 65357
|
||||
#define Consts_SmkcPgUp 65358
|
||||
#define Consts_SmkcPgDn 65359
|
||||
#define Consts_SCancelButton 65360
|
||||
#define Consts_SYesButton 65361
|
||||
#define Consts_SNoButton 65362
|
||||
#define Consts_SHelpButton 65363
|
||||
#define Consts_SCloseButton 65364
|
||||
#define Consts_SIgnoreButton 65365
|
||||
#define Consts_SRetryButton 65366
|
||||
#define Consts_SAbortButton 65367
|
||||
#define Consts_SAllButton 65368
|
||||
#define Consts_SCannotDragForm 65369
|
||||
#define Consts_SMsgDlgWarning 65370
|
||||
#define Consts_SMsgDlgError 65371
|
||||
#define Consts_SMsgDlgInformation 65372
|
||||
#define Consts_SMsgDlgConfirm 65373
|
||||
#define Consts_SMsgDlgYes 65374
|
||||
#define Consts_SMsgDlgNo 65375
|
||||
#define Consts_SImageWriteFail 65376
|
||||
#define Consts_SWindowDCError 65377
|
||||
#define Consts_SWindowClass 65378
|
||||
#define Consts_SCannotFocus 65379
|
||||
#define Consts_SParentRequired 65380
|
||||
#define Consts_SMDIChildNotVisible 65381
|
||||
#define Consts_SVisibleChanged 65382
|
||||
#define Consts_SCannotShowModal 65383
|
||||
#define Consts_SMenuIndexError 65384
|
||||
#define Consts_SMenuReinserted 65385
|
||||
#define Consts_SMenuNotFound 65386
|
||||
#define Consts_SNoTimers 65387
|
||||
#define Consts_SGroupIndexTooLow 65388
|
||||
#define Consts_SNoMDIForm 65389
|
||||
#define Consts_SControlParentSetToSelf 65390
|
||||
#define Consts_SOKButton 65391
|
||||
#define RTLConsts_SWriteError 65392
|
||||
#define HelpIntfs_hNoTableOfContents 65393
|
||||
#define HelpIntfs_hNothingFound 65394
|
||||
#define HelpIntfs_hNoContext 65395
|
||||
#define HelpIntfs_hNoContextFound 65396
|
||||
#define HelpIntfs_hNoTopics 65397
|
||||
#define Consts_SInvalidBitmap 65398
|
||||
#define Consts_SInvalidIcon 65399
|
||||
#define Consts_SChangeIconSize 65400
|
||||
#define Consts_SUnknownClipboardFormat 65401
|
||||
#define Consts_SOutOfResources 65402
|
||||
#define Consts_SNoCanvasHandle 65403
|
||||
#define Consts_SInvalidImageSize 65404
|
||||
#define Consts_SInvalidImageList 65405
|
||||
#define Consts_SImageIndexError 65406
|
||||
#define Consts_SImageReadFail 65407
|
||||
#define RTLConsts_SInvalidPropertyPath 65408
|
||||
#define RTLConsts_SInvalidPropertyValue 65409
|
||||
#define RTLConsts_SInvalidRegType 65410
|
||||
#define RTLConsts_SListCapacityError 65411
|
||||
#define RTLConsts_SListCountError 65412
|
||||
#define RTLConsts_SListIndexError 65413
|
||||
#define RTLConsts_SMemoryStreamError 65414
|
||||
#define RTLConsts_SPropertyException 65415
|
||||
#define RTLConsts_SReadError 65416
|
||||
#define RTLConsts_SReadOnlyProperty 65417
|
||||
#define RTLConsts_SRegGetDataFailed 65418
|
||||
#define RTLConsts_SResNotFound 65419
|
||||
#define RTLConsts_SSeekNotImplemented 65420
|
||||
#define RTLConsts_SSortedListError 65421
|
||||
#define RTLConsts_SUnknownGroup 65422
|
||||
#define RTLConsts_SUnknownProperty 65423
|
||||
#define ComConst_SNoCloseActiveServer1 65424
|
||||
#define ComConst_SNoCloseActiveServer2 65425
|
||||
#define RTLConsts_SAncestorNotFound 65426
|
||||
#define RTLConsts_SAssignError 65427
|
||||
#define RTLConsts_SBitsIndexError 65428
|
||||
#define RTLConsts_SCantWriteResourceStreamError 65429
|
||||
#define RTLConsts_SCheckSynchronizeError 65430
|
||||
#define RTLConsts_SClassNotFound 65431
|
||||
#define RTLConsts_SDuplicateClass 65432
|
||||
#define RTLConsts_SDuplicateItem 65433
|
||||
#define RTLConsts_SDuplicateName 65434
|
||||
#define RTLConsts_SDuplicateString 65435
|
||||
#define RTLConsts_SFCreateErrorEx 65436
|
||||
#define RTLConsts_SFOpenErrorEx 65437
|
||||
#define RTLConsts_SInvalidImage 65438
|
||||
#define RTLConsts_SInvalidName 65439
|
||||
#define SysConst_SShortDayNameWed 65440
|
||||
#define SysConst_SShortDayNameThu 65441
|
||||
#define SysConst_SShortDayNameFri 65442
|
||||
#define SysConst_SShortDayNameSat 65443
|
||||
#define SysConst_SLongDayNameSun 65444
|
||||
#define SysConst_SLongDayNameMon 65445
|
||||
#define SysConst_SLongDayNameTue 65446
|
||||
#define SysConst_SLongDayNameWed 65447
|
||||
#define SysConst_SLongDayNameThu 65448
|
||||
#define SysConst_SLongDayNameFri 65449
|
||||
#define SysConst_SLongDayNameSat 65450
|
||||
#define ComConst_SOleError 65451
|
||||
#define ComConst_SNoMethod 65452
|
||||
#define ComConst_SVarNotObject 65453
|
||||
#define ComConst_STooManyParams 65454
|
||||
#define ComConst_SAutomationWarning 65455
|
||||
#define SysConst_SShortMonthNameDec 65456
|
||||
#define SysConst_SLongMonthNameJan 65457
|
||||
#define SysConst_SLongMonthNameFeb 65458
|
||||
#define SysConst_SLongMonthNameMar 65459
|
||||
#define SysConst_SLongMonthNameApr 65460
|
||||
#define SysConst_SLongMonthNameMay 65461
|
||||
#define SysConst_SLongMonthNameJun 65462
|
||||
#define SysConst_SLongMonthNameJul 65463
|
||||
#define SysConst_SLongMonthNameAug 65464
|
||||
#define SysConst_SLongMonthNameSep 65465
|
||||
#define SysConst_SLongMonthNameOct 65466
|
||||
#define SysConst_SLongMonthNameNov 65467
|
||||
#define SysConst_SLongMonthNameDec 65468
|
||||
#define SysConst_SShortDayNameSun 65469
|
||||
#define SysConst_SShortDayNameMon 65470
|
||||
#define SysConst_SShortDayNameTue 65471
|
||||
#define SysConst_SAssertError 65472
|
||||
#define SysConst_SAbstractError 65473
|
||||
#define SysConst_SModuleAccessViolation 65474
|
||||
#define SysConst_SOSError 65475
|
||||
#define SysConst_SUnkOSError 65476
|
||||
#define SysConst_SShortMonthNameJan 65477
|
||||
#define SysConst_SShortMonthNameFeb 65478
|
||||
#define SysConst_SShortMonthNameMar 65479
|
||||
#define SysConst_SShortMonthNameApr 65480
|
||||
#define SysConst_SShortMonthNameMay 65481
|
||||
#define SysConst_SShortMonthNameJun 65482
|
||||
#define SysConst_SShortMonthNameJul 65483
|
||||
#define SysConst_SShortMonthNameAug 65484
|
||||
#define SysConst_SShortMonthNameSep 65485
|
||||
#define SysConst_SShortMonthNameOct 65486
|
||||
#define SysConst_SShortMonthNameNov 65487
|
||||
#define SysConst_SVarArrayBounds 65488
|
||||
#define SysConst_SVarArrayLocked 65489
|
||||
#define SysConst_SInvalidVarCast 65490
|
||||
#define SysConst_SInvalidVarOp 65491
|
||||
#define SysConst_SInvalidVarOpWithHResultWithPrefix 65492
|
||||
#define SysConst_SVarTypeCouldNotConvert 65493
|
||||
#define SysConst_SVarTypeConvertOverflow 65494
|
||||
#define SysConst_SVarOverflow 65495
|
||||
#define SysConst_SVarInvalid 65496
|
||||
#define SysConst_SVarBadType 65497
|
||||
#define SysConst_SVarNotImplemented 65498
|
||||
#define SysConst_SVarUnexpected 65499
|
||||
#define SysConst_SExternalException 65500
|
||||
#define SysConst_SAssertionFailed 65501
|
||||
#define SysConst_SIntfCastError 65502
|
||||
#define SysConst_SSafecallException 65503
|
||||
#define SysConst_SUnderflow 65504
|
||||
#define SysConst_SInvalidPointer 65505
|
||||
#define SysConst_SInvalidCast 65506
|
||||
#define SysConst_SAccessViolationArg3 65507
|
||||
#define SysConst_SAccessViolationNoArg 65508
|
||||
#define SysConst_SStackOverflow 65509
|
||||
#define SysConst_SControlC 65510
|
||||
#define SysConst_SPrivilege 65511
|
||||
#define SysConst_SException 65512
|
||||
#define SysConst_SExceptTitle 65513
|
||||
#define SysConst_SInvalidFormat 65514
|
||||
#define SysConst_SArgumentMissing 65515
|
||||
#define SysConst_SDispatchError 65516
|
||||
#define SysConst_SReadAccess 65517
|
||||
#define SysConst_SWriteAccess 65518
|
||||
#define SysConst_SVarArrayCreate 65519
|
||||
#define SysConst_SInvalidInteger 65520
|
||||
#define SysConst_SOutOfMemory 65521
|
||||
#define SysConst_SInOutError 65522
|
||||
#define SysConst_SFileNotFound 65523
|
||||
#define SysConst_SInvalidFilename 65524
|
||||
#define SysConst_STooManyOpenFiles 65525
|
||||
#define SysConst_SAccessDenied 65526
|
||||
#define SysConst_SEndOfFile 65527
|
||||
#define SysConst_SDiskFull 65528
|
||||
#define SysConst_SInvalidInput 65529
|
||||
#define SysConst_SDivByZero 65530
|
||||
#define SysConst_SRangeError 65531
|
||||
#define SysConst_SIntOverflow 65532
|
||||
#define SysConst_SInvalidOp 65533
|
||||
#define SysConst_SZeroDivide 65534
|
||||
#define SysConst_SOverflow 65535
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
Consts_SDockZoneHasNoCtl, " - Dock zone has no control"
|
||||
Consts_SDockZoneVersionConflict, "Error loading dock zone from the stream. Expecting version %d, but found %d."
|
||||
Consts_SANSIEncoding, "ANSI"
|
||||
Consts_SASCIIEncoding, "ASCII"
|
||||
Consts_SUnicodeEncoding, "Unicode"
|
||||
Consts_SBigEndianEncoding, "Big Endian Unicode"
|
||||
Consts_SUTF8Encoding, "UTF-8"
|
||||
Consts_SUTF7Encoding, "UTF-7"
|
||||
Consts_SmkcEnd, "End"
|
||||
Consts_SmkcHome, "Home"
|
||||
Consts_SmkcLeft, "Left"
|
||||
Consts_SmkcUp, "Up"
|
||||
Consts_SmkcRight, "Right"
|
||||
Consts_SmkcDown, "Down"
|
||||
Consts_SmkcIns, "Ins"
|
||||
Consts_SmkcDel, "Del"
|
||||
Consts_SmkcShift, "Shift+"
|
||||
Consts_SmkcCtrl, "Ctrl+"
|
||||
Consts_SmkcAlt, "Alt+"
|
||||
Consts_SIconToClipboard, "Clipboard does not support Icons"
|
||||
Consts_SDuplicateMenus, "Menu '%s' is already being used by another form"
|
||||
Consts_SDockedCtlNeedsName, "Docked control must have a name"
|
||||
Consts_SDockTreeRemoveError, "Error removing control from dock tree"
|
||||
Consts_SDockZoneNotFound, " - Dock zone not found"
|
||||
Consts_SMsgDlgOK, "OK"
|
||||
Consts_SMsgDlgCancel, "Cancel"
|
||||
Consts_SMsgDlgHelp, "&Help"
|
||||
Consts_SMsgDlgAbort, "&Abort"
|
||||
Consts_SMsgDlgRetry, "&Retry"
|
||||
Consts_SMsgDlgIgnore, "&Ignore"
|
||||
Consts_SMsgDlgAll, "&All"
|
||||
Consts_SMsgDlgNoToAll, "N&o to All"
|
||||
Consts_SMsgDlgYesToAll, "Yes to &All"
|
||||
Consts_SmkcBkSp, "BkSp"
|
||||
Consts_SmkcTab, "Tab"
|
||||
Consts_SmkcEsc, "Esc"
|
||||
Consts_SmkcEnter, "Enter"
|
||||
Consts_SmkcSpace, "Space"
|
||||
Consts_SmkcPgUp, "PgUp"
|
||||
Consts_SmkcPgDn, "PgDn"
|
||||
Consts_SCancelButton, "Cancel"
|
||||
Consts_SYesButton, "&Yes"
|
||||
Consts_SNoButton, "&No"
|
||||
Consts_SHelpButton, "&Help"
|
||||
Consts_SCloseButton, "&Close"
|
||||
Consts_SIgnoreButton, "&Ignore"
|
||||
Consts_SRetryButton, "&Retry"
|
||||
Consts_SAbortButton, "Abort"
|
||||
Consts_SAllButton, "&All"
|
||||
Consts_SCannotDragForm, "Cannot drag a form"
|
||||
Consts_SMsgDlgWarning, "Warning"
|
||||
Consts_SMsgDlgError, "Error"
|
||||
Consts_SMsgDlgInformation, "Information"
|
||||
Consts_SMsgDlgConfirm, "Confirm"
|
||||
Consts_SMsgDlgYes, "&Yes"
|
||||
Consts_SMsgDlgNo, "&No"
|
||||
Consts_SImageWriteFail, "Failed to write ImageList data to stream"
|
||||
Consts_SWindowDCError, "Error creating window device context"
|
||||
Consts_SWindowClass, "Error creating window class"
|
||||
Consts_SCannotFocus, "Cannot focus a disabled or invisible window"
|
||||
Consts_SParentRequired, "Control '%s' has no parent window"
|
||||
Consts_SMDIChildNotVisible, "Cannot hide an MDI Child Form"
|
||||
Consts_SVisibleChanged, "Cannot change Visible in OnShow or OnHide"
|
||||
Consts_SCannotShowModal, "Cannot make a visible window modal"
|
||||
Consts_SMenuIndexError, "Menu index out of range"
|
||||
Consts_SMenuReinserted, "Menu inserted twice"
|
||||
Consts_SMenuNotFound, "Sub-menu is not in menu"
|
||||
Consts_SNoTimers, "Not enough timers available"
|
||||
Consts_SGroupIndexTooLow, "GroupIndex cannot be less than a previous menu item's GroupIndex"
|
||||
Consts_SNoMDIForm, "Cannot create form. No MDI forms are currently active"
|
||||
Consts_SControlParentSetToSelf, "A control cannot have itself as its parent"
|
||||
Consts_SOKButton, "OK"
|
||||
RTLConsts_SWriteError, "Stream write error"
|
||||
HelpIntfs_hNoTableOfContents, "Unable to find a Table of Contents"
|
||||
HelpIntfs_hNothingFound, "No help found for %s"
|
||||
HelpIntfs_hNoContext, "No context-sensitive help installed"
|
||||
HelpIntfs_hNoContextFound, "No help found for context"
|
||||
HelpIntfs_hNoTopics, "No topic-based help system installed"
|
||||
Consts_SInvalidBitmap, "Bitmap image is not valid"
|
||||
Consts_SInvalidIcon, "Icon image is not valid"
|
||||
Consts_SChangeIconSize, "Cannot change the size of an icon"
|
||||
Consts_SUnknownClipboardFormat, "Unsupported clipboard format"
|
||||
Consts_SOutOfResources, "Out of system resources"
|
||||
Consts_SNoCanvasHandle, "Canvas does not allow drawing"
|
||||
Consts_SInvalidImageSize, "Invalid image size"
|
||||
Consts_SInvalidImageList, "Invalid ImageList"
|
||||
Consts_SImageIndexError, "Invalid ImageList Index"
|
||||
Consts_SImageReadFail, "Failed to read ImageList data from stream"
|
||||
RTLConsts_SInvalidPropertyPath, "Invalid property path"
|
||||
RTLConsts_SInvalidPropertyValue, "Invalid property value"
|
||||
RTLConsts_SInvalidRegType, "Invalid data type for '%s'"
|
||||
RTLConsts_SListCapacityError, "List capacity out of bounds (%d)"
|
||||
RTLConsts_SListCountError, "List count out of bounds (%d)"
|
||||
RTLConsts_SListIndexError, "List index out of bounds (%d)"
|
||||
RTLConsts_SMemoryStreamError, "Out of memory while expanding memory stream"
|
||||
RTLConsts_SPropertyException, "Error reading %s%s%s: %s"
|
||||
RTLConsts_SReadError, "Stream read error"
|
||||
RTLConsts_SReadOnlyProperty, "Property is read-only"
|
||||
RTLConsts_SRegGetDataFailed, "Failed to get data for '%s'"
|
||||
RTLConsts_SResNotFound, "Resource %s not found"
|
||||
RTLConsts_SSeekNotImplemented, "%s.Seek not implemented"
|
||||
RTLConsts_SSortedListError, "Operation not allowed on sorted list"
|
||||
RTLConsts_SUnknownGroup, "%s not in a class registration group"
|
||||
RTLConsts_SUnknownProperty, "Property %s does not exist"
|
||||
ComConst_SNoCloseActiveServer1, "There are still active COM objects in this application. One or more clients may have references to these objects, so manually closing "
|
||||
ComConst_SNoCloseActiveServer2, "this application may cause those client application(s) to fail.\r\n\r\nAre you sure you want to close this application?"
|
||||
RTLConsts_SAncestorNotFound, "Ancestor for '%s' not found"
|
||||
RTLConsts_SAssignError, "Cannot assign a %s to a %s"
|
||||
RTLConsts_SBitsIndexError, "Bits index out of range"
|
||||
RTLConsts_SCantWriteResourceStreamError, "Can't write to a read-only resource stream"
|
||||
RTLConsts_SCheckSynchronizeError, "CheckSynchronize called from thread $%x, which is NOT the main thread"
|
||||
RTLConsts_SClassNotFound, "Class %s not found"
|
||||
RTLConsts_SDuplicateClass, "A class named %s already exists"
|
||||
RTLConsts_SDuplicateItem, "List does not allow duplicates ($0%x)"
|
||||
RTLConsts_SDuplicateName, "A component named %s already exists"
|
||||
RTLConsts_SDuplicateString, "String list does not allow duplicates"
|
||||
RTLConsts_SFCreateErrorEx, "Cannot create file \"%s\". %s"
|
||||
RTLConsts_SFOpenErrorEx, "Cannot open file \"%s\". %s"
|
||||
RTLConsts_SInvalidImage, "Invalid stream format"
|
||||
RTLConsts_SInvalidName, "''%s'' is not a valid component name"
|
||||
SysConst_SShortDayNameWed, "Wed"
|
||||
SysConst_SShortDayNameThu, "Thu"
|
||||
SysConst_SShortDayNameFri, "Fri"
|
||||
SysConst_SShortDayNameSat, "Sat"
|
||||
SysConst_SLongDayNameSun, "Sunday"
|
||||
SysConst_SLongDayNameMon, "Monday"
|
||||
SysConst_SLongDayNameTue, "Tuesday"
|
||||
SysConst_SLongDayNameWed, "Wednesday"
|
||||
SysConst_SLongDayNameThu, "Thursday"
|
||||
SysConst_SLongDayNameFri, "Friday"
|
||||
SysConst_SLongDayNameSat, "Saturday"
|
||||
ComConst_SOleError, "OLE error %.8x"
|
||||
ComConst_SNoMethod, "Method '%s' not supported by automation object"
|
||||
ComConst_SVarNotObject, "Variant does not reference an automation object"
|
||||
ComConst_STooManyParams, "Dispatch methods do not support more than 64 parameters"
|
||||
ComConst_SAutomationWarning, "COM Server Warning"
|
||||
SysConst_SShortMonthNameDec, "Dec"
|
||||
SysConst_SLongMonthNameJan, "January"
|
||||
SysConst_SLongMonthNameFeb, "February"
|
||||
SysConst_SLongMonthNameMar, "March"
|
||||
SysConst_SLongMonthNameApr, "April"
|
||||
SysConst_SLongMonthNameMay, "May"
|
||||
SysConst_SLongMonthNameJun, "June"
|
||||
SysConst_SLongMonthNameJul, "July"
|
||||
SysConst_SLongMonthNameAug, "August"
|
||||
SysConst_SLongMonthNameSep, "September"
|
||||
SysConst_SLongMonthNameOct, "October"
|
||||
SysConst_SLongMonthNameNov, "November"
|
||||
SysConst_SLongMonthNameDec, "December"
|
||||
SysConst_SShortDayNameSun, "Sun"
|
||||
SysConst_SShortDayNameMon, "Mon"
|
||||
SysConst_SShortDayNameTue, "Tue"
|
||||
SysConst_SAssertError, "%s (%s, line %d)"
|
||||
SysConst_SAbstractError, "Abstract Error"
|
||||
SysConst_SModuleAccessViolation, "Access violation at address %p in module '%s'. %s of address %p"
|
||||
SysConst_SOSError, "System Error. Code: %d.\r\n%s"
|
||||
SysConst_SUnkOSError, "A call to an OS function failed"
|
||||
SysConst_SShortMonthNameJan, "Jan"
|
||||
SysConst_SShortMonthNameFeb, "Feb"
|
||||
SysConst_SShortMonthNameMar, "Mar"
|
||||
SysConst_SShortMonthNameApr, "Apr"
|
||||
SysConst_SShortMonthNameMay, "May"
|
||||
SysConst_SShortMonthNameJun, "Jun"
|
||||
SysConst_SShortMonthNameJul, "Jul"
|
||||
SysConst_SShortMonthNameAug, "Aug"
|
||||
SysConst_SShortMonthNameSep, "Sep"
|
||||
SysConst_SShortMonthNameOct, "Oct"
|
||||
SysConst_SShortMonthNameNov, "Nov"
|
||||
SysConst_SVarArrayBounds, "Variant or safe array index out of bounds"
|
||||
SysConst_SVarArrayLocked, "Variant or safe array is locked"
|
||||
SysConst_SInvalidVarCast, "Invalid variant type conversion"
|
||||
SysConst_SInvalidVarOp, "Invalid variant operation"
|
||||
SysConst_SInvalidVarOpWithHResultWithPrefix, "Invalid variant operation (%s%.8x)\n%s"
|
||||
SysConst_SVarTypeCouldNotConvert, "Could not convert variant of type (%s) into type (%s)"
|
||||
SysConst_SVarTypeConvertOverflow, "Overflow while converting variant of type (%s) into type (%s)"
|
||||
SysConst_SVarOverflow, "Variant overflow"
|
||||
SysConst_SVarInvalid, "Invalid argument"
|
||||
SysConst_SVarBadType, "Invalid variant type"
|
||||
SysConst_SVarNotImplemented, "Operation not supported"
|
||||
SysConst_SVarUnexpected, "Unexpected variant error"
|
||||
SysConst_SExternalException, "External exception %x"
|
||||
SysConst_SAssertionFailed, "Assertion failed"
|
||||
SysConst_SIntfCastError, "Interface not supported"
|
||||
SysConst_SSafecallException, "Exception in safecall method"
|
||||
SysConst_SUnderflow, "Floating point underflow"
|
||||
SysConst_SInvalidPointer, "Invalid pointer operation"
|
||||
SysConst_SInvalidCast, "Invalid class typecast"
|
||||
SysConst_SAccessViolationArg3, "Access violation at address %p. %s of address %p"
|
||||
SysConst_SAccessViolationNoArg, "Access violation"
|
||||
SysConst_SStackOverflow, "Stack overflow"
|
||||
SysConst_SControlC, "Control-C hit"
|
||||
SysConst_SPrivilege, "Privileged instruction"
|
||||
SysConst_SException, "Exception %s in module %s at %p.\r\n%s%s\r\n"
|
||||
SysConst_SExceptTitle, "Application Error"
|
||||
SysConst_SInvalidFormat, "Format '%s' invalid or incompatible with argument"
|
||||
SysConst_SArgumentMissing, "No argument for format '%s'"
|
||||
SysConst_SDispatchError, "Variant method calls not supported"
|
||||
SysConst_SReadAccess, "Read"
|
||||
SysConst_SWriteAccess, "Write"
|
||||
SysConst_SVarArrayCreate, "Error creating variant or safe array"
|
||||
SysConst_SInvalidInteger, "'%s' is not a valid integer value"
|
||||
SysConst_SOutOfMemory, "Out of memory"
|
||||
SysConst_SInOutError, "I/O error %d"
|
||||
SysConst_SFileNotFound, "File not found"
|
||||
SysConst_SInvalidFilename, "Invalid filename"
|
||||
SysConst_STooManyOpenFiles, "Too many open files"
|
||||
SysConst_SAccessDenied, "File access denied"
|
||||
SysConst_SEndOfFile, "Read beyond end of file"
|
||||
SysConst_SDiskFull, "Disk full"
|
||||
SysConst_SInvalidInput, "Invalid numeric input"
|
||||
SysConst_SDivByZero, "Division by zero"
|
||||
SysConst_SRangeError, "Range check error"
|
||||
SysConst_SIntOverflow, "Integer overflow"
|
||||
SysConst_SInvalidOp, "Invalid floating point operation"
|
||||
SysConst_SZeroDivide, "Floating point division by zero"
|
||||
SysConst_SOverflow, "Floating point overflow"
|
||||
END
|
||||
|
||||
/* c:\archivos de programa\codegear\rad studio\5.0\lib\Controls.res */
|
||||
/* c:\archivos de programa\codegear\rad studio\5.0\lib\Buttons.res */
|
||||
/* c:\archivos de programa\codegear\rad studio\5.0\lib\ExtDlgs.res */
|
||||
/* C:\Codigo Tecsitel\Database\udfs\udf_RtfToText.RES */
|
||||
/* C:\Codigo Tecsitel\Database\udfs\udf_RtfToText.drf */
|
||||
BIN
Database/udfs/udf_RtfToText.res
Normal file
4
Database/udfs/udf_RtfToText.sql
Normal file
@ -0,0 +1,4 @@
|
||||
DECLARE EXTERNAL FUNCTION F_RTFTOTEXT
|
||||
CString(32767)
|
||||
RETURNS CString(32767)
|
||||
ENTRY_POINT 'RtfToText' MODULE_NAME 'udf_RtfToText.dll';
|
||||
27
Enviroment.config
Normal file
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0"?>
|
||||
<configuration>
|
||||
<appSettings>
|
||||
|
||||
<!-- ENVIRONMENT
|
||||
Use the "Environment" key below to select the environment (DEV | TEST | PROD).
|
||||
|
||||
For settings common to all environments, add a normal appSetting key (e.g. "Name").
|
||||
To change a setting for a specific environment, add an appSetting key with
|
||||
the environment name (e.g. "DEV.Name"). An environment-specific setting
|
||||
will override a common setting.
|
||||
|
||||
In the example below, the DEV environment will have a connection timeout of
|
||||
2 minutes while the TEST and PROD environments will use 90 minutes.
|
||||
-->
|
||||
|
||||
<add key="Environment" value="DEV"/>
|
||||
|
||||
<add key="DEV.Name" value="Development"/>
|
||||
<add key="TEST.Name" value="Test"/>
|
||||
<add key="PROD.Name" value="Production"/>
|
||||
|
||||
<add key="ConnectionTimeout" value="90"/>
|
||||
<add key="DEV.ConnectionTimeout" value="2"/>
|
||||
|
||||
</appSettings>
|
||||
</configuration>
|
||||
BIN
Installer/factuges.aup
Normal file
62
Installer/factuges.iss
Normal file
@ -0,0 +1,62 @@
|
||||
[Setup]
|
||||
AppID={code:GetAppID|''}
|
||||
AppName=FactuGES2
|
||||
AppVerName=FactuGES2 v{code:GetAppVersion}
|
||||
AppPublisher=Rodax Software S.L.
|
||||
AppPublisherURL=http://www.rodax-software.com
|
||||
AppSupportURL=http://www.rodax-software.com
|
||||
AppUpdatesURL=http://www.rodax-software.com
|
||||
DefaultDirName={sd}\Rodax Software\FactuGES2
|
||||
DefaultGroupName=FactuGES2
|
||||
AllowNoIcons=true
|
||||
OutputDir=Output
|
||||
OutputBaseFilename=factuges2setup
|
||||
Compression=lzma
|
||||
SolidCompression=true
|
||||
InfoBeforeFile=
|
||||
InternalCompressLevel=ultra
|
||||
MinVersion=0,5.01.2600
|
||||
|
||||
[Languages]
|
||||
Name: spanish; MessagesFile: compiler:Languages\Spanish.isl
|
||||
|
||||
[Tasks]
|
||||
Name: desktopicon; Description: {cm:CreateDesktopIcon}; GroupDescription: {cm:AdditionalIcons}
|
||||
Name: quicklaunchicon; Description: {cm:CreateQuickLaunchIcon}; GroupDescription: {cm:AdditionalIcons}; Flags: unchecked
|
||||
|
||||
[Files]
|
||||
Source: Input\*; DestDir: {app}; Flags: ignoreversion recursesubdirs createallsubdirs; Excludes: version.dat
|
||||
Source: Input\update.ico; DestDir: {app}; Flags: ignoreversion recursesubdirs createallsubdirs
|
||||
Source: Input\version.dat; DestDir: {tmp}; Flags: dontcopy
|
||||
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
||||
|
||||
[Icons]
|
||||
Name: {group}\FactuGES2; Filename: {app}\FactuGES.exe; WorkingDir: {app}
|
||||
Name: {userdesktop}\FactuGES2; Filename: {app}\FactuGES.exe; Tasks: desktopicon; WorkingDir: {app}; Languages:
|
||||
Name: {group}\Comprobar actualizaciones; Filename: {app}\FactuGES.exe; WorkingDir: {app}; Parameters: CheckNow; Comment: Comprobar si hay nuevas actualizaciones de FactuGES2; IconFilename: {app}\update.ico
|
||||
Name: {group}\{cm:UninstallProgram,FactuGES2}; Filename: {uninstallexe}
|
||||
|
||||
[Run]
|
||||
Filename: {app}\FactuGES.exe; Description: {cm:LaunchProgram,FactuGES2}; Flags: nowait postinstall skipifsilent
|
||||
|
||||
[Registry]
|
||||
Root: HKLM; Subkey: Software\Rodax Software; ValueType: string; ValueName: Version; ValueData: {code:GetAppVersion|''}; Flags: uninsdeletekey
|
||||
|
||||
[LangOptions]
|
||||
LanguageName=Spanish
|
||||
LanguageID=$0C0A
|
||||
|
||||
[Code]
|
||||
function GetAppVersion(param: String): String;
|
||||
var
|
||||
AppVersion: String;
|
||||
begin
|
||||
ExtractTemporaryFile('version.dat');
|
||||
LoadStringFromFile(ExpandConstant('{tmp}\version.dat'), AppVersion);
|
||||
Result := AppVersion;
|
||||
end;
|
||||
|
||||
function GetAppID(param: String): String;
|
||||
begin
|
||||
Result := 'FactuGES2';
|
||||
end;
|
||||
77
Installer/librerias.txt
Normal file
@ -0,0 +1,77 @@
|
||||
ccpackD11.bpl
|
||||
cfpack_d11.bpl
|
||||
cxDataD11.bpl
|
||||
cxEditorsD11.bpl
|
||||
cxExportD11.bpl
|
||||
cxExtEditorsD11.bpl
|
||||
cxGridD11.bpl
|
||||
cxIntl6D11.bpl
|
||||
cxIntlPrintSys3D11.bpl
|
||||
cxLibraryD11.bpl
|
||||
cxPageControlD11.bpl
|
||||
cxTreeListD11.bpl
|
||||
DataAbstract_Core_D11.bpl
|
||||
dclcxLibraryD11.bpl
|
||||
dxBarD11.bpl
|
||||
dxBarExtItemsD11.bpl
|
||||
dxComnD11.bpl
|
||||
dxGDIPlusD11.bpl
|
||||
dxLayoutControlD11.bpl
|
||||
dxPSCoreD11.bpl
|
||||
dxPScxCommonD11.bpl
|
||||
dxPScxGrid6LnkD11.bpl
|
||||
dxPSLnksD11.bpl
|
||||
dxPsPrVwAdvD11.bpl
|
||||
dxThemeD11.bpl
|
||||
dxCored11.bpl
|
||||
frx11.bpl
|
||||
frxe11.bpl
|
||||
frxTee11.bpl
|
||||
fs11.bpl
|
||||
fsTee11.bpl
|
||||
GUISDK_D11R.bpl
|
||||
Jcl110.bpl
|
||||
JclVcl110.bpl
|
||||
JSDialog100.bpl
|
||||
JvAppFrmD11R.bpl
|
||||
JvCmpD11R.bpl
|
||||
JvCoreD11R.bpl
|
||||
JvCtrlsD11R.bpl
|
||||
JvCustomD11R.bpl
|
||||
JvDlgsD11R.bpl
|
||||
JvGlobusD11R.bpl
|
||||
JvJansD11R.bpl
|
||||
JvMMD11R.bpl
|
||||
JvPageCompsD11R.bpl
|
||||
JvStdCtrlsD11R.bpl
|
||||
JvSystemD11R.bpl
|
||||
pckMD5.bpl
|
||||
pckUCDataConnector.bpl
|
||||
pckUserControl_RT.bpl
|
||||
PluginSDK_D11R.bpl
|
||||
PngComponentsD10.bpl
|
||||
PNG_D10.bpl
|
||||
RemObjects_Core_D11.bpl
|
||||
tb2k_d10.bpl
|
||||
tbx_d10.bpl
|
||||
|
||||
adortl100.bpl
|
||||
bdertl100.bpl
|
||||
dbrtl100.bpl
|
||||
dclIndyCore100.bpl
|
||||
designide100.bpl
|
||||
dsnap100.bpl
|
||||
IndyCore100.bpl
|
||||
IndyProtocols100.bpl
|
||||
IndySystem100.bpl
|
||||
rtl100.bpl
|
||||
tee7100.bpl
|
||||
teeUI7100.bpl
|
||||
vcl100.bpl
|
||||
vclactnband100.bpl
|
||||
vcldb100.bpl
|
||||
vcljpg100.bpl
|
||||
vclshlctrls100.bpl
|
||||
vclsmp100.bpl
|
||||
vclx100.bpl
|
||||
xmlrtl100.bpl
|
||||
BIN
Resources/Firmas Tecsitel/Fima Tecsitel2.jpg
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
Resources/Firmas Tecsitel/Fima Tecsitel2.png
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
Resources/Firmas Tecsitel/Firma Tecsitel Mantenimiento.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
Resources/Firmas Tecsitel/Firma Tecsitel.png
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
Resources/Firmas Tecsitel/Firma-Tecsitel-Mantenimiento.bmp
Normal file
|
After Width: | Height: | Size: 86 KiB |
BIN
Resources/Firmas Tecsitel/Firma-Tecsitel-Mantenimiento.gif
Normal file
|
After Width: | Height: | Size: 6.3 KiB |
BIN
Resources/Firmas Tecsitel/Firma-Tecsitel-Mantenimiento.jpg
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
Resources/Firmas Tecsitel/Firma-Tecsitel.gif
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
Resources/Iconos/Agenda/16x16/Date-Time.png
Normal file
|
After Width: | Height: | Size: 674 B |
BIN
Resources/Iconos/Agenda/24x24/Date-Time.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Resources/Iconos/Agenda/28x28/Date-Time.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
Resources/Iconos/Albaranes de cliente/16x16/Budget.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
Resources/Iconos/Albaranes de cliente/16x16/Devolucion.png
Normal file
|
After Width: | Height: | Size: 607 B |
BIN
Resources/Iconos/Albaranes de cliente/16x16/Letters patent.png
Normal file
|
After Width: | Height: | Size: 445 B |
BIN
Resources/Iconos/Albaranes de cliente/16x16/pagado.png
Normal file
|
After Width: | Height: | Size: 561 B |
BIN
Resources/Iconos/Albaranes de cliente/24x24/Budget.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
Resources/Iconos/Albaranes de cliente/24x24/Devolucion.png
Normal file
|
After Width: | Height: | Size: 845 B |
BIN
Resources/Iconos/Albaranes de cliente/24x24/Letters patent.png
Normal file
|
After Width: | Height: | Size: 507 B |
BIN
Resources/Iconos/Albaranes de cliente/28x28/Budget.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
Resources/Iconos/Albaranes de cliente/28x28/Devolucion.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
Resources/Iconos/Albaranes de cliente/28x28/Letters patent.png
Normal file
|
After Width: | Height: | Size: 557 B |
BIN
Resources/Iconos/Albaranes de proveedor/16x16/Budget.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
Resources/Iconos/Albaranes de proveedor/16x16/Devolucion.png
Normal file
|
After Width: | Height: | Size: 607 B |
BIN
Resources/Iconos/Albaranes de proveedor/24x24/Budget.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
Resources/Iconos/Albaranes de proveedor/24x24/Devolucion.png
Normal file
|
After Width: | Height: | Size: 845 B |
BIN
Resources/Iconos/Albaranes de proveedor/28x28/Budget.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
Resources/Iconos/Albaranes de proveedor/28x28/Devolucion.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
Resources/Iconos/Almacenes/16x16/Box-Closed-2.png
Normal file
|
After Width: | Height: | Size: 628 B |
BIN
Resources/Iconos/Almacenes/16x16/nuevoalmacen.png
Normal file
|
After Width: | Height: | Size: 714 B |
BIN
Resources/Iconos/Almacenes/24x24/Box-Closed-2.png
Normal file
|
After Width: | Height: | Size: 515 B |
BIN
Resources/Iconos/Almacenes/24x24/nuevoalmacen.png
Normal file
|
After Width: | Height: | Size: 685 B |
BIN
Resources/Iconos/Almacenes/28x28/Box-Closed-2.png
Normal file
|
After Width: | Height: | Size: 575 B |
BIN
Resources/Iconos/Artículos/16x16/Image.png
Normal file
|
After Width: | Height: | Size: 594 B |
BIN
Resources/Iconos/Artículos/16x16/Insert.png
Normal file
|
After Width: | Height: | Size: 404 B |
BIN
Resources/Iconos/Artículos/16x16/Note-Edit.png
Normal file
|
After Width: | Height: | Size: 517 B |
BIN
Resources/Iconos/Artículos/16x16/Remove.png
Normal file
|
After Width: | Height: | Size: 420 B |
BIN
Resources/Iconos/Artículos/16x16/Swap.png
Normal file
|
After Width: | Height: | Size: 476 B |
BIN
Resources/Iconos/Artículos/16x16/articulos.png
Normal file
|
After Width: | Height: | Size: 409 B |
BIN
Resources/Iconos/Artículos/16x16/comisionable.png
Normal file
|
After Width: | Height: | Size: 230 B |
BIN
Resources/Iconos/Artículos/16x16/liberar.png
Normal file
|
After Width: | Height: | Size: 568 B |
BIN
Resources/Iconos/Artículos/16x16/no_comisionable.png
Normal file
|
After Width: | Height: | Size: 290 B |
BIN
Resources/Iconos/Artículos/16x16/recibirpedido.png
Normal file
|
After Width: | Height: | Size: 594 B |
BIN
Resources/Iconos/Artículos/16x16/reservar.png
Normal file
|
After Width: | Height: | Size: 561 B |
BIN
Resources/Iconos/Artículos/24x24/Image.png
Normal file
|
After Width: | Height: | Size: 974 B |
BIN
Resources/Iconos/Artículos/24x24/Insert.png
Normal file
|
After Width: | Height: | Size: 529 B |
BIN
Resources/Iconos/Artículos/24x24/Note-Edit.png
Normal file
|
After Width: | Height: | Size: 671 B |
BIN
Resources/Iconos/Artículos/24x24/Remove.png
Normal file
|
After Width: | Height: | Size: 544 B |
BIN
Resources/Iconos/Artículos/24x24/Swap.png
Normal file
|
After Width: | Height: | Size: 584 B |
BIN
Resources/Iconos/Artículos/24x24/articulos.png
Normal file
|
After Width: | Height: | Size: 467 B |
BIN
Resources/Iconos/Artículos/24x24/liberar.png
Normal file
|
After Width: | Height: | Size: 654 B |
BIN
Resources/Iconos/Artículos/24x24/recibirpedido.png
Normal file
|
After Width: | Height: | Size: 892 B |
BIN
Resources/Iconos/Artículos/24x24/reservar.png
Normal file
|
After Width: | Height: | Size: 663 B |
BIN
Resources/Iconos/Artículos/28x28/Image.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Resources/Iconos/Artículos/28x28/Insert.png
Normal file
|
After Width: | Height: | Size: 620 B |
BIN
Resources/Iconos/Artículos/28x28/Note-Edit.png
Normal file
|
After Width: | Height: | Size: 848 B |
BIN
Resources/Iconos/Artículos/28x28/Remove.png
Normal file
|
After Width: | Height: | Size: 605 B |
BIN
Resources/Iconos/Artículos/28x28/Swap.png
Normal file
|
After Width: | Height: | Size: 586 B |
BIN
Resources/Iconos/Artículos/28x28/articulos.png
Normal file
|
After Width: | Height: | Size: 452 B |
BIN
Resources/Iconos/Artículos/28x28/liberar.png
Normal file
|
After Width: | Height: | Size: 652 B |
BIN
Resources/Iconos/Artículos/28x28/recibirpedido.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
Resources/Iconos/Artículos/28x28/reservar.png
Normal file
|
After Width: | Height: | Size: 661 B |
BIN
Resources/Iconos/Asientos/16x16/Cerrar.png
Normal file
|
After Width: | Height: | Size: 580 B |
BIN
Resources/Iconos/Asientos/16x16/Tick.png
Normal file
|
After Width: | Height: | Size: 351 B |
BIN
Resources/Iconos/Asientos/24x24/Cerrar.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Resources/Iconos/Asientos/24x24/Tick.png
Normal file
|
After Width: | Height: | Size: 1000 B |
BIN
Resources/Iconos/Asientos/28x28/Cerrar.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
Resources/Iconos/Asientos/28x28/Tick.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Resources/Iconos/Contactos/16x16/Box-Open-2.png
Normal file
|
After Width: | Height: | Size: 640 B |
BIN
Resources/Iconos/Contactos/16x16/Comisiones.png
Normal file
|
After Width: | Height: | Size: 734 B |