-
Notifications
You must be signed in to change notification settings - Fork 0
/
uFrmConfigSAT.pas
274 lines (243 loc) · 7.9 KB
/
uFrmConfigSAT.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
262
263
264
265
266
267
268
269
270
271
272
273
274
unit uFrmConfigSAT;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.ComCtrls, Vcl.StdCtrls,
Vcl.Buttons, Data.DB, Datasnap.DBClient, Vcl.Grids, Vcl.DBGrids, Xml.adomxmldom,
Xml.xmldom, Xml.XMLIntf, Xml.XMLDoc, Datasnap.Provider, Datasnap.Xmlxform,
Vcl.Mask, Vcl.Samples.Spin;
type
TFrmConfigSAT = class(TForm)
Paginas: TPageControl;
TBPesquisa: TTabSheet;
Panel1: TPanel;
Label1: TLabel;
Tabela: TClientDataSet;
DataSource1: TDataSource;
GPProdutos: TGroupBox;
Label3: TLabel;
codigo_ativacao: TEdit;
Panel2: TPanel;
BtnSalvar: TButton;
BtnCancelar: TButton;
Label2: TLabel;
assinaturaSW: TMemo;
GroupBox1: TGroupBox;
Label9: TLabel;
impressoraSAT: TComboBox;
mostraPreview: TCheckBox;
Label4: TLabel;
caminho_sat: TEdit;
Button1: TButton;
GroupBox2: TGroupBox;
margem_direita: TSpinEdit;
margem_esquerda: TSpinEdit;
margem_fundo: TSpinEdit;
margem_topo: TSpinEdit;
Label5: TLabel;
Label6: TLabel;
Label8: TLabel;
Label7: TLabel;
FileOpenDialog1: TFileOpenDialog;
Button2: TButton;
Button3: TButton;
procedure BtnSalvarClick(Sender: TObject);
Procedure FormatXMLFile(XmlFile:string);
procedure FormShow(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
procedure carregaEdits();
Function SemAcentos ( Texto: string ): string;
procedure codigo_ativacaoKeyPress(Sender: TObject; var Key: Char);
function StrTran(pVariavel, pVelho, pNovo: String): String;
procedure BtnCancelarClick(Sender: TObject);
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
FrmConfigSAT: TFrmConfigSAT;
implementation
uses
uFrmMenu;
{$R *.dfm}
procedure TFrmConfigSAT.BtnCancelarClick(Sender: TObject);
begin
close;
end;
procedure TFrmConfigSAT.BtnSalvarClick(Sender: TObject);
begin
//dados do Produto
Tabela.FieldByName('assinaturaSW').AsString := Trim(assinaturaSW.Text);
Tabela.FieldByName('codigo_ativacao').AsString := Trim(codigo_ativacao.Text);
Tabela.FieldByName('caminho_dll').AsString := caminho_sat.Text;
Tabela.FieldByName('mostra_preview').AsBoolean := mostraPreview.Checked;
Tabela.FieldByName('impressora').AsString := impressoraSAT.Text;
Tabela.FieldByName('margem_direita').AsString := margem_direita.Text;
Tabela.FieldByName('margem_esquerda').AsString := margem_esquerda.Text;
Tabela.FieldByName('margem_fundo').AsString := margem_fundo.Text;
Tabela.FieldByName('margem_topo').AsString := margem_topo.Text;
Tabela.Post;
Tabela.SaveToFile('dados/configs.xml',dfXML);
FormatXMLFile('dados/configs.xml');
ShowMessage('Dados Gravados com sucesso!!');
end;
procedure TFrmConfigSAT.Button1Click(Sender: TObject);
begin
if FileOpenDialog1.Execute then
begin
caminho_sat.Text := FileOpenDialog1.FileName;
end;
end;
procedure TFrmConfigSAT.Button2Click(Sender: TObject);
begin
try
try
Enabled := False;
Refresh;
FrmMenu.ACBrSAT1.bloquearSAT;
ShowMessage('SAT Debloqueado com Sucesso');
except
ShowMessage('O CORREU UM ERRO NA EXECU^ÇÃO DA OPERAÇÃO');
end;
finally
Enabled := true;
Refresh;
end;
end;
procedure TFrmConfigSAT.Button3Click(Sender: TObject);
begin
try
try
Enabled := False;
Refresh;
FrmMenu.ACBrSAT1.DesbloquearSAT;
ShowMessage('SAT Debloqueado com Sucesso');
except
ShowMessage('O CORREU UM ERRO NA EXECU^ÇÃO DA OPERAÇÃO');
end;
finally
Enabled := true;
Refresh;
end;
end;
procedure TFrmConfigSAT.carregaEdits;
begin
assinaturaSW.Text := Tabela.FieldByName('assinaturaSW').AsString;
codigo_ativacao.Text := Tabela.FieldByName('codigo_ativacao').AsString;
caminho_sat.Text := Tabela.FieldByName('caminho_dll').AsString;
mostraPreview.Checked := Tabela.FieldByName('mostra_preview').AsBoolean;
impressoraSAT.Text := Tabela.FieldByName('impressora').AsString;
margem_direita.Text := Tabela.FieldByName('margem_direita').AsString;
margem_esquerda.Text := Tabela.FieldByName('margem_esquerda').AsString;
margem_fundo.Text := Tabela.FieldByName('margem_fundo').AsString;
margem_topo.Text := Tabela.FieldByName('margem_topo').AsString;
end;
Procedure TFrmConfigSAT.FormatXMLFile(XmlFile:string);
var
oXml : TXMLDocument;
s : utf8String;
begin
oXml := TXMLDocument.Create(nil);
try
oXml.LoadFromFile(XmlFile);
s := oxml.XML.Text;
s := StringReplace(s, '><', '>' + #13#10 + '<' , [rfReplaceAll]);
oXml.XML.Text:= FormatXMLData(oxml.XML.Text);
oxml.XML.Text := s;
oXml.Active := true;
oXml.SaveToFile(XmlFile);
finally
oXml := nil;
end;
end;
procedure TFrmConfigSAT.FormClose(Sender: TObject;
var Action: TCloseAction);
begin
Action := caFree;
end;
procedure TFrmConfigSAT.FormDestroy(Sender: TObject);
begin
FrmConfigSAT := nil;
end;
procedure TFrmConfigSAT.FormShow(Sender: TObject);
begin
if Tabela.FieldCount=0 then
begin
Tabela.FieldDefs.Clear;
tabela.FieldDefs.Add('assinaturaSW', ftMemo, 0, false);
tabela.FieldDefs.Add('codigo_ativacao', ftString, 20, false);
tabela.FieldDefs.Add('caminho_dll', ftString, 200, false);
tabela.FieldDefs.Add('mostra_preview', ftBoolean, 0, false);
tabela.FieldDefs.Add('impressora', ftString, 200, false);
tabela.FieldDefs.Add('margem_direita', ftInteger, 0, false);
tabela.FieldDefs.Add('margem_esquerda', ftInteger, 0, false);
tabela.FieldDefs.Add('margem_fundo', ftInteger, 0, false);
tabela.FieldDefs.Add('margem_topo', ftInteger, 0, false);
Tabela.CreateDataSet;
end;
if not (FileExists('dados/configs.xml')) then
begin
Tabela.SaveToFile('dados/configs.xml',dfXML);
end;
tabela.LoadFromFile('dados/configs.xml');
Tabela.Active;
//Coloco a Tabela em Modo de inserção ou Edição
if Tabela.RecordCount > 0 then
begin
carregaEdits;
Tabela.Edit;
end else
begin
Tabela.Append;
end;
//Inicio sempre a Pagina na Pesquisa
Paginas.ActivePageIndex := 0;
end;
procedure TFrmConfigSAT.codigo_ativacaoKeyPress(Sender: TObject; var Key: Char);
begin
// if not (Key in['0'..'9','a'..'z','A'..'Z','@', ' ',Chr(8)]) then
// Key:= #0
end;
function TFrmConfigSAT.SemAcentos ( Texto: string ): string;
var
Contar, Posicao: integer;
Acentos, TiraAcentos: string;
begin
Acentos:='áäàãâÁÄÀÃÂéëèêÉËÈÊíïìîÍÏÌÎóöòõôÓÖÒÕÔúüùûÚÜÙÛçÇ';
TiraAcentos:='aaaaaAAAAAeeeeEEEEiiiiIIIIoooooOOOOOuuuuUUUUcC';
Result:='';
For Contar:=1 to Length(Texto) do
begin
Posicao:=Pos(Copy(Texto,Contar,1),Acentos);
If Posicao=0 then
Result:=Result+Copy(Texto,Contar,1)
else
Result:=Result+Copy(TiraAcentos,Posicao,1);
end;
end;
function TFrmConfigSAT.StrTran(pVariavel, pVelho, pNovo: String): String;
var
NovoTexto, Texto: String;
PosIni, TamTexto, TamVelho: Integer;
begin
Texto := pVariavel;
while Pos(pVelho, Texto) > 0 do begin
PosIni := Pos(pVelho, Texto);
TamTexto := Length(Texto);
TamVelho := Length(pVelho);
if PosIni = 1 then
NovoTexto := pNovo+Copy(Texto, PosIni+TamVelho, TamTexto-TamVelho)
else if PosIni = TamTexto then
NovoTexto := Copy(Texto, 1, TamTexto-TamVelho)+pNovo
else
NovoTexto := Copy(Texto, 1, PosIni-1)+pNovo+Copy(Texto, PosIni+TamVelho, TamTexto-PosIni+TamVelho-1);
Texto := NovoTexto;
end;
Result := Texto;
end;
end.