-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatolkktunit.pas
1426 lines (1185 loc) · 36 KB
/
atolkktunit.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
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
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
unit AtolKKTUnit;
//------------------------------------------------------------------------------
// Фасад для взаимодействия с драйвером АТОЛ через COM\OLE
//------------------------------------------------------------------------------
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, ComObj, Windows, Variants, DateUtils;
type
FFDVersionType=(ffd10, ffd105, ffd11);
NDSType=(ndsSection, ndsNo, nds0, nds10, nds18, nds18118, nds10110);
TypeCloseType=(tcCash, tc1, tc2, tc3, tc4, tc5, tc6);
DiscountType=(dtDisabled, dtWholeCheck, dtCheckPosition, dtWholeAndCheckPosition);
EATOLException = class(Exception)
private
FErrorCode: integer;
public
constructor Create(const Msg: string; const ErrCode: integer);
property ErrorCode: integer read FErrorCode write FErrorCode;
end;
EATOLLogicException = class(Exception);
TAtolFont = class(TObject)
public
FontBold: boolean;
FontItalic: boolean;
FontNegative: boolean;
FontUnderline: boolean;
FontDblHeight: boolean;
FontDblWidth: boolean;
TextWrap: byte;
Alignment: byte;
end;
TAtolKKT = class(TObject)
private
ECR: OleVariant;
fResultCode: integer;
fResultStr: string;
fCurrentDeviceNumber: integer;
fFFDVersion: FFDVersionType;
fAdminPassword: string;
fOperatorPassword: string;
fDTOVersion: integer; // версия ДТО в виде числа (получается после создания объекта)
fNameAndPriceOnOneLine: boolean;
fTextWrap: integer;
fEnabledDiscount: DiscountType;
fCashRegisterNum: byte;
function GetConnected: boolean;
procedure SetCurrentDeviceNumber(const Value: integer);
function getNDSInt(const nds: NDSType): integer;
function getVersionInt: integer; // для определения версии ДТО, чтобы понять как кодировать размер НДС
function getDocNumber: integer;
function TypeCloseToInt(const tc: TypeCloseType): integer;
procedure setResultCodeAndStrAndRaiseException;
procedure setEnabledDiscount(const Value: DiscountType);
function getEnabledDiscount: DiscountType;
procedure setCashRegisterNum(const Value: byte);
function getCashRegisterNum: byte;
procedure getResultCodeAndCheckOutOfPaper;
procedure setFFDVersion(const Value: FFDVersionType);
procedure UpdateDeviceProperties;
procedure LogText(const st: string);
public
property ResultCode: integer read fResultCode;
property ResultStr: string read fResultStr;
property Connected: boolean read GetConnected;
property CurrentDeviceNumber: integer read fCurrentDeviceNumber write SetCurrentDeviceNumber;
property FFDVersion: FFDVersionType read fFFDVersion write setFFDVersion;
property AdminPassword: string read fAdminPassword write fAdminPassword;
property OperatorPassword: string read fOperatorPassword write fOperatorPassword;
property NameAndPriceOnOneLine: boolean read fNameAndPriceOnOneLine write fNameAndPriceOnOneLine;
property TextWrap: integer read fTextWrap write fTextWrap;
property EnabledDiscount: DiscountType read fEnabledDiscount write SetEnabledDiscount;
property CashRegisterNum: byte read fCashRegisterNum write setCashRegisterNum;
constructor Create(handle: HWnd);
destructor Destroy; override;
function getKKMSum: real;
function getNonTransferedToOFDCount: integer;
function isSessionOpened: boolean;
function isSessionExceedLimit24: boolean;
procedure showProperties;
function getStatus: string;
function getMode(const get_register: boolean = false): integer;
function isFiskal: boolean;
procedure connectToDevice;
function cashIncome(const sm:real): boolean;
function cashOutcome(const sm:real): boolean;
function openIncomeCheck(const int_check_num: integer = 0; const open: boolean = true): boolean;
function addProductToIncomeCheck(const name: string; const price: real; const kol: integer; const nds: NDSType; const barcode: string = ''; const dep: integer = 0; const discount: real = 0): boolean;
function addProductToReturnCheck(const name: string; const price: real; const kol: integer; const nds: NDSType; const barcode: string = ''; const dep: integer = 0; const discount: real = 0): boolean;
function closeIncomeCheck(const check_sm: real; const check_discount_sm: real = 0; const type_close: TypeCloseType = tcCash; const cash_sm: real = 0): integer;
function closeReturnCheck(const type_close: TypeCloseType = tcCash; const check_discount_sm: real = 0): boolean;
function openReturnCheck(const int_check_num: integer = 0; const open: boolean = false): boolean;
function getROMVersion: string;
function openSession: boolean;
procedure getXReport;
procedure getZReport; // closeSession
function setTime(const hour,minute,sec: byte): boolean;
function getKKMDateTime: TDateTime;
function getKKMEarnings: real;
function getKKMEarningSession: real;
function getNDSByInt(const nds: integer): NDSType;
function getSerialNumber: string;
procedure printStringList(const text: string; const setmode_one: boolean = false; const use_print_string: boolean = false);
procedure printTStringList(var lst: TStringList; const setmode_one: boolean = false; const use_print_string: boolean = false);
procedure printHeader();
procedure printFooter();
procedure resetSummary;
procedure techReset;
function getCheckFontSizeString: string;
procedure setCheckFontSize(const sz: byte);
function getCheckFontSizeVertical: integer;
function getCharSpacing: integer;
function getFontSizeHorizontal: integer;
function getCheckLineSpacing: integer;
function setMode(const mode: byte; const force: boolean = false): boolean;
function getSessionNumber: integer;
function progGetValue(const p: integer): integer;
function progGetCaption(const p: integer): string;
procedure progSetValue(const p,val:integer);
procedure progSetCaption(const p:integer; const val: string);
procedure FullCut;
procedure PartialCut;
function getDevicesSettingsString: string;
procedure PrintLastCheckCopy;
end;
implementation
procedure TAtolKKT.LogText(const st: string);
var f:textfile;
tmp,fnm:string;
begin
fnm := ExtractFilePath(ParamStr(0))+'log.txt';
AssignFile(f,fnm);
if FileExists(fnm)
then Append(f)
else Rewrite(f);
try
tmp:=FormatDateTime('yyyy.mm.dd hh":"nn":"ss',now)+#9+st;
Writeln(f,tmp);
finally
CloseFile(f);
end;
end;
function TAtolKKT.addProductToIncomeCheck(const name: string; const price: real; const kol: integer; const nds: NDSType;
const barcode: string = ''; const dep: integer = 0; const discount: real = 0): boolean;
begin
if not Connected then begin
result := false;
exit;
end;
if (price=0) or (kol=0) then
begin
fResultStr := 'Ошибка: нулевое количество и\или цена!';
raise EATOLLogicException.create(fResultStr);
end;
result := true;
ECR.Name := name;
ECR.Quantity := kol;
ECR.Price := price;
ECR.Department := dep;
if trim(barcode)<>'' then
ECR.Barcode := barcode;
ECR.TaxTypeNumber := getNDSInt(nds);
ECR.AdvancedRegistration := fNameAndPriceOnOneLine;
ECR.TextWrap := fTextWrap;
ECR.Registration;
getResultCodeAndCheckOutOfPaper;
if discount>0 then
begin
if (EnabledDiscount<>dtCheckPosition) or (EnabledDiscount<>dtWholeAndCheckPosition) then
begin
fResultStr := 'Ошибка: Скидка по позициям отключена!';
raise EATOLLogicException.create(fResultStr);
end;
ECR.Summ := discount;
ECR.Destination := 1; // на последнюю регистрацию\товар
ECR.SummDiscount; // добавляем скидку в размере ECR.Summ
end;
end;
function TAtolKKT.addProductToReturnCheck(const name: string;
const price: real; const kol: integer; const nds: NDSType;
const barcode: string; const dep: integer;
const discount: real): boolean;
begin
if not Connected then begin
result := false;
exit;
end;
if (price=0) or (kol=0) then
begin
fResultStr := 'Ошибка: нулевое количество и\или цена!';
raise EATOLLogicException.create(fResultStr);
end;
result := true;
ECR.Name := name;
ECR.Quantity := kol;
ECR.Price := price;
ECR.Department := dep;
if trim(barcode)<>'' then
ECR.Barcode := barcode;
ECR.TaxTypeNumber := getNDSInt(nds);
ECR.AdvancedRegistration := fNameAndPriceOnOneLine;
ECR.TextWrap := fTextWrap;
ECR.Return;
getResultCodeAndCheckOutOfPaper;
if discount>0 then
begin
if (EnabledDiscount<>dtCheckPosition) or (EnabledDiscount<>dtWholeAndCheckPosition) then
begin
fResultStr := 'Ошибка: Скидка по позициям отключена!';
raise EATOLLogicException.create(fResultStr);
end;
ECR.Summ := discount;
ECR.Destination := 1; // на последнюю регистрацию\товар
ECR.SummDiscount; // добавляем скидку в размере ECR.Summ
end;
end;
function TAtolKKT.CashIncome(const sm: real): boolean;
begin
result := false;
if not Connected then exit;
// устанавливаем пароль кассира
ECR.Password := fOperatorPassword;
// входим в режим регистрации
ECR.Mode := 1;
if ECR.SetMode <> 0 then begin
setResultCodeAndStrAndRaiseException;
end;
ECR.Summ := sm;
if ECR.CashIncome <> 0 then begin
setResultCodeAndStrAndRaiseException;
end
else result := true;
end;
function TAtolKKT.CashOutcome(const sm: real): boolean;
begin
result := false;
if not Connected then exit;
// устанавливаем пароль кассира
ECR.Password := fOperatorPassword;
// входим в режим регистрации
ECR.Mode := 1;
if ECR.SetMode <> 0 then begin
setResultCodeAndStrAndRaiseException;
end;
ECR.Summ := sm;
if ECR.CashOutcome <> 0 then
begin
setResultCodeAndStrAndRaiseException;
end
else result := true;
end;
function TAtolKKT.closeIncomeCheck(const check_sm: real; const check_discount_sm: real = 0; const type_close: TypeCloseType = tcCash; const cash_sm: real = 0): integer;
begin
result := 0;
if not Connected then exit;
if check_discount_sm>0 then // есть скидка суммой на весь чек
begin
if (EnabledDiscount<>dtWholeCheck) or (EnabledDiscount<>dtWholeAndCheckPosition) then
begin
fResultStr := 'Ошибка: Скидка на весь чек отключена!';
raise EATOLLogicException.create(fResultStr);
end;
ECR.Summ := check_discount_sm;
ECR.Destination := 0; // скидка на весь чек
if ECR.SummDiscount <> 0 then Exit;
end;
if type_close=tcCash then
begin
if cash_sm < check_sm then
begin // не хватает денег у покупателя
fResultStr := 'Ошибка: не хватает денег у покупателя!';
raise EATOLLogicException.create(fResultStr);
end
else
if cash_sm = check_sm then
begin // без сдачи
ECR.Summ := cash_sm;
ECR.TypeClose := 0; // нал
ECR.CloseCheck;
getResultCodeAndCheckOutOfPaper;
end
else // нужна сдача
begin
ECR.Summ := cash_sm;
ECR.TypeClose := 0; // нал
ECR.Delivery;
getResultCodeAndCheckOutOfPaper;
end;
end
else
begin
ECR.TypeClose := TypeCloseToInt(type_close); // безнал - Тип оплаты 1
ECR.CloseCheck;
getResultCodeAndCheckOutOfPaper;
end;
result := GetDocNumber; // номер чека в ККТ (сквозной, а не по сменам)
end;
function TAtolKKT.closeReturnCheck( const type_close: TypeCloseType = tcCash; const check_discount_sm: real = 0): boolean;
begin
result := false;
if not Connected then exit;
if check_discount_sm>0 then // есть скидка суммой на весь чек
begin
ECR.Summ := check_discount_sm;
ECR.Destination := 0; // скидка на весь чек
if ECR.SummDiscount <> 0 then Exit;
end;
ECR.TypeClose := TypeCloseToInt(type_close);
if ECR.CloseCheck <> 0 then begin
getResultCodeAndCheckOutOfPaper;
Exit;
end;
result := true;
end;
procedure TAtolKKT.connectToDevice;
begin
if not Connected then exit;
if ECR.DeviceEnabled then
ECR.DeviceEnabled := false;
ECR.DeviceEnabled := true;
if ECR.ResultCode <> 0 then begin
setResultCodeAndStrAndRaiseException;
end;
// если есть открытый чек, то отменяем его
if ECR.CheckState <> 0 then
if ECR.CancelCheck <> 0 then setResultCodeAndStrAndRaiseException;
UpdateDeviceProperties;
end;
constructor TAtolKKT.Create(handle: HWnd);
begin
inherited Create;
fFFDVersion := ffd10;
fAdminPassword := '30';
fOperatorPassword := '1';
fResultStr := '';
try
LogText('before creating ole object');
ECR := CreateOleObject('AddIn.FprnM45');
LogText('ole object created');
if handle<>0 then
ECR.ApplicationHandle := Handle; // необходимо для корректного отображения окон драйвера в контексте приложения
fResultCode := 0;
except
fResultCode := ECR.ResultCode;
fResultStr := 'Не удалось создать объект общего драйвера ККМ!';
ECR := null;
raise Exception.create(fResultStr);
end;
fDTOVersion := getVersionInt;
fNameAndPriceOnOneLine := false;
fTextWrap := 2; // перенос по символам (строке)
end;
destructor TAtolKKT.Destroy;
begin
ECR := 0;
inherited;
end;
procedure TAtolKKT.FullCut;
var m: byte;
begin
if not Connected then exit;
m := getMode(true);
if m<>1 then
begin
// устанавливаем пароль кассира
ECR.Password := fOperatorPassword;
// входим в режим регистрации
ECR.Mode := 1;
if ECR.SetMode <> 0 then begin
setResultCodeAndStrAndRaiseException;
end;
end;
ECR.FullCut;
end;
function TAtolKKT.getCashRegisterNum: byte;
begin
result := 0;
if not Connected then exit;
ECR.ValuePurpose := 0;
if ECR.GetValue<>0 then
setResultCodeAndStrAndRaiseException
else result := ECR.Value;
end;
function TAtolKKT.getCharSpacing: integer;
begin
if not Connected then exit;
{if setMode(4) then
begin
ECR.ValuePurpose := 212;
ECR.GetValue;
Result := ECR.Value;
end
else Result := -1;}
end;
function TAtolKKT.getCheckFontSizeString: string;
begin
if not Connected then exit;
if setMode(4) then
begin
ECR.ValuePurpose := 62;
ECR.GetValue;
case ECR.Value of
1: Result := '8x5';
2: Result := '7x5';
3: Result := '6x5';
4: Result := '5x5';
else Result := '';
end;
end
else Result := '';
end;
function TAtolKKT.getCheckFontSizeVertical: integer;
begin
if not Connected then exit;
if setMode(4) then
begin
ECR.ValuePurpose := 64;
ECR.GetValue;
Result := ECR.Value;
end
else Result := -1;
end;
function TAtolKKT.getCheckLineSpacing: integer;
begin
if not Connected then exit;
if setMode(4) then
begin
ECR.ValuePurpose := 60;
ECR.GetValue;
Result := ECR.Value;
end
else Result := -1;
end;
function TAtolKKT.GetConnected: boolean;
begin
Result := not (VarIsEmpty(ECR) or VarIsNull(ECR));
end;
function TAtolKKT.getDocNumber: integer;
begin
result := 0;
if not Connected then exit;
ECR.RegisterNumber := 51;
ECR.GetRegister;
result := ECR.DocNumber;
end;
function TAtolKKT.getEnabledDiscount: DiscountType;
begin
result := dtDisabled;
if not Connected then exit;
ECR.ValuePurpose := 11;
if ECR.GetValue<>0 then
setResultCodeAndStrAndRaiseException
else begin
case ECR.Value of
0: result := dtDisabled;
1: result := dtWholeCheck;
2: result := dtCheckPosition;
3: result := dtWholeAndCheckPosition;
else result := dtDisabled;
end;
end;
end;
function TAtolKKT.getFontSizeHorizontal: integer;
begin
if not Connected then exit;
{if setMode(4) then
begin
ECR.ValuePurpose := 201;
ECR.GetValue;
Result := ECR.Value;
end
else Result := -1;}
end;
function TAtolKKT.getKKMDateTime: TDateTime;
begin
result := 0;
if not Connected then exit;
ECR.RegisterNumber := 17;
ECR.GetRegister;
result := EncodeDateTime(ECR.Year, ECR.Month, ECR.Day, ECR.Hour, ECR.Minute, ECR.Second, 0);
end;
function TAtolKKT.getKKMEarnings: real;
begin
result := 0;
if not Connected then exit;
ECR.RegisterNumber := 11;
ECR.GetRegister;
result := ECR.Summ;
end;
function TAtolKKT.getKKMEarningSession: real;
begin
result := 0;
if not Connected then exit;
ECR.RegisterNumber := 12;
ECR.GetRegister;
result := ECR.Summ;
end;
function TAtolKKT.getKKMSum: real;
begin
if Connected then
begin
//Result := ECR.GetSumm
ECR.RegisterNumber := 10; // 2018-05-19
ECR.GetRegister;
result := ECR.Summ;
end
else Result := 0;
end;
function TAtolKKT.getMode(const get_register: boolean = false): integer;
begin
if Connected then
begin
if get_register then
begin
ECR.RegisterNumber := 19;
ECR.GetRegister;
end;
Result := ECR.Mode;
end
else Result := -1;
end;
function TAtolKKT.getNDSByInt(const nds: integer): NDSType;
begin
case nds of
0: result := ndsNo;
10: result := nds10;
18: result := nds18;
else Result := ndsNo;
end;
end;
function TAtolKKT.getNDSInt(const nds: NDSType): integer;
begin
case fFFDVersion of
ffd10: begin
case nds of
ndsSection: result := 0;
ndsNo: result := 4;
nds0: result := 1;
nds10: result := 2;
nds18: result := 3;
nds10110: result := 5;
nds18118: result := 6;
else result := 0;
end;
end;
ffd105: begin
// ДТО 8.16 кодирует все НДС единообразно для всех версий ФФД (1.0 и 1.05)
if fDTOVersion>=816 then
case nds of
ndsSection: result := 0;
ndsNo: result := 4;
nds0: result := 1;
nds10: result := 2;
nds18: result := 3;
nds10110: result := 5;
nds18118: result := 6;
else result := 0;
end
else
// ДТО 8.15 делал так
case nds of
ndsSection: result := 0;
ndsNo: result := 6;
nds0: result := 5;
nds10: result := 2;
nds18: result := 1;
nds10110: result := 3;
nds18118: result := 4;
else result := 6;
end;
end;
ffd11: begin
// непонятно пока
result := 0;
end;
else begin
case nds of // ДТО 8.16
ndsSection: result := 0;
ndsNo: result := 4;
nds0: result := 1;
nds10: result := 2;
nds18: result := 3;
nds10110: result := 5;
nds18118: result := 6;
else result := 0;
end;
end;
end;
end;
function TAtolKKT.getNonTransferedToOFDCount: integer;
begin
result := 0;
if not Connected then exit;
ECR.REgisterNumber := 44;
if ECR.GetRegister<>0 then exit;
result := ECR.Count;
end;
procedure TAtolKKT.getResultCodeAndCheckOutOfPaper;
begin
fResultCode := ECR.ResultCode;
if fResultCode=-3807 then // нет бумаги
begin
fResultStr := 'Ошибка ККМ: ' + string(ECR.ResultDescription) + '! Нет бумаги!';
raise EATOLException.create(fResultStr, fResultCode);
end;
end;
function TAtolKKT.getROMVersion: string;
begin
result := '';
if not Connected then exit;
ECR.RegisterNumber := 54;
if ECR.GetRegister<>0 then exit;
result := ECR.ROMVersion;
end;
function TAtolKKT.getSerialNumber: string;
begin
result := '';
if not Connected then exit;
ECR.RegisterNumber := 22;
if ECR.GetRegister<>0 then exit;
result := ECR.SerialNumber;
end;
function TAtolKKT.getSessionNumber: integer;
begin
if not Connected then exit;
ECR.RegisterNumber := 21;
if ECR.GetRegister<>0 then exit;
result := ECR.Session;
end;
function TAtolKKT.getStatus: string;
begin
result := '';
if not Connected then exit;
if ECR.GetStatus <> 0 then begin
setResultCodeAndStrAndRaiseException;
end;
result := result + 'PointPosition = '+IntToStr(ECR.PointPosition)+#13#10;
result := result + 'Operator = '+IntToStr(ECR.&Operator)+#13#10; // Экранируем & зарезервированное слово operator
result := result + 'LogicalNumber = '+IntToStr(ECR.LogicalNumber)+#13#10;
result := result + 'Mode = '+IntToStr(ECR.Mode)+#13#10;
if ECR.SessionOpened then
result := result + 'SessionOpened = true'#13#10
else result := result + 'SessionOpened = false'#13#10;
result := result + 'Session = '+IntToStr(ECR.Session)+#13#10;
result := result + 'CheckState = '+IntToStr(ECR.CheckState)+#13#10;
result := result + 'Summ = '+FloatToStr(ECR.Summ)+#13#10;
end;
function TAtolKKT.getVersionInt: integer;
var st, odt: string;
n: integer;
begin
result := 0;
if not Connected then exit;
odt := ECR.Version;
n := AnsiPos('.', odt);
if n>1 then
begin
st := copy(odt, 1, n-1);
n := length(st);
end
else
begin
n := length(odt);
end;
st := copy(odt, 1, 4 + n - 1);
st := StringReplace(st, '.', '', [rfReplaceAll,rfIgnoreCase]);
st := StringReplace(st, '-', '', [rfReplaceAll,rfIgnoreCase]);
st := StringReplace(st, '_', '', [rfReplaceAll,rfIgnoreCase]);
result := StrToIntDef(st, 0);
end;
procedure TAtolKKT.getXReport;
begin
if not Connected then exit;
// вроде, как не надо проверять
{if not isSessionOpened then
begin
fResultCode := 1;
fResultStr := 'Смена не открыта!';
raise EATOLLogicException.Create(fResultStr);
end;}
// x-report
ECR.Password := fAdminPassword;
// входим в режим отчетов без гашения
ECR.Mode := 2;
if ECR.SetMode <> 0 then setResultCodeAndStrAndRaiseException;
// снимаем отчет
ECR.ReportType := 2;
if ECR.Report <> 0 then setResultCodeAndStrAndRaiseException;
end;
procedure TAtolKKT.getZReport;
begin
if not Connected then exit;
// z-report
if isSessionOpened then
begin
// устанавливаем пароль системного администратора ККМ
ECR.Password := fAdminPassword;
// входим в режим отчетов с гашением
ECR.Mode := 3;
if ECR.SetMode <> 0 then begin
setResultCodeAndStrAndRaiseException;
end;
// снимаем отчет
ECR.ReportType := 1;
if ECR.Report <> 0 then begin
setResultCodeAndStrAndRaiseException;
end;
end
else
begin
fResultCode := 1;
fResultStr := 'Смена не открыта!';
raise EATOLLogicException.Create(fResultStr);
end;
end;
function TAtolKKT.isFiskal: boolean;
begin
result := false;
if not Connected then exit;
result := ECR.Fiscal;
end;
function TAtolKKT.isSessionExceedLimit24: boolean;
begin
result := false;
if not Connected then exit;
ECR.RegisterNumber := 18;
ECR.GetRegister;
result := ECR.SessionExceedLimit;
end;
function TAtolKKT.isSessionOpened: boolean;
begin
result := false;
if not Connected then exit;
result := ECR.SessionOpened;
end;
function TAtolKKT.openIncomeCheck(const int_check_num: integer = 0; const open: boolean = true): boolean;
begin
result := false;
if not Connected then exit;
// если есть открытый чек, то отменяем его
if ECR.CheckState <> 0 then
if ECR.CancelCheck <> 0 then Exit;
result := true;
// устанавливаем пароль кассира
ECR.Password := fOperatorPassword;
// входим в режим регистрации
ECR.Mode := 1;
if ECR.SetMode <> 0 then begin
setResultCodeAndStrAndRaiseException;
end;
ECR.CheckMode := 1; // печатаем на бумаге
ECR.CheckType := 1; // приход - продажа товара
if open then
ECR.OpenCheck;
if int_check_num>0 then
begin
ECR.TextWrap := 0; // не переносим
ECR.Caption := 'Чек № '+IntToStr(int_check_num);
ECR.PrintString;
getResultCodeAndCheckOutOfPaper;
end;
end;
function TAtolKKT.openReturnCheck(const int_check_num: integer = 0; const open: boolean = false): boolean;
begin
result := false;
if not Connected then exit;
result := true;
// устанавливаем пароль кассира
ECR.Password := fOperatorPassword;
// входим в режим регистрации
ECR.Mode := 1;
if ECR.SetMode <> 0 then begin
setResultCodeAndStrAndRaiseException;
end;
// если есть открытый чек, то отменяем его
if ECR.CheckState <> 0 then
if ECR.CancelCheck <> 0 then Exit;
ECR.CheckMode := 1; // печатаем на бумаге
// при возврате, вроде, так не надо делать, иначе первый вызов Return вызовет ошибку
//ECR.CheckType := 2; // возврат товара
if open then begin// при возврате, вроде, так не надо делать, чек автоматом открывается, при первом вызове Return (регистрации первого возвращаемого товара)
ECR.OpenCheck;
getResultCodeAndCheckOutOfPaper;
end;
// это не получится, пока не откроем чек вызовом Return()
{if int_check_num>0 then
begin
ECR.TextWrap := 0; // не переносим
ECR.Caption := 'Чек № '+IntToStr(int_check_num);
ECR.PrintString;
end;}
end;
function TAtolKKT.openSession: boolean;
begin
result := false;
if not Connected then exit;
// устанавливаем пароль кассира
ECR.Password := fOperatorPassword;
// входим в режим регистрации
ECR.Mode := 1;
if ECR.SetMode <> 0 then begin
setResultCodeAndStrAndRaiseException;
end;
ECR.Caption := 'Заголовок смены 1';
if ECR.OpenSession<>0 then
begin
setResultCodeAndStrAndRaiseException;
end;
result := true;
end;
procedure TAtolKKT.PartialCut;
var m: byte;
begin
if not Connected then exit;
m := getMode(true);
if m<>1 then
begin
// устанавливаем пароль кассира
ECR.Password := fOperatorPassword;
// входим в режим регистрации
ECR.Mode := 1;
if ECR.SetMode <> 0 then begin
setResultCodeAndStrAndRaiseException;
end;
end;
ECR.FullCut;
end;