git-svn-id: https://192.168.0.254/svn/Proyectos.Tecsitel_FactuGES2/branches/D2007-DA5@21 0c75b7a4-871f-7646-8a2f-f78d34cc349f
145 lines
4.7 KiB
ObjectPascal
145 lines
4.7 KiB
ObjectPascal
unit uBizContactosServer;
|
|
|
|
interface
|
|
|
|
uses
|
|
SysUtils, schContactosServer_Intf, uDAInterfaces,
|
|
uDADataTable, uDABusinessProcessor, uDADelta;
|
|
|
|
const
|
|
BIZ_SERVER_CONTACTO = 'Server.Contacto';
|
|
|
|
type
|
|
TBizContactosServer = class(TContactosBusinessProcessorRules)
|
|
protected
|
|
procedure Insert_Datos_Contacto(aChange: TDADeltaChange); virtual;
|
|
procedure Update_Datos_Contacto(aChange: TDADeltaChange); virtual;
|
|
procedure Delete_Datos_Contacto(aChange: TDADeltaChange); virtual;
|
|
|
|
procedure AfterProcessChange(Sender: TDABusinessProcessor;
|
|
aChange: TDADeltaChange; Processed: Boolean;
|
|
var CanRemoveFromDelta: Boolean); override;
|
|
|
|
|
|
procedure ProcessError(Sender: TDABusinessProcessor;
|
|
aChangeType: TDAChangeType; aChange: TDADeltaChange;
|
|
const aCommand: IDASQLCommand; var CanRemoveFromDelta: Boolean;
|
|
Error: Exception); override;
|
|
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
Dialogs, uDataModuleServer, uDAClasses, DARemoteService_Impl,
|
|
schContactosClient_Intf, uBusinessUtils;
|
|
|
|
{ TBizContactosServer }
|
|
|
|
procedure TBizContactosServer.AfterProcessChange(Sender: TDABusinessProcessor;
|
|
aChange: TDADeltaChange; Processed: Boolean; var CanRemoveFromDelta: Boolean);
|
|
begin
|
|
inherited;
|
|
|
|
case aChange.ChangeType of
|
|
ctInsert: Insert_Datos_Contacto(aChange);
|
|
ctUpdate: Update_Datos_Contacto(aChange);
|
|
ctDelete: Delete_Datos_Contacto(aChange);
|
|
end;
|
|
|
|
CanRemoveFromDelta := True;
|
|
end;
|
|
|
|
procedure TBizContactosServer.Delete_Datos_Contacto(aChange: TDADeltaChange);
|
|
var
|
|
ASchema : TDASchema;
|
|
ACurrentConn : IDAConnection;
|
|
ACommand : IDASQLCommand;
|
|
begin
|
|
ASchema := BusinessProcessor.Schema;
|
|
ACurrentConn := GetBusinessProcessorConnection(BusinessProcessor);
|
|
|
|
//En el caso de querer tener los contactos separados por empresas en lugar de tenerlos en común
|
|
// ACommand := ASchema.NewCommand(ACurrentConn, 'Delete_ContactoEmpresa');
|
|
//En el caso de querer tener los contactos en común para todas las empresas
|
|
ACommand := ASchema.NewCommand(ACurrentConn, 'Delete_ContactoEmpresas');
|
|
try
|
|
with ACommand do
|
|
begin
|
|
ParamByName('OLD_ID_CONTACTO').Value := aChange.OldValueByName[fld_ContactosID];
|
|
// ParamByName('OLD_ID_EMPRESA').Value := aChange.OldValueByName[fld_ContactosID_EMPRESA];
|
|
Execute;
|
|
end;
|
|
finally
|
|
ACommand := NIL;
|
|
end;
|
|
end;
|
|
|
|
procedure TBizContactosServer.Insert_Datos_Contacto(aChange: TDADeltaChange);
|
|
var
|
|
ASchema : TDASchema;
|
|
ACurrentConn : IDAConnection;
|
|
ACommand : IDASQLCommand;
|
|
begin
|
|
ASchema := BusinessProcessor.Schema;
|
|
ACurrentConn := GetBusinessProcessorConnection(BusinessProcessor);
|
|
|
|
//En el caso de querer tener los contactos separados por empresas en lugar de tenerlos en común
|
|
// ACommand := ASchema.NewCommand(ACurrentConn, 'Insert_ContactoEmpresa');
|
|
//En el caso de querer tener los contactos en común para todas las empresas
|
|
ACommand := ASchema.NewCommand(ACurrentConn, 'Insert_ContactoEmpresas');
|
|
try
|
|
with ACommand do
|
|
begin
|
|
ParamByName('ID_CONTACTO').Value := aChange.NewValueByName[fld_ContactosID];
|
|
// ParamByName('ID_EMPRESA').Value := aChange.NewValueByName[fld_ContactosID_EMPRESA];
|
|
Execute;
|
|
end;
|
|
finally
|
|
ACommand := NIL;
|
|
end;
|
|
end;
|
|
|
|
procedure TBizContactosServer.ProcessError(Sender: TDABusinessProcessor;
|
|
aChangeType: TDAChangeType; aChange: TDADeltaChange;
|
|
const aCommand: IDASQLCommand; var CanRemoveFromDelta: Boolean;
|
|
Error: Exception);
|
|
begin
|
|
inherited;
|
|
//IMPORTANTE ESTO HACE QUE EL CLIENTE SE ENTERE DEL ERROR Y LOS BP ASOCIADOS EN EL
|
|
//SCHEMA HAGAN ROLLBACK TAMBIEN
|
|
CanRemoveFromDelta := True;
|
|
raise Exception.Create(Error.Message);
|
|
end;
|
|
|
|
procedure TBizContactosServer.Update_Datos_Contacto(aChange: TDADeltaChange);
|
|
var
|
|
ASchema : TDASchema;
|
|
ACurrentConn : IDAConnection;
|
|
ACommand : IDASQLCommand;
|
|
begin
|
|
ASchema := BusinessProcessor.Schema;
|
|
ACurrentConn := GetBusinessProcessorConnection(BusinessProcessor);
|
|
|
|
//En el caso update nos da igual lo que se quiera modificar así que se queda igual
|
|
ACommand := ASchema.NewCommand(ACurrentConn, 'Update_ContactoEmpresa');
|
|
try
|
|
with ACommand do
|
|
begin
|
|
ParamByName('ID_CONTACTO').Value := aChange.NewValueByName[fld_ContactosID];
|
|
ParamByName('OLD_ID_CONTACTO').Value := aChange.OldValueByName[fld_ContactosID];
|
|
|
|
ParamByName('ID_EMPRESA').Value := aChange.NewValueByName[fld_ContactosID_EMPRESA];
|
|
ParamByName('OLD_ID_EMPRESA').Value := aChange.OldValueByName[fld_ContactosID_EMPRESA];
|
|
Execute;
|
|
end;
|
|
finally
|
|
ACommand := NIL;
|
|
end;
|
|
end;
|
|
|
|
initialization
|
|
RegisterBusinessProcessorRules(BIZ_SERVER_CONTACTO, TBizContactosServer);
|
|
|
|
end.
|