-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocument.go
290 lines (254 loc) · 7.4 KB
/
document.go
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
package gongoff
import (
"errors"
"fmt"
"time"
)
type Document interface {
get() []Command
}
type DocumentGeneric struct {
commands []Command
}
func (d *DocumentGeneric) get() []Command {
return d.commands
}
// DocumentId is the unique document identifier, optionally with the serial number of the printer which generated the document.
type DocumentId string
// NewDocumentId creates a new document identifier.
func NewDocumentId(dailyClosureNumber int, documentNumber int, documentDate time.Time, printerSerialNumber *string) *DocumentId {
dailyClosureNumberString := "9999"
if dailyClosureNumber > 0 && dailyClosureNumber < 10000 {
dailyClosureNumberString = fmt.Sprintf("%04d", dailyClosureNumber)
}
documentNumberString := "9999"
if documentNumber > 0 && documentNumber < 10000 {
documentNumberString = fmt.Sprintf("%04d", documentNumber)
}
documentDateString := "30-01-20"
if documentDate.Year() > 0 {
documentDateString = documentDate.Format("02-01-06")
}
printerSerialNumberString := ""
if printerSerialNumber != nil {
printerSerialNumberString = "-" + *printerSerialNumber
}
id := DocumentId(dailyClosureNumberString + "-" + documentNumberString + "-" + documentDateString + printerSerialNumberString)
return &id
}
// DocumentCommercial is commonly known as a fiscal receipt.
type DocumentCommercial struct {
DocumentGeneric
}
func NewDocumentCommercial(
commandsProduct []CommandProduct,
commandsPayment []CommandPayment,
commandDiscountAmount *CommandDiscountAmount,
commandDiscountPercentage *CommandDiscountPercentage,
commandCI *CommandCustomerIdentifier,
commandTrailer *CommandTrailer) *DocumentCommercial {
var commands []Command
for i := range commandsProduct {
commands = append(commands, &commandsProduct[i])
}
if commandDiscountAmount != nil {
commands = append(commands, commandDiscountAmount)
}
if commandDiscountPercentage != nil {
commands = append(commands, commandDiscountPercentage)
}
if commandCI != nil {
commands = append(commands, commandCI)
}
if commandTrailer != nil {
commands = append(commands, commandTrailer)
}
for i := range commandsPayment {
commands = append(commands, &commandsPayment[i])
}
return &DocumentCommercial{
DocumentGeneric: DocumentGeneric{
commands: commands,
},
}
}
// DocumentManagement is a generic document useful for testing purposes and generic text print.
type DocumentManagement struct {
DocumentGeneric
rows []string
}
func NewDocumentManagement(rows []string) *DocumentManagement {
var commands []Command
commands = append(commands, NewCommandGeneric([]Data{}, Terminator{nil, TerminatorTypeOpenManagementDocument}))
for _, row := range rows {
if len(row) > 46 {
row = row[:46]
}
commands = append(commands, NewCommandGeneric(
[]Data{
{variable: row, separator: SeparatorTypeDescription},
},
Terminator{
variable: nil,
terminatorType: TerminatorTypeAdditionalDescription,
}),
)
}
commands = append(commands, NewCommandGeneric([]Data{}, Terminator{nil, TerminatorTypeCloseManagementDocument}))
return &DocumentManagement{
DocumentGeneric: DocumentGeneric{
commands: commands,
},
}
}
// DocumentCommercialReturn is used when a customer returns a product.
// If no product is given, the whole content of the document is considered returned.
type DocumentCommercialReturn struct {
DocumentGeneric
}
func NewDocumentCommercialReturn(
commandOpen CommandOpenDocumentCommercialReturn,
commandProduct *CommandProduct,
commandPayment *CommandPayment) *DocumentCommercialReturn {
commands := []Command{
&commandOpen,
}
if commandProduct != nil {
commands = append(commands, commandProduct)
}
if commandPayment != nil {
commands = append(commands, commandPayment)
}
return &DocumentCommercialReturn{
DocumentGeneric: DocumentGeneric{
commands: commands,
},
}
}
// DocumentCommercialCancellation is used when a fiscal receipt is cancelled.
type DocumentCommercialCancellation struct {
DocumentGeneric
}
func NewDocumentCommercialCancellation(
commandOpen CommandOpenDocumentCommercialCancellation,
commandProduct *CommandProduct,
commandPayment *CommandPayment) *DocumentCommercialCancellation {
commands := []Command{
&commandOpen,
}
if commandProduct != nil {
commands = append(commands, commandProduct)
}
if commandPayment != nil {
commands = append(commands, commandPayment)
}
return &DocumentCommercialCancellation{
DocumentGeneric: DocumentGeneric{
commands: commands,
},
}
}
// DocumentPOSReturn is used when a customer returns a product.
// If no product is given, the whole content of the document is considered returned.
// The document was generated by a POS terminal.
type DocumentPOSReturn struct {
DocumentGeneric
}
func NewDocumentPOSReturn(
commandOpen CommandOpenDocumentPOSReturn,
commandProduct *CommandProduct,
commandPayment *CommandPayment) *DocumentPOSReturn {
commands := []Command{
&commandOpen,
}
if commandProduct != nil {
commands = append(commands, commandProduct)
}
if commandPayment != nil {
commands = append(commands, commandPayment)
}
return &DocumentPOSReturn{
DocumentGeneric: DocumentGeneric{
commands: commands,
},
}
}
// DocumentPOSCancellation is used when a fiscal receipt is cancelled.
// The document was generated by a POS terminal.
type DocumentPOSCancellation struct {
DocumentGeneric
}
func NewDocumentPOSCancellation(
commandOpen CommandOpenDocumentPOSCancellation,
commandProduct *CommandProduct,
commandPayment *CommandPayment) *DocumentPOSCancellation {
commands := []Command{
&commandOpen,
}
if commandProduct != nil {
commands = append(commands, commandProduct)
}
if commandPayment != nil {
commands = append(commands, commandPayment)
}
return &DocumentPOSCancellation{
DocumentGeneric: DocumentGeneric{
commands: commands,
},
}
}
// DocumentInvoice is a direct invoice document.
type DocumentInvoice struct {
DocumentGeneric
}
func NewDocumentInvoice(
commandOpen CommandOpenInvoice,
customerDetails []CommandInvoiceDetails,
products []CommandProduct,
payments []CommandPayment) (*DocumentInvoice, error) {
if len(customerDetails) == 0 || len(customerDetails) > 5 {
return nil, errors.New("invalid number of customer details commands, must be between 1 and 5")
}
if len(products) == 0 {
return nil, errors.New("invalid number of products commands, must be at least 1")
}
if len(payments) == 0 {
return nil, errors.New("invalid number of payments commands, must be at least 1")
}
var commands []Command
for i := range customerDetails {
commands = append(commands, &customerDetails[i])
}
commands = append(commands, &commandOpen)
for i := range products {
commands = append(commands, &products[i])
}
for i := range payments {
commands = append(commands, &payments[i])
}
return &DocumentInvoice{
DocumentGeneric: DocumentGeneric{
commands: commands,
},
}, nil
}
type DocumentCommercialWithInvoice struct {
DocumentGeneric
commercialDocument DocumentCommercial
}
func NewDocumentCommercialWithInvoice(
commandOpen CommandOpenInvoiceCommercialDocument,
customerDetails []CommandInvoiceDetails,
commercialDocument DocumentCommercial) *DocumentCommercialWithInvoice {
var commands []Command
for i := range customerDetails {
commands = append(commands, &customerDetails[i])
}
commands = append(commands, &commandOpen)
return &DocumentCommercialWithInvoice{
DocumentGeneric: DocumentGeneric{
commands: commands,
},
commercialDocument: commercialDocument,
}
}