-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathBemaFIIniFileUnit.pas
414 lines (353 loc) · 11.3 KB
/
BemaFIIniFileUnit.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
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
{
* Nesta versão funciona apenas localizando o INI no diretório especificado na criação
*
TODO: suportar 64bits com detecção auto
}
unit BemaFIIniFileUnit;
interface
uses
System.IniFiles, System.Classes, System.SysUtils, System.Win.Registry,
Dialogs, Winapi.Windows;
type
TBemaFIIniFile = class
constructor create(rootPath: string);
private
FIniFileName: string;
function getPath: string;
procedure setPath(const Value: string);
procedure setIniFileName(const Value: string);
function getPorta: string;
procedure setPorta(const Value: string);
function getCalculoICMSCupom: string;
function getConfigRede: string;
function getControlePorta: string;
function getCrLfGerencial: string;
function getCrLfVinculado: string;
function getEmulMFD: string;
function getForceWTSClient: string;
function getGerarRFD: string;
function getHabilitaRFDImpMFD: string;
function getLog: string;
function getLogDiario: string;
function getModeloImp: string;
function getModoGaveta: string;
function getRetorno: string;
function getRetriesWTSCmd: string;
function getStatus: string;
function getStatusCheque: string;
function getStatusFuncao: string;
function getTimeoutGerencial: string;
procedure setCalculoICMSCupom(const Value: string);
procedure setConfigRede(const Value: string);
procedure setControlePorta(const Value: string);
procedure setCrLfGerencial(const Value: string);
procedure setCrLfVinculado(const Value: string);
procedure setEmulMFD(const Value: string);
procedure setForceWTSClient(const Value: string);
procedure setGerarRFD(const Value: string);
procedure setHabilitaRFDImpMFD(const Value: string);
procedure setLog(const Value: string);
procedure setLogDiario(const Value: string);
procedure setModeloImp(const Value: string);
procedure setModoGaveta(const Value: string);
procedure setRetorno(const Value: string);
procedure setRetriesWTSCmd(const Value: string);
procedure setStatus(const Value: string);
procedure setStatusCheque(const Value: string);
procedure setStatusFuncao(const Value: string);
procedure setTimeoutGerencial(const Value: string);
public
procedure localizarImpressora;
function testarConfig: boolean;
property iniFileName: string read FIniFileName write setIniFileName;
property porta: string read getPorta write setPorta;
property path: string read getPath write setPath;
property Status: string read getStatus write setStatus;
property Retorno: string read getRetorno write setRetorno;
property StatusFuncao: string read getStatusFuncao write setStatusFuncao;
property ControlePorta: string read getControlePorta write setControlePorta;
property ModeloImp: string read getModeloImp write setModeloImp;
property ConfigRede: string read getConfigRede write setConfigRede;
property ModoGaveta: string read getModoGaveta write setModoGaveta;
property Log: string read getLog write setLog;
property LogDiario: string read getLogDiario write setLogDiario;
property CrLfVinculado: string read getCrLfVinculado write setCrLfVinculado;
property CrLfGerencial: string read getCrLfGerencial write setCrLfGerencial;
property TimeOutGerencial: string read getTimeoutGerencial write setTimeoutGerencial;
property EmulMFD: string read getEmulMFD write setEmulMFD;
property StatusCheque: string read getStatusCheque write setStatusCheque;
property CalculoIcmsCupom: string read getCalculoICMSCupom write setCalculoICMSCupom;
property ForceWTSClient: string read getForceWTSClient write setForceWTSClient;
property RetriesWTSCmd: string read getRetriesWTSCmd write setRetriesWTSCmd;
property HabilitaRFDImpMFD: string read getHabilitaRFDImpMFD write setHabilitaRFDImpMFD;
property GerarRFD: string read getGerarRFD write setGerarRFD;
protected
ini: TIniFile;
procedure readProperties;
function readProperty(section, name, default: string): string;
procedure writeProperty(section, name, value: string);
end;
implementation
uses Bematech;
constructor TBemaFIIniFile.create(rootPath: string);
begin
iniFileName := IncludeTrailingPathDelimiter(rootPath) + 'bemafi32.ini';
readProperties;
end;
function TBemaFIIniFile.testarConfig: boolean;
begin
loadAllBematechFunctions;
result := Bematech_FI_AbrePortaSerial = 1;
if result then
ShowMessage('Impressora localizada na porta: ' + porta)
else
ShowMessage('NÃO está na porta: ' + porta);
unloadBematechFunctions;
end;
procedure TBemaFIIniFile.writeProperty(section, name, value: string);
begin
ini.WriteString(section, name, Value)
end;
procedure TBemaFIIniFile.localizarImpressora;
var
i: integer;
coms: TStrings;
begin
porta := 'USB';
if testarConfig then exit;
for i := 0 to coms.count-1 do
begin
porta := 'COM' + IntToStr(i);
if testarConfig then exit;
end;
end;
function getListaCOMs: TStrings;
var
reg: TRegistry;
st: Tstrings;
i: Integer;
begin
reg := TRegistry.Create;
try
reg.RootKey := HKEY_LOCAL_MACHINE;
reg.OpenKey('hardware\devicemap\serialcomm', False);
st := TstringList.Create;
reg.GetValueNames(st);
reg.CloseKey;
finally
reg.Free;
end;
end;
procedure TBemaFIIniFile.readProperties;
begin
getPorta;
getPath;
getCalculoICMSCupom;
getConfigRede;
getControlePorta;
getCrLfGerencial;
getCrLfVinculado;
getEmulMFD;
getForceWTSClient;
getGerarRFD;
getHabilitaRFDImpMFD;
getLog;
getLogDiario;
getModeloImp;
getModoGaveta;
getRetorno;
getRetriesWTSCmd;
getStatus;
getStatusCheque;
getStatusFuncao;
getTimeoutGerencial;
ini.UpdateFile;
end;
function TBemaFIIniFile.readProperty(section, name, default: string): string;
begin
result := ini.ReadString(section, name, default);
writeProperty(section, name, result);
end;
//setters
procedure TBemaFIIniFile.setCalculoICMSCupom(const Value: string);
begin
writeProperty('sistema', 'CalculoICMSCupom', value);
end;
procedure TBemaFIIniFile.setConfigRede(const Value: string);
begin
writeProperty('sistema', 'ConfigRede', value);
end;
procedure TBemaFIIniFile.setControlePorta(const Value: string);
begin
writeProperty('sistema', 'ControlePorta', value);
end;
procedure TBemaFIIniFile.setCrLfGerencial(const Value: string);
begin
writeProperty('sistema', 'CrLfGerencial', value);
end;
procedure TBemaFIIniFile.setCrLfVinculado(const Value: string);
begin
writeProperty('sistema', 'CrLfVinculado', value);
end;
procedure TBemaFIIniFile.setEmulMFD(const Value: string);
begin
writeProperty('sistema', 'EmulMFD', value);
end;
procedure TBemaFIIniFile.setForceWTSClient(const Value: string);
begin
writeProperty('sistema', 'ForceWTSClient', value);
end;
procedure TBemaFIIniFile.setGerarRFD(const Value: string);
begin
writeProperty('sistema', 'GerarRFD', value);
end;
procedure TBemaFIIniFile.setHabilitaRFDImpMFD(const Value: string);
begin
writeProperty('sistema', 'HabilitaRFDImpMFD', value);
end;
procedure TBemaFIIniFile.setIniFileName(const Value: string);
begin
FIniFileName := Value;
ini := TIniFile.Create(Value);
end;
procedure TBemaFIIniFile.setLog(const Value: string);
begin
writeProperty('sistema', 'Log', value);
end;
procedure TBemaFIIniFile.setLogDiario(const Value: string);
begin
writeProperty('sistema', 'LogDiario', value);
end;
procedure TBemaFIIniFile.setModeloImp(const Value: string);
begin
writeProperty('sistema', 'ModeloImp', value);
end;
procedure TBemaFIIniFile.setModoGaveta(const Value: string);
begin
writeProperty('sistema', 'ModoGaveta', value);
end;
procedure TBemaFIIniFile.setPath(const Value: string);
begin
writeProperty('sistema', 'path', value);
end;
procedure TBemaFIIniFile.setPorta(const Value: string);
begin
writeProperty('sistema', 'porta', value);
end;
procedure TBemaFIIniFile.setRetorno(const Value: string);
begin
writeProperty('sistema', 'Retorno', value);
end;
procedure TBemaFIIniFile.setRetriesWTSCmd(const Value: string);
begin
writeProperty('sistema', 'WTSCommand', value);
end;
procedure TBemaFIIniFile.setStatus(const Value: string);
begin
writeProperty('sistema', 'Status', value);
end;
procedure TBemaFIIniFile.setStatusCheque(const Value: string);
begin
writeProperty('sistema', 'StatusCheque', value);
end;
procedure TBemaFIIniFile.setStatusFuncao(const Value: string);
begin
writeProperty('sistema', 'StatusFuncao', value);
end;
procedure TBemaFIIniFile.setTimeoutGerencial(const Value: string);
begin
writeProperty('sistema', 'TimeoutGerencial', value);
end;
//Getters
function TBemaFIIniFile.getPath: string;
begin
result := readProperty('sistema', 'path', extractFilePath(FIniFileName));
end;
function TBemaFIIniFile.getPorta: string;
begin
result := readProperty('sistema', 'porta', 'usb');
end;
function TBemaFIIniFile.getCalculoICMSCupom: string;
begin
result := readProperty('sistema', 'CalculoICMSCupom', '0');
end;
function TBemaFIIniFile.getConfigRede: string;
begin
result := readProperty('sistema', 'ConfigRede', '0');
end;
function TBemaFIIniFile.getControlePorta: string;
begin
result := readProperty('sistema', 'ControlePorta', '1');
end;
function TBemaFIIniFile.getCrLfGerencial: string;
begin
result := readProperty('sistema', 'CrLfGerencial', '0');
end;
function TBemaFIIniFile.getCrLfVinculado: string;
begin
result := readProperty('sistema', 'CrLfVinculado', '0');
end;
function TBemaFIIniFile.getEmulMFD: string;
begin
result := readProperty('sistema', 'EmulMFD', '0');
end;
function TBemaFIIniFile.getForceWTSClient: string;
begin
result := readProperty('sistema', 'ForceWTSClient', '1');
end;
function TBemaFIIniFile.getGerarRFD: string;
begin
result := readProperty('sistema', 'GerarRFD', '0');
end;
function TBemaFIIniFile.getHabilitaRFDImpMFD: string;
begin
result := readProperty('sistema', 'HabilitaRFDImpMFD', '0');
end;
function TBemaFIIniFile.getLog: string;
begin
result := readProperty('sistema', 'Log', '0');
end;
function TBemaFIIniFile.getLogDiario: string;
begin
result := readProperty('sistema', 'LogDiario', '0');
end;
function TBemaFIIniFile.getModeloImp: string;
begin
result := readProperty('sistema', 'modeloImp', 'BEMATCH');
end;
function TBemaFIIniFile.getModoGaveta: string;
begin
result := readProperty('sistema', 'ModoGaveta', '0');
end;
function TBemaFIIniFile.getRetorno: string;
begin
result := readProperty('sistema', 'Retorno', '0');
end;
function TBemaFIIniFile.getRetriesWTSCmd: string;
begin
result := readProperty('sistema', 'WTSCmd', '');
end;
function TBemaFIIniFile.getStatus: string;
begin
result := readProperty('sistema', 'Status', '0');
end;
function TBemaFIIniFile.getStatusCheque: string;
begin
result := readProperty('sistema', 'StatusCheuqe', '');
end;
function TBemaFIIniFile.getStatusFuncao: string;
begin
result := readProperty('sistema', 'StatusFuncao', '0');
end;
function TBemaFIIniFile.getTimeoutGerencial: string;
begin
result := readProperty('sistema', 'TimeoutGerencial', '40');
end;
end.
{
[Sistema]
[MFD]
Impressora=1
StatusErro=1
TimeOutZ=99
}