Se activan remesas de cliente y proveedor para la siguiente subida
git-svn-id: https://192.168.0.254/svn/Proyectos.Tecsitel_FactuGES2/trunk@783 0c75b7a4-871f-7646-8a2f-f78d34cc349f
This commit is contained in:
parent
73c51d688e
commit
7f31b5ca5a
@ -9121,7 +9121,7 @@ Comments=
|
||||
<Property MultiValue="0" name="ActionTypeID" type="string"></Property>
|
||||
<Property MultiValue="1" name="Description" type="string"><![CDATA[Remesas de cliente MDC]]>
|
||||
</Property>
|
||||
<Property name="Enabled" type="WordBool">False</Property>
|
||||
<Property name="Enabled" type="WordBool">True</Property>
|
||||
<Property name="ExpandActionLogTitle" type="Boolean">True</Property>
|
||||
<Property name="IgnoreFailure" type="WordBool">False</Property>
|
||||
<Property name="IsAction" type="Boolean">True</Property>
|
||||
@ -12661,7 +12661,7 @@ Comments=
|
||||
<Property MultiValue="0" name="ActionTypeID" type="string"></Property>
|
||||
<Property MultiValue="1" name="Description" type="string"><![CDATA[Remesas de proveedor MDC]]>
|
||||
</Property>
|
||||
<Property name="Enabled" type="WordBool">False</Property>
|
||||
<Property name="Enabled" type="WordBool">True</Property>
|
||||
<Property name="ExpandActionLogTitle" type="Boolean">True</Property>
|
||||
<Property name="IgnoreFailure" type="WordBool">False</Property>
|
||||
<Property name="IsAction" type="Boolean">True</Property>
|
||||
|
||||
@ -3384,6 +3384,101 @@ LEFT JOIN V_REC_PRO_SITUACION RECIBO_COMPENSADO2
|
||||
ON (RECIBO_COMPENSADO2.ID_RECIBO = RECIBOS_PROVEEDOR.ID_RECIBO_COMPENSADO)
|
||||
;
|
||||
|
||||
CREATE VIEW V_REMESAS_CLIENTE(
|
||||
ID,
|
||||
ID_EMPRESA,
|
||||
REFERENCIA,
|
||||
TIPO,
|
||||
FECHA_REMESA,
|
||||
DESCRIPCION,
|
||||
ID_DATOS_BANCO,
|
||||
FECHA_ALTA,
|
||||
FECHA_MODIFICACION,
|
||||
USUARIO,
|
||||
NOMBRE,
|
||||
ENTIDAD,
|
||||
SUCURSAL,
|
||||
DC,
|
||||
CUENTA,
|
||||
SUFIJO_N19,
|
||||
SUFIJO_N58,
|
||||
IMPORTE_TOTAL)
|
||||
AS
|
||||
SELECT
|
||||
REMESAS_CLIENTE.ID,
|
||||
REMESAS_CLIENTE.ID_EMPRESA,
|
||||
REMESAS_CLIENTE.REFERENCIA,
|
||||
REMESAS_CLIENTE.TIPO,
|
||||
REMESAS_CLIENTE.FECHA_REMESA,
|
||||
REMESAS_CLIENTE.DESCRIPCION,
|
||||
REMESAS_CLIENTE.ID_DATOS_BANCO,
|
||||
REMESAS_CLIENTE.FECHA_ALTA,
|
||||
REMESAS_CLIENTE.FECHA_MODIFICACION,
|
||||
REMESAS_CLIENTE.USUARIO,
|
||||
EMPRESAS_DATOS_BANCO.NOMBRE,
|
||||
EMPRESAS_DATOS_BANCO.ENTIDAD,
|
||||
EMPRESAS_DATOS_BANCO.SUCURSAL,
|
||||
EMPRESAS_DATOS_BANCO.DC,
|
||||
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
|
||||
|
||||
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)
|
||||
GROUP BY 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17
|
||||
;
|
||||
|
||||
CREATE VIEW V_REMESAS_PROVEEDOR(
|
||||
ID,
|
||||
ID_EMPRESA,
|
||||
REFERENCIA,
|
||||
TIPO,
|
||||
FECHA_REMESA,
|
||||
DESCRIPCION,
|
||||
ID_DATOS_BANCO,
|
||||
FECHA_ALTA,
|
||||
FECHA_MODIFICACION,
|
||||
USUARIO,
|
||||
NOMBRE,
|
||||
ENTIDAD,
|
||||
SUCURSAL,
|
||||
DC,
|
||||
CUENTA,
|
||||
SUFIJO_N19,
|
||||
SUFIJO_N58,
|
||||
IMPORTE_TOTAL)
|
||||
AS
|
||||
SELECT
|
||||
REMESAS_PROVEEDOR.ID,
|
||||
REMESAS_PROVEEDOR.ID_EMPRESA,
|
||||
REMESAS_PROVEEDOR.REFERENCIA,
|
||||
REMESAS_PROVEEDOR.TIPO,
|
||||
REMESAS_PROVEEDOR.FECHA_REMESA,
|
||||
REMESAS_PROVEEDOR.DESCRIPCION,
|
||||
REMESAS_PROVEEDOR.ID_DATOS_BANCO,
|
||||
REMESAS_PROVEEDOR.FECHA_ALTA,
|
||||
REMESAS_PROVEEDOR.FECHA_MODIFICACION,
|
||||
REMESAS_PROVEEDOR.USUARIO,
|
||||
EMPRESAS_DATOS_BANCO.NOMBRE,
|
||||
EMPRESAS_DATOS_BANCO.ENTIDAD,
|
||||
EMPRESAS_DATOS_BANCO.SUCURSAL,
|
||||
EMPRESAS_DATOS_BANCO.DC,
|
||||
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
|
||||
|
||||
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)
|
||||
GROUP BY 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17
|
||||
;
|
||||
|
||||
/******************************************************************************/
|
||||
/**** Primary Keys ****/
|
||||
|
||||
@ -54,58 +54,58 @@
|
||||
<DelphiCompile Include="Base.dpk">
|
||||
<MainSource>MainSource</MainSource>
|
||||
</DelphiCompile>
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\adortl.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\cxDataD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\cxEditorsD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\cxExportD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\cxExtEditorsD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\cxGridD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\cxIntl6D11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\cxIntlPrintSys3D11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\cxLibraryD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\cxPageControlD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\DataAbstract_Core_D11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\dbrtl.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\dclIndyCore.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\designide.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\dsnap.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\dxGDIPlusD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\dxPSCoreD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\dxThemeD11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\GUISDK_D11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\IndyCore.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\IndyProtocols.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\IndySystem.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\Jcl.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\JclVcl.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\JSDialog100.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\JvCmpD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\JvCoreD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\JvCtrlsD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\JvDlgsD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\JvMMD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\JvNetD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\JvPageCompsD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\JvStdCtrlsD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\JvSystemD11R.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\pckMD5.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\pckUCDataConnector.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\pckUserControl_RT.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\PngComponentsD10.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\PNG_D10.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\RemObjects_Core_D11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\RemObjects_Indy_D11.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\rtl.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\TB2k_D10.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\tbx_d10.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\vcl.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\vclactnband.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\vcldb.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\vcljpg.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\VclSmp.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\vclx.dcp" />
|
||||
<DCCReference Include="..\Modulos\Remesas de cliente\Plugin\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_D11.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>
|
||||
|
||||
@ -45,8 +45,8 @@ begin
|
||||
LoadModule(MODULENAME_RECIBOS_PROVEEDOR);
|
||||
LoadModule(MODULENAME_FACTURAS_PROVEEDOR);
|
||||
|
||||
// LoadModule('RemesasCliente_plugin.bpl');
|
||||
// LoadModule('RemesasProveedor_plugin.bpl');
|
||||
LoadModule('RemesasCliente_plugin.bpl');
|
||||
LoadModule('RemesasProveedor_plugin.bpl');
|
||||
|
||||
LoadModule('Inventario_plugin.bpl');
|
||||
LoadModule('HistoricoMovimientos_plugin.bpl');
|
||||
|
||||
Binary file not shown.
@ -39,65 +39,24 @@
|
||||
<Borland.Personality>Delphi.Personality</Borland.Personality>
|
||||
<Borland.ProjectType>Package</Borland.ProjectType>
|
||||
<BorlandProject>
|
||||
<BorlandProject xmlns=""> <Delphi.Personality> <Parameters>
|
||||
<Parameters Name="UseLauncher">False</Parameters>
|
||||
<Parameters Name="LoadAllSymbols">True</Parameters>
|
||||
<Parameters Name="LoadUnspecifiedSymbols">False</Parameters>
|
||||
</Parameters>
|
||||
<Package_Options>
|
||||
<Package_Options Name="ImplicitBuild">True</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 Name="Comments"></VersionInfoKeys>
|
||||
</VersionInfoKeys>
|
||||
<Source>
|
||||
<Source Name="MainSource">RemesasCliente_plugin.dpk</Source>
|
||||
</Source>
|
||||
</Delphi.Personality> </BorlandProject></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="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 Name="Comments"></VersionInfoKeys></VersionInfoKeys><Source><Source Name="MainSource">RemesasCliente_plugin.dpk</Source></Source></Delphi.Personality></BorlandProject></BorlandProject>
|
||||
</ProjectExtensions>
|
||||
<Import Project="$(MSBuildBinPath)\Borland.Delphi.Targets" />
|
||||
<ItemGroup>
|
||||
<DelphiCompile Include="RemesasCliente_plugin.dpk">
|
||||
<MainSource>MainSource</MainSource>
|
||||
</DelphiCompile>
|
||||
<DCCReference Include="..\..\Lib\RemesasCliente_controller.dcp" />
|
||||
<DCCReference Include="..\..\Lib\RemesasCliente_model.dcp" />
|
||||
<DCCReference Include="..\..\Lib\RemesasCliente_view.dcp" />
|
||||
<DCCReference Include="..\RemesasCliente_controller.dcp" />
|
||||
<DCCReference Include="..\RemesasCliente_model.dcp" />
|
||||
<DCCReference Include="..\RemesasCliente_view.dcp" />
|
||||
<DCCReference Include="uPluginRemesasCliente.pas">
|
||||
<Form>PluginRemesasCliente</Form>
|
||||
</DCCReference>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
||||
<!-- EurekaLog First Line
|
||||
[Exception Log]
|
||||
EurekaLog Version=6006
|
||||
EurekaLog Version=6011
|
||||
Activate=0
|
||||
Activate Handle=1
|
||||
Save Log File=1
|
||||
|
||||
Binary file not shown.
@ -53,7 +53,6 @@ object PluginRemesasCliente: TPluginRemesasCliente
|
||||
object actRemesasCliente: TAction
|
||||
Category = 'Ventas'
|
||||
Caption = 'Remesas de cobro'
|
||||
Enabled = False
|
||||
ImageIndex = 0
|
||||
OnExecute = actRemesasClienteExecute
|
||||
end
|
||||
|
||||
@ -39,7 +39,7 @@ implementation
|
||||
uses
|
||||
{Generated:} FactuGES_Invk, uDataModuleServer,
|
||||
uDatabaseUtils, schRemesasClienteClient_Intf, uRestriccionesUsuarioUtils,
|
||||
// uBizRemesasClienteServer,
|
||||
uBizRemesasClienteServer,
|
||||
// uRptRemesasCliente_Server,
|
||||
Dialogs;
|
||||
|
||||
@ -68,7 +68,7 @@ end;
|
||||
procedure TsrvRemesasCliente.DARemoteServiceCreate(Sender: TObject);
|
||||
begin
|
||||
SessionManager := dmServer.SessionManager;
|
||||
// bpRemesasCliente.BusinessRulesID := BIZ_SERVER_REMESAS_CLIENTE;
|
||||
bpRemesasCliente.BusinessRulesID := BIZ_SERVER_REMESAS_CLIENTE;
|
||||
end;
|
||||
|
||||
procedure TsrvRemesasCliente.DataAbstractServiceBeforeAcquireConnection(
|
||||
|
||||
Binary file not shown.
@ -39,66 +39,24 @@
|
||||
<Borland.Personality>Delphi.Personality</Borland.Personality>
|
||||
<Borland.ProjectType>Package</Borland.ProjectType>
|
||||
<BorlandProject>
|
||||
<BorlandProject xmlns=""> <Delphi.Personality> <Parameters>
|
||||
<Parameters Name="UseLauncher">False</Parameters>
|
||||
<Parameters Name="LoadAllSymbols">True</Parameters>
|
||||
<Parameters Name="LoadUnspecifiedSymbols">False</Parameters>
|
||||
</Parameters>
|
||||
<Package_Options>
|
||||
<Package_Options Name="ImplicitBuild">True</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 Name="Comments"></VersionInfoKeys>
|
||||
</VersionInfoKeys>
|
||||
<Source>
|
||||
<Source Name="MainSource">RemesasProveedor_plugin.dpk</Source>
|
||||
</Source>
|
||||
</Delphi.Personality> </BorlandProject></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="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 Name="Comments"></VersionInfoKeys></VersionInfoKeys><Source><Source Name="MainSource">RemesasProveedor_plugin.dpk</Source></Source></Delphi.Personality></BorlandProject></BorlandProject>
|
||||
</ProjectExtensions>
|
||||
<ItemGroup />
|
||||
<Import Project="$(MSBuildBinPath)\Borland.Delphi.Targets" />
|
||||
<ItemGroup>
|
||||
<DelphiCompile Include="RemesasProveedor_plugin.dpk">
|
||||
<MainSource>MainSource</MainSource>
|
||||
</DelphiCompile>
|
||||
<DCCReference Include="..\..\Lib\RemesasProveedor_controller.dcp" />
|
||||
<DCCReference Include="..\..\Lib\RemesasProveedor_model.dcp" />
|
||||
<DCCReference Include="..\..\Lib\RemesasProveedor_view.dcp" />
|
||||
<DCCReference Include="..\RemesasProveedor_controller.dcp" />
|
||||
<DCCReference Include="..\RemesasProveedor_model.dcp" />
|
||||
<DCCReference Include="..\RemesasProveedor_view.dcp" />
|
||||
<DCCReference Include="uPluginRemesasProveedor.pas">
|
||||
<Form>PluginRemesasProveedor</Form>
|
||||
</DCCReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Borland.Delphi.Targets" />
|
||||
</Project>
|
||||
|
||||
<!-- EurekaLog First Line
|
||||
[Exception Log]
|
||||
EurekaLog Version=6006
|
||||
EurekaLog Version=6011
|
||||
Activate=0
|
||||
Activate Handle=1
|
||||
Save Log File=1
|
||||
|
||||
Binary file not shown.
@ -53,7 +53,6 @@ object PluginRemesasProveedor: TPluginRemesasProveedor
|
||||
object actRemesasProveedor: TAction
|
||||
Category = 'Compras'
|
||||
Caption = 'Remesas de pago'
|
||||
Enabled = False
|
||||
ImageIndex = 0
|
||||
OnExecute = actRemesasProveedorExecute
|
||||
end
|
||||
|
||||
@ -39,7 +39,7 @@ implementation
|
||||
uses
|
||||
{Generated:} FactuGES_Invk, uDataModuleServer,
|
||||
uDatabaseUtils, schRemesasProveedorClient_Intf, uRestriccionesUsuarioUtils,
|
||||
// uBizRemesasProveedorServer, uRptRemesasProveedor_Server,
|
||||
uBizRemesasProveedorServer, // uRptRemesasProveedor_Server,
|
||||
Dialogs;
|
||||
|
||||
procedure Create_srvRemesasProveedor(out anInstance : IUnknown);
|
||||
@ -67,7 +67,7 @@ end;
|
||||
procedure TsrvRemesasProveedor.DARemoteServiceCreate(Sender: TObject);
|
||||
begin
|
||||
SessionManager := dmServer.SessionManager;
|
||||
// bpRemesasProveedor.BusinessRulesID := BIZ_SERVER_REMESAS_PROVEEDOR;
|
||||
bpRemesasProveedor.BusinessRulesID := BIZ_SERVER_REMESAS_PROVEEDOR;
|
||||
end;
|
||||
|
||||
procedure TsrvRemesasProveedor.DataAbstractServiceBeforeAcquireConnection(
|
||||
|
||||
@ -17,7 +17,7 @@ inherited fEditorRemesaProveedor: TfEditorRemesaProveedor
|
||||
Caption = 'Remesa de pago'
|
||||
ExplicitWidth = 690
|
||||
inherited Image1: TImage
|
||||
Left = 663
|
||||
Left = 557
|
||||
Picture.Data = {
|
||||
0A54504E474F626A65637489504E470D0A1A0A0000000D494844520000001800
|
||||
0000180806000000E0773DF80000000970485973000017120000171201679FD2
|
||||
@ -44,6 +44,10 @@ inherited fEditorRemesaProveedor: TfEditorRemesaProveedor
|
||||
355E0B6809686E0100FA3E2AAB1481BE0E0000000049454E44AE426082}
|
||||
ExplicitLeft = 607
|
||||
end
|
||||
inherited lblDesbloquear: TcxLabel
|
||||
Left = 592
|
||||
ExplicitLeft = 592
|
||||
end
|
||||
end
|
||||
inherited TBXDock: TTBXDock
|
||||
Width = 690
|
||||
@ -180,24 +184,44 @@ inherited fEditorRemesaProveedor: TfEditorRemesaProveedor
|
||||
ExplicitWidth = 676
|
||||
ExplicitHeight = 155
|
||||
inherited eReferencia: TcxDBTextEdit
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitWidth = 224
|
||||
Width = 224
|
||||
end
|
||||
inherited eDescripcion: TcxDBTextEdit
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitWidth = 544
|
||||
Width = 544
|
||||
end
|
||||
inherited edtFechaRemesa: TcxDBDateEdit
|
||||
Left = 423
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitLeft = 423
|
||||
ExplicitWidth = 231
|
||||
Width = 231
|
||||
end
|
||||
inherited cbCuentaBancaria: TcxDBLookupComboBox
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitWidth = 544
|
||||
Width = 544
|
||||
end
|
||||
inherited cbTipo: TcxDBImageComboBox
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitWidth = 544
|
||||
Width = 544
|
||||
end
|
||||
@ -263,7 +287,11 @@ inherited fEditorRemesaProveedor: TfEditorRemesaProveedor
|
||||
Left = 163
|
||||
Top = 111
|
||||
DataBinding.DataField = ''
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
Style.IsFontAssigned = True
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitLeft = 163
|
||||
ExplicitTop = 111
|
||||
ExplicitWidth = 164
|
||||
@ -273,7 +301,11 @@ inherited fEditorRemesaProveedor: TfEditorRemesaProveedor
|
||||
Left = 526
|
||||
Top = 37
|
||||
DataBinding.DataField = ''
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
Style.IsFontAssigned = True
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitLeft = 526
|
||||
ExplicitTop = 37
|
||||
ExplicitWidth = 154
|
||||
@ -282,7 +314,11 @@ inherited fEditorRemesaProveedor: TfEditorRemesaProveedor
|
||||
inherited ImporteTotal: TcxDBCurrencyEdit
|
||||
Left = 456
|
||||
Top = 111
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
Style.IsFontAssigned = True
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitLeft = 456
|
||||
ExplicitTop = 111
|
||||
ExplicitWidth = 224
|
||||
@ -292,7 +328,11 @@ inherited fEditorRemesaProveedor: TfEditorRemesaProveedor
|
||||
Left = 92
|
||||
Top = 111
|
||||
DataBinding.DataField = ''
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
Style.IsFontAssigned = True
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitLeft = 92
|
||||
ExplicitTop = 111
|
||||
end
|
||||
@ -300,7 +340,11 @@ inherited fEditorRemesaProveedor: TfEditorRemesaProveedor
|
||||
Left = 455
|
||||
Top = 37
|
||||
DataBinding.DataField = ''
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
Style.IsFontAssigned = True
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitLeft = 455
|
||||
ExplicitTop = 37
|
||||
end
|
||||
@ -308,7 +352,11 @@ inherited fEditorRemesaProveedor: TfEditorRemesaProveedor
|
||||
Left = 455
|
||||
Top = 10
|
||||
DataBinding.DataField = ''
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
Style.IsFontAssigned = True
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitLeft = 455
|
||||
ExplicitTop = 10
|
||||
ExplicitWidth = 225
|
||||
@ -318,7 +366,11 @@ inherited fEditorRemesaProveedor: TfEditorRemesaProveedor
|
||||
Left = 455
|
||||
Top = 64
|
||||
DataBinding.DataField = ''
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
Style.IsFontAssigned = True
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitLeft = 455
|
||||
ExplicitTop = 64
|
||||
end
|
||||
@ -326,7 +378,11 @@ inherited fEditorRemesaProveedor: TfEditorRemesaProveedor
|
||||
Left = 526
|
||||
Top = 64
|
||||
DataBinding.DataField = ''
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
Style.IsFontAssigned = True
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitLeft = 526
|
||||
ExplicitTop = 64
|
||||
ExplicitWidth = 154
|
||||
@ -336,7 +392,11 @@ inherited fEditorRemesaProveedor: TfEditorRemesaProveedor
|
||||
Left = 92
|
||||
Top = 10
|
||||
DataBinding.DataField = ''
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
Style.IsFontAssigned = True
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitLeft = 92
|
||||
ExplicitTop = 10
|
||||
ExplicitWidth = 235
|
||||
@ -346,7 +406,11 @@ inherited fEditorRemesaProveedor: TfEditorRemesaProveedor
|
||||
Left = 92
|
||||
Top = 138
|
||||
DataBinding.DataField = ''
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
Style.IsFontAssigned = True
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitLeft = 92
|
||||
ExplicitTop = 138
|
||||
ExplicitWidth = 235
|
||||
@ -356,6 +420,10 @@ inherited fEditorRemesaProveedor: TfEditorRemesaProveedor
|
||||
Left = 92
|
||||
Top = 37
|
||||
DataBinding.DataField = ''
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitLeft = 92
|
||||
ExplicitTop = 37
|
||||
ExplicitWidth = 97
|
||||
@ -371,6 +439,10 @@ inherited fEditorRemesaProveedor: TfEditorRemesaProveedor
|
||||
Left = 92
|
||||
Top = 64
|
||||
DataBinding.DataField = ''
|
||||
Style.LookAndFeel.SkinName = ''
|
||||
StyleDisabled.LookAndFeel.SkinName = ''
|
||||
StyleFocused.LookAndFeel.SkinName = ''
|
||||
StyleHot.LookAndFeel.SkinName = ''
|
||||
ExplicitLeft = 92
|
||||
ExplicitTop = 64
|
||||
ExplicitWidth = 235
|
||||
|
||||
@ -15,7 +15,7 @@ uses
|
||||
uViewRemesasProveedor, uIEditorRemesaProveedor, uRemesasProveedorController, JvExComCtrls,
|
||||
JvStatusBar, dxLayoutLookAndFeels, uViewGridBase, uViewGrid,
|
||||
uViewRecibosRemesaProveedor, uViewTotales, uViewDetallesGenerico,
|
||||
uViewRemesaProveedor, uDAInterfaces;
|
||||
uViewRemesaProveedor, uDAInterfaces, cxControls, cxContainer, cxEdit, cxLabel;
|
||||
|
||||
type
|
||||
TfEditorRemesaProveedor = class(TfEditorDBItem, IEditorRemesaProveedor)
|
||||
|
||||
Binary file not shown.
@ -14,7 +14,7 @@ BEGIN
|
||||
BEGIN
|
||||
VALUE "FileVersion", "1.4.6.0\0"
|
||||
VALUE "ProductVersion", "1.4.6.0\0"
|
||||
VALUE "CompileDate", "lunes, 24 de noviembre de 2008 18:33\0"
|
||||
VALUE "CompileDate", "jueves, 27 de noviembre de 2008 10:54\0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user