Skip to content

Commit 14f7d1d

Browse files
authored
Load tax invoice info from tickets (#1)
* Load tax info from tickets * make data in order take precedence * prefer more complete one
1 parent f30e51f commit 14f7d1d

File tree

3 files changed

+66
-13
lines changed

3 files changed

+66
-13
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,6 @@
2424
"@types/node": "22.5.4",
2525
"tsx": "^4.19.0",
2626
"typescript": "5.6.2"
27-
}
27+
},
28+
"packageManager": "[email protected]+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
2829
}

src/functions/getData.ts

+59-12
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,46 @@
1-
import 'dotenv/config'
1+
import 'dotenv/config';
22

33
import { parse } from "csv-parse/sync";
44
import fs from "fs";
5+
import isEmpty from 'lodash/isEmpty';
56
import { DateTime } from "luxon";
6-
import isEmpty from 'lodash/isEmpty'
77

88
import type { Order, ProcessedData } from "./types";
99

10+
interface TaxInfo {
11+
billingName: string;
12+
billingTaxId: string;
13+
billingAddress: string;
14+
billingBranch: string;
15+
}
16+
17+
function convertOrderRowToTaxInfo(csvRow: any): TaxInfo {
18+
return {
19+
billingName: csvRow["Billing Name"] || "",
20+
billingTaxId: csvRow["Billing Tax ID"] || "",
21+
billingAddress: csvRow["Billing Address"] || "",
22+
billingBranch: csvRow["Billing Branch"] || "",
23+
};
24+
}
25+
26+
function convertTicketRowToTaxInfo(ticket: any): TaxInfo {
27+
return {
28+
billingName: ticket['Company or individual name for tax invoice'] || "",
29+
billingBranch: ticket['Branch name for tax invoice (optional)'] || "",
30+
billingTaxId: ticket['Tax id or citizen id for tax invoice'] || "",
31+
billingAddress: ticket['Company or individual address for tax invoice'] || "",
32+
};
33+
}
34+
35+
function getTaxInfoCompleteness(taxInfo: TaxInfo): number {
36+
return (
37+
(taxInfo.billingName ? 1 : 0) +
38+
(taxInfo.billingTaxId ? 1 : 0) +
39+
(taxInfo.billingAddress ? 1 : 0) +
40+
(taxInfo.billingBranch ? 1 : 0)
41+
);
42+
}
43+
1044
export const getData = () => {
1145
/**
1246
* Execute
@@ -15,13 +49,26 @@ export const getData = () => {
1549
const ordersString = fs.readFileSync("input/orders.csv");
1650
const orders = parse(ordersString, { columns: true });
1751

52+
const taxInfoMap: Record<string, TaxInfo> = {};
1853
const ordersWithTaxString = fs.readFileSync("input/orders-tax.csv");
1954
const ordersWithTaxArray = parse(ordersWithTaxString, { columns: true });
20-
// @ts-ignore
21-
const ordersWithTaxMap = ordersWithTaxArray.reduce((prev, cur) => {
22-
prev[cur["Order Number"]] = cur;
23-
return prev;
24-
}, {});
55+
for (const order of ordersWithTaxArray) {
56+
const taxInfo = convertOrderRowToTaxInfo(order);
57+
if (getTaxInfoCompleteness(taxInfo) > 0) {
58+
taxInfoMap[order["Order Number"]] = taxInfo;
59+
}
60+
}
61+
62+
const attendeesString = fs.readFileSync("input/attendees.csv");
63+
const attendeesArray = parse(attendeesString, { columns: true });
64+
for (const ticket of attendeesArray) {
65+
const orderNumber = ticket['Order number'];
66+
const taxInfo = convertTicketRowToTaxInfo(ticket);
67+
const existingCompleteness = taxInfoMap[orderNumber] ? getTaxInfoCompleteness(taxInfoMap[orderNumber]) : 0;
68+
if (getTaxInfoCompleteness(taxInfo) > existingCompleteness) {
69+
taxInfoMap[orderNumber] = taxInfo;
70+
}
71+
}
2572

2673
const orderWithEmail: Record<string, string> = parse(fs.readFileSync("input/event-orders.csv"), { columns: true })
2774
// @ts-ignore
@@ -36,15 +83,15 @@ export const getData = () => {
3683
.filter(o => Number(o['Subtotal']) > 0)
3784
// beautify data
3885
.map(item => {
39-
const taxInfo = ordersWithTaxMap[item["Order #"]]
86+
const taxInfo = taxInfoMap[item["Order #"]];
4087

4188
return {
4289
eventpopId: item['Order #'],
4390
customer: {
44-
name: !isEmpty(taxInfo?.["Billing Name"]) ? taxInfo?.["Billing Name"] : item["Buyer Name"],
45-
taxId: taxInfo?.["Billing Tax ID"] ?? null,
46-
address: taxInfo?.["Billing Address"] ?? null,
47-
branch: taxInfo?.["Billing Branch"] ?? '',
91+
name: !isEmpty(taxInfo?.billingName) ? taxInfo.billingName : item["Buyer Name"],
92+
taxId: taxInfo?.billingTaxId ?? null,
93+
address: taxInfo?.billingAddress ?? null,
94+
branch: taxInfo?.billingBranch ?? '',
4895
email: orderWithEmail[item['Order #']]
4996
},
5097
ticket: {

src/test_getData.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { getData } from "./functions/getData";
2+
3+
const processedData = getData();
4+
5+
console.log(processedData);

0 commit comments

Comments
 (0)