-
Notifications
You must be signed in to change notification settings - Fork 2
/
facturacion.h
185 lines (179 loc) · 6.36 KB
/
facturacion.h
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
//---------------------------------------------------------------------------
#ifndef facturacionH
#define facturacionH
//---------------------------------------------------------------------------
#include <vector.h>
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Grids.hpp>
#include <DBGrids.hpp>
#include <ExtCtrls.hpp>
#include <DBCtrls.hpp>
#include <Mask.hpp>
#include <Menus.hpp>
#include <Buttons.hpp>
#include <ComCtrls.hpp>
#include <ImgList.hpp>
#include <ToolWin.hpp>
#include <Dialogs.hpp>
#include "AFIP.h"
#include <jpeg.hpp>
//---------------------------------------------------------------------------
enum {
DOC_REMITO,
DOC_FACTURA, // tradicional
DOC_CREDITOREMITO,
DOC_CREDITOFACTURA, // tradicional
DOC_FACTURAELECT,
DOC_CREDITOELECT,
DOC_DEBITOELECT,
DOC_PEDIDO,
DOC_N
};
enum {
EST_IMPRESO,
EST_SINIMPRIMIR,
EST_ANULADO,
EST_N
};
//---------------------------------------------------------------------------
class TFormFacturacion : public TForm
{
__published: // IDE-managed Components
TPanel *PanelFactura1;
TStringGrid *StringGridCodigos;
TPanel *PanelSuperior;
TGroupBox *GroupBox1;
TLabel *Label4;
TDBEdit *DBEditNombreFactura;
TLabel *Label6;
TDBEdit *DBEditDireccion;
TLabel *Label7;
TLabel *Label8;
TLabel *Label5;
TDBEdit *DBEditNumeroCliente;
TDBEdit *DBEditLocalidad;
TDBEdit *DBEditProvincia;
TPanel *PanelFactura2;
TStringGrid *StringGridFactura;
TPanel *Panel1;
TPanel *Panel2;
TPanel *Panel3;
TLabel *Label2;
TEdit *EditSubtotal;
TLabel *Label3;
TEdit *EditDescuentoTotal;
TLabel *Label13;
TEdit *EditSubtotal2;
TLabel *Label14;
TEdit *EditIVATotal;
TLabel *Label15;
TEdit *EditTotal;
TPanel *Panel4;
TMemo *MemoComunicado;
TLabel *Label16;
TLabel *Label1;
TEdit *EditDescuento;
TLabel *Label19;
TLabel *LabelTipoDocumento;
TComboBox *ComboBoxTipoDocumento;
TLabel *LabelDescuento;
TLabel *LabelIVA;
TPopupMenu *PopupMenuCodigos;
TMenuItem *MenuItemSeleccionar2;
TMenuItem *MenuItemSinCargo2;
TBitBtn *BitBtnRecuperarUltimo;
TPanel *Panel5;
TButton *ButtonSiguiente;
TButton *ButtonCancelar;
TPanel *Panel6;
TButton *ButtonImprimir;
TButton *ButtonSinImprimir;
TButton *ButtonVolver;
TButton *ButtonCancelar2;
TGroupBox *GroupBox2;
TLabel *Label9;
TLabel *Label10;
TLabel *Label11;
TLabel *Label12;
TEdit *EditNumeroDocumento;
TEdit *EditFecha;
TDBEdit *DBEditPosicionIVA;
TDBEdit *DBEditCUIT;
TMainMenu *MainMenu;
TMenuItem *MenuItemArchivo;
TMenuItem *MenuItemCambiarCliente;
TMenuItem *MenuItemCerrar;
TMenuItem *MenuItemProducto;
TMenuItem *MenuItemSeleccionar;
TMenuItem *MenuItemSinCargo;
TEdit *EditHora;
TToolBar *ToolBar;
TImageList *ImageList;
TToolButton *ToolButtonCambiarCliente;
TPanel *PanelNumeroComprobante;
TEdit *EditNumeroComprobante;
TLabel *Label17;
TEdit *EditPuntoVenta;
TLabel *Label18;
TPanel *PanelComprobanteAsociado;
TLabel *Label20;
TLabel *Label21;
TEdit *EditNumeroComprobanteAsociado;
TEdit *EditPuntoVentaComprobanteAsociado;
TPanel *PanelAFIP;
TImage *ImageAFIP;
void __fastcall StringGridCodigosKeyPress(TObject *Sender,
char &Key);
void __fastcall FormCreate(TObject *Sender);
void __fastcall ButtonSiguienteClick(TObject *Sender);
void __fastcall ButtonVolverClick(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
void __fastcall EditDescuentoKeyPress(TObject *Sender, char &Key);
void __fastcall ComboBoxTipoDocumentoChange(TObject *Sender);
void __fastcall ButtonImprimirSinImprimirClick(TObject *Sender);
void __fastcall StringGridCodigosContextPopup(TObject *Sender,
TPoint &MousePos, bool &Handled);
void __fastcall BitBtnRecuperarUltimoClick(TObject *Sender);
void __fastcall StringGridCodigosDrawCell(TObject *Sender,
int ACol, int ARow, TRect &Rect, TGridDrawState State);
void __fastcall MenuItemCerrarClick(TObject *Sender);
void __fastcall MenuItemCambiarClienteClick(TObject *Sender);
void __fastcall MenuItemSeleccionarClick(TObject *Sender);
void __fastcall MenuItemSinCargoClick(TObject *Sender);
void __fastcall MenuItemProductoClick(TObject *Sender);
void __fastcall ToolButtonCambiarClienteClick(TObject *Sender);
void __fastcall StringGridFacturaDrawCell(TObject *Sender,
int ACol, int ARow, TRect &Rect, TGridDrawState State);
void __fastcall EditNumeroComprobanteKeyPress(TObject *Sender,
char &Key);
private: // User declarations
/* Mis declaraciones */
vector<bool> SinCargo;
void ConfigurarRenglones(int tipodocumento);
bool TraducirCodigos();
bool CalcularFactura();
void LimpiarRenglones();
void ArchivarDocumento(int);
void CargarEnCuentaCorriente();
void CargarRenglones(int, int);
void ArchivarDatosFE(FE &fe);
AnsiString ObtenerNombreAFIP(AnsiString cuit);
public: // User declarations
__fastcall TFormFacturacion(TComponent* Owner);
/* Mis declaraciones */
void NuevoDocumento(int, int);
void EditarDocumento(int, int, int);
AnsiString Documentos(int);
AnsiString Estados(int);
void CargarFE(FE &fe);
void CargarDatosFE(FE &fe);
void ArchivarDatosFT();
void AgregarComprobanteAsociado(FE &fe);
};
//---------------------------------------------------------------------------
extern PACKAGE TFormFacturacion *FormFacturacion;
//---------------------------------------------------------------------------
#endif