-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbasedatos.cpp
More file actions
487 lines (429 loc) · 16.2 KB
/
basedatos.cpp
File metadata and controls
487 lines (429 loc) · 16.2 KB
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
//---------------------------------------------------------------------------
#include <vcl.h>
#include <vector.h>
#include <algorithm>
#include <io.h>
#pragma hdrstop
#include "basedatos.h"
#include "archivoclientes.h"
#include "archivoproductos.h"
#include "dialogoproducto.h"
#include "cuentacorriente.h"
#include "facturacion.h"
#include "buscarclientes.h"
#include "buscarproductos.h"
#include "seleccionarcliente.h"
#include "seleccionarproducto.h"
#include "auxiliar.h"
#include "numeracion.h"
#include "configuracion.h"
#include "impresion.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma link "AbBase"
#pragma link "AbBrowse"
#pragma link "AbZBrows"
#pragma link "AbZipper"
#pragma link "AbCabMak"
#pragma link "AbCBrows"
#pragma resource "*.dfm"
TBD *BD;
bool enabledflush = true;
//---------------------------------------------------------------------------
__fastcall TBD::TBD(TComponent* Owner)
: TDataModule(Owner)
{
}
//---------------------------------------------------------------------------
int TBD::GetBDEError(EDatabaseError *E)
{
if (E->ClassNameIs("EDBEngineError"))
{
EDBEngineError *pDBE = (EDBEngineError *)E;
return pDBE->Errors[pDBE->ErrorCount - 1]->ErrorCode;
}
return -1;
}
//---------------------------------------------------------------------------
void __fastcall TBD::TableProductosPostError(
TDataSet *DataSet, EDatabaseError *E, TDataAction &Action)
{
if (GetBDEError(E) == DBIERR_KEYVIOL)
{
MessageBox(FormDialogoProducto->Handle, "El código ya existe. "
"Seleccione otro.", Application->Title.c_str(),
MB_APPLMODAL | MB_OK | MB_ICONERROR);
Abort();
}
}
//---------------------------------------------------------------------------
void TBD::ActivarTableCuentasCorrientesAfterPost(bool activar)
{
if (activar) TableCuentasCorrientes->AfterPost =
TableCuentasCorrientesAfterPost;
else TableCuentasCorrientes->AfterPost = NULL;
}
//---------------------------------------------------------------------------
void TBD::ActivarTableCuentasCorrientesBeforeEdit(bool activar)
{
if (activar) TableCuentasCorrientes->BeforeEdit =
TableCuentasCorrientesBeforeEdit;
else TableCuentasCorrientes->BeforeEdit = NULL;
}
//---------------------------------------------------------------------------
void __fastcall TBD::TableCuentasCorrientesAfterPost(
TDataSet *DataSet)
{
FormCuentaCorriente->ActualizarSaldos();
FormCuentaCorriente->ActualizarCantidadRegistros();
FlushDataSet(DataSet);
}
//---------------------------------------------------------------------------
void __fastcall TBD::TableCuentasCorrientesObservacionGetText(
TField *Sender, AnsiString &Text, bool DisplayText)
{
Text = Sender->AsString;
}
//---------------------------------------------------------------------------
void __fastcall TBD::TableCuentasCorrientesObservacionSetText(
TField *Sender, const AnsiString Text)
{
Sender->AsString = Text;
}
//---------------------------------------------------------------------------
void __fastcall TBD::TableCuentasCorrientesTipoDocumentoGetText(
TField *Sender, AnsiString &Text, bool DisplayText)
{
if (! TableCuentasCorrientes->IsEmpty())
{
int tipodocumento = Sender->AsInteger;
Text = (tipodocumento < 0? "": FormFacturacion->Documentos(
Sender->AsInteger).c_str());
}
}
//---------------------------------------------------------------------------
void __fastcall TBD::TableCuentasCorrientesNumeroDocumentoGetText(
TField *Sender, AnsiString &Text, bool DisplayText)
{
if (! TableCuentasCorrientes->IsEmpty())
{
int numerodocumento = Sender->AsInteger;
Text = (numerodocumento < 0? "": IntToStr(numerodocumento).c_str());
}
}
//---------------------------------------------------------------------------
void __fastcall TBD::TableDocumentosTipoDocumentoGetText(
TField *Sender, AnsiString &Text, bool DisplayText)
{
if (! TableDocumentos->IsEmpty())
{
int tipodocumento = Sender->AsInteger;
Text = (tipodocumento < 0? "": FormFacturacion->Documentos(
Sender->AsInteger).c_str());
}
}
//---------------------------------------------------------------------------
void __fastcall TBD::TableCuentasCorrientesBeforeEdit(
TDataSet *DataSet)
{
/* NOTA: aca se pueden cargar los montos de los debes
y los haberes */
int tipodocumento = DataSet->FieldValues["TipoDocumento"];
int columna = FormCuentaCorriente->DBGrid->SelectedField->Index;
int colobs = TableCuentasCorrientes->FieldByName("Observacion")->Index;
int coldebe = TableCuentasCorrientes->FieldByName("Debe")->Index;
int colhaber = TableCuentasCorrientes->FieldByName("Haber")->Index;
double debe = TableCuentasCorrientes->FieldValues["Debe"];
double haber = TableCuentasCorrientes->FieldValues["Haber"];
if (tipodocumento < 0)
{
if (columna == coldebe && haber != 0) Abort();
if (columna == colhaber && debe != 0) Abort();
}
else
{
if (columna != colobs)
{
Abort();
}
}
}
//---------------------------------------------------------------------------
void __fastcall TBD::TableCuentasCorrientesAfterDelete(TDataSet *DataSet)
{
FormCuentaCorriente->ActualizarCantidadRegistros();
FlushDataSet(DataSet);
}
//---------------------------------------------------------------------------
void __fastcall TBD::TableDocumentosEstadoGetText(TField *Sender,
AnsiString &Text, bool DisplayText)
{
if (! TableDocumentos->IsEmpty())
{
int estado = Sender->AsInteger;
Text = (estado < 0? "": FormFacturacion->Estados(
Sender->AsInteger).c_str());
}
}
//---------------------------------------------------------------------------
void __fastcall TBD::TableVentasMensualMesGetText(TField *Sender,
AnsiString &Text, bool DisplayText)
{
if (! TableVentasMensual->IsEmpty())
{
int mes = Sender->AsInteger;
if (mes != 0)
{
TDate tmp = StrToDate("1/" + IntToStr(mes) + "/1");
Text = tmp.FormatString("mmmm");
}
}
}
//---------------------------------------------------------------------------
void TBD::PackParadox(const AnsiString ADatabase, const AnsiString ATable)
{
CRTblDesc PdxStruct;
TDatabase *ADB = Session->OpenDatabase(ADatabase);
try {
memset((void*) &PdxStruct, 0, sizeof(PdxStruct));
strcpy(PdxStruct.szTblName, ATable.c_str());
PdxStruct.bPack = True;
Check(DbiDoRestructure(ADB->Handle, 1, &PdxStruct,
0, 0, 0, False));
}
__finally {
Session->CloseDatabase(ADB);
}
}
//---------------------------------------------------------------------------
bool TBD::ActivarBaseDatos(bool estado)
{
TTable *tabla;
for (int i = 0; i < BD->ComponentCount; i++)
{
if (AnsiString(BD->Components[i]->ClassName()) == "TTable")
{
tabla = static_cast<TTable *>(BD->Components[i]);
try {
tabla->Active = estado;
//if (tabla->Active != estado) ShowMessage("Error de mierda 2!!!");;
}
catch (...) {
//ShowMessage("Error de mierda 1!!!");
return false;
}
}
}
return true;
}
//---------------------------------------------------------------------------
void TBD::Compactar()
{
TTable *tabla;
AnsiString dirBD = GetCurrentDir() + "\\datos";
for (int i = 0; i < BD->ComponentCount; i++)
{
if (AnsiString(BD->Components[i]->ClassName()) == "TTable")
{
tabla = static_cast<TTable *>(BD->Components[i]);
BD->PackParadox(dirBD, tabla->TableName);
}
}
}
//---------------------------------------------------------------------------
bool TBD::CopiaSeguridad(AnsiString dirdest, AnsiString nombre)
{
TTable *tabla;
AnsiString cab = dirdest + "\\" + nombre + ".cab";
AnsiString fichconf = ExtractFileName(FICHCONFIG);
AnsiString fichcert = FormConfiguracion->Certificado();
AnsiString fichclave = FormConfiguracion->ClavePrivada();
if (access(dirdest.c_str(), 06) != 0) return false;
ReducirBackup(dirdest, FormConfiguracion->BackupsConservar());
AbMakeCab->FileName = cab;
AbMakeCab->AddFilesEx("datos\\*.*", "datos\\PDOXUSRS.NET", faAnyFile);
AbMakeCab->AddFiles(fichconf, faAnyFile);
if (access("AFIP_XML.log", 04) == 0)
{
AbMakeCab->AddFiles("AFIP_XML.log", faAnyFile);
}
if (access("AFIP_eventos.log", 04) == 0)
{
AbMakeCab->AddFiles("AFIP_eventos.log", faAnyFile);
}
if (access(fichcert.c_str(), 04) == 0)
{
AbMakeCab->AddFiles(fichcert, faAnyFile);
}
if (access(fichclave.c_str(), 04) == 0)
{
AbMakeCab->AddFiles(fichclave, faAnyFile);
}
AbMakeCab->CloseArchive();
return true;
}
//---------------------------------------------------------------------------
bool TBD::SetearAlias(AnsiString alias)
{
TTable *tabla;
if (! Session->IsAlias(alias))
{
AnsiString dir = GetCurrentDir() + "\\datos";
try {
Session->AddStandardAlias(alias, dir, "PARADOX");
Session->NetFileDir = dir;
//Session->SaveConfigFile();
}
catch (...) {
return false;
}
}
for (int i = 0; i < BD->ComponentCount; i++)
{
if (AnsiString(BD->Components[i]->ClassName()) == "TTable")
{
tabla = static_cast<TTable *>(BD->Components[i]);
tabla->DatabaseName = alias;
}
}
Database->DatabaseName = alias; // para transacciones
return true;
}
//---------------------------------------------------------------------------
void __fastcall TBD::TableProductosMensualMesGetText(TField *Sender,
AnsiString &Text, bool DisplayText)
{
if (! TableProductosMensual->IsEmpty())
{
int mes = Sender->AsInteger;
if (mes != 0)
{
TDate tmp = StrToDate("1/" + IntToStr(mes) + "/1");
Text = tmp.FormatString("mmmm");
}
}
}
//---------------------------------------------------------------------------
void TBD::ReducirBackup(AnsiString dir, int conservar)
{
WIN32_FIND_DATA data;
HANDLE find;
vector<AnsiString> ficheros;
AnsiString tmp;
find = FindFirstFile((dir + "\\*.cab").c_str(), &data);
do
{
tmp = data.cFileName;
if (tmp == "." || tmp == "..") continue;
ficheros.push_back(tmp);
} while (FindNextFile(find, &data));
sort(ficheros.begin(), ficheros.end());
int borrar = ficheros.size() - conservar;
if (borrar > 0)
{
for (int c = 0; c < borrar; c++)
{
//ShowMessage(ficheros[c]);
DeleteFile(dir + "\\" + ficheros[c]);
}
}
}
//---------------------------------------------------------------------------
bool TBD::GuardarSaldos()
{
AnsiString dirdest = FormConfiguracion->CopiaDirectorio();
Impresion imp;
if (access(dirdest.c_str(), 06) != 0) return false;
AnsiString nombre = FechaHoraBackup();
AnsiString dir = dirdest + "\\Saldos";
MkDir(dir);
AnsiString fichero = dir + "\\" + nombre + ".txt";
imp.ExportarSaldos(fichero);
return true;
}
//---------------------------------------------------------------------------
void __fastcall TBD::TableProductosDescripcionGetText(TField *Sender,
AnsiString &Text, bool DisplayText)
{
TTable *table = (TTable *)Sender->DataSet;
if (! table->IsEmpty())
{
AnsiString codigo = table->FieldByName("CodigoProducto")->AsString;
if (BuscarClave(TableProductos, "CodigoProducto", Variant(codigo)))
{
Text = TableProductos->FieldByName("Descripcion")->AsString;
}
else
{
Text = "*";
}
}
}
//---------------------------------------------------------------------------
void __fastcall TBD::TableProductosUnidadGetText(TField *Sender,
AnsiString &Text, bool DisplayText)
{
TTable *table = (TTable *)Sender->DataSet;
if (! table->IsEmpty())
{
AnsiString codigo = table->FieldByName("CodigoProducto")->AsString;
if (BuscarClave(TableProductos, "CodigoProducto", Variant(codigo)))
{
Text = TableProductos->FieldByName("Unidad")->AsString;
}
else
{
Text = "*";
}
}
}
//---------------------------------------------------------------------------
void TBD::RefrescarTablas()
{
for (int i = 0; i < BD->Database->DataSetCount; i++)
{
BD->Database->DataSets[i]->Refresh();
}
}
//---------------------------------------------------------------------------
void TBD::CancelarTablas()
{
for (int i = 0; i < BD->Database->DataSetCount; i++)
{
BD->Database->DataSets[i]->Cancel();
}
}
//---------------------------------------------------------------------------
void TBD::FlushTablas()
{
for (int i = 0; i < BD->Database->DataSetCount; i++)
{
BD->Database->DataSets[i]->FlushBuffers();
}
}
//---------------------------------------------------------------------------
void __fastcall TBD::TableKilogramosMensualMesGetText(TField *Sender,
AnsiString &Text, bool DisplayText)
{
if (! TableKilogramosMensual->IsEmpty())
{
int mes = Sender->AsInteger;
if (mes != 0)
{
TDate tmp = StrToDate("1/" + IntToStr(mes) + "/1");
Text = tmp.FormatString("mmmm");
}
}
}
//---------------------------------------------------------------------------
void __fastcall TBD::FlushDataSet(TDataSet *DataSet)
{
TTable *tabla = static_cast<TTable *>(DataSet);
if (enabledflush) tabla->FlushBuffers();
}
//---------------------------------------------------------------------------
void TBD::FlushEnabled(bool value)
{
enabledflush = value;
}
//---------------------------------------------------------------------------