Cambios informes y cambio situacion en facturas de proveedor
git-svn-id: https://192.168.0.254/svn/Proyectos.AbetoArmarios_FactuGES/trunk@7 0a814768-cfdd-9c42-8d01-223fcc10da9d
This commit is contained in:
parent
a4f70b5835
commit
5c3d0e9952
@ -29,9 +29,10 @@ interface
|
||||
uses
|
||||
SysUtils, Windows, Messages, Classes, Graphics, Controls, Forms,
|
||||
Dialogs, DBTables, DB, IBDatabase, IBCustomDataSet, IBTable, IBSQLMonitor,
|
||||
IBSQL, IB, IBServices, cxGridDBCardView, cxGrid, cxGridCustomTableView,
|
||||
cxGridTableView, cxGridDBTableView, Variants, RdxEmpresaActiva,
|
||||
|
||||
IBSQL, IB, IBServices,
|
||||
cxGridDBCardView, cxGrid, cxGridCustomTableView,
|
||||
cxGridTableView, cxGridDBTableView,
|
||||
Variants, RdxEmpresaActiva,
|
||||
Entidades, Contadores, RdxGestorContadores;
|
||||
|
||||
Const
|
||||
|
||||
@ -27,7 +27,7 @@ interface
|
||||
|
||||
uses
|
||||
//Generales
|
||||
SysUtils, Classes, Controls, IBSQL, cxGridDBTableView, cxCustomData, DB,
|
||||
SysUtils, Classes, Controls, IBSQL, DB, cxGridDBTableView, cxCustomData,
|
||||
//Particulares
|
||||
IBCustomDataSet, Graphics, IBQuery,
|
||||
|
||||
|
||||
@ -159,6 +159,7 @@ type
|
||||
function DarTiposOpDesTrimestral(var ListaCodigos: TStrings): TStrings;
|
||||
function ComprobarTrimestreFactura(CodigoFactura: String): Boolean;
|
||||
function AsignarTrimestre(CodigoFactura: String; CodigoTrimestre: String): Boolean;
|
||||
function ModificarSituacionFacturas(Codigos: TStrings; Situacion: String): Boolean;
|
||||
end;
|
||||
|
||||
var
|
||||
@ -1202,6 +1203,47 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
function TdmTablaFacturasProveedor.ModificarSituacionFacturas(Codigos: TStrings; Situacion: String): Boolean;
|
||||
var
|
||||
oSQL : TIBSQL;
|
||||
Indice : Integer;
|
||||
Cadena : String;
|
||||
begin
|
||||
Result := False;
|
||||
if Codigos.Count = 0 then
|
||||
Exit;
|
||||
|
||||
//Formateamos los códigos para optimizar la sentencia SQL
|
||||
for Indice:=0 to Codigos.Count-1 do
|
||||
begin
|
||||
if (Indice <> 0) then
|
||||
Cadena := Cadena + ',';
|
||||
Cadena := Cadena + '''' + Codigos.Strings[Indice] + '''';
|
||||
end;
|
||||
|
||||
oSQL := TIBSQL.Create(Self);
|
||||
with oSQL do
|
||||
begin
|
||||
Database := dmBaseDatos.BD;
|
||||
Transaction := dmBaseDatos.Transaccion;
|
||||
SQL.Add('update FACTURASPROVEEDOR ');
|
||||
SQL.Add('set SITUACION = :SITUACION ');
|
||||
SQL.Add('where CODIGOEMPRESA = :CODIGOEMPRESA ');
|
||||
SQL.Add('and CODIGO IN (' + Cadena + ')');
|
||||
ParamByName('CODIGOEMPRESA').AsInteger := EmpresaActiva.Codigo;
|
||||
ParamByName('SITUACION').AsString := Situacion;
|
||||
try
|
||||
Prepare;
|
||||
ExecQuery;
|
||||
Result := True;
|
||||
finally
|
||||
Close;
|
||||
Transaction := NIL;
|
||||
Free;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
||||
{ TDatosFacturaProveedor }
|
||||
|
||||
procedure TDatosFacturaProveedor.AssignTo(Dest: TPersistent);
|
||||
|
||||
@ -84,13 +84,12 @@ object frCambiarSituacionFacturas: TfrCambiarSituacionFacturas
|
||||
object cbxSituacion: TcxComboBox
|
||||
Left = 96
|
||||
Top = 19
|
||||
Width = 169
|
||||
Height = 21
|
||||
ParentFont = False
|
||||
Properties.DropDownListStyle = lsFixedList
|
||||
Properties.ReadOnly = False
|
||||
Style.StyleController = dmConfiguracion.cxEstiloEditoresFondoClaro
|
||||
TabOrder = 0
|
||||
Width = 169
|
||||
end
|
||||
end
|
||||
object brDoble: TRdxBarraInferior
|
||||
|
||||
@ -29,7 +29,7 @@ uses
|
||||
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
||||
Dialogs, cxControls, cxContainer, cxEdit, cxTextEdit, cxMaskEdit,
|
||||
cxDropDownEdit, StdCtrls, RdxBotones, RdxBarras, ExtCtrls,
|
||||
RdxPaneles, TablaTrimestres;
|
||||
RdxPaneles, TablaTrimestres, cxGraphics, Entidades;
|
||||
|
||||
type
|
||||
TfrCambiarSituacionFacturas = class(TForm)
|
||||
@ -46,12 +46,14 @@ type
|
||||
procedure FormCreate(Sender: TObject);
|
||||
procedure FormDestroy(Sender: TObject);
|
||||
private
|
||||
FEntidad: TRdxEntidad;
|
||||
FCodigosFacturas : TStringList;
|
||||
FSituacion : String;
|
||||
procedure SetSituacion(Value : String);
|
||||
public
|
||||
property CodigosFacturas : TStringList read FCodigosFacturas write FCodigosFacturas;
|
||||
property Situacion : String read FSituacion write SetSituacion;
|
||||
property Entidad: TRdxEntidad read FEntidad Write FEntidad;
|
||||
end;
|
||||
|
||||
var
|
||||
@ -60,16 +62,22 @@ var
|
||||
implementation
|
||||
|
||||
uses
|
||||
Mensajes, Literales, BaseDatos, Configuracion, Entidades, RdxEmpresaActiva,
|
||||
TablaFacturasCliente, StrFunc;
|
||||
Mensajes, Literales, BaseDatos, Configuracion, RdxEmpresaActiva,
|
||||
TablaFacturasCliente, TablaFacturasProveedor, StrFunc, Math;
|
||||
|
||||
{$R *.dfm}
|
||||
|
||||
procedure TfrCambiarSituacionFacturas.bAceptarClick(Sender: TObject);
|
||||
var
|
||||
Indice :Integer;
|
||||
Resultado: Boolean;
|
||||
begin
|
||||
if not dmTablaFacturasCliente.ModificarSituacionFacturas(CodigosFacturas, cbxSituacion.Text) then
|
||||
if Entidad = entFacturaProveedor then
|
||||
Resultado := dmTablaFacturasProveedor.ModificarSituacionFacturas(CodigosFacturas, cbxSituacion.Text)
|
||||
else
|
||||
Resultado := dmTablaFacturasCliente.ModificarSituacionFacturas(CodigosFacturas, cbxSituacion.Text);
|
||||
|
||||
if not Resultado then
|
||||
begin
|
||||
dmBaseDatos.Rollback;
|
||||
exit;
|
||||
@ -81,6 +89,7 @@ end;
|
||||
procedure TfrCambiarSituacionFacturas.FormCreate(Sender: TObject);
|
||||
begin
|
||||
inherited;
|
||||
FEntidad := entFacturaCliente; //Por defecto tratara los documentos de facturas de cliente
|
||||
FCodigosFacturas := TStringList.Create;
|
||||
cbxSituacion.Properties.Items := dmTablaFacturasCliente.DarSituaciones;
|
||||
cbxSituacion.ItemIndex := 0;
|
||||
|
||||
@ -343,6 +343,7 @@ object frFacturasClientes: TfrFacturasClientes
|
||||
OptionsView.GridLines = glHorizontal
|
||||
OptionsView.GroupByBox = False
|
||||
OptionsView.HeaderEndEllipsis = True
|
||||
OptionsView.NewItemRowInfoText = 'Click here to add a new row'
|
||||
OptionsView.RowSeparatorColor = 14280169
|
||||
Styles.StyleSheet = dmConfiguracion.StyleSheetGrid
|
||||
end
|
||||
|
||||
@ -468,6 +468,7 @@ var
|
||||
|
||||
begin
|
||||
fCambiarSituacionFacturas := TfrCambiarSituacionFacturas.Create(Self);
|
||||
fCambiarSituacionFacturas.Entidad := entFacturaCliente;
|
||||
|
||||
//Rellenamos la propiedad de la unidad CambiarSituacion con los códigos seleccionados
|
||||
IndiceCol1 := gridFacturasDBTableView1.GetColumnByFieldName('CODIGO').Index;
|
||||
|
||||
41
Factuges.dof
41
Factuges.dof
@ -164,47 +164,6 @@ C:\Archivos de programa\Clever Components\Database Comparer\Delphi 7\Lib\Compare
|
||||
C:\Archivos de programa\Clever Components\Database Comparer\Delphi 7\Lib\ComparerAdoD7.bpl=Database Comparer VCL ADO
|
||||
C:\WINDOWS\system32\dclShX_Namespace_V3D7.bpl=(untitled)
|
||||
C:\WINDOWS\system32\vclShX_Namespace_v3D7.bpl=(untitled)
|
||||
[HistoryLists\hlDebugSourcePath]
|
||||
Count=2
|
||||
Item0=D:\Proyectos\Componentes\FastReport\Source\;D:\Proyectos\FactuGES 2000 v2 (Acana)\Codigo\Frames\;T:\Componentes\CETools\
|
||||
Item1=D:\Proyectos\Componentes\FastReport\Source\;D:\Proyectos\FactuGES 2000 v2 (Acana)\Codigo\Frames\
|
||||
[HistoryLists\hlConditionals]
|
||||
Count=2
|
||||
Item0=EUREKALOG;EUREKALOG_VER5
|
||||
Item1=EUREKALOG
|
||||
[HistoryLists\hlUnitAliases]
|
||||
Count=1
|
||||
Item0=WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;
|
||||
[HistoryLists\hlSearchPath]
|
||||
Count=8
|
||||
Item0=$(DELPHI)\Lib\Debug;.\Frames;C:\Archivos de programa\Developer Express Inc\ExpressScheduler\Sources;D:\Proyectos\Librerias;D:\Proyectos\Componentes\Colores
|
||||
Item1=$(DELPHI)\Lib\Debug;.\Frames;C:\Archivos de programa\Developer Express Inc\ExpressScheduler\Sources;D:\Proyectos\Librerias
|
||||
Item2=$(DELPHI)\Lib\Debug;.\Frames;C:\Archivos de programa\Developer Express Inc\ExpressScheduler\Sources
|
||||
Item3=$(DELPHI)\Lib\Debug;.\Frames
|
||||
Item4=.\Frames
|
||||
Item5=D:\Proyectos\FactuGES 2000 v2 (Acana)\Codigo\Frames;D:\Rodax Software\Proyectos\Componentes\Rodax\Sources
|
||||
Item6=D:\Proyectos\FactuGES 2000 v2 (Acana)\Codigo\Frames;D:\Proyectos\Componentes\Rodax\Sources
|
||||
Item7=D:\Proyectos\FactuGES 2000 v2 (Acana)\Codigo\Frames
|
||||
[HistoryLists\hlUnitOutputDirectory]
|
||||
Count=3
|
||||
Item0=.\Temp
|
||||
Item1=D:\Proyectos\FactuGES 2000 v2 (Acana)\Codigo\Temp
|
||||
Item2=D:\Rodax Software\Proyectos\FactuGES 2000 v2 (Acana)\Codigo\Temp
|
||||
[HistoryLists\hlOutputDirectorry]
|
||||
Count=3
|
||||
Item0=.\Temp
|
||||
Item1=D:\Proyectos\FactuGES 2000 v2 (Acana)\Codigo\Temp
|
||||
Item2=D:\Rodax Software\Proyectos\FactuGES 2000 v2 (Acana)\Codigo\Temp
|
||||
[HistoryLists\hlBPLOutput]
|
||||
Count=3
|
||||
Item0=.\Temp
|
||||
Item1=D:\Proyectos\FactuGES 2000 v2 (Acana)\Codigo\Temp
|
||||
Item2=D:\Rodax Software\Proyectos\FactuGES 2000 v2 (Acana)\Codigo\Temp
|
||||
[HistoryLists\hlDCPOutput]
|
||||
Count=3
|
||||
Item0=.\Temp
|
||||
Item1=D:\Proyectos\FactuGES 2000 v2 (Acana)\Codigo\Temp
|
||||
Item2=D:\Rodax Software\Proyectos\FactuGES 2000 v2 (Acana)\Codigo\Temp
|
||||
[Exception Log]
|
||||
EurekaLog Version=519
|
||||
Activate=0
|
||||
|
||||
1202
Factuges.drc
1202
Factuges.drc
File diff suppressed because it is too large
Load Diff
@ -8,209 +8,211 @@
|
||||
resources were bound to the produced executable.
|
||||
*/
|
||||
|
||||
#define Literales_msgVisBorrarVisitas 65280
|
||||
#define Literales_msgTriCodigoErroneo 65281
|
||||
#define Literales_msgTriCerrado 65282
|
||||
#define Literales_msgTriFacTriCer 65283
|
||||
#define Literales_msgTriPredeterminadoErr 65284
|
||||
#define Literales_msgTriPredeterminadoOk 65285
|
||||
#define Literales_msgTriCerrarPredeterminado 65286
|
||||
#define Literales_msgOpcTablaContBloqueada 65287
|
||||
#define Literales_msgOpcContadoresInc 65288
|
||||
#define Literales_msgInfTri0 65289
|
||||
#define Literales_msgInfTri1 65290
|
||||
#define Literales_msgCliListBene1 65296
|
||||
#define Literales_msgCliListBeneNoFac 65297
|
||||
#define Literales_msgCliListBeneCon1 65298
|
||||
#define Literales_msgCliListBeneCon2 65299
|
||||
#define Literales_msgCliListBeneCon3 65300
|
||||
#define Literales_msgCliListBeneCon4 65301
|
||||
#define Literales_msgCliListBeneCon5 65302
|
||||
#define Literales_msgCliListBeneNoCon 65303
|
||||
#define Literales_msgCliBorrarPropiedades 65304
|
||||
#define Literales_msgLibNoExisteEnt 65305
|
||||
#define Literales_msgLibEntBloqueada 65306
|
||||
#define Literales_msgLibNumEntRepetida 65307
|
||||
#define Literales_msgLibNumEntIncorrecta 65308
|
||||
#define Literales_msgLibFaltaDescEnt 65309
|
||||
#define Literales_msgLibCierre 65310
|
||||
#define Literales_msgVisBorrarVisita 65311
|
||||
#define Literales_msgCliCodPagNoExiste 65312
|
||||
#define Literales_msgCliBorrarPago 65313
|
||||
#define Literales_msgCliFaltaCliPag 65314
|
||||
#define Literales_msgCliFaltaDescPag 65315
|
||||
#define Literales_msgCliErrorOp 65316
|
||||
#define Literales_msgCliSep1 65317
|
||||
#define Literales_msgCliSep2 65318
|
||||
#define Literales_msgCliSep3 65319
|
||||
#define Literales_msgCliSep4 65320
|
||||
#define Literales_msgCliSep5 65321
|
||||
#define Literales_msgCliSep6 65322
|
||||
#define Literales_msgCliSep7 65323
|
||||
#define Literales_msgCliSep8 65324
|
||||
#define Literales_msgCliSep9 65325
|
||||
#define Literales_msgCliIniMayor 65326
|
||||
#define Literales_msgCliNoHayCli 65327
|
||||
#define Literales_msgCliCodArtNoExiste 65328
|
||||
#define Literales_msgCliCodArtIncorrecto 65329
|
||||
#define Literales_msgCliFaltaFechaAlta 65330
|
||||
#define Literales_msgCliFaltaArticulos 65331
|
||||
#define Literales_msgCliFaltaFechaVto 65332
|
||||
#define Literales_msgCliFechaVtoMenorFechaAlta 65333
|
||||
#define Literales_msgCliNoExisteFac 65334
|
||||
#define Literales_msgCliFacBloqueado 65335
|
||||
#define Literales_msgCliCodFacProRepetido 65336
|
||||
#define Literales_msgCliCodFacProIncorrecto 65337
|
||||
#define Literales_msgCliNoExisteFacPro 65338
|
||||
#define Literales_msgCliFacProBloqueado 65339
|
||||
#define Literales_msgCliCodPagRepetido 65340
|
||||
#define Literales_msgCliCodPagIncorrecto 65341
|
||||
#define Literales_msgCliNoExistePag 65342
|
||||
#define Literales_msgCliPagBloqueado 65343
|
||||
#define Literales_msgObrErrAnadir 65344
|
||||
#define Literales_msgObrNoExisteObr 65345
|
||||
#define Literales_msgObrObrBloqueado 65346
|
||||
#define Literales_msgObrInsRepetido 65347
|
||||
#define Literales_msgObrPedDesObl 65348
|
||||
#define Literales_msgObrPedSelec 65349
|
||||
#define Literales_msgObrPrePedBorrar 65350
|
||||
#define Literales_msgObrInsConOtrasTareas1 65351
|
||||
#define Literales_msgObrInsConOtrasTareas2 65352
|
||||
#define Literales_msgObrElijaContrago 65353
|
||||
#define Literales_msgObrEliminarDetalles 65354
|
||||
#define Literales_msgObrEliminarTodosDetalles 65355
|
||||
#define Literales_msgCliCodFacRepetido 65356
|
||||
#define Literales_msgCliCodFacIncorrecto 65357
|
||||
#define Literales_msgCliSinProvincia 65358
|
||||
#define Literales_msgCliFaltaNombreCliFac 65359
|
||||
#define Literales_msgCliCodConIncorrecto 65360
|
||||
#define Literales_msgCliFaltaNombreCliCon 65361
|
||||
#define Literales_msgCliFaltaFechaAltaCon 65362
|
||||
#define Literales_msgCliFaltaArticulosCon 65363
|
||||
#define Literales_msgCliNoExisteCon 65364
|
||||
#define Literales_msgCliConBloqueado 65365
|
||||
#define Literales_msgCliCrearContrato 65366
|
||||
#define Literales_msgCliCodConNoExiste 65367
|
||||
#define Literales_litObrObra 65368
|
||||
#define Literales_litObrPedidos 65369
|
||||
#define Literales_litObrOtros 65370
|
||||
#define Literales_litObrEntregas 65371
|
||||
#define Literales_litObrMontajes 65372
|
||||
#define Literales_litObrRemates 65373
|
||||
#define Literales_msgObrFaltaObr 65374
|
||||
#define Literales_msgObrAnadida 65375
|
||||
#define Literales_msgCliNoExistePre 65376
|
||||
#define Literales_msgCliNoExistePreOrigen 65377
|
||||
#define Literales_msgCliPreBloqueado 65378
|
||||
#define Literales_msgCliPreYaAceptado 65379
|
||||
#define Literales_msgCliPreYaRechazado 65380
|
||||
#define Literales_msgCliCambiarAAceptar 65381
|
||||
#define Literales_msgCliCambiarARechazar 65382
|
||||
#define Literales_msgCliPreConContrato 65383
|
||||
#define Literales_msgCliPreYaFacturado 65384
|
||||
#define Literales_msgCliPreNoModificar 65385
|
||||
#define Literales_msgCliPreNoEliminar 65386
|
||||
#define Literales_msgCliCambiarTipoPre 65387
|
||||
#define Literales_msgCliNoExisteTipoPre 65388
|
||||
#define Literales_msgCliPreErrAnadirDoc 65389
|
||||
#define Literales_msgCliPreErrEliminarDoc 65390
|
||||
#define Literales_msgCliCodConRepetido 65391
|
||||
#define Literales_msgCliBorrarSucursales 65392
|
||||
#define Literales_msgCliCodCliNoExiste 65393
|
||||
#define Literales_msgCliFaltaCodCli 65394
|
||||
#define Literales_msgCliCliNoElim 65395
|
||||
#define Literales_msgCliCliNoFacPag 65396
|
||||
#define Literales_msgCliNoExisteCodigo 65397
|
||||
#define Literales_msgCliCodigoIniMenor 65398
|
||||
#define Literales_msgCliCodigoIncorrecto 65399
|
||||
#define Literales_msgCliFaltanCodigos 65400
|
||||
#define Literales_msgCliCodPreRepetido 65401
|
||||
#define Literales_msgCliCodPreIncorrecto 65402
|
||||
#define Literales_msgCliFaltaNombreCliPre 65403
|
||||
#define Literales_msgCliFaltaFechaAltaPre 65404
|
||||
#define Literales_msgCliFaltaFechaDecisionPre 65405
|
||||
#define Literales_msgCliSobraFechaDecisionPre 65406
|
||||
#define Literales_msgCliFaltaArticulosPre 65407
|
||||
#define Literales_msgProvPagBloqueado 65408
|
||||
#define Literales_msgProvCodPagNoExiste 65409
|
||||
#define Literales_msgProvBorrarPago 65410
|
||||
#define Literales_msgProvFaltaProPag 65411
|
||||
#define Literales_msgProvFaltaDescPag 65412
|
||||
#define Literales_msgProvIniMayor 65413
|
||||
#define Literales_msgProvNoHayProv 65414
|
||||
#define Literales_msgCodPedNoExiste 65415
|
||||
#define Literales_msgCodPedIncorrecto 65416
|
||||
#define Literales_msgCliCodCliRepetido 65417
|
||||
#define Literales_msgCliCodCliIncorrecto 65418
|
||||
#define Literales_msgCliFaltaNombreCli 65419
|
||||
#define Literales_msgCliFaltaCli 65420
|
||||
#define Literales_msgCliNoExisteCli 65421
|
||||
#define Literales_msgCliCliBloqueado 65422
|
||||
#define Literales_msgCliBorrarSucursal 65423
|
||||
#define Literales_msgProvPrecioNoValido 65424
|
||||
#define Literales_msgProvDtoNoValido 65425
|
||||
#define Literales_msgProvBorrarFacPed 65426
|
||||
#define Literales_msgProvPedidoNoFacturar 65427
|
||||
#define Literales_msgProvPedYaFacturado 65428
|
||||
#define Literales_msgProvNoExisteFacProv 65429
|
||||
#define Literales_msgProvFacProvBloqueada 65430
|
||||
#define Literales_msgPedidoNoProveedor 65431
|
||||
#define Literales_msgSitPedIncorrecta 65432
|
||||
#define Literales_msgErrorFacturarPed 65433
|
||||
#define Literales_msgCodPedRepetido 65434
|
||||
#define Literales_msgPedDistintoProv 65435
|
||||
#define Literales_msgProvContratoRepetido 65436
|
||||
#define Literales_msgProvCodPagRepetido 65437
|
||||
#define Literales_msgProvCodPagIncorrecto 65438
|
||||
#define Literales_msgProvNoExistePag 65439
|
||||
#define Literales_msgProvBorrarRepresentantes 65440
|
||||
#define Literales_msgProvFaltaCodProv 65441
|
||||
#define Literales_msgProvProvNoElim 65442
|
||||
#define Literales_msgProvCodFacRepetido 65443
|
||||
#define Literales_msgProvCodFacIncorrecto 65444
|
||||
#define Literales_msgProvFaltaNombreProvFac 65445
|
||||
#define Literales_msgProvFaltaFechaAltaFac 65446
|
||||
#define Literales_msgProvFaltaFechaVtoFac 65447
|
||||
#define Literales_msgProvFechaVtoAnteriorFac 65448
|
||||
#define Literales_msgProvFaltanDetallesFac 65449
|
||||
#define Literales_msgProvFaltaFormaPagoFac 65450
|
||||
#define Literales_msgProvFaltaTipoFac 65451
|
||||
#define Literales_msgTipFacturas0 65452
|
||||
#define Literales_msgTipFacturas1 65453
|
||||
#define Literales_msgTipFacturas2 65454
|
||||
#define Literales_msgProvCantidadNoValida 65455
|
||||
#define Literales_msgDatosTablaPropBloqueada 65456
|
||||
#define Literales_msgDatosPropiedadRepetida 65457
|
||||
#define Literales_msgDatosPropiedadUsada 65458
|
||||
#define Literales_msgDatosCopiaInvalida 65459
|
||||
#define Literales_msgDatosCopiaVacia 65460
|
||||
#define Literales_msgDatosFaltaDescripcionFpago 65461
|
||||
#define Literales_msgDatosTablaFpagoBloqueada 65462
|
||||
#define Literales_msgDatosFormaPagoRepetida 65463
|
||||
#define Literales_msgProvCodProvRepetido 65464
|
||||
#define Literales_msgProvCodProvIncorrecto 65465
|
||||
#define Literales_msgProvFaltaNombreProv 65466
|
||||
#define Literales_msgProvNoExisteProv 65467
|
||||
#define Literales_msgProvProvBloqueado 65468
|
||||
#define Literales_msgProvCodProvNoExiste 65469
|
||||
#define Literales_msgProvFaltaProv 65470
|
||||
#define Literales_msgProvBorrarRepresentante 65471
|
||||
#define Literales_msgDatosFaltaNombreVend 65472
|
||||
#define Literales_msgDatosNoExisteVend 65473
|
||||
#define Literales_msgDatosVendBloqueado 65474
|
||||
#define Literales_msgDatosCodVendNoExiste 65475
|
||||
#define Literales_msgDatosCodInstRepetido 65476
|
||||
#define Literales_msgDatosCodInstIncorrecto 65477
|
||||
#define Literales_msgDatosFaltaNombreInst 65478
|
||||
#define Literales_msgDatosNoExisteInst 65479
|
||||
#define Literales_msgDatosInstBloqueado 65480
|
||||
#define Literales_msgDatosCodInstNoExiste 65481
|
||||
#define Literales_msgDatosNoExisteFamilia 65482
|
||||
#define Literales_msgDatosFaltaDescripcionFam 65483
|
||||
#define Literales_msgDatosTablaFamBloqueada 65484
|
||||
#define Literales_msgDatosFamiliaRepetida 65485
|
||||
#define Literales_msgDatosFamiliaModelo 65486
|
||||
#define Literales_msgDatosFaltaDescripcionProp 65487
|
||||
#define Literales_msgLibCierre 65280
|
||||
#define Literales_msgVisBorrarVisita 65281
|
||||
#define Literales_msgVisBorrarVisitas 65282
|
||||
#define Literales_msgTriCodigoErroneo 65283
|
||||
#define Literales_msgTriCerrado 65284
|
||||
#define Literales_msgTriFacTriCer 65285
|
||||
#define Literales_msgTriPredeterminadoErr 65286
|
||||
#define Literales_msgTriPredeterminadoOk 65287
|
||||
#define Literales_msgTriCerrarPredeterminado 65288
|
||||
#define Literales_msgOpcTablaContBloqueada 65289
|
||||
#define Literales_msgOpcContadoresInc 65290
|
||||
#define Literales_msgInfTri0 65291
|
||||
#define Literales_msgInfTri1 65292
|
||||
#define Literales_msgCliIniMayor 65296
|
||||
#define Literales_msgCliNoHayCli 65297
|
||||
#define Literales_msgCliListBene1 65298
|
||||
#define Literales_msgCliListBeneNoFac 65299
|
||||
#define Literales_msgCliListBeneCon1 65300
|
||||
#define Literales_msgCliListBeneCon2 65301
|
||||
#define Literales_msgCliListBeneCon3 65302
|
||||
#define Literales_msgCliListBeneCon4 65303
|
||||
#define Literales_msgCliListBeneCon5 65304
|
||||
#define Literales_msgCliListBeneNoCon 65305
|
||||
#define Literales_msgCliBorrarPropiedades 65306
|
||||
#define Literales_msgLibNoExisteEnt 65307
|
||||
#define Literales_msgLibEntBloqueada 65308
|
||||
#define Literales_msgLibNumEntRepetida 65309
|
||||
#define Literales_msgLibNumEntIncorrecta 65310
|
||||
#define Literales_msgLibFaltaDescEnt 65311
|
||||
#define Literales_msgCliNoExistePag 65312
|
||||
#define Literales_msgCliPagBloqueado 65313
|
||||
#define Literales_msgCliCodPagNoExiste 65314
|
||||
#define Literales_msgCliBorrarPago 65315
|
||||
#define Literales_msgCliFaltaCliPag 65316
|
||||
#define Literales_msgCliFaltaDescPag 65317
|
||||
#define Literales_msgCliErrorOp 65318
|
||||
#define Literales_msgCliSep1 65319
|
||||
#define Literales_msgCliSep2 65320
|
||||
#define Literales_msgCliSep3 65321
|
||||
#define Literales_msgCliSep4 65322
|
||||
#define Literales_msgCliSep5 65323
|
||||
#define Literales_msgCliSep6 65324
|
||||
#define Literales_msgCliSep7 65325
|
||||
#define Literales_msgCliSep8 65326
|
||||
#define Literales_msgCliSep9 65327
|
||||
#define Literales_msgCliSinProvincia 65328
|
||||
#define Literales_msgCliFaltaNombreCliFac 65329
|
||||
#define Literales_msgCliCodArtNoExiste 65330
|
||||
#define Literales_msgCliCodArtIncorrecto 65331
|
||||
#define Literales_msgCliFaltaFechaAlta 65332
|
||||
#define Literales_msgCliFaltaArticulos 65333
|
||||
#define Literales_msgCliFaltaFechaVto 65334
|
||||
#define Literales_msgCliFechaVtoMenorFechaAlta 65335
|
||||
#define Literales_msgCliNoExisteFac 65336
|
||||
#define Literales_msgCliFacBloqueado 65337
|
||||
#define Literales_msgCliCodFacProRepetido 65338
|
||||
#define Literales_msgCliCodFacProIncorrecto 65339
|
||||
#define Literales_msgCliNoExisteFacPro 65340
|
||||
#define Literales_msgCliFacProBloqueado 65341
|
||||
#define Literales_msgCliCodPagRepetido 65342
|
||||
#define Literales_msgCliCodPagIncorrecto 65343
|
||||
#define Literales_msgObrFaltaObr 65344
|
||||
#define Literales_msgObrAnadida 65345
|
||||
#define Literales_msgObrErrAnadir 65346
|
||||
#define Literales_msgObrNoExisteObr 65347
|
||||
#define Literales_msgObrObrBloqueado 65348
|
||||
#define Literales_msgObrInsRepetido 65349
|
||||
#define Literales_msgObrPedDesObl 65350
|
||||
#define Literales_msgObrPedSelec 65351
|
||||
#define Literales_msgObrPrePedBorrar 65352
|
||||
#define Literales_msgObrInsConOtrasTareas1 65353
|
||||
#define Literales_msgObrInsConOtrasTareas2 65354
|
||||
#define Literales_msgObrElijaContrago 65355
|
||||
#define Literales_msgObrEliminarDetalles 65356
|
||||
#define Literales_msgObrEliminarTodosDetalles 65357
|
||||
#define Literales_msgCliCodFacRepetido 65358
|
||||
#define Literales_msgCliCodFacIncorrecto 65359
|
||||
#define Literales_msgCliPreErrEliminarDoc 65360
|
||||
#define Literales_msgCliCodConRepetido 65361
|
||||
#define Literales_msgCliCodConIncorrecto 65362
|
||||
#define Literales_msgCliFaltaNombreCliCon 65363
|
||||
#define Literales_msgCliFaltaFechaAltaCon 65364
|
||||
#define Literales_msgCliFaltaArticulosCon 65365
|
||||
#define Literales_msgCliNoExisteCon 65366
|
||||
#define Literales_msgCliConBloqueado 65367
|
||||
#define Literales_msgCliCrearContrato 65368
|
||||
#define Literales_msgCliCodConNoExiste 65369
|
||||
#define Literales_litObrObra 65370
|
||||
#define Literales_litObrPedidos 65371
|
||||
#define Literales_litObrOtros 65372
|
||||
#define Literales_litObrEntregas 65373
|
||||
#define Literales_litObrMontajes 65374
|
||||
#define Literales_litObrRemates 65375
|
||||
#define Literales_msgCliSobraFechaDecisionPre 65376
|
||||
#define Literales_msgCliFaltaArticulosPre 65377
|
||||
#define Literales_msgCliNoExistePre 65378
|
||||
#define Literales_msgCliNoExistePreOrigen 65379
|
||||
#define Literales_msgCliPreBloqueado 65380
|
||||
#define Literales_msgCliPreYaAceptado 65381
|
||||
#define Literales_msgCliPreYaRechazado 65382
|
||||
#define Literales_msgCliCambiarAAceptar 65383
|
||||
#define Literales_msgCliCambiarARechazar 65384
|
||||
#define Literales_msgCliPreConContrato 65385
|
||||
#define Literales_msgCliPreYaFacturado 65386
|
||||
#define Literales_msgCliPreNoModificar 65387
|
||||
#define Literales_msgCliPreNoEliminar 65388
|
||||
#define Literales_msgCliCambiarTipoPre 65389
|
||||
#define Literales_msgCliNoExisteTipoPre 65390
|
||||
#define Literales_msgCliPreErrAnadirDoc 65391
|
||||
#define Literales_msgCliCliBloqueado 65392
|
||||
#define Literales_msgCliBorrarSucursal 65393
|
||||
#define Literales_msgCliBorrarSucursales 65394
|
||||
#define Literales_msgCliCodCliNoExiste 65395
|
||||
#define Literales_msgCliFaltaCodCli 65396
|
||||
#define Literales_msgCliCliNoElim 65397
|
||||
#define Literales_msgCliCliNoFacPag 65398
|
||||
#define Literales_msgCliNoExisteCodigo 65399
|
||||
#define Literales_msgCliCodigoIniMenor 65400
|
||||
#define Literales_msgCliCodigoIncorrecto 65401
|
||||
#define Literales_msgCliFaltanCodigos 65402
|
||||
#define Literales_msgCliCodPreRepetido 65403
|
||||
#define Literales_msgCliCodPreIncorrecto 65404
|
||||
#define Literales_msgCliFaltaNombreCliPre 65405
|
||||
#define Literales_msgCliFaltaFechaAltaPre 65406
|
||||
#define Literales_msgCliFaltaFechaDecisionPre 65407
|
||||
#define Literales_msgProvCodPagIncorrecto 65408
|
||||
#define Literales_msgProvNoExistePag 65409
|
||||
#define Literales_msgProvPagBloqueado 65410
|
||||
#define Literales_msgProvCodPagNoExiste 65411
|
||||
#define Literales_msgProvBorrarPago 65412
|
||||
#define Literales_msgProvFaltaProPag 65413
|
||||
#define Literales_msgProvFaltaDescPag 65414
|
||||
#define Literales_msgProvIniMayor 65415
|
||||
#define Literales_msgProvNoHayProv 65416
|
||||
#define Literales_msgCodPedNoExiste 65417
|
||||
#define Literales_msgCodPedIncorrecto 65418
|
||||
#define Literales_msgCliCodCliRepetido 65419
|
||||
#define Literales_msgCliCodCliIncorrecto 65420
|
||||
#define Literales_msgCliFaltaNombreCli 65421
|
||||
#define Literales_msgCliFaltaCli 65422
|
||||
#define Literales_msgCliNoExisteCli 65423
|
||||
#define Literales_msgTipFacturas2 65424
|
||||
#define Literales_msgProvCantidadNoValida 65425
|
||||
#define Literales_msgProvPrecioNoValido 65426
|
||||
#define Literales_msgProvDtoNoValido 65427
|
||||
#define Literales_msgProvBorrarFacPed 65428
|
||||
#define Literales_msgProvPedidoNoFacturar 65429
|
||||
#define Literales_msgProvPedYaFacturado 65430
|
||||
#define Literales_msgProvNoExisteFacProv 65431
|
||||
#define Literales_msgProvFacProvBloqueada 65432
|
||||
#define Literales_msgPedidoNoProveedor 65433
|
||||
#define Literales_msgSitPedIncorrecta 65434
|
||||
#define Literales_msgErrorFacturarPed 65435
|
||||
#define Literales_msgCodPedRepetido 65436
|
||||
#define Literales_msgPedDistintoProv 65437
|
||||
#define Literales_msgProvContratoRepetido 65438
|
||||
#define Literales_msgProvCodPagRepetido 65439
|
||||
#define Literales_msgProvFaltaProv 65440
|
||||
#define Literales_msgProvBorrarRepresentante 65441
|
||||
#define Literales_msgProvBorrarRepresentantes 65442
|
||||
#define Literales_msgProvFaltaCodProv 65443
|
||||
#define Literales_msgProvProvNoElim 65444
|
||||
#define Literales_msgProvCodFacRepetido 65445
|
||||
#define Literales_msgProvCodFacIncorrecto 65446
|
||||
#define Literales_msgProvFaltaNombreProvFac 65447
|
||||
#define Literales_msgProvFaltaFechaAltaFac 65448
|
||||
#define Literales_msgProvFaltaFechaVtoFac 65449
|
||||
#define Literales_msgProvFechaVtoAnteriorFac 65450
|
||||
#define Literales_msgProvFaltanDetallesFac 65451
|
||||
#define Literales_msgProvFaltaFormaPagoFac 65452
|
||||
#define Literales_msgProvFaltaTipoFac 65453
|
||||
#define Literales_msgTipFacturas0 65454
|
||||
#define Literales_msgTipFacturas1 65455
|
||||
#define Literales_msgDatosFamiliaModelo 65456
|
||||
#define Literales_msgDatosFaltaDescripcionProp 65457
|
||||
#define Literales_msgDatosTablaPropBloqueada 65458
|
||||
#define Literales_msgDatosPropiedadRepetida 65459
|
||||
#define Literales_msgDatosPropiedadUsada 65460
|
||||
#define Literales_msgDatosCopiaInvalida 65461
|
||||
#define Literales_msgDatosCopiaVacia 65462
|
||||
#define Literales_msgDatosFaltaDescripcionFpago 65463
|
||||
#define Literales_msgDatosTablaFpagoBloqueada 65464
|
||||
#define Literales_msgDatosFormaPagoRepetida 65465
|
||||
#define Literales_msgProvCodProvRepetido 65466
|
||||
#define Literales_msgProvCodProvIncorrecto 65467
|
||||
#define Literales_msgProvFaltaNombreProv 65468
|
||||
#define Literales_msgProvNoExisteProv 65469
|
||||
#define Literales_msgProvProvBloqueado 65470
|
||||
#define Literales_msgProvCodProvNoExiste 65471
|
||||
#define Literales_msgDatosCodVendRepetido 65472
|
||||
#define Literales_msgDatosCodVendIncorrecto 65473
|
||||
#define Literales_msgDatosFaltaNombreVend 65474
|
||||
#define Literales_msgDatosNoExisteVend 65475
|
||||
#define Literales_msgDatosVendBloqueado 65476
|
||||
#define Literales_msgDatosCodVendNoExiste 65477
|
||||
#define Literales_msgDatosCodInstRepetido 65478
|
||||
#define Literales_msgDatosCodInstIncorrecto 65479
|
||||
#define Literales_msgDatosFaltaNombreInst 65480
|
||||
#define Literales_msgDatosNoExisteInst 65481
|
||||
#define Literales_msgDatosInstBloqueado 65482
|
||||
#define Literales_msgDatosCodInstNoExiste 65483
|
||||
#define Literales_msgDatosNoExisteFamilia 65484
|
||||
#define Literales_msgDatosFaltaDescripcionFam 65485
|
||||
#define Literales_msgDatosTablaFamBloqueada 65486
|
||||
#define Literales_msgDatosFamiliaRepetida 65487
|
||||
#define Literales_msgEmpFaltaAlgo 65488
|
||||
#define Literales_msgEmpNombreComercial 65489
|
||||
#define Literales_msgDatosCodArtRepetido 65490
|
||||
@ -220,13 +222,13 @@
|
||||
#define Literales_msgDatosNoExisteArt 65494
|
||||
#define Literales_msgDatosArtBloqueado 65495
|
||||
#define Literales_msgDatosCodArtNoExiste 65496
|
||||
#define Literales_msgDatosBorrarPropiedad 65497
|
||||
#define Literales_msgDatosBorrarPropiedades 65498
|
||||
#define Literales_msgDatosFaltaFamilia 65499
|
||||
#define Literales_msgDatosPropRepetida 65500
|
||||
#define Literales_msgDatosCargaPropFamilia 65501
|
||||
#define Literales_msgDatosCodVendRepetido 65502
|
||||
#define Literales_msgDatosCodVendIncorrecto 65503
|
||||
#define Literales_msgDatosRefArtNoExiste 65497
|
||||
#define Literales_msgDatosBorrarPropiedad 65498
|
||||
#define Literales_msgDatosBorrarPropiedades 65499
|
||||
#define Literales_msgDatosFaltaFamilia 65500
|
||||
#define Literales_msgDatosPropRepetida 65501
|
||||
#define Literales_msgDatosCargaPropFamilia 65502
|
||||
#define Literales_msgArtNoHayArt 65503
|
||||
#define Literales_msgUsuarioInc 65504
|
||||
#define Literales_msgDeseaSalir 65505
|
||||
#define Literales_msgSinProvincia 65506
|
||||
@ -261,6 +263,8 @@
|
||||
#define Literales_msgFaltaConfig 65535
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
Literales_msgLibCierre, "CIERRE DE CAJA"
|
||||
Literales_msgVisBorrarVisita, "¿Desea borrar la visita de las %s?"
|
||||
Literales_msgVisBorrarVisitas, "¿Desea borrar todas las visitas del dia %s?"
|
||||
Literales_msgTriCodigoErroneo, "Debe seleccionar un trimestre."
|
||||
Literales_msgTriCerrado, "No puede asignar ninguna factura a un trimestre cerrado."
|
||||
@ -272,6 +276,8 @@ BEGIN
|
||||
Literales_msgOpcContadoresInc, "Todos los contadores deben de ser números enteros."
|
||||
Literales_msgInfTri0, "No ha sido asignada la lista de tipos de operación al informe"
|
||||
Literales_msgInfTri1, "Existen más tipos de operacion que los iniciales 14!"
|
||||
Literales_msgCliIniMayor, "El nombre del cliente inicial debe ser alfabéticamente anterior al nombre del cliente final."
|
||||
Literales_msgCliNoHayCli, "No existen clientes dados de alta"
|
||||
Literales_msgCliListBene1, "El informe es anual por lo tanto la fecha de inicio y la final deben corresponder al mismo año"
|
||||
Literales_msgCliListBeneNoFac, "No existen facturas de cliente"
|
||||
Literales_msgCliListBeneCon1, "Total facturación proveedores: "
|
||||
@ -286,8 +292,8 @@ BEGIN
|
||||
Literales_msgLibNumEntRepetida, "Ya existe la entrada %s. Cambie el número de entrada por otra que no exista."
|
||||
Literales_msgLibNumEntIncorrecta, "%s no es un número de entrada correcta para un libro. Cambie el número de entrada por otra e inténtelo de nuevo."
|
||||
Literales_msgLibFaltaDescEnt, "Es obligatorio introducir descripción de entrada."
|
||||
Literales_msgLibCierre, "CIERRE DE CAJA"
|
||||
Literales_msgVisBorrarVisita, "¿Desea borrar la visita de las %s?"
|
||||
Literales_msgCliNoExistePag, "El pago de cliente %s no existe."
|
||||
Literales_msgCliPagBloqueado, "El pago de cliente %s está siendo modificado por otro usuario."
|
||||
Literales_msgCliCodPagNoExiste, "No existe el artículo %s. Introduzca un codigo de artículo que sí exista."
|
||||
Literales_msgCliBorrarPago, "¿Desea borrar este pago de cliente?"
|
||||
Literales_msgCliFaltaCliPag, "Es obligatorio introducir el cliente que realiza el pago."
|
||||
@ -302,8 +308,8 @@ BEGIN
|
||||
Literales_msgCliSep7, " al eliminar "
|
||||
Literales_msgCliSep8, " "
|
||||
Literales_msgCliSep9, " de proveedor: "
|
||||
Literales_msgCliIniMayor, "El nombre del cliente inicial debe ser alfabéticamente anterior al nombre del cliente final."
|
||||
Literales_msgCliNoHayCli, "No existen clientes dados de alta"
|
||||
Literales_msgCliSinProvincia, "Antes de poder elegir una población debe indicar a qué provincia pertenece."
|
||||
Literales_msgCliFaltaNombreCliFac, "Es obligatorio introducir los datos del cliente al que pertenece esta factura."
|
||||
Literales_msgCliCodArtNoExiste, "No existe el artículo %s. Introduzca un codigo de artículo que sí exista."
|
||||
Literales_msgCliCodArtIncorrecto, "%s no es un código de artículo correcto. Cambie el codigo del artículo por otro e inténtelo de nuevo."
|
||||
Literales_msgCliFaltaFechaAlta, "Debe indicar la fecha de alta de la factura."
|
||||
@ -318,8 +324,8 @@ BEGIN
|
||||
Literales_msgCliFacProBloqueado, "La factura proforma %s está siendo modificada por otro usuario."
|
||||
Literales_msgCliCodPagRepetido, "Ya existe el pago de cliente %s. Cambie el código del pago por otro que no exista."
|
||||
Literales_msgCliCodPagIncorrecto, "%s no es un código correcto para un artículo. Cambie el codigo del artículo por otro e inténtelo de nuevo."
|
||||
Literales_msgCliNoExistePag, "El pago de cliente %s no existe."
|
||||
Literales_msgCliPagBloqueado, "El pago de cliente %s está siendo modificado por otro usuario."
|
||||
Literales_msgObrFaltaObr, "Es obligatorio introducir una obra."
|
||||
Literales_msgObrAnadida, "Se ha abierto la obra asociada al contrato %s."
|
||||
Literales_msgObrErrAnadir, "El contrato %s, ya tiene una obra abierta"
|
||||
Literales_msgObrNoExisteObr, "La obra %s no existe."
|
||||
Literales_msgObrObrBloqueado, "La obra %s está siendo modificado por otro usuario."
|
||||
@ -334,8 +340,8 @@ BEGIN
|
||||
Literales_msgObrEliminarTodosDetalles, "¿Desea eliminar todo?"
|
||||
Literales_msgCliCodFacRepetido, "Ya existe una factura de cliente con el código %s. Se ha reemplazado por el código %s para que pueda dar de alta la factura."
|
||||
Literales_msgCliCodFacIncorrecto, "%s no es un código correcto para una factura de cliente. Cambie el codigo de la factura por otro e inténtelo de nuevo."
|
||||
Literales_msgCliSinProvincia, "Antes de poder elegir una población debe indicar a qué provincia pertenece."
|
||||
Literales_msgCliFaltaNombreCliFac, "Es obligatorio introducir los datos del cliente al que pertenece esta factura."
|
||||
Literales_msgCliPreErrEliminarDoc, "No se ha podido eliminar el documento seleccionado"
|
||||
Literales_msgCliCodConRepetido, "Ya existe un contrato con el código %s. Se ha reemplazado por el código %s para que pueda dar de alta el contrato."
|
||||
Literales_msgCliCodConIncorrecto, "%s no es un código correcto para un contrato de cliente. Cambie el codigo del contrato por otro e inténtelo de nuevo."
|
||||
Literales_msgCliFaltaNombreCliCon, "Es obligatorio introducir los datos del cliente al que pertenece este Contrato."
|
||||
Literales_msgCliFaltaFechaAltaCon, "Debe indicar la fecha de alta del contrato."
|
||||
@ -350,8 +356,8 @@ BEGIN
|
||||
Literales_litObrEntregas, "Entregas "
|
||||
Literales_litObrMontajes, "Montajes "
|
||||
Literales_litObrRemates, "Remates "
|
||||
Literales_msgObrFaltaObr, "Es obligatorio introducir una obra."
|
||||
Literales_msgObrAnadida, "Se ha abierto la obra asociada al contrato %s."
|
||||
Literales_msgCliSobraFechaDecisionPre, "El presupuesto está pendiente de decisión por lo que todavía no puede tener fecha de decisión. Por favor, borre la fecha de decisión o modifique la situación del presupuesto."
|
||||
Literales_msgCliFaltaArticulosPre, "Es obligatorio introducir al menos un concepto en el presupuesto."
|
||||
Literales_msgCliNoExistePre, "El presupuesto %s no existe."
|
||||
Literales_msgCliNoExistePreOrigen, "El presupuesto %s a copiar no existe."
|
||||
Literales_msgCliPreBloqueado, "El presupuesto %s está siendo modificado por otro usuario."
|
||||
@ -366,8 +372,8 @@ BEGIN
|
||||
Literales_msgCliCambiarTipoPre, "¿Desea convertir este presupuesto en un presupuesto de %s?"
|
||||
Literales_msgCliNoExisteTipoPre, "No existe el tipo de presupuesto %s."
|
||||
Literales_msgCliPreErrAnadirDoc, "No se ha podido añadirse el documento al presupuesto"
|
||||
Literales_msgCliPreErrEliminarDoc, "No se ha podido eliminar el documento seleccionado"
|
||||
Literales_msgCliCodConRepetido, "Ya existe un contrato con el código %s. Se ha reemplazado por el código %s para que pueda dar de alta el contrato."
|
||||
Literales_msgCliCliBloqueado, "El cliente %s está siendo modificado por otro usuario."
|
||||
Literales_msgCliBorrarSucursal, "¿Desea borrar esta sucursal?"
|
||||
Literales_msgCliBorrarSucursales, "¿Desea borrar todas las sucursales?"
|
||||
Literales_msgCliCodCliNoExiste, "No existe el cliente %s. Cambie el codigo del cliente por otro que sí exista."
|
||||
Literales_msgCliFaltaCodCli, "Es obligatorio que el cliente esté dado de alta (tenga un código de cliente asociado)"
|
||||
@ -382,8 +388,8 @@ BEGIN
|
||||
Literales_msgCliFaltaNombreCliPre, "Es obligatorio introducir los datos del cliente al que pertenece este presupuesto."
|
||||
Literales_msgCliFaltaFechaAltaPre, "Debe indicar la fecha de alta del presupuesto."
|
||||
Literales_msgCliFaltaFechaDecisionPre, "Para poder aceptar o anular el presupuesto, debe indicar la fecha de decisión del presupuesto."
|
||||
Literales_msgCliSobraFechaDecisionPre, "El presupuesto está pendiente de decisión por lo que todavía no puede tener fecha de decisión. Por favor, borre la fecha de decisión o modifique la situación del presupuesto."
|
||||
Literales_msgCliFaltaArticulosPre, "Es obligatorio introducir al menos un concepto en el presupuesto."
|
||||
Literales_msgProvCodPagIncorrecto, "%s no es un código correcto para un pago. Cambie el codigo del pago por otro e inténtelo de nuevo."
|
||||
Literales_msgProvNoExistePag, "El pago de proveedor %s no existe."
|
||||
Literales_msgProvPagBloqueado, "El pago de proveedor %s está siendo modificado por otro usuario."
|
||||
Literales_msgProvCodPagNoExiste, "No existe el pago %s. Introduzca un codigo de pago que sí exista."
|
||||
Literales_msgProvBorrarPago, "¿Desea borrar este pago de proveedor?"
|
||||
@ -398,8 +404,8 @@ BEGIN
|
||||
Literales_msgCliFaltaNombreCli, "Es obligatorio introducir el cliente."
|
||||
Literales_msgCliFaltaCli, "Es obligatorio introducir un cliente."
|
||||
Literales_msgCliNoExisteCli, "El cliente %s no existe."
|
||||
Literales_msgCliCliBloqueado, "El cliente %s está siendo modificado por otro usuario."
|
||||
Literales_msgCliBorrarSucursal, "¿Desea borrar esta sucursal?"
|
||||
Literales_msgTipFacturas2, "Inmovilizado"
|
||||
Literales_msgProvCantidadNoValida, "La cantidad introducida no es un valor correcto."
|
||||
Literales_msgProvPrecioNoValido, "El precio unidad introducido no es un valor correcto."
|
||||
Literales_msgProvDtoNoValido, "El descuento introducido no es un valor correcto."
|
||||
Literales_msgProvBorrarFacPed, "Si elimina esta factura, los pedidos que contiene dejarán de estar facturados. ¿Desea continuar?"
|
||||
@ -414,8 +420,8 @@ BEGIN
|
||||
Literales_msgPedDistintoProv, "El pedido %s pertenece a un proveedor distinto al que figura en la factura."
|
||||
Literales_msgProvContratoRepetido, "El contrato %s ya está incluído en la lista."
|
||||
Literales_msgProvCodPagRepetido, "Ya existe el pago de proveedor %s. Cambie el código del pago por otro que no exista."
|
||||
Literales_msgProvCodPagIncorrecto, "%s no es un código correcto para un pago. Cambie el codigo del pago por otro e inténtelo de nuevo."
|
||||
Literales_msgProvNoExistePag, "El pago de proveedor %s no existe."
|
||||
Literales_msgProvFaltaProv, "Es obligatorio indicar un proveedor."
|
||||
Literales_msgProvBorrarRepresentante, "¿Desea borrar este representante?"
|
||||
Literales_msgProvBorrarRepresentantes, "¿Desea borrar todos los representantes?"
|
||||
Literales_msgProvFaltaCodProv, "Es obligatorio que el proveedor esté dado de alta (tenga un código de proveedor asociado)"
|
||||
Literales_msgProvProvNoElim, "Asegurese que el proveedor %s no tenga asociados facturas o pagos."
|
||||
@ -430,8 +436,8 @@ BEGIN
|
||||
Literales_msgProvFaltaTipoFac, "Es necesario indicar el tipo de operación de la factura."
|
||||
Literales_msgTipFacturas0, "Todas"
|
||||
Literales_msgTipFacturas1, "General"
|
||||
Literales_msgTipFacturas2, "Inmovilizado"
|
||||
Literales_msgProvCantidadNoValida, "La cantidad introducida no es un valor correcto."
|
||||
Literales_msgDatosFamiliaModelo, "No es posible eliminar la familia %s. Por ser necesaria para el resto de la aplicación."
|
||||
Literales_msgDatosFaltaDescripcionProp, "Es necesario que introduzca el nombre de la propiedad, o en su defecto, elimine la fila."
|
||||
Literales_msgDatosTablaPropBloqueada, "Las propiedades están siendo modificadas por otro usuario. Inténtelo más tarde."
|
||||
Literales_msgDatosPropiedadRepetida, "Ya existe la propiedad %s. Cambie la propiedad por otra que no exista."
|
||||
Literales_msgDatosPropiedadUsada, "Asegurese que la propiedad que desea eliminar no tenga asociada ninguna otra."
|
||||
@ -446,8 +452,8 @@ BEGIN
|
||||
Literales_msgProvNoExisteProv, "El proveedor %s no existe."
|
||||
Literales_msgProvProvBloqueado, "El proveedor %s está siendo modificado por otro usuario."
|
||||
Literales_msgProvCodProvNoExiste, "No existe el proveedor %s. Cambie el codigo del proveedor por otro que sí exista."
|
||||
Literales_msgProvFaltaProv, "Es obligatorio indicar un proveedor."
|
||||
Literales_msgProvBorrarRepresentante, "¿Desea borrar este representante?"
|
||||
Literales_msgDatosCodVendRepetido, "Ya existe el vendedor %s. Cambie el codigo del vendedor por otro que no exista."
|
||||
Literales_msgDatosCodVendIncorrecto, "%s no es un código correcto para un vendedor. Cambie el codigo del vendedor por otro e inténtelo de nuevo."
|
||||
Literales_msgDatosFaltaNombreVend, "Es obligatorio introducir el nombre del vendedor."
|
||||
Literales_msgDatosNoExisteVend, "El vendedor %s no existe."
|
||||
Literales_msgDatosVendBloqueado, "El vendedor %s está siendo modificado por otro usuario."
|
||||
@ -462,8 +468,6 @@ BEGIN
|
||||
Literales_msgDatosFaltaDescripcionFam, "Es necesario que introduzca el nombre de la familia, o en su defecto, elimine la fila."
|
||||
Literales_msgDatosTablaFamBloqueada, "Las familias están siendo modificadas por otro usuario. Inténtelo más tarde."
|
||||
Literales_msgDatosFamiliaRepetida, "Ya existe la familia %s. Cambie la familia por otra que no exista."
|
||||
Literales_msgDatosFamiliaModelo, "No es posible eliminar la familia %s. Por ser necesaria para el resto de la aplicación."
|
||||
Literales_msgDatosFaltaDescripcionProp, "Es necesario que introduzca el nombre de la propiedad, o en su defecto, elimine la fila."
|
||||
Literales_msgEmpFaltaAlgo, "Es obligatorio introducir %s de la EmpresaActiva."
|
||||
Literales_msgEmpNombreComercial, "el nombre comercial"
|
||||
Literales_msgDatosCodArtRepetido, "Ya existe el artículo %s. Cambie el código del artículo por otro que no exista."
|
||||
@ -473,13 +477,13 @@ BEGIN
|
||||
Literales_msgDatosNoExisteArt, "El artículo %s no existe."
|
||||
Literales_msgDatosArtBloqueado, "El artículo %s está siendo modificado por otro usuario."
|
||||
Literales_msgDatosCodArtNoExiste, "No existe el artículo %s. Introduzca un codigo de artículo que sí exista."
|
||||
Literales_msgDatosRefArtNoExiste, "No existe el artículo %s. Introduzca una referencia de artículo que sí exista."
|
||||
Literales_msgDatosBorrarPropiedad, "¿Desea borrar esta propiedad?"
|
||||
Literales_msgDatosBorrarPropiedades, "¿Desea borrar todas las propiedades?"
|
||||
Literales_msgDatosFaltaFamilia, "Es necesario que seleccione una familia."
|
||||
Literales_msgDatosPropRepetida, "El artículo no puede tener propiedades repetidas."
|
||||
Literales_msgDatosCargaPropFamilia, "La familia tiene propiedades predeterminadas. ¿Desea utilizarlas en el artículo?"
|
||||
Literales_msgDatosCodVendRepetido, "Ya existe el vendedor %s. Cambie el codigo del vendedor por otro que no exista."
|
||||
Literales_msgDatosCodVendIncorrecto, "%s no es un código correcto para un vendedor. Cambie el codigo del vendedor por otro e inténtelo de nuevo."
|
||||
Literales_msgArtNoHayArt, "No hay articulos para seleccionar."
|
||||
Literales_msgUsuarioInc, "El usuario no tiene privilegios para la empresa seleccionada."
|
||||
Literales_msgDeseaSalir, "¿Desea salir de FactuGES?"
|
||||
Literales_msgSinProvincia, "Antes de poder elegir una población debe indicar a qué provincia pertenece."
|
||||
|
||||
@ -131,7 +131,7 @@ begin
|
||||
begin
|
||||
Font.Name := 'Arial';
|
||||
Prop['LINESPACING'] := 1;
|
||||
Prop['GAPX'] := 0;
|
||||
Prop['GAPX'] := 2;
|
||||
Prop['GAPY'] := 0;
|
||||
Memo.Clear;
|
||||
for iDir := 0 to (EmpresaActiva.Direcciones.Count - 1) do
|
||||
|
||||
Binary file not shown.
@ -83,6 +83,8 @@ type
|
||||
eNombre: TLabel;
|
||||
Buscar: TcxTextEdit;
|
||||
bLimpiar: TRdxBoton;
|
||||
bFacturar: TRdxBoton;
|
||||
actCambiarSituacion: TAction;
|
||||
procedure RdxFrameFacturasProveedorShow(Sender: TObject);
|
||||
procedure actAnadirExecute(Sender: TObject);
|
||||
procedure actModificarExecute(Sender: TObject);
|
||||
@ -101,6 +103,7 @@ type
|
||||
procedure actRefrescarDatosExecute(Sender: TObject);
|
||||
procedure BuscarPropertiesChange(Sender: TObject);
|
||||
procedure bLimpiarClick(Sender: TObject);
|
||||
procedure actCambiarSituacionExecute(Sender: TObject);
|
||||
private
|
||||
procedure ActualizarBotones;
|
||||
protected
|
||||
@ -123,7 +126,7 @@ implementation
|
||||
|
||||
{ TfrFacturasProveedores }
|
||||
uses
|
||||
BaseDatos, TablaFacturasProveedor, IBDatabase,
|
||||
BaseDatos, TablaFacturasProveedor, IBDatabase, CambiarSituacionFacturas,
|
||||
IBCustomDataSet, Mensajes, Entidades, Variants,
|
||||
FacturaProveedor, Constantes, FacturasProveedorPendientes, TablaEmpresas,
|
||||
Configuracion;
|
||||
@ -332,4 +335,27 @@ begin
|
||||
Buscar.Text := '';
|
||||
end;
|
||||
|
||||
procedure TfrFacturasProveedores.actCambiarSituacionExecute(Sender: TObject);
|
||||
var
|
||||
IndiceCol1 : Integer;
|
||||
IndiceSel : Integer;
|
||||
fCambiarSituacionFacturas : TfrCambiarSituacionFacturas;
|
||||
|
||||
begin
|
||||
fCambiarSituacionFacturas := TfrCambiarSituacionFacturas.Create(Self);
|
||||
fCambiarSituacionFacturas.Entidad := entFacturaProveedor;
|
||||
|
||||
//Rellenamos la propiedad de la unidad CambiarSituacion con los códigos seleccionados
|
||||
IndiceCol1 := gridFacturasDBTableView1.GetColumnByFieldName('CODIGO').Index;
|
||||
for IndiceSel:=0 to gridFacturasDBTableView1.Controller.SelectedRowCount-1 do
|
||||
fCambiarSituacionFacturas.CodigosFacturas.Append(gridFacturasDBTableView1.Controller.SelectedRows[IndiceSel].Values[IndiceCol1]);
|
||||
|
||||
try
|
||||
fCambiarSituacionFacturas.ShowModal;
|
||||
finally
|
||||
fCambiarSituacionFacturas.Free;
|
||||
bRefrescar.Click;
|
||||
end;
|
||||
end;
|
||||
|
||||
end.
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
[BD]
|
||||
ABETO ARMARIOS DAVID=david:D:\Proyectos\FactuGES 2000 v2 (Abeto)\Codigo\BD\abeto.gdb
|
||||
ABETO ARMARIOS ROBERTO=roberto:E:\Codigo (Abeto)\BD\abeto.gdb
|
||||
ABETO ARMARIOS ROBERTO T=roberto:T:\Abeto\bd\abeto.gdb
|
||||
ABETO ARMARIOS DAVID T=david:T:\Codigo Abeto\bd\abeto.gdb
|
||||
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,6 +1,19 @@
|
||||
[Version]
|
||||
Count=0
|
||||
CurrentProductionProgramVersion=
|
||||
Count=1
|
||||
CurrentProductionProgramVersion=2.3.0.0
|
||||
CurrentBetaProgramVersion=
|
||||
CurrentAlphaProgramVersion=
|
||||
|
||||
[Program Version 0]
|
||||
DownloadPasswordRequired=FALSE
|
||||
LocalInstallerParams=
|
||||
ProgramLocationPath=files
|
||||
ProgramLocationFileName=instalar.exe
|
||||
ProgramVersion=2.3.0.0
|
||||
ProgramReleaseType=prtProduction
|
||||
ProgramSize=1000000
|
||||
ProgramReleaseDate=28/09/2007
|
||||
|
||||
[Program Version 0\VersionDescription]
|
||||
Count=0
|
||||
|
||||
|
||||
BIN
bd/ABETO.GDB
BIN
bd/ABETO.GDB
Binary file not shown.
Reference in New Issue
Block a user