@openbox/shared-types 0.2.77 → 0.2.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
type InvoicesDocumentsLayoutHelpers = {
|
|
2
|
-
type: 'text' | 'date' | 'money';
|
|
3
|
-
value: string;
|
|
4
2
|
x: number;
|
|
5
3
|
y: number;
|
|
6
4
|
l: number;
|
|
@@ -12,21 +10,81 @@ type InvoicesDocumentsLayoutResolution = {
|
|
|
12
10
|
};
|
|
13
11
|
type InvoicesDocumentsLayoutHeader = {
|
|
14
12
|
fontSize: number;
|
|
15
|
-
authorization: InvoicesDocumentsLayoutHelpers
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
13
|
+
authorization: InvoicesDocumentsLayoutHelpers & {
|
|
14
|
+
type: 'text';
|
|
15
|
+
value: 'Nº Authorizacion';
|
|
16
|
+
order: 1;
|
|
17
|
+
};
|
|
18
|
+
sequence: InvoicesDocumentsLayoutHelpers & {
|
|
19
|
+
type: 'text';
|
|
20
|
+
value: 'Correlativo';
|
|
21
|
+
order: 2;
|
|
22
|
+
};
|
|
23
|
+
date: InvoicesDocumentsLayoutHelpers & {
|
|
24
|
+
type: 'text';
|
|
25
|
+
value: 'Fecha';
|
|
26
|
+
order: 3;
|
|
27
|
+
};
|
|
28
|
+
customer: InvoicesDocumentsLayoutHelpers & {
|
|
29
|
+
type: 'text';
|
|
30
|
+
value: 'Cliente';
|
|
31
|
+
order: 4;
|
|
32
|
+
};
|
|
33
|
+
address1: InvoicesDocumentsLayoutHelpers & {
|
|
34
|
+
type: 'text';
|
|
35
|
+
value: 'Direccion 1';
|
|
36
|
+
order: 5;
|
|
37
|
+
};
|
|
38
|
+
address2: InvoicesDocumentsLayoutHelpers & {
|
|
39
|
+
type: 'text';
|
|
40
|
+
value: 'Direccion 2';
|
|
41
|
+
order: 6;
|
|
42
|
+
};
|
|
43
|
+
nrc: InvoicesDocumentsLayoutHelpers & {
|
|
44
|
+
type: 'text';
|
|
45
|
+
value: 'NRC';
|
|
46
|
+
order: 7;
|
|
47
|
+
};
|
|
48
|
+
nit: InvoicesDocumentsLayoutHelpers & {
|
|
49
|
+
type: 'text';
|
|
50
|
+
value: 'NIT';
|
|
51
|
+
order: 8;
|
|
52
|
+
};
|
|
53
|
+
dui: InvoicesDocumentsLayoutHelpers & {
|
|
54
|
+
type: 'text';
|
|
55
|
+
value: 'DUI';
|
|
56
|
+
order: 9;
|
|
57
|
+
};
|
|
58
|
+
country: InvoicesDocumentsLayoutHelpers & {
|
|
59
|
+
type: 'text';
|
|
60
|
+
value: 'Pais';
|
|
61
|
+
order: 10;
|
|
62
|
+
};
|
|
63
|
+
state: InvoicesDocumentsLayoutHelpers & {
|
|
64
|
+
type: 'text';
|
|
65
|
+
value: 'Estado';
|
|
66
|
+
order: 11;
|
|
67
|
+
};
|
|
68
|
+
city: InvoicesDocumentsLayoutHelpers & {
|
|
69
|
+
type: 'text';
|
|
70
|
+
value: 'Ciusad';
|
|
71
|
+
order: 12;
|
|
72
|
+
};
|
|
73
|
+
giro: InvoicesDocumentsLayoutHelpers & {
|
|
74
|
+
type: 'text';
|
|
75
|
+
value: 'Giro';
|
|
76
|
+
order: 13;
|
|
77
|
+
};
|
|
78
|
+
seller: InvoicesDocumentsLayoutHelpers & {
|
|
79
|
+
type: 'text';
|
|
80
|
+
value: 'Venta a cuenta de';
|
|
81
|
+
order: 4;
|
|
82
|
+
};
|
|
83
|
+
paymentCondition: InvoicesDocumentsLayoutHelpers & {
|
|
84
|
+
type: 'text';
|
|
85
|
+
value: 'Condicion de pago';
|
|
86
|
+
order: 5;
|
|
87
|
+
};
|
|
30
88
|
};
|
|
31
89
|
type InvoicesDocumentsLayoutDetails = {
|
|
32
90
|
fontSize: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
type InvoicesDocumentsLayoutHelpers = {
|
|
2
|
-
type: 'text' | 'date' | 'money'
|
|
3
|
-
value: string
|
|
4
2
|
x: number
|
|
5
3
|
y: number
|
|
6
4
|
l: number
|
|
@@ -14,21 +12,29 @@ type InvoicesDocumentsLayoutResolution = {
|
|
|
14
12
|
|
|
15
13
|
type InvoicesDocumentsLayoutHeader = {
|
|
16
14
|
fontSize: number
|
|
17
|
-
authorization: InvoicesDocumentsLayoutHelpers
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
15
|
+
authorization: InvoicesDocumentsLayoutHelpers & {
|
|
16
|
+
type: 'text'
|
|
17
|
+
value: 'Nº Authorizacion'
|
|
18
|
+
order: 1
|
|
19
|
+
}
|
|
20
|
+
sequence: InvoicesDocumentsLayoutHelpers & { type: 'text'; value: 'Correlativo'; order: 2 }
|
|
21
|
+
date: InvoicesDocumentsLayoutHelpers & { type: 'text'; value: 'Fecha'; order: 3 }
|
|
22
|
+
customer: InvoicesDocumentsLayoutHelpers & { type: 'text'; value: 'Cliente'; order: 4 }
|
|
23
|
+
address1: InvoicesDocumentsLayoutHelpers & { type: 'text'; value: 'Direccion 1'; order: 5 }
|
|
24
|
+
address2: InvoicesDocumentsLayoutHelpers & { type: 'text'; value: 'Direccion 2'; order: 6 }
|
|
25
|
+
nrc: InvoicesDocumentsLayoutHelpers & { type: 'text'; value: 'NRC'; order: 7 }
|
|
26
|
+
nit: InvoicesDocumentsLayoutHelpers & { type: 'text'; value: 'NIT'; order: 8 }
|
|
27
|
+
dui: InvoicesDocumentsLayoutHelpers & { type: 'text'; value: 'DUI'; order: 9 }
|
|
28
|
+
country: InvoicesDocumentsLayoutHelpers & { type: 'text'; value: 'Pais'; order: 10 }
|
|
29
|
+
state: InvoicesDocumentsLayoutHelpers & { type: 'text'; value: 'Estado'; order: 11 }
|
|
30
|
+
city: InvoicesDocumentsLayoutHelpers & { type: 'text'; value: 'Ciusad'; order: 12 }
|
|
31
|
+
giro: InvoicesDocumentsLayoutHelpers & { type: 'text'; value: 'Giro'; order: 13 }
|
|
32
|
+
seller: InvoicesDocumentsLayoutHelpers & { type: 'text'; value: 'Venta a cuenta de'; order: 4 }
|
|
33
|
+
paymentCondition: InvoicesDocumentsLayoutHelpers & {
|
|
34
|
+
type: 'text'
|
|
35
|
+
value: 'Condicion de pago'
|
|
36
|
+
order: 5
|
|
37
|
+
}
|
|
32
38
|
}
|
|
33
39
|
|
|
34
40
|
type InvoicesDocumentsLayoutDetails = {
|