-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDocument.ts
463 lines (399 loc) · 8.12 KB
/
Document.ts
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
/**
* Document.ts
*
* @copyright Vitalii Savchuk <esvit666@gmail.com>
* @package einvoicing
* @licence MIT https://opensource.org/licenses/MIT
*/
import {Entity} from "../base/Entity";
import {IDocument, DocumentId, DocumentTypes} from "../interface/IDocument";
import DateOnly from "../valueObject/DateOnly";
import DocumentType from "../valueObject/DocumentType";
import CurrencyCode from "../valueObject/CurrencyCode";
import InvoiceReference from "../valueObject/InvoiceReference";
import Attachment from "../valueObject/Attachment";
import Party from "../valueObject/Party";
import Payee from "../valueObject/Payee";
import Delivery from "../valueObject/Delivery";
import DocumentLine from "./DocumentLine";
import Payment from "../valueObject/Payment";
import AllowanceCharge from "../valueObject/AllowanceCharge";
import Tax from "./Tax";
import AbstractRuleset from "../ruleset/AbstractRuleset";
export default
class Document extends Entity<IDocument, string, DocumentId> {
protected _ruleset: AbstractRuleset;
protected _documentType: DocumentTypes;
public static create(type: DocumentTypes, ruleset: AbstractRuleset, props: IDocument): Document {
const item = new Document(props, props.id);
item._documentType = type;
item._ruleset = ruleset;
return item;
}
validate() {
return this._ruleset ? this._ruleset.validate(this) : { errors: [], warning: [] };
}
/**
* Get the document type.
*/
get documentType() {
return this._documentType;
}
/**
* Get the ruleset.
*/
get ruleset() {
return this._ruleset;
}
/**
* Get the document ID.
*/
get id() {
return this.props.id;
}
/**
* Set the document ID.
*/
set id(value: DocumentId) {
this.props.id = value;
}
/**
* Get the issue date.
*/
get issueDate() {
return this.props.issueDate;
}
/**
* Set the issue date.
*/
set issueDate(value: DateOnly | undefined) {
this.props.issueDate = value;
}
/**
* Get the due date.
*/
get dueDate() {
return this.props.dueDate;
}
/**
* Set the due date.
*/
set dueDate(value: DateOnly | undefined) {
this.props.dueDate = value;
}
/**
* Get the document type.
*/
get type() {
return this.props.type;
}
/**
* Set the document type.
*/
set type(value: DocumentType | undefined) {
this.props.type = value;
}
/**
* Get the notes.
*/
get notes() {
return this.props.notes;
}
/**
* Set the notes.
*/
set notes(value: string | undefined) {
this.props.notes = value;
}
/**
* Get the currency.
*/
get currency() {
return this.props.currency;
}
/**
* Set the currency.
*/
set currency(value: CurrencyCode | undefined) {
this.props.currency = value;
}
/**
* Get the buyer reference.
*/
get buyerReference() {
return this.props.buyerReference;
}
/**
* Set the buyer reference.
*/
set buyerReference(value: string | undefined) {
this.props.buyerReference = value;
}
/**
* Get the buyer accounting reference.
*/
get buyerAccountingReference() {
return this.props.buyerAccountingReference;
}
/**
* Set the buyer accounting reference.
*/
set buyerAccountingReference(value: string | undefined) {
this.props.buyerAccountingReference = value;
}
/**
* Get the purchase order reference.
*/
get purchaseOrderReference() {
return this.props.purchaseOrderReference;
}
/**
* Set the purchase order reference.
*/
set purchaseOrderReference(value: string | undefined) {
this.props.purchaseOrderReference = value;
}
/**
* Get the sales order reference.
*/
get salesOrderReference() {
return this.props.salesOrderReference;
}
/**
* Set the sales order reference.
*/
set salesOrderReference(value: string | undefined) {
this.props.salesOrderReference = value;
}
/**
* Get the tender or lot reference.
*/
get tenderOrLotReference() {
return this.props.tenderOrLotReference;
}
/**
* Set the tender or lot reference.
*/
set tenderOrLotReference(value: string | undefined) {
this.props.tenderOrLotReference = value;
}
/**
* Get the contract reference.
*/
get contractReference() {
return this.props.contractReference;
}
/**
* Set the contract reference.
*/
set contractReference(value: string | undefined) {
this.props.contractReference = value;
}
/**
* Get the preceding invoice reference.
*/
get precedingInvoiceReference() {
return this.props.precedingInvoiceReference;
}
/**
* Set the preceding invoice reference.
*/
set precedingInvoiceReference(value: InvoiceReference[] | undefined) {
this.props.precedingInvoiceReference = value;
}
/**
* Get the attachments.
*/
get attachments() {
return this.props.attachments;
}
/**
* Set the attachments.
*/
set attachments(value: Attachment[] | undefined) {
this.props.attachments = value;
}
/**
* Get the seller.
*/
get seller() {
return this.props.seller;
}
/**
* Set the seller.
*/
set seller(value: Party | undefined) {
this.props.seller = value;
}
/**
* Get the buyer.
*/
get buyer() {
return this.props.buyer;
}
/**
* Set the buyer.
*/
set buyer(value: Party | undefined) {
this.props.buyer = value;
}
/**
* Get the payee.
*/
get payee() {
return this.props.payee;
}
/**
* Set the payee.
*/
set payee(value: Payee | undefined) {
this.props.payee = value;
}
/**
* Get the delivery.
*/
get delivery() {
return this.props.delivery;
}
/**
* Set the delivery.
*/
set delivery(value: Delivery | undefined) {
this.props.delivery = value;
}
/**
* Get the period start date.
*/
get periodStart() {
return this.props.periodStart;
}
/**
* Set the period start date.
*/
set periodStart(value: DateOnly | undefined) {
this.props.periodStart = value;
}
/**
* Get the period end date.
*/
get periodEnd() {
return this.props.periodEnd;
}
/**
* Set the period end date.
*/
set periodEnd(value: DateOnly | undefined) {
this.props.periodEnd = value;
}
/**
* Get the paid amount.
*/
get paidAmount() {
return this.props.paidAmount;
}
/**
* Set the paid amount.
*/
set paidAmount(value: number | undefined) {
this.props.paidAmount = value;
}
/**
* Get the rounding amount.
*/
get roundingAmount() {
return this.props.roundingAmount;
}
/**
* Set the rounding amount.
*/
set roundingAmount(value: number | undefined) {
this.props.roundingAmount = value;
}
/**
* Get the document lines.
*/
get lines() {
return this.props.lines;
}
/**
* Set the document lines.
*/
set lines(value: DocumentLine[] | undefined) {
this.props.lines = value;
}
/**
* Get the payment.
*/
get payment() {
return this.props.payment;
}
/**
* Set the payment.
*/
set payment(value: Payment | undefined) {
this.props.payment = value;
}
/**
* Get the charges.
*/
get charges() {
return this.props.charges;
}
/**
* Set the charges.
*/
set charges(value: AllowanceCharge[] | undefined) {
this.props.charges = value;
}
/**
* Get the tax point date.
*/
get taxPointDate() {
return this.props.taxPointDate;
}
/**
* Set the tax point date.
*/
set taxPointDate(value: DateOnly | undefined) {
this.props.taxPointDate = value;
}
/**
* Get the taxes.
*/
get taxes() {
return this.props.taxes;
}
/**
* Set the taxes.
*/
set taxes(value: Tax[] | undefined) {
this.props.taxes = value;
}
/**
* Get the tax amount.
*/
get taxAmount() {
return this.props.taxAmount;
}
/**
* Set the tax amount.
*/
set taxAmount(value: number | undefined) {
this.props.taxAmount = value;
}
/**
* Get the tax currency.
*/
get taxCurrency() {
return this.props.taxCurrency;
}
/**
* Set the tax currency.
*/
set taxCurrency(value: CurrencyCode | undefined) {
this.props.taxCurrency = value;
}
toPrimitive() {
return this.props;
}
}