-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathuContas.pas
261 lines (215 loc) · 8.17 KB
/
uContas.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
259
260
261
unit uContas;
interface
uses FireDAC.Comp.Client,System.SysUtils,System.StrUtils,System.DateUtils;
type
TContas = class
private
FID: Integer;
FTipoCobranca: String;
FIDContato: Integer;
FCodigoChave: Integer;
FDataVencimento: TDate;
FDataLiquidacao: TDate;
FIDAtendimento: Integer;
FDataExclusao: TDate;
FTipoConta: String;
FDataEmissao: TDate;
FCodigoBarra: String;
FDataCadastro: TDate;
FValorConta: Real;
FUsuario: Integer;
FObservacoes: String;
FIDCategoria: Integer;
FNumeroDocumento: String;
FParcela: String;
FCategoria: String;
FIDs: String;
FSoma: Real;
procedure SetCodigoBarra(const Value: String);
procedure SetCodigoChave(const Value: Integer);
procedure SetDataCadastro(const Value: TDate);
procedure SetDataEmissao(const Value: TDate);
procedure SetDataExclusao(const Value: TDate);
procedure SetDataLiquidacao(const Value: TDate);
procedure SetDataVencimento(const Value: TDate);
procedure SetIDAtendimento(const Value: Integer);
procedure SetIDCategoria(const Value: Integer);
procedure SetIDContato(const Value: Integer);
procedure SetNumeroDocumento(const Value: String);
procedure SetObservacoes(const Value: String);
procedure SetParcela(const Value: String);
procedure SetTipoCobranca(const Value: String);
procedure SetTipoConta(const Value: String);
procedure SetUsuario(const Value: Integer);
procedure SetValorConta(const Value: Real);
procedure SetID(const Value: Integer);
procedure SetCategoria(const Value: String);
procedure SetIDs(const Value: String);
procedure SetSoma(const Value: Real);
public
property ID :Integer read FID write SetID;
property DataCadastro :TDate read FDataCadastro write SetDataCadastro;
property DataExclusao :TDate read FDataExclusao write SetDataExclusao;
property Usuario :Integer read FUsuario write SetUsuario;
property IDContato :Integer read FIDContato write SetIDContato;
property Parcela :String read FParcela write SetParcela;
property TipoCobranca :String read FTipoCobranca write SetTipoCobranca;
property NumeroDocumento :String read FNumeroDocumento write SetNumeroDocumento;
property CodigoBarra :String read FCodigoBarra write SetCodigoBarra;
property ValorConta :Real read FValorConta write SetValorConta;
property DataLiquidacao :TDate read FDataLiquidacao write SetDataLiquidacao;
property DataEmissao :TDate read FDataEmissao write SetDataEmissao;
property DataVencimento :TDate read FDataVencimento write SetDataVencimento;
property IDAtendimento :Integer read FIDAtendimento write SetIDAtendimento;
property CodigoChave :Integer read FCodigoChave write SetCodigoChave;
property IDCategoria :Integer read FIDCategoria write SetIDCategoria;
property Categoria :String read FCategoria write SetCategoria;
property TipoConta :String read FTipoConta write SetTipoConta;
property Observacoes :String read FObservacoes write SetObservacoes;
property Soma :Real read FSoma write SetSoma;
property IDs :String read FIDs write SetIDs;
procedure ContasAguardando(Filtro :String);
procedure Inserir;
end;
const
ContasCampos : string = 'DataExclusao,Usuario,IDContato,Parcela,TipoCobranca,NumeroDocumento,CodigoBarra,'+
'ValorConta,DataLiquidacao,DataEmissao,DataVencimento,IDAtendimento,CodigoChave,'+
'IDCategoria,TipoConta,Observacoes';
implementation
{ TContas }
uses dPrincipal, uFuncoes;
procedure TContas.ContasAguardando(Filtro: String);
var tabContas :TFDQuery;
begin
tabContas := TFDQuery.Create(nil);
tabContas.Connection := dmPrincipal.SqLiteConnection;
tabContas.Open('select group_concat(ID) ID, SUM(ValorConta-(SELECT Coalesce(SUM(contas_liquidadas.ValorPago),0)'+
' FROM contas_liquidadas WHERE contas_liquidadas.IDConta = contas.ID)) ValorConta from contas '+
' WHERE DataLiquidacao = "1899-12-30" AND status = "A" '+Filtro);
IDs := tabContas.Fields[0].AsString;
if not tabContas.Fields[1].IsNull then
Soma := tabContas.Fields[1].AsFloat
else Soma := 0;
FreeAndNil(tabContas);
end;
procedure TContas.Inserir;
var tabContas :TFDQuery;
sFields :String;
begin
tabContas := TFDQuery.Create(nil);
tabContas.Connection := dmPrincipal.SqLiteConnection;
if IDCategoria = 0 then begin
dmPrincipal.QuerySelect.Open('SELECT ID,Descricao FROM contas_categorias WHERE Descricao ='+QuotedStr(Trim(Categoria)));
if dmPrincipal.QuerySelect.RecordCount = 0 then begin
IDCategoria := StrToInt(ChavePrimaria('contas_categorias'));
dmPrincipal.sqliteConnection.ExecSQL('INSERT INTO contas_categorias '+
' (Descricao) VALUES ('+QuotedStr(Trim(Categoria))+')');
end else IDCategoria := dmPrincipal.QuerySelect.Fields[0].AsInteger;
end;
sFields := ContasCampos;
tabContas.SQL.Clear;
tabContas.SQL.Add('INSERT INTO Contas ('+sFields+') VALUES (:'+StringReplace(sFields,',',',:',[rfReplaceAll])+')');
tabContas.ParamByName('DataExclusao').value := 0;
tabContas.ParamByName('Usuario').value := Usuario;
tabContas.ParamByName('IDContato').value := IDContato;
tabContas.ParamByName('Parcela').value := Parcela;
tabContas.ParamByName('TipoCobranca').value := TipoCobranca;
tabContas.ParamByName('NumeroDocumento').value := NumeroDocumento;
tabContas.ParamByName('CodigoBarra').value := CodigoBarra;
tabContas.ParamByName('ValorConta').value := ValorConta;
tabContas.ParamByName('DataLiquidacao').AsDate := DataLiquidacao;
tabContas.ParamByName('DataEmissao').AsDate := DataEmissao;
tabContas.ParamByName('DataVencimento').AsDate := DataVencimento;
tabContas.ParamByName('IDAtendimento').value := IDAtendimento;
tabContas.ParamByName('CodigoChave').value := CodigoChave;
tabContas.ParamByName('IDCategoria').value := IDCategoria;
tabContas.ParamByName('TipoConta').value := TipoConta;
tabContas.ParamByName('Observacoes').value := Observacoes;
tabContas.ExecSQL;
FreeAndNil(tabContas);
end;
procedure TContas.SetCategoria(const Value: String);
begin
FCategoria := Value;
end;
procedure TContas.SetCodigoBarra(const Value: String);
begin
FCodigoBarra := Value;
end;
procedure TContas.SetCodigoChave(const Value: Integer);
begin
FCodigoChave := Value;
end;
procedure TContas.SetDataCadastro(const Value: TDate);
begin
FDataCadastro := Value;
end;
procedure TContas.SetDataEmissao(const Value: TDate);
begin
FDataEmissao := Value;
end;
procedure TContas.SetDataExclusao(const Value: TDate);
begin
FDataExclusao := Value;
end;
procedure TContas.SetDataLiquidacao(const Value: TDate);
begin
FDataLiquidacao := Value;
end;
procedure TContas.SetDataVencimento(const Value: TDate);
begin
FDataVencimento := Value;
end;
procedure TContas.SetID(const Value: Integer);
begin
FID := Value;
end;
procedure TContas.SetIDAtendimento(const Value: Integer);
begin
FIDAtendimento := Value;
end;
procedure TContas.SetIDCategoria(const Value: Integer);
begin
FIDCategoria := Value;
end;
procedure TContas.SetIDContato(const Value: Integer);
begin
FIDContato := Value;
end;
procedure TContas.SetIDs(const Value: String);
begin
FIDs := Value;
end;
procedure TContas.SetNumeroDocumento(const Value: String);
begin
FNumeroDocumento := Value;
end;
procedure TContas.SetObservacoes(const Value: String);
begin
FObservacoes := Value;
end;
procedure TContas.SetParcela(const Value: String);
begin
FParcela := Value;
end;
procedure TContas.SetSoma(const Value: Real);
begin
FSoma := Value;
end;
procedure TContas.SetTipoCobranca(const Value: String);
begin
FTipoCobranca := Value;
end;
procedure TContas.SetTipoConta(const Value: String);
begin
FTipoConta := Value;
end;
procedure TContas.SetUsuario(const Value: Integer);
begin
FUsuario := Value;
end;
procedure TContas.SetValorConta(const Value: Real);
begin
FValorConta := Value;
end;
end.