-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEnums.cs
More file actions
107 lines (97 loc) · 2.05 KB
/
Enums.cs
File metadata and controls
107 lines (97 loc) · 2.05 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ICLPrinterServer
{
public enum CommandCodes
{
UserDefined = 0,
DisplayClear = 33,
DisplaySetLowerText = 35,
//Non Fiscal
OpenNonFiscal = 38,
CloseNonFiscal = 39,
PrintTextNonFiscal = 42,
//
OpenFiscalReturn = 43,
PaperFeed = 44,
PaperCut = 45,
DisplaySetUpperText = 47,
//Fiscal
OpenFiscal = 48,
AddItem = 49,
AddDisplayItem = 52,
SubTotal = 51,
Payment = 53,
PrintTextFiscal = 54,
CloseFiscal = 56,
PrintClientInfo = 57,
Annul = 60,
SetDateTime = 61,
GetDateTime = 62,
DisplayShowDateTime = 63,
DailyReport = 69,
RegisterCash = 70,
DetailFMReportByNumbers = 73,
GetStatus = 74,
GetFiscalStatus = 76,
ShortFMReportByDates = 79,
GetDiagnosticData = 90,
DetailFMReportByDates = 94,
ShortFMReportByNumbers = 95,
SetVATRates = 96,
GetVATRates = 97,
GetTaxNumber = 99,
DisplaySetText = 100,
GetCheckStatus = 103,
OperatorsReport = 105,
OpenCashDrawer = 106,
PrintDuplicate = 109,
GetLastDocumentNumber = 113,
SetGraphicalLogoBitmap = 115,
OpenRotatedNonFiscal = 122,
PrintTextRotatedNonFiscal = 123,
CloseRotatedNonFiscal = 124,
CloseOperation = 130,
SetPrintFonts = 145
}
public enum Alignment
{
Left,
Center,
Right
}
public enum FiscalPrinterTaxGroup
{
A,
B,
C,
D,
E,
F,
G,
H,
I,
J,
K,
L,
M,
N,
O,
P,
Q,
R,
S,
TaxExempt,
Default,
NotSet
}
public enum FiscalReceiptType
{
Sale,
Annulment,
Return
}
}