-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUConVenda.pas
197 lines (170 loc) · 5.17 KB
/
UConVenda.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
unit UConVenda;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Buttons, Vcl.Grids,
Vcl.DBGrids, Vcl.ExtCtrls, Data.DB, Vcl.ComCtrls, frxClass, frxDBSet;
type
TfrmConVenda = class(TForm)
pnlSecundário: TPanel;
dbgConsVenda: TDBGrid;
pnlTerciário: TPanel;
pnlQuaternario: TPanel;
edtPesquisa: TEdit;
dsConsVendas: TDataSource;
pnlPrincipal: TPanel;
rbtCod: TRadioButton;
rbtNomeCli: TRadioButton;
rbtNomeFunc: TRadioButton;
rbtNomeImo: TRadioButton;
rbtPreco: TRadioButton;
lblSitPag: TLabel;
lblImo: TLabel;
rbtAmbos: TRadioButton;
rbtAtv: TRadioButton;
rbtInv: TRadioButton;
RadioButton1: TRadioButton;
RadioButton2: TRadioButton;
frxDBDatasetPesquisa: TfrxDBDataset;
Shape1: TShape;
Shape2: TShape;
Shape3: TShape;
Shape4: TShape;
lblPesquisar: TLabel;
lblRelatório: TLabel;
Shape5: TShape;
btnPesquisar: TImage;
btnRelatorio: TImage;
frxReportRelatorio: TfrxReport;
procedure btnPesquisarClick(Sender: TObject);
procedure btnRelatorioClick(Sender: TObject);
procedure rbtCodClick(Sender: TObject);
procedure rbtPrecoClick(Sender: TObject);
procedure rbtNomeCliClick(Sender: TObject);
procedure rbtNomeFuncClick(Sender: TObject);
procedure rbtNomeImoClick(Sender: TObject);
procedure rbtAmbosClick(Sender: TObject);
procedure rbtAtvClick(Sender: TObject);
procedure rbtInvClick(Sender: TObject);
procedure RadioButton1Click(Sender: TObject);
procedure RadioButton2Click(Sender: TObject);
procedure FormShow(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
primarioPesq, secundarioPesq, terciarioPesq, quaternarioPesq : string;
const
selectSql = 'select imoveis.imoNome, funcionarios.funNome, clientes.cliNome ,'
+'vendas.venData, vendas.venSituacaoDePagamento, vendas.venPreco from VENDAS '
+'inner join funcionarios on vendas.funcodigo = funcionarios.funCodigo '
+'inner join clientes on vendas.cliCodigo = clientes.cliCodigo '
+'inner join imoveis on vendas.imoCodigo = imoveis.imoCodigo '
+'where ';
end;
var
frmConVenda: TfrmConVenda;
implementation
{$R *.dfm}
uses UDM;
procedure TfrmConVenda.btnPesquisarClick(Sender: TObject);
begin
DM.qryConsVendas.Close;
DM.qryConsVendas.SQL.Clear;
DM.qryConsVendas.SQL.Add(selectSql + primarioPesq + secundarioPesq + terciarioPesq + quaternarioPesq);
DM.qryVendas.open;
dm.qryVendas.Close;
if (rbtCod.Checked = True) then
begin
if edtPesquisa.Text<>'' then
begin
DM.qryConsVendas.Parameters.ParamByName('pConsVenda').Value := edtPesquisa.Text;
end
else
begin
ShowMessage('Insira o Código da Venda');
end;
end;
if (rbtPreco.Checked = True) then
begin
if edtPesquisa.Text<>'' then
begin
DM.qryConsVendas.Parameters.ParamByName('pConsVenda').Value := edtPesquisa.Text;
end
else
begin
ShowMessage('Insira o Preço');
end;
end;
if (rbtNomeCli.Checked = True) then
begin
DM.qryConsVendas.Parameters.ParamByName('pConsVenda').Value := '%'+edtPesquisa.Text+'%';
end;
if (rbtNomeFunc.Checked = True) then
begin
DM.qryConsVendas.Parameters.ParamByName('pConsVenda').Value := '%'+edtPesquisa.Text+'%';
end;
if (rbtNomeImo.Checked = True) then
begin
if edtPesquisa.Text<>'' then
begin
DM.qryConsVendas.Parameters.ParamByName('pConsVenda').Value := edtPesquisa.Text;
end
else
begin
ShowMessage('Insira o Código do Imóvel');
end;
end;
DM.qryConsVendas.Open;
end;
procedure TfrmConVenda.btnRelatorioClick(Sender: TObject);
begin
frxReportRelatorio.ShowReport();
end;
procedure TfrmConVenda.FormShow(Sender: TObject);
begin
primarioPesq:= ' vendas.venCodigo = :pConsVenda ';
secundarioPesq:= ' ';
terciarioPesq:= ' order by vencodigo asc ';
end;
procedure TfrmConVenda.RadioButton1Click(Sender: TObject);
begin
terciarioPesq:= ' order by vencodigo asc ';
end;
procedure TfrmConVenda.RadioButton2Click(Sender: TObject);
begin
terciarioPesq:= ' order by vencodigo desc ';
end;
procedure TfrmConVenda.rbtAmbosClick(Sender: TObject);
begin
secundarioPesq:= ' ';
end;
procedure TfrmConVenda.rbtAtvClick(Sender: TObject);
begin
secundarioPesq:=' and venSituacaodePagamento = 1 ';
end;
procedure TfrmConVenda.rbtCodClick(Sender: TObject);
begin
primarioPesq:= ' vendas.venCodigo = :pConsVenda ';
end;
procedure TfrmConVenda.rbtInvClick(Sender: TObject);
begin
secundarioPesq:=' and venSituacaodePagamento = 0 '
end;
procedure TfrmConVenda.rbtNomeCliClick(Sender: TObject);
begin
primarioPesq:= ' clientes.cliNome like :pconsVenda ';
end;
procedure TfrmConVenda.rbtNomeFuncClick(Sender: TObject);
begin
primarioPesq:= ' funcionarios.funNome like :pconsVenda ';
end;
procedure TfrmConVenda.rbtNomeImoClick(Sender: TObject);
begin
primarioPesq:=' imoCodigo = :pConsVenda ';
end;
procedure TfrmConVenda.rbtPrecoClick(Sender: TObject);
begin
primarioPesq:=' vendas.venPreco like :pConsVenda ';
end;
end.