mindee 1.0.6 → 1.0.7
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.
- package/CHANGELOG.md +15 -12
- package/README.md +1 -1
- package/lib/inputs.js +50 -2
- package/mindee/api/financialDocument.js +40 -0
- package/mindee/api/index.js +5 -0
- package/mindee/api/invoice.js +48 -0
- package/mindee/api/object.js +82 -0
- package/mindee/api/receipt.js +34 -0
- package/mindee/api/request.js +63 -0
- package/mindee/api/response.js +62 -0
- package/mindee/documents/document.js +65 -0
- package/mindee/documents/fields/amount.js +25 -0
- package/mindee/documents/fields/date.js +29 -0
- package/mindee/documents/fields/field.js +89 -0
- package/mindee/documents/fields/index.js +7 -0
- package/mindee/documents/fields/locale.js +30 -0
- package/mindee/documents/fields/orientation.js +24 -0
- package/mindee/documents/fields/paymentDetails.js +52 -0
- package/mindee/documents/fields/tax.js +47 -0
- package/mindee/documents/financialDocument.js +204 -0
- package/mindee/documents/index.js +5 -0
- package/mindee/documents/invoice.js +395 -0
- package/mindee/documents/receipt.js +272 -0
- package/mindee/errors/handler.js +16 -0
- package/mindee/index.js +35 -0
- package/mindee/inputs.js +155 -0
- package/mindee/logger.js +33 -0
- package/package.json +9 -4
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
exports.field = require("./field");
|
|
2
|
+
exports.date = require("./date");
|
|
3
|
+
exports.amount = require("./amount");
|
|
4
|
+
exports.locale = require("./locale");
|
|
5
|
+
exports.orientation = require("./orientation");
|
|
6
|
+
exports.paymentDetails = require("./paymentDetails");
|
|
7
|
+
exports.tax = require("./tax.js");
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const Field = require("./field");
|
|
2
|
+
|
|
3
|
+
class Locale extends Field {
|
|
4
|
+
/**
|
|
5
|
+
* @param {Object} prediction - Prediction object from HTTP response
|
|
6
|
+
* @param {String} valueKey - Key to use in the prediction dict
|
|
7
|
+
* @param {Boolean} reconstructed - Does the object is reconstructed (not extracted by the API)
|
|
8
|
+
* @param {Integer} pageNumber - Page number for multi pages pdf
|
|
9
|
+
*/
|
|
10
|
+
constructor({
|
|
11
|
+
prediction,
|
|
12
|
+
valueKey = "value",
|
|
13
|
+
reconstructed = false,
|
|
14
|
+
pageNumber = 0,
|
|
15
|
+
}) {
|
|
16
|
+
super({ prediction, valueKey, reconstructed, pageNumber });
|
|
17
|
+
|
|
18
|
+
this.language = undefined;
|
|
19
|
+
this.country = undefined;
|
|
20
|
+
this.currency = undefined;
|
|
21
|
+
if ("language" in prediction && prediction.language !== "N/A")
|
|
22
|
+
this.language = prediction.language;
|
|
23
|
+
if ("country" in prediction && prediction.country !== "N/A")
|
|
24
|
+
this.country = prediction.country;
|
|
25
|
+
if ("currency" in prediction && prediction.currency !== "N/A")
|
|
26
|
+
this.currency = prediction.currency;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
module.exports = Locale;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const Field = require("./field");
|
|
2
|
+
|
|
3
|
+
class Orientation extends Field {
|
|
4
|
+
/**
|
|
5
|
+
* @param {Object} prediction - Prediction object from HTTP response
|
|
6
|
+
* @param {String} valueKey - Key to use in the prediction dict
|
|
7
|
+
* @param {Boolean} reconstructed - Does the object is reconstructed (not extracted by the API)
|
|
8
|
+
* @param {Integer} pageNumber - Page number for multi pages pdf
|
|
9
|
+
*/
|
|
10
|
+
constructor({
|
|
11
|
+
prediction,
|
|
12
|
+
valueKey = "degrees",
|
|
13
|
+
reconstructed = false,
|
|
14
|
+
pageNumber = 0,
|
|
15
|
+
}) {
|
|
16
|
+
const orientations = [0, 90, 180, 270];
|
|
17
|
+
super({ prediction, valueKey, reconstructed, pageNumber });
|
|
18
|
+
this.value = parseInt(prediction[valueKey]);
|
|
19
|
+
if (isNaN(this.value)) this.probability = 0.0;
|
|
20
|
+
if (!orientations.includes(this.value)) this.value = 0;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
module.exports = Orientation;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
const Field = require("./field");
|
|
2
|
+
|
|
3
|
+
class PaymentDetails extends Field {
|
|
4
|
+
/**
|
|
5
|
+
* @param {Object} prediction - Prediction object from HTTP response
|
|
6
|
+
* @param {String} valueKey - Key to use in the prediction dict to get the iban
|
|
7
|
+
* @param {String} accountNumberKey - Key to use to get the account number in the prediction dict
|
|
8
|
+
* @param {String} ibanKey - Key to use to get the IBAN in the prediction dict
|
|
9
|
+
* @param {String} routingNumberKey - Key to use to get the routing number in the prediction dict
|
|
10
|
+
* @param {String} swiftKey - Key to use to get the SWIFT in the prediction dict
|
|
11
|
+
* @param {Boolean} reconstructed - Does the object is reconstructed (not extracted by the API)
|
|
12
|
+
* @param {Integer} pageNumber - Page number for multi pages pdf
|
|
13
|
+
*/
|
|
14
|
+
constructor({
|
|
15
|
+
prediction,
|
|
16
|
+
valueKey = "iban",
|
|
17
|
+
accountNumberKey = "account_number",
|
|
18
|
+
ibanKey = "iban",
|
|
19
|
+
routingNumberKey = "routing_number",
|
|
20
|
+
swiftKey = "swift",
|
|
21
|
+
reconstructed = false,
|
|
22
|
+
pageNumber = 0,
|
|
23
|
+
}) {
|
|
24
|
+
super({ prediction, valueKey, reconstructed, pageNumber });
|
|
25
|
+
|
|
26
|
+
this.accountNumber = undefined;
|
|
27
|
+
this.iban = undefined;
|
|
28
|
+
this.routingNumber = undefined;
|
|
29
|
+
this.swift = undefined;
|
|
30
|
+
|
|
31
|
+
this.#setKey(prediction[accountNumberKey], "accountNumber");
|
|
32
|
+
this.#setKey(prediction[ibanKey], "iban");
|
|
33
|
+
this.#setKey(prediction[routingNumberKey], "routingNumber");
|
|
34
|
+
this.#setKey(prediction[swiftKey], "swift");
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
#setKey(value, key) {
|
|
38
|
+
if (typeof value === "string" && value !== "N/A") this[key] = value;
|
|
39
|
+
else this[key] = undefined;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
toString() {
|
|
43
|
+
let str = "";
|
|
44
|
+
const keys = ["accountNumber", "iban", "routingNumber", "swift"];
|
|
45
|
+
for (const key of keys) {
|
|
46
|
+
if (this[key]) str += `${this[key]}; `;
|
|
47
|
+
}
|
|
48
|
+
return str;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
module.exports = PaymentDetails;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
const Field = require("./field");
|
|
2
|
+
|
|
3
|
+
class Tax extends Field {
|
|
4
|
+
/**
|
|
5
|
+
* @param {Object} prediction - Prediction object from HTTP response
|
|
6
|
+
* @param {String} valueKey - Key to use in the prediction dict to get the tax value
|
|
7
|
+
* @param {String} rateKey - Key to use to get the tax rate in the prediction dict
|
|
8
|
+
* @param {String} codeKey - Key to use to get the tax code in the prediction dict
|
|
9
|
+
* @param {Boolean} reconstructed - Does the object is reconstructed (not extracted by the API)
|
|
10
|
+
* @param {Integer} pageNumber - Page number for multi pages pdf
|
|
11
|
+
*/
|
|
12
|
+
constructor({
|
|
13
|
+
prediction,
|
|
14
|
+
valueKey = "value",
|
|
15
|
+
rateKey = "rate",
|
|
16
|
+
codeKey = "code",
|
|
17
|
+
reconstructed = false,
|
|
18
|
+
pageNumber = 0,
|
|
19
|
+
}) {
|
|
20
|
+
super({ prediction, valueKey, reconstructed, pageNumber });
|
|
21
|
+
|
|
22
|
+
this.rate = parseFloat(prediction[rateKey]);
|
|
23
|
+
if (isNaN(this.rate)) this.rate = undefined;
|
|
24
|
+
|
|
25
|
+
this.code = prediction[codeKey]?.toString();
|
|
26
|
+
if (this.code === "N/A") this.code = undefined;
|
|
27
|
+
|
|
28
|
+
this.value = parseFloat(prediction[valueKey]);
|
|
29
|
+
if (isNaN(this.value)) {
|
|
30
|
+
this.value = undefined;
|
|
31
|
+
this.probability = 0.0;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
toString() {
|
|
36
|
+
let str = "";
|
|
37
|
+
const keys = ["value", "rate", "code"];
|
|
38
|
+
for (const [i, key] of keys.entries()) {
|
|
39
|
+
const value = this[key] === undefined ? "_" : this[key].toString();
|
|
40
|
+
if (i < keys.length - 1) str += `${value}${key === "rate" ? "%" : ""}; `;
|
|
41
|
+
else str += value;
|
|
42
|
+
}
|
|
43
|
+
return str;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
module.exports = Tax;
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
const Document = require("./document");
|
|
2
|
+
const Invoice = require("./invoice");
|
|
3
|
+
const Receipt = require("./receipt");
|
|
4
|
+
const Field = require("./fields").field;
|
|
5
|
+
const Date = require("./fields").date;
|
|
6
|
+
const Amount = require("./fields").amount;
|
|
7
|
+
const Locale = require("./fields").locale;
|
|
8
|
+
const Orientation = require("./fields").orientation;
|
|
9
|
+
const Tax = require("./fields").tax;
|
|
10
|
+
|
|
11
|
+
class FinancialDocument extends Document {
|
|
12
|
+
/**
|
|
13
|
+
* @param {Object} apiPrediction - Json parsed prediction from HTTP response
|
|
14
|
+
* @param {Input} input - Input object
|
|
15
|
+
* @param {Integer} pageNumber - Page number for multi pages pdf input
|
|
16
|
+
* @param {Object} locale - locale value for creating FinancialDocument object from scratch
|
|
17
|
+
* @param {Object} totalIncl - total tax included value for creating FinancialDocument object from scratch
|
|
18
|
+
* @param {Object} totalExcl - total tax excluded value for creating FinancialDocument object from scratch
|
|
19
|
+
* @param {Object} Date - date value for creating FinancialDocument object from scratch
|
|
20
|
+
* @param {Object} InvoiceNumber - Invoice number value for creating FinancialDocument object from scratch
|
|
21
|
+
* @param {Object} taxes - taxes value for creating FinancialDocument object from scratch
|
|
22
|
+
* @param {Object} merchantName - merchant name value for creating FinancialDocument object from scratch
|
|
23
|
+
* @param {Object} paymentDetails - payment details value for creating FinancialDocument object from scratch
|
|
24
|
+
* @param {Object} companyNumber - company number value for creating FinancialDocument object from scratch
|
|
25
|
+
* @param {Object} vatNumber - vat number value for creating FinancialDocument object from scratch
|
|
26
|
+
* @param {Object} orientation - orientation value for creating FinancialDocument object from scratch
|
|
27
|
+
* @param {Object} totalTax - total tax value for creating FinancialDocument object from scratch
|
|
28
|
+
* @param {Object} time - time value for creating FinancialDocument object from scratch
|
|
29
|
+
* @param {Object} pageNumber - pageNumber for multi pages pdf input
|
|
30
|
+
*/
|
|
31
|
+
constructor({
|
|
32
|
+
apiPrediction = undefined,
|
|
33
|
+
inputFile = undefined,
|
|
34
|
+
locale = undefined,
|
|
35
|
+
totalIncl = undefined,
|
|
36
|
+
totalExcl = undefined,
|
|
37
|
+
date = undefined,
|
|
38
|
+
invoiceNumber = undefined,
|
|
39
|
+
dueDate = undefined,
|
|
40
|
+
taxes = undefined,
|
|
41
|
+
merchantName = undefined,
|
|
42
|
+
paymentDetails = undefined,
|
|
43
|
+
companyNumber = undefined,
|
|
44
|
+
vatNumber = undefined,
|
|
45
|
+
orientation = undefined,
|
|
46
|
+
totalTax = undefined,
|
|
47
|
+
time = undefined,
|
|
48
|
+
pageNumber = 0,
|
|
49
|
+
}) {
|
|
50
|
+
super(inputFile);
|
|
51
|
+
if (apiPrediction === undefined) {
|
|
52
|
+
this.#initFromScratch({
|
|
53
|
+
locale,
|
|
54
|
+
totalIncl,
|
|
55
|
+
totalExcl,
|
|
56
|
+
date,
|
|
57
|
+
invoiceNumber,
|
|
58
|
+
dueDate,
|
|
59
|
+
taxes,
|
|
60
|
+
merchantName,
|
|
61
|
+
paymentDetails,
|
|
62
|
+
companyNumber,
|
|
63
|
+
vatNumber,
|
|
64
|
+
orientation,
|
|
65
|
+
pageNumber,
|
|
66
|
+
totalTax,
|
|
67
|
+
time,
|
|
68
|
+
});
|
|
69
|
+
} else {
|
|
70
|
+
this.#initFromApiPrediction(apiPrediction, inputFile, pageNumber);
|
|
71
|
+
}
|
|
72
|
+
this.#checklist();
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
#initFromScratch({
|
|
76
|
+
locale,
|
|
77
|
+
totalIncl,
|
|
78
|
+
totalExcl,
|
|
79
|
+
totalTax,
|
|
80
|
+
date,
|
|
81
|
+
invoiceNumber,
|
|
82
|
+
dueDate,
|
|
83
|
+
taxes,
|
|
84
|
+
paymentDetails,
|
|
85
|
+
companyNumber,
|
|
86
|
+
vatNumber,
|
|
87
|
+
orientation,
|
|
88
|
+
pageNumber,
|
|
89
|
+
merchantName,
|
|
90
|
+
time,
|
|
91
|
+
}) {
|
|
92
|
+
const constructPrediction = function (item) {
|
|
93
|
+
return { prediction: { value: item }, valueKey: "value", pageNumber };
|
|
94
|
+
};
|
|
95
|
+
this.locale = new Locale(constructPrediction(locale));
|
|
96
|
+
this.totalIncl = new Amount(constructPrediction(totalIncl));
|
|
97
|
+
this.totalExcl = new Amount(constructPrediction(totalExcl));
|
|
98
|
+
this.totalTax = new Amount(constructPrediction(totalTax));
|
|
99
|
+
this.date = new Date(constructPrediction(date));
|
|
100
|
+
this.dueDate = new Date(constructPrediction(dueDate));
|
|
101
|
+
this.merchantName = new Field(constructPrediction(merchantName));
|
|
102
|
+
this.time = new Field(constructPrediction(time));
|
|
103
|
+
this.orientation = new Orientation(constructPrediction(orientation));
|
|
104
|
+
this.invoiceNumber = new Field(constructPrediction(invoiceNumber));
|
|
105
|
+
this.paymentDetails = new Field(constructPrediction(paymentDetails));
|
|
106
|
+
this.companyNumber = new Field(constructPrediction(companyNumber));
|
|
107
|
+
this.vatNumber = new Field(constructPrediction(vatNumber));
|
|
108
|
+
if (taxes !== undefined) {
|
|
109
|
+
this.taxes = [];
|
|
110
|
+
for (const t of taxes) {
|
|
111
|
+
this.taxes.push(
|
|
112
|
+
new Tax({
|
|
113
|
+
prediction: { value: t[0], rate: t[1] },
|
|
114
|
+
pageNumber,
|
|
115
|
+
valueKey: "value",
|
|
116
|
+
rateKey: "rate",
|
|
117
|
+
})
|
|
118
|
+
);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
#initFromApiPrediction(apiPrediction, inputFile, pageNumber) {
|
|
124
|
+
if (Object.keys(apiPrediction).includes("invoice_number")) {
|
|
125
|
+
const invoice = new Invoice({ apiPrediction, inputFile, pageNumber });
|
|
126
|
+
Object.assign(this, invoice);
|
|
127
|
+
this.time = new Field({
|
|
128
|
+
prediction: { value: undefined, probability: 0.0 },
|
|
129
|
+
});
|
|
130
|
+
this.merchantName = new Field({
|
|
131
|
+
prediction: { value: undefined, probability: 0.0 },
|
|
132
|
+
});
|
|
133
|
+
} else {
|
|
134
|
+
const receipt = new Receipt({ apiPrediction, inputFile, pageNumber });
|
|
135
|
+
Object.assign(this, receipt);
|
|
136
|
+
this.invoiceDate = new Field({
|
|
137
|
+
prediction: { value: undefined, probability: 0.0 },
|
|
138
|
+
});
|
|
139
|
+
this.invoiceNumber = new Field({
|
|
140
|
+
prediction: { value: undefined, probability: 0.0 },
|
|
141
|
+
});
|
|
142
|
+
this.dueDate = new Field({
|
|
143
|
+
prediction: { value: undefined, probability: 0.0 },
|
|
144
|
+
});
|
|
145
|
+
this.paymentDetails = new Field({
|
|
146
|
+
prediction: { value: undefined, probability: 0.0 },
|
|
147
|
+
});
|
|
148
|
+
this.companyNumber = new Field({
|
|
149
|
+
prediction: { value: undefined, probability: 0.0 },
|
|
150
|
+
});
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
toString() {
|
|
155
|
+
return `
|
|
156
|
+
-----Financial document-----
|
|
157
|
+
Filename: ${this.filename}
|
|
158
|
+
Total amount: ${this.totalIncl.value}
|
|
159
|
+
Date: ${this.date.value}
|
|
160
|
+
Merchant name: ${this.merchantName.value}
|
|
161
|
+
Total taxes: ${this.totalTax.value}
|
|
162
|
+
`;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
#checklist() {
|
|
166
|
+
this.checklist = {
|
|
167
|
+
taxesMatchTotalIncl: this.#taxesMatchTotalIncl(),
|
|
168
|
+
};
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
#taxesMatchTotalIncl() {
|
|
172
|
+
// Check taxes and total include exist
|
|
173
|
+
if (this.taxes.length === 0 || this.totalIncl.value === undefined)
|
|
174
|
+
return false;
|
|
175
|
+
|
|
176
|
+
// Reconstruct totalIncl from taxes
|
|
177
|
+
let totalVat = 0;
|
|
178
|
+
let reconstructedTotal = 0;
|
|
179
|
+
this.taxes.forEach((tax) => {
|
|
180
|
+
if (tax.value === undefined || !tax.rate) return false;
|
|
181
|
+
totalVat += tax.value;
|
|
182
|
+
reconstructedTotal += tax.value + (100 * tax.value) / tax.rate;
|
|
183
|
+
});
|
|
184
|
+
|
|
185
|
+
// Sanity check
|
|
186
|
+
if (totalVat <= 0) return false;
|
|
187
|
+
|
|
188
|
+
// Crate epsilon
|
|
189
|
+
const eps = 1 / (100 * totalVat);
|
|
190
|
+
|
|
191
|
+
if (
|
|
192
|
+
this.totalIncl.value * (1 - eps) - 0.02 <= reconstructedTotal &&
|
|
193
|
+
reconstructedTotal <= this.totalIncl.value * (1 + eps) + 0.02
|
|
194
|
+
) {
|
|
195
|
+
this.taxes = this.taxes.map((tax) => ({ ...tax, probability: 1.0 }));
|
|
196
|
+
this.totalTax.probability = 1.0;
|
|
197
|
+
this.totalIncl.probability = 1.0;
|
|
198
|
+
return true;
|
|
199
|
+
}
|
|
200
|
+
return false;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
module.exports = FinancialDocument;
|