Compare commits
33 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| aa2f7ead45 | |||
| 7bc07a08f6 | |||
| 590423a38d | |||
| bf321b65a8 | |||
| 82393c1405 | |||
| 306b9393ef | |||
| 51f090e36e | |||
| 966daf4251 | |||
| 6b79b9ef76 | |||
| a6ddebacdf | |||
| 620b493c41 | |||
| 39a5d6f600 | |||
| 503d25ab3e | |||
| f6fd50fd6d | |||
| d5d636868b | |||
| f81573d507 | |||
| 2d7cef4ad7 | |||
| 65fcbd5396 | |||
| 46ee200d89 | |||
| 55dbfac305 | |||
| 450dc47c86 | |||
| ba6e9a5753 | |||
| fe383addce | |||
| 0f1067be47 | |||
| f32f4863fb | |||
| fa7e7dd3e0 | |||
| ddf8d273dc | |||
| 1d32088e06 | |||
| de5e964b6a | |||
| ce11763be9 | |||
| 09ed513bf4 | |||
| fd94433a4b | |||
| f1a6f49337 |
@ -3512,13 +3512,14 @@ SELECT
|
||||
EMPRESAS_DATOS_BANCO.CUENTA,
|
||||
EMPRESAS_DATOS_BANCO.SUFIJO_N19,
|
||||
EMPRESAS_DATOS_BANCO.SUFIJO_N58,
|
||||
SUM(COALESCE(RECIBOS_CLIENTE.IMPORTE,0) + COALESCE(RECIBOS_CLIENTE.OTROS_GASTOS,0) + COALESCE(V_REC_CLI_COMPENSADOS.IMPORTE_TOTAL_COMPENSADO,0)) as IMPORTE_TOTAL
|
||||
SUM(COALESCE(RECIBOS_CLIENTE.IMPORTE,0) + COALESCE(RECIBOS_CLIENTE.OTROS_GASTOS,0)) as IMPORTE_TOTAL
|
||||
/* SUM(COALESCE(RECIBOS_CLIENTE.IMPORTE,0) + COALESCE(RECIBOS_CLIENTE.OTROS_GASTOS,0) + COALESCE(V_REC_CLI_COMPENSADOS.IMPORTE_TOTAL_COMPENSADO,0)) as IMPORTE_TOTAL */
|
||||
|
||||
FROM
|
||||
REMESAS_CLIENTE
|
||||
LEFT OUTER JOIN EMPRESAS_DATOS_BANCO ON (EMPRESAS_DATOS_BANCO.ID = REMESAS_CLIENTE.ID_DATOS_BANCO)
|
||||
LEFT OUTER JOIN RECIBOS_CLIENTE ON (RECIBOS_CLIENTE.ID_REMESA = REMESAS_CLIENTE.ID)
|
||||
LEFT OUTER JOIN V_REC_CLI_COMPENSADOS ON (V_REC_CLI_COMPENSADOS.ID_RECIBO = RECIBOS_CLIENTE.ID)
|
||||
/* LEFT OUTER JOIN V_REC_CLI_COMPENSADOS ON (V_REC_CLI_COMPENSADOS.ID_RECIBO = RECIBOS_CLIENTE.ID)*/
|
||||
GROUP BY 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17
|
||||
;
|
||||
|
||||
@ -3560,13 +3561,14 @@ SELECT
|
||||
EMPRESAS_DATOS_BANCO.CUENTA,
|
||||
EMPRESAS_DATOS_BANCO.SUFIJO_N19,
|
||||
EMPRESAS_DATOS_BANCO.SUFIJO_N58,
|
||||
SUM(COALESCE(RECIBOS_PROVEEDOR.IMPORTE,0) + COALESCE(RECIBOS_PROVEEDOR.OTROS_GASTOS,0) + COALESCE(V_REC_PRO_COMPENSADOS.IMPORTE_TOTAL_COMPENSADO,0)) as IMPORTE_TOTAL
|
||||
SUM(COALESCE(RECIBOS_PROVEEDOR.IMPORTE,0) + COALESCE(RECIBOS_PROVEEDOR.OTROS_GASTOS,0)) as IMPORTE_TOTAL
|
||||
/* SUM(COALESCE(RECIBOS_PROVEEDOR.IMPORTE,0) + COALESCE(RECIBOS_PROVEEDOR.OTROS_GASTOS,0) + COALESCE(V_REC_PRO_COMPENSADOS.IMPORTE_TOTAL_COMPENSADO,0)) as IMPORTE_TOTAL */
|
||||
|
||||
FROM
|
||||
REMESAS_PROVEEDOR
|
||||
LEFT OUTER JOIN EMPRESAS_DATOS_BANCO ON (EMPRESAS_DATOS_BANCO.ID = REMESAS_PROVEEDOR.ID_DATOS_BANCO)
|
||||
LEFT OUTER JOIN RECIBOS_PROVEEDOR ON (RECIBOS_PROVEEDOR.ID_REMESA = REMESAS_PROVEEDOR.ID)
|
||||
LEFT OUTER JOIN V_REC_PRO_COMPENSADOS ON (V_REC_PRO_COMPENSADOS.ID_RECIBO = RECIBOS_PROVEEDOR.ID)
|
||||
/* LEFT OUTER JOIN V_REC_PRO_COMPENSADOS ON (V_REC_PRO_COMPENSADOS.ID_RECIBO = RECIBOS_PROVEEDOR.ID) */
|
||||
GROUP BY 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17
|
||||
;
|
||||
|
||||
|
||||
24
Para exportar a Word.txt
Normal file
@ -0,0 +1,24 @@
|
||||
SOLUCIÓN
|
||||
|
||||
- Crear un usuario 'factuges' y ejecutar el servicio del servidor bajo ese usuario
|
||||
- Entrar en sesión con ese usuario 'factuges' y ejecutar Word para que se aplique la configuración.
|
||||
- Hacer las carpetas según estas instrucciones:
|
||||
|
||||
Sacado de [[http://social.msdn.microsoft.com/forums/en/netfx64bit/thread/65a355ce-49c1-47f1-8c12-d9cf5f23c53e]]
|
||||
The solution is:
|
||||
|
||||
Windows 2008 Server x64 / Win7 x64
|
||||
Create the folder: C:\Windows\SysWOW64\config\systemprofile\Desktop
|
||||
|
||||
Windows 2008 Server x86 / Win7 x86
|
||||
Create the folder: C:\Windows\System32\config\systemprofile\Desktop
|
||||
|
||||
Before moving our application to a Windows 2008 server it was running on a Windows 2003 server where the folder C:\Windows\System32\config\systemprofile\Desktop existed.
|
||||
|
||||
This worked out great for me!!
|
||||
|
||||
Sources:
|
||||
|
||||
[[http://social.msdn.microsoft.com/Forums/en/innovateonoffice/thread/b81a3c4e-62db-488b-af06-44421818ef91]]
|
||||
|
||||
[[http://social.msdn.microsoft.com/Forums/en-US/netfx64bit/thread/545dd81f-e80a-48b0-89a1-dafcd72e269d/]]
|
||||
BIN
Resources/Firmas Tecsitel/firma-oscar-azacan.jpg
Normal file
|
After Width: | Height: | Size: 100 KiB |
BIN
Resources/Firmas Tecsitel/firma-oscar-tecsitel-verde.jpg
Normal file
|
After Width: | Height: | Size: 103 KiB |
BIN
Resources/Firmas Tecsitel/firma-paco-tecsitel-verde.png
Normal file
|
After Width: | Height: | Size: 182 KiB |
BIN
Resources/Firmas Tecsitel/firma-paco-tecsitel.jpg
Normal file
|
After Width: | Height: | Size: 94 KiB |
BIN
Resources/Firmas Tecsitel/sello-azacan-david.jpg
Normal file
|
After Width: | Height: | Size: 56 KiB |
|
After Width: | Height: | Size: 13 KiB |
BIN
Resources/Firmas Tecsitel/sello-azacan-firma-oscar-20201007.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
Resources/Firmas Tecsitel/sello-azacan-jl-arroyo.jpg
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
Resources/Firmas Tecsitel/sello-azacan-oscar.jpg
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
Resources/Firmas Tecsitel/sello-azacan-poblados.jpg
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
Resources/Firmas Tecsitel/sello-crcl-david.jpg
Normal file
|
After Width: | Height: | Size: 66 KiB |
BIN
Resources/Firmas Tecsitel/sello-crcl-jl-arroyo.jpg
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
Resources/Firmas Tecsitel/sello-crcl-oscar.jpg
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
Resources/Firmas Tecsitel/sello-crcl.jpg
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
Resources/Firmas Tecsitel/sello-musaeda.JPG
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
Resources/Firmas Tecsitel/sello-tecsitel-carlos.gif
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
Resources/Firmas Tecsitel/sello-tecsitel-carlos.jpg
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
|
After Width: | Height: | Size: 24 KiB |
BIN
Resources/Firmas Tecsitel/sello-tecsitel-firma-carlos.jpg
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
Resources/Firmas Tecsitel/sello-tecsitel-firma-jose-luis.jpg
Normal file
|
After Width: | Height: | Size: 46 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 21 KiB |
BIN
Resources/Firmas Tecsitel/sello-tecsitel-firma-oscar.jpg
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
Resources/Firmas Tecsitel/sello-tecsitel-verde-jose-luis.jpg
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
Resources/Firmas Tecsitel/sello_azacan_20201007.jpg
Normal file
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 44 KiB |
BIN
Resources/Firmas Tecsitel/sello_musaeda-firma-marisa-morato.jpg
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
Resources/Logotipos Tecsitel/LOGO-AZACAN-OK-2.jpg
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
Resources/Logotipos Tecsitel/LOGO-AZACAN-OK-3.jpg
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
Resources/Logotipos Tecsitel/LOGO-AZACAN-OK.gif
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
Resources/Logotipos Tecsitel/LOGO-AZACAN-OK.jpg
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
Resources/Logotipos Tecsitel/LOGO-AZACAN-OK.png
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
Resources/Logotipos Tecsitel/PIE-INFORMES-AZACAN.jpg
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
Resources/Logotipos Tecsitel/SGS_ISO-9001_TCL_HR.jpg
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
Resources/Logotipos Tecsitel/SGS_ISO-9001_TCL_HR.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
Resources/Logotipos Tecsitel/logo_crcl-white_background.jpg
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
Resources/Logotipos Tecsitel/logo_crcl-white_firma.jpg
Normal file
|
After Width: | Height: | Size: 80 KiB |
@ -686,12 +686,12 @@ inherited frViewEmpresa: TfrViewEmpresa
|
||||
object dxLayoutControl1Group5: TdxLayoutGroup
|
||||
Caption = 'Correo electr'#243'nico e internet'
|
||||
object dxLayoutControl1Item7: TdxLayoutItem
|
||||
Caption = 'Correo de trabajo:'
|
||||
Caption = 'Correo para clientes:'
|
||||
Control = eMailTrabajo
|
||||
ControlOptions.ShowBorder = False
|
||||
end
|
||||
object dxLayoutControl1Item6: TdxLayoutItem
|
||||
Caption = 'Correo particular:'
|
||||
Caption = 'Correo para proveedores:'
|
||||
Control = eMailParticular
|
||||
ControlOptions.ShowBorder = False
|
||||
end
|
||||
|
||||
@ -45,6 +45,10 @@
|
||||
<Borland.ProjectType>Package</Borland.ProjectType>
|
||||
<BorlandProject>
|
||||
<BorlandProject><Delphi.Personality><Parameters><Parameters Name="UseLauncher">False</Parameters><Parameters Name="LoadAllSymbols">True</Parameters><Parameters Name="LoadUnspecifiedSymbols">False</Parameters></Parameters><Package_Options><Package_Options Name="PackageDescription">Libreria base de FactuGES</Package_Options><Package_Options Name="ImplicitBuild">False</Package_Options><Package_Options Name="DesigntimeOnly">False</Package_Options><Package_Options Name="RuntimeOnly">False</Package_Options></Package_Options><VersionInfo><VersionInfo Name="IncludeVerInfo">True</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><Excluded_Packages>
|
||||
|
||||
|
||||
|
||||
|
||||
<Excluded_Packages Name="$(BDS)\bin\dcloffice2k100.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
|
||||
<Excluded_Packages Name="$(BDS)\bin\dclofficexp100.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
|
||||
</Excluded_Packages><Source><Source Name="MainSource">Base.dpk</Source></Source></Delphi.Personality></BorlandProject></BorlandProject>
|
||||
@ -54,58 +58,58 @@
|
||||
<DelphiCompile Include="Base.dpk">
|
||||
<MainSource>MainSource</MainSource>
|
||||
</DelphiCompile>
|
||||
<DCCReference Include="..\Modulos\Formas de pago\adortl.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\cxDataD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\cxEditorsD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\cxExportD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\cxExtEditorsD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\cxGridD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\cxIntl6D11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\cxIntlPrintSys3D11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\cxLibraryD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\cxPageControlD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\DataAbstract_Core_D11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\dbrtl.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\dclIndyCore.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\designide.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\dsnap.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\dxGDIPlusD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\dxPSCoreD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\dxThemeD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\GUISDK_D11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\IndyCore.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\IndyProtocols.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\IndySystem.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\Jcl.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\JclVcl.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\JSDialog100.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\JvCmpD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\JvCoreD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\JvCtrlsD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\JvDlgsD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\JvMMD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\JvNetD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\JvPageCompsD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\JvStdCtrlsD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\JvSystemD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\pckMD5.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\pckUCDataConnector.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\pckUserControl_RT.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\PngComponentsD10.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\PNG_D10.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\RemObjects_Core_D11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\RemObjects_Indy_D11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\rtl.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\TB2k_D10.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\tbx_d10.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\vcl.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\vclactnband.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\vcldb.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\vcljpg.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\VclSmp.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\vclx.dcp" />
|
||||
<DCCReference Include="..\Modulos\Formas de pago\xmlrtl.dcp" />
|
||||
<DCCReference Include="..\Servicios\FactuGES_Intf.pas" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\adortl.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\cxDataD11.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\cxEditorsD11.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\cxExportD11.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\cxExtEditorsD11.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\cxGridD11.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\cxIntl6D11.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\cxIntlPrintSys3D11.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\cxLibraryD11.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\cxPageControlD11.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\DataAbstract_Core_D11.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\dbrtl.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\dclIndyCore.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\designide.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\dsnap.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\dxGDIPlusD11.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\dxPSCoreD11.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\dxThemeD11.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\GUISDK_D11R.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\IndyCore.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\IndyProtocols.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\IndySystem.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\Jcl.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\JclVcl.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\JSDialog100.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\JvCmpD11R.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\JvCoreD11R.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\JvCtrlsD11R.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\JvDlgsD11R.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\JvMMD11R.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\JvNetD11R.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\JvPageCompsD11R.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\JvStdCtrlsD11R.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\JvSystemD11R.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\pckMD5.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\pckUCDataConnector.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\pckUserControl_RT.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\PngComponentsD10.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\PNG_D10.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\RemObjects_Core_D11.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\RemObjects_Indy_D11.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\rtl.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\TB2k_D10.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\tbx_d10.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\vcl.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\vclactnband.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\vcldb.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\vcljpg.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\VclSmp.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\vclx.dcp" />
|
||||
<DCCReference Include="C:\Documents and Settings\Usuario\xmlrtl.dcp" />
|
||||
<DCCReference Include="Conexion\uConfigurarConexion.pas">
|
||||
<Form>fConfigurarConexion</Form>
|
||||
<DesignClass>TForm</DesignClass>
|
||||
|
||||
@ -6,6 +6,7 @@ uses
|
||||
Classes;
|
||||
|
||||
const
|
||||
DISPLAY_EUROS4_ESPECIAL = '#,##0.00## €;-#,##0.00## €;';
|
||||
DISPLAY_EUROS4 = '#,0.0000 €';
|
||||
DISPLAY_EUROS2 = '#,0.00 €';
|
||||
DISPLAY_PORCENTAJE = '#,0.00%';
|
||||
|
||||
@ -53,7 +53,7 @@
|
||||
<Borland.Personality>Delphi.Personality</Borland.Personality>
|
||||
<Borland.ProjectType>VCLApplication</Borland.ProjectType>
|
||||
<BorlandProject>
|
||||
<BorlandProject><Delphi.Personality><Parameters><Parameters Name="UseLauncher">False</Parameters><Parameters Name="LoadAllSymbols">True</Parameters><Parameters Name="LoadUnspecifiedSymbols">False</Parameters></Parameters><Language><Language Name="RootDir">C:\Archivos de programa\Borland\Delphi7\Bin\</Language></Language><VersionInfo><VersionInfo Name="IncludeVerInfo">True</VersionInfo><VersionInfo Name="AutoIncBuild">False</VersionInfo><VersionInfo Name="MajorVer">2</VersionInfo><VersionInfo Name="MinorVer">1</VersionInfo><VersionInfo Name="Release">5</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">Rodax Software S.L.</VersionInfoKeys><VersionInfoKeys Name="FileDescription"></VersionInfoKeys><VersionInfoKeys Name="FileVersion">2.1.5.0</VersionInfoKeys><VersionInfoKeys Name="InternalName">FactuGES</VersionInfoKeys><VersionInfoKeys Name="LegalCopyright"></VersionInfoKeys><VersionInfoKeys Name="LegalTrademarks"></VersionInfoKeys><VersionInfoKeys Name="OriginalFilename"></VersionInfoKeys><VersionInfoKeys Name="ProductName">FactuGES</VersionInfoKeys><VersionInfoKeys Name="ProductVersion">2.1.5.0</VersionInfoKeys><VersionInfoKeys Name="Comments"></VersionInfoKeys></VersionInfoKeys><Excluded_Packages></Excluded_Packages><Source><Source Name="MainSource">FactuGES.dpr</Source></Source></Delphi.Personality><ModelSupport>False</ModelSupport></BorlandProject></BorlandProject>
|
||||
<BorlandProject><Delphi.Personality><Parameters><Parameters Name="UseLauncher">False</Parameters><Parameters Name="LoadAllSymbols">True</Parameters><Parameters Name="LoadUnspecifiedSymbols">False</Parameters></Parameters><Language><Language Name="RootDir">C:\Archivos de programa\Borland\Delphi7\Bin\</Language></Language><VersionInfo><VersionInfo Name="IncludeVerInfo">True</VersionInfo><VersionInfo Name="AutoIncBuild">False</VersionInfo><VersionInfo Name="MajorVer">2</VersionInfo><VersionInfo Name="MinorVer">5</VersionInfo><VersionInfo Name="Release">2</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">Rodax Software S.L.</VersionInfoKeys><VersionInfoKeys Name="FileDescription"></VersionInfoKeys><VersionInfoKeys Name="FileVersion">2.5.2.0</VersionInfoKeys><VersionInfoKeys Name="InternalName">FactuGES</VersionInfoKeys><VersionInfoKeys Name="LegalCopyright"></VersionInfoKeys><VersionInfoKeys Name="LegalTrademarks"></VersionInfoKeys><VersionInfoKeys Name="OriginalFilename"></VersionInfoKeys><VersionInfoKeys Name="ProductName">FactuGES</VersionInfoKeys><VersionInfoKeys Name="ProductVersion">2.5.2.0</VersionInfoKeys><VersionInfoKeys Name="Comments"></VersionInfoKeys></VersionInfoKeys><Excluded_Packages></Excluded_Packages><Source><Source Name="MainSource">FactuGES.dpr</Source></Source></Delphi.Personality><ModelSupport>False</ModelSupport></BorlandProject></BorlandProject>
|
||||
</ProjectExtensions>
|
||||
<Import Project="$(MSBuildBinPath)\Borland.Delphi.Targets" />
|
||||
<ItemGroup>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
MAINICON ICON "C:\Codigo tecsitel\Resources\Iconos\Factuges.ico"
|
||||
1 VERSIONINFO
|
||||
FILEVERSION 2,1,5,0
|
||||
PRODUCTVERSION 2,1,5,0
|
||||
FILEVERSION 2,5,2,0
|
||||
PRODUCTVERSION 2,5,2,0
|
||||
FILEFLAGSMASK 0x3FL
|
||||
FILEFLAGS 0x00L
|
||||
FILEOS 0x40004L
|
||||
@ -13,10 +13,10 @@ BEGIN
|
||||
BLOCK "0C0A04E4"
|
||||
BEGIN
|
||||
VALUE "CompanyName", "Rodax Software S.L.\0"
|
||||
VALUE "FileVersion", "2.1.5.0\0"
|
||||
VALUE "FileVersion", "2.5.2.0\0"
|
||||
VALUE "InternalName", "FactuGES\0"
|
||||
VALUE "ProductName", "FactuGES\0"
|
||||
VALUE "ProductVersion", "2.1.5.0\0"
|
||||
VALUE "ProductVersion", "2.5.2.0\0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<TfrxReport Version="4.7.71" DotMatrixReport="False" EngineOptions.DoublePass="True" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.Zoom="1" PrintOptions.Printer="Por defecto" PrintOptions.PrintOnSheet="0" ReportOptions.CreateDate="37800,8077143519" ReportOptions.Description.Text="" ReportOptions.LastChange="42450,5900417477" ScriptLanguage="PascalScript" ScriptText.Text="procedure mContinuaOnBeforePrint(Sender: TfrxComponent); begin if Engine.FinalPass then begin if (<Page#> = <TotalPages#>) then begin mContinua.Visible := False; end else begin mContinua.Visible := True; end end; end; begin end." ShowProgress="False" StoreInDFM="False" OnStartReport="frxReportOnStartReport" PropData="044C65667403A90003546F70021008446174617365747301010C3400000020446174615365744E616D653D226672784442496E666F726D65495641436F6D706172617469766F4661637475726173436C692200010C3400000020446174615365744E616D653D226672784442496E666F726D65495641436F6D706172617469766F466163747572617350726F220000095661726961626C657301010C13000000204E616D653D2220506172616D6574726F732200010C17000000204E616D653D22546578746F506172616D6574726F73220000055374796C650100">
|
||||
<TfrxReport Version="4.7.71" DotMatrixReport="False" EngineOptions.DoublePass="True" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.Zoom="1" PrintOptions.Printer="Por defecto" PrintOptions.PrintOnSheet="0" ReportOptions.CreateDate="37800,8077143519" ReportOptions.Description.Text="" ReportOptions.LastChange="43816,5014707523" ScriptLanguage="PascalScript" ScriptText.Text="procedure mContinuaOnBeforePrint(Sender: TfrxComponent); begin if Engine.FinalPass then begin if (<Page#> = <TotalPages#>) then begin mContinua.Visible := False; end else begin mContinua.Visible := True; end end; end; begin end." ShowProgress="False" StoreInDFM="False" OnStartReport="frxReportOnStartReport" PropData="044C65667403890003546F70021008446174617365747301010C3400000020446174615365744E616D653D226672784442496E666F726D65495641436F6D706172617469766F4661637475726173436C692200010C3400000020446174615365744E616D653D226672784442496E666F726D65495641436F6D706172617469766F466163747572617350726F220000095661726961626C657301010C13000000204E616D653D2220506172616D6574726F732200010C17000000204E616D653D22546578746F506172616D6574726F73220000055374796C650100">
|
||||
<TfrxDataPage Name="Data" Height="1000" Left="0" Top="0" Width="1000"/>
|
||||
<TfrxReportPage Name="Page1" Orientation="poLandscape" PaperWidth="297" PaperHeight="210" PaperSize="9" LeftMargin="15" RightMargin="15" TopMargin="15" BottomMargin="20" ColumnWidth="0" ColumnPositions.Text="" HGuides.Text="" VGuides.Text="">
|
||||
<TfrxPageHeader Name="Band1" Height="136,10235" Left="0" Top="16" Width="1009,13451" OnBeforePrint="Band1OnBeforePrint">
|
||||
@ -7,10 +7,10 @@
|
||||
<TfrxShapeView Name="Shape5" Left="513" Top="4" Width="495" Height="129" ShowHint="False" Color="13434828" Shape="skRoundRectangle"/>
|
||||
<TfrxMemoView Name="NombreCliente" Left="521,85807" Top="13" Width="478" Height="19" ShowHint="False" StretchMode="smMaxHeight" DisplayFormat.DecimalSeparator="," Font.Charset="1" Font.Color="16384" Font.Height="-13" Font.Name="Tahoma" Font.Style="1" HAlign="haRight" ParentFont="False" Text="LISTADO COMPARATIVO DE IVA REPERCUTIDO - SOPORTADO"/>
|
||||
<TfrxMemoView Name="Memo3" Left="521,85807" Top="34,89765" Width="478" Height="91" ShowHint="False" StretchMode="smMaxHeight" DisplayFormat.DecimalSeparator="," Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Tahoma" Font.Style="0" HAlign="haRight" ParentFont="False" Text="Fecha del listado: [<Date>] - Página [Page#] de [TotalPages#] [TextoParametros]"/>
|
||||
<TfrxMemoView Name="DatosEmpresa" Left="82" Top="37" Width="232" Height="88" ShowHint="False" StretchMode="smMaxHeight" DisplayFormat.DecimalSeparator="," Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="TECSITEL S.L. CIF: B81747396 C/ Hierro, 33 1ª Plta Oficina 10. 28045 Madrid Telf: 91-507-56-92 / 63 Fax: 91-785-96-35 e-mail: tecsitel@tecsitel.com"/>
|
||||
<TfrxMemoView Name="DatosEmpresa" Left="82" Top="37" Width="232" Height="88" ShowHint="False" StretchMode="smMaxHeight" DisplayFormat.DecimalSeparator="," Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="TECSITEL S.L. CIF: B81747396 C/ Luis I nº 71 nave 1. 28031 Madrid Telf: 91-507-56-92 / 63 Fax: 91-785-96-35 e-mail: clientes@tecsitel.com"/>
|
||||
</TfrxPageHeader>
|
||||
<TfrxPageFooter Name="" Height="23,77953" Left="0" Top="664" Width="1009,13451" PrintOnLastPage="False">
|
||||
<TfrxMemoView Name="mContinua" Left="925,98485" Top="4,77953" Width="81,08714" Height="16,77953" OnBeforePrint="mContinuaOnBeforePrint" ShowHint="False" StretchMode="smMaxHeight" DisplayFormat.DecimalSeparator="," Font.Charset="1" Font.Color="16384" Font.Height="-12" Font.Name="Tahoma" Font.Style="0" HAlign="haRight" ParentFont="False" Text="Continúa ..."/>
|
||||
<TfrxMemoView Name="mContinua" Left="925,98485" Top="4,77953000000002" Width="81,08714" Height="16,77953" OnBeforePrint="mContinuaOnBeforePrint" ShowHint="False" StretchMode="smMaxHeight" DisplayFormat.DecimalSeparator="," Font.Charset="1" Font.Color="16384" Font.Height="-12" Font.Name="Tahoma" Font.Style="0" HAlign="haRight" ParentFont="False" Text="Continúa ..."/>
|
||||
</TfrxPageFooter>
|
||||
<TfrxMasterData Name="DatosMaestros1" Height="16" Left="0" Top="307" Width="1009,13451" Columns="1" ColumnWidth="200" ColumnGap="20" DataSetName="frxDBInformeIVAComparativoFacturasCli" RowCount="0" Stretched="True">
|
||||
<TfrxMemoView Name="Memo4" Left="0" Top="0" Width="137" Height="16" ShowHint="False" StretchMode="smMaxHeight" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" Text="[frxDBInformeIVAComparativoFacturasCli."DESCRIPCION"]"/>
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<TfrxReport Version="4.7.71" DotMatrixReport="False" EngineOptions.DoublePass="True" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.Zoom="1" PrintOptions.Printer="Por defecto" PrintOptions.PrintOnSheet="0" ReportOptions.CreateDate="37800,8077143519" ReportOptions.Description.Text="" ReportOptions.LastChange="42450,6666910417" ScriptLanguage="PascalScript" ScriptText.Text="procedure mContinuaOnBeforePrint(Sender: TfrxComponent); begin if Engine.FinalPass then begin if (<Page#> = <TotalPages#>) then begin mContinua.Visible := False; end else begin mContinua.Visible := True; end end; end; begin end." ShowProgress="False" StoreInDFM="False" OnStartReport="frxReportOnStartReport" PropData="044C65667403A90003546F70021008446174617365747301010C3400000020446174615365744E616D653D226672784442496E666F726D65495641436F6D706172617469766F4661637475726173436C692200010C3400000020446174615365744E616D653D226672784442496E666F726D65495641436F6D706172617469766F466163747572617350726F220000095661726961626C657301010C13000000204E616D653D2220506172616D6574726F732200010C17000000204E616D653D22546578746F506172616D6574726F73220000055374796C650100">
|
||||
<TfrxReport Version="4.7.71" DotMatrixReport="False" EngineOptions.DoublePass="True" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.Zoom="1" PrintOptions.Printer="Por defecto" PrintOptions.PrintOnSheet="0" ReportOptions.CreateDate="37800,8077143519" ReportOptions.Description.Text="" ReportOptions.LastChange="42501,5171310648" ScriptLanguage="PascalScript" ScriptText.Text="procedure mContinuaOnBeforePrint(Sender: TfrxComponent); begin if Engine.FinalPass then begin if (<Page#> = <TotalPages#>) then begin mContinua.Visible := False; end else begin mContinua.Visible := True; end end; end; begin end." ShowProgress="False" StoreInDFM="False" OnStartReport="frxReportOnStartReport" PropData="044C65667403910003546F70021008446174617365747301010C3400000020446174615365744E616D653D226672784442496E666F726D65495641436F6D706172617469766F4661637475726173436C692200010C3400000020446174615365744E616D653D226672784442496E666F726D65495641436F6D706172617469766F466163747572617350726F220000095661726961626C657301010C13000000204E616D653D2220506172616D6574726F732200010C17000000204E616D653D22546578746F506172616D6574726F73220000055374796C650100">
|
||||
<TfrxDataPage Name="Data" Height="1000" Left="0" Top="0" Width="1000"/>
|
||||
<TfrxReportPage Name="Page1" Orientation="poLandscape" PaperWidth="297" PaperHeight="210" PaperSize="9" LeftMargin="15" RightMargin="15" TopMargin="15" BottomMargin="20" ColumnWidth="0" ColumnPositions.Text="" HGuides.Text="" VGuides.Text="">
|
||||
<TfrxPageHeader Name="Band1" Height="136,10235" Left="0" Top="16" Width="1009,13451" OnBeforePrint="Band1OnBeforePrint">
|
||||
@ -7,10 +7,10 @@
|
||||
<TfrxShapeView Name="Shape5" Left="513" Top="4" Width="495" Height="129" ShowHint="False" Color="13434828" Shape="skRoundRectangle"/>
|
||||
<TfrxMemoView Name="NombreCliente" Left="521,85807" Top="13" Width="478" Height="19" ShowHint="False" StretchMode="smMaxHeight" DisplayFormat.DecimalSeparator="," Font.Charset="1" Font.Color="16384" Font.Height="-13" Font.Name="Tahoma" Font.Style="1" HAlign="haRight" ParentFont="False" Text="LISTADO COMPARATIVO DE IVA REPERCUTIDO - SOPORTADO"/>
|
||||
<TfrxMemoView Name="Memo3" Left="521,85807" Top="34,89765" Width="478" Height="91" ShowHint="False" StretchMode="smMaxHeight" DisplayFormat.DecimalSeparator="," Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Tahoma" Font.Style="0" HAlign="haRight" ParentFont="False" Text="Fecha del listado: [<Date>] - Página [Page#] de [TotalPages#] [TextoParametros]"/>
|
||||
<TfrxMemoView Name="DatosEmpresa" Left="83" Top="38" Width="232" Height="88" ShowHint="False" StretchMode="smMaxHeight" DisplayFormat.DecimalSeparator="," Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="TECSITEL MANTENIMIENTO S.L. CIF: B83122168 C/ Hierro, 33 1ª Plta Oficina 10. 28045 Madrid Telf: 91-507-56-92 / 63 Fax: 91-785-96-35 e-mail: tecsitel@tecsitel.com"/>
|
||||
<TfrxMemoView Name="DatosEmpresa" Left="83" Top="38" Width="232" Height="88" ShowHint="False" StretchMode="smMaxHeight" DisplayFormat.DecimalSeparator="," Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="TECSITEL MANTENIMIENTO S.L. CIF: B83122168 C/ Hierro, 33 1ª Plta Oficina 10. 28045 Madrid Telf: 91-507-56-92 / 63 Fax: 91-785-96-35 e-mail: clientes@tecsitel.com"/>
|
||||
</TfrxPageHeader>
|
||||
<TfrxPageFooter Name="" Height="23,77953" Left="0" Top="664" Width="1009,13451" PrintOnLastPage="False">
|
||||
<TfrxMemoView Name="mContinua" Left="925,98485" Top="4,77953" Width="81,08714" Height="16,77953" OnBeforePrint="mContinuaOnBeforePrint" ShowHint="False" StretchMode="smMaxHeight" DisplayFormat.DecimalSeparator="," Font.Charset="1" Font.Color="16384" Font.Height="-12" Font.Name="Tahoma" Font.Style="0" HAlign="haRight" ParentFont="False" Text="Continúa ..."/>
|
||||
<TfrxMemoView Name="mContinua" Left="925,98485" Top="4,77953000000002" Width="81,08714" Height="16,77953" OnBeforePrint="mContinuaOnBeforePrint" ShowHint="False" StretchMode="smMaxHeight" DisplayFormat.DecimalSeparator="," Font.Charset="1" Font.Color="16384" Font.Height="-12" Font.Name="Tahoma" Font.Style="0" HAlign="haRight" ParentFont="False" Text="Continúa ..."/>
|
||||
</TfrxPageFooter>
|
||||
<TfrxMasterData Name="DatosMaestros1" Height="16" Left="0" Top="307" Width="1009,13451" Columns="1" ColumnWidth="200" ColumnGap="20" DataSetName="frxDBInformeIVAComparativoFacturasCli" RowCount="0" Stretched="True">
|
||||
<TfrxMemoView Name="Memo4" Left="0" Top="0" Width="137" Height="16" ShowHint="False" StretchMode="smMaxHeight" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" Text="[frxDBInformeIVAComparativoFacturasCli."DESCRIPCION"]"/>
|
||||
|
||||