-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathuBuscaAvancada.pas
258 lines (224 loc) · 9.35 KB
/
uBuscaAvancada.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
unit uBuscaAvancada;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Layouts,
FMX.Controls.Presentation, FMX.StdCtrls, FMX.Objects, FMX.Effects, FMX.ListBox;
type
TfBuscaAvancada = class(TForm)
layContatos: TLayout;
retContatos: TRectangle;
lblContatoEndereco: TLabel;
LayTitulo: TLayout;
Rectangle1: TRectangle;
lblTitulo: TLabel;
Rectangle2: TRectangle;
Layout1: TLayout;
btnEditar: TRectangle;
btnAtendimentos: TRectangle;
layCadastro: TLayout;
Rectangle4: TRectangle;
layAtendimentoItens: TLayout;
retFundoAtendimentoItem: TRectangle;
Layout4: TLayout;
lblItemDescricao: TLabel;
btnAddItem: TRectangle;
retRomoverItem: TRectangle;
btnRemoveItem: TSpeedButton;
imgContatos: TRoundRect;
lblContatoNome: TText;
lblDocumento: TLabel;
lblItemValor: TLabel;
lblItemCodigo: TLabel;
Layout3: TLayout;
retAtalhos: TRectangle;
Rectangle5: TRectangle;
Rectangle6: TRectangle;
btnBuscaAddServico: TRectangle;
btnIncluirCliente: TSpeedButton;
btnIncluirServico: TSpeedButton;
btnIncluirProfissional: TSpeedButton;
btnIncluirFornecedor: TSpeedButton;
Rectangle3: TRectangle;
Rectangle7: TRectangle;
Rectangle8: TRectangle;
Rectangle9: TRectangle;
Rectangle10: TRectangle;
layUsuarios: TLayout;
Rectangle11: TRectangle;
lblUsuarioLiberar: TLabel;
btnLiberarAcesso: TRectangle;
layContasLiquidadas: TLayout;
Rectangle12: TRectangle;
Layout5: TLayout;
lblContaValor: TLabel;
lblDescricaoConta: TLabel;
lblDataVencimento: TLabel;
Line1: TLine;
retLiquidar: TRectangle;
btnLiquidar: TSpeedButton;
procedure btnIncluirServicoClick(Sender: TObject);
procedure Layout1MouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Single);
procedure btnEditarClick(Sender: TObject);
procedure btnAtendimentosClick(Sender: TObject);
procedure retContatosMouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Single);
procedure Rectangle1MouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Single);
procedure btnAddItemClick(Sender: TObject);
procedure Layout4MouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Single);
procedure btnRemoveItemClick(Sender: TObject);
procedure lblItemValorMouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Single);
procedure btnIncluirClienteClick(Sender: TObject);
procedure btnIncluirFornecedorClick(Sender: TObject);
procedure btnIncluirProfissionalClick(Sender: TObject);
procedure btnLiberarAcessoClick(Sender: TObject);
procedure btnLiquidarClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
fBuscaAvancada: TfBuscaAvancada;
implementation
{$R *.fmx}
uses uPrincipal, uFuncoes, uContatos, uMovimentacao;
procedure TfBuscaAvancada.Layout1MouseMove(Sender: TObject; Shift: TShiftState;
X, Y: Single);
begin
Rectangle2.Align := TAlignLayout.Client;
Rectangle2.Parent := TLayout(Sender);
end;
procedure TfBuscaAvancada.Layout4MouseMove(Sender: TObject; Shift: TShiftState;
X, Y: Single);
begin
retRomoverItem.Align := TAlignLayout.Client;
retRomoverItem.Parent := TLayout(Sender);
end;
procedure TfBuscaAvancada.lblItemValorMouseMove(Sender: TObject;
Shift: TShiftState; X, Y: Single);
begin
retRomoverItem.Parent := Nil;
end;
procedure TfBuscaAvancada.Rectangle1MouseMove(Sender: TObject;
Shift: TShiftState; X, Y: Single);
begin
Rectangle2.Parent := Nil;
end;
procedure TfBuscaAvancada.btnEditarClick(Sender: TObject);
begin
fPrincipal.CadastroContatos(inttostr(retContatos.Tag),
'C',
'Cadastro de Cliente',
TRectangle(Sender).Hint);
end;
procedure TfBuscaAvancada.btnIncluirClienteClick(Sender: TObject);
begin
fPrincipal.btnPrincipalAddClienteClick(Nil);
end;
procedure TfBuscaAvancada.btnIncluirFornecedorClick(Sender: TObject);
begin
fPrincipal.btnPrincipalAddFornecedorClick(Nil);
end;
procedure TfBuscaAvancada.btnIncluirProfissionalClick(Sender: TObject);
begin
fPrincipal.btnPrincipalAddProfissionalClick(Nil);
end;
procedure TfBuscaAvancada.retContatosMouseMove(Sender: TObject;
Shift: TShiftState; X, Y: Single);
begin
Rectangle2.Parent := Nil;
end;
procedure TfBuscaAvancada.btnAddItemClick(Sender: TObject);
begin
if fPrincipal.lbx_atendimento_itens.Enabled = True then
fPrincipal.AdicionarItem(Inttostr(btnAddItem.Tag),'');
end;
procedure TfBuscaAvancada.btnAtendimentosClick(Sender: TObject);
var Cc :TContatos;
begin
if TRectangle(Sender).Tag = 0 then begin
//carrega atendimentos do profissional selecionado
fPrincipal.CalendarioAtendimentos(Date);
fPrincipal.Atendimentos(1,
retContatos.Tag,
Date);
fPrincipal.imgProfissionalAtendimento.Tag := retContatos.Tag;
fPrincipal.imgProfissionalAtendimento.LoadImagem(lblContatoNome.Text);
fPrincipal.lblProfissional.Text := lblContatoNome.Text;
fPrincipal.FloatAnimationEscondeBusca.Start;
fPrincipal.Rectangle6.Visible := False;
fPrincipal.Rectangle7.Visible := False;
fPrincipal.tbChangeAtendimentos.Execute;
end else begin
//gera atendimento cliente selecionado
if fPrincipal.lblAtendimentoCliente.Tag = 0 then begin
Cc := TContatos.Create;
Cc.Contato(retContatos.Tag);
fPrincipal.lblAtendimentoCliente.Text := Cc.Nome;
fPrincipal.lblAtendimentoCliente.Tag := retContatos.Tag;
end else
fPrincipal.GerarAtendimento(fPrincipal.imgProfissionalAtendimento.Tag,retContatos.Tag,0);
fPrincipal.FloatAnimationEscondeBusca.Start;
end;
end;
procedure TfBuscaAvancada.btnRemoveItemClick(Sender: TObject);
var ListItemRemove :TListBoxItem;
I :integer;
vis :boolean;
begin
if TSpeedButton(Sender).HelpContext = 0 then begin
if TListBoxItem(fPrincipal.lbx_atendimento_itens.FindComponent('lbx_new_item_'+Inttostr(TSpeedButton(Sender).Tag))) <> nil then begin
TListBoxItem(fPrincipal.lbx_atendimento_itens.FindComponent('lbx_new_item_'+Inttostr(TSpeedButton(Sender).Tag))).Visible := False;
TListBoxItem(fPrincipal.lbx_atendimento_itens.FindComponent('lbx_new_item_'+Inttostr(TSpeedButton(Sender).Tag))).Hint := '';
end;
end else if TSpeedButton(Sender).HelpContext = 1 then begin
if TListBoxItem(fPrincipal.lbx_atendimento_itens.FindComponent('lbx_add_item_'+Inttostr(TSpeedButton(Sender).Tag))) <> nil then begin
TListBoxItem(fPrincipal.lbx_atendimento_itens.FindComponent('lbx_add_item_'+Inttostr(TSpeedButton(Sender).Tag))).Visible := False;
TListBoxItem(fPrincipal.lbx_atendimento_itens.FindComponent('lbx_add_item_'+Inttostr(TSpeedButton(Sender).Tag))).Hint :=
'DELETE FROM atendimentos_det WHERE codigo = '+Inttostr(TSpeedButton(Sender).Tag);
end;
end;
vis := False;
fPrincipal.lbx_atendimento_itens.BeginUpdate;
for I := fPrincipal.lbx_atendimento_itens.ComponentCount - 1 Downto 0 do begin
if (fPrincipal.lbx_atendimento_itens.Components[I] is TListBoxItem) then begin
if (fPrincipal.lbx_atendimento_itens.Components[I] As TListBoxItem).Visible then begin
vis := (fPrincipal.lbx_atendimento_itens.Components[I] As TListBoxItem).Visible;
end;
end;
end;
fPrincipal.lbx_atendimento_itens.EndUpdate;
fPrincipal.btnAtendimentoLancar.Visible := vis;
end;
procedure TfBuscaAvancada.btnIncluirServicoClick(Sender: TObject);
begin
fPrincipal.btnPrincipalAddServicoClick(Nil);
end;
procedure TfBuscaAvancada.btnLiberarAcessoClick(Sender: TObject);
begin
Executar('UPDATE usuarios SET IDCOntato ='+inttostr(btnLiberarAcesso.Tag)+' WHERE ID = '+ inttostr(lblUsuarioLiberar.Tag));
fPrincipal.lblUsuariosAguardando.Text := UsuariosAguardandoLiberacao;
end;
procedure TfBuscaAvancada.btnLiquidarClick(Sender: TObject);
begin
if TSpeedButton(Sender).Text = 'Liquidar' then begin
TSpeedButton(Sender).Text := 'Cancelar';
Executar('UPDATE contas SET status = "A" WHERE ID ='+inttostr(TSpeedButton(Sender).Tag));
if TRectangle(fMovimentacao.vsb_contas_liquidar.FindComponent('ret_'+Inttostr(TSpeedButton(Sender).Tag))) <> nil then
TRectangle(fMovimentacao.vsb_contas_liquidar.FindComponent('ret_'+Inttostr(TSpeedButton(Sender).tag))).Parent := fMovimentacao.vsb_contas_aguardando;
retLiquidar.Fill.Color := TAlphaColors.Red;
end else if TSpeedButton(Sender).Text = 'Cancelar' then begin
TSpeedButton(Sender).Text := 'Liquidar';
Executar('UPDATE contas SET status = NULL WHERE ID ='+inttostr(TSpeedButton(Sender).Tag));
if TRectangle(fMovimentacao.vsb_contas_liquidar.FindComponent('ret_'+Inttostr(TSpeedButton(Sender).Tag))) <> nil then
TRectangle(fMovimentacao.vsb_contas_liquidar.FindComponent('ret_'+Inttostr(TSpeedButton(Sender).tag))).Parent := fMovimentacao.vsb_contas_liquidar;
retLiquidar.Fill.Color := TAlphaColors.Green;
end;
fMovimentacao.CalculaTotal;
end;
end.