1
- import 'dotenv/config'
1
+ import 'dotenv/config' ;
2
2
3
3
import { parse } from "csv-parse/sync" ;
4
4
import fs from "fs" ;
5
+ import isEmpty from 'lodash/isEmpty' ;
5
6
import { DateTime } from "luxon" ;
6
- import isEmpty from 'lodash/isEmpty'
7
7
8
8
import type { Order , ProcessedData } from "./types" ;
9
9
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
+
10
44
export const getData = ( ) => {
11
45
/**
12
46
* Execute
@@ -15,13 +49,26 @@ export const getData = () => {
15
49
const ordersString = fs . readFileSync ( "input/orders.csv" ) ;
16
50
const orders = parse ( ordersString , { columns : true } ) ;
17
51
52
+ const taxInfoMap : Record < string , TaxInfo > = { } ;
18
53
const ordersWithTaxString = fs . readFileSync ( "input/orders-tax.csv" ) ;
19
54
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
+ }
25
72
26
73
const orderWithEmail : Record < string , string > = parse ( fs . readFileSync ( "input/event-orders.csv" ) , { columns : true } )
27
74
// @ts -ignore
@@ -36,15 +83,15 @@ export const getData = () => {
36
83
. filter ( o => Number ( o [ 'Subtotal' ] ) > 0 )
37
84
// beautify data
38
85
. map ( item => {
39
- const taxInfo = ordersWithTaxMap [ item [ "Order #" ] ]
86
+ const taxInfo = taxInfoMap [ item [ "Order #" ] ] ;
40
87
41
88
return {
42
89
eventpopId : item [ 'Order #' ] ,
43
90
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 ?? '' ,
48
95
email : orderWithEmail [ item [ 'Order #' ] ]
49
96
} ,
50
97
ticket : {
0 commit comments