-
Notifications
You must be signed in to change notification settings - Fork 49
/
exercise.js
100 lines (91 loc) · 2.6 KB
/
exercise.js
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
main();
function main() {
const transactions = [
{
id: 't1',
type: 'PAYMENT',
status: 'OPEN',
method: 'CREDIT_CARD',
amount: '23.99',
},
{
id: 't2',
type: 'PAYMENT',
status: 'OPEN',
method: 'PAYPAL',
amount: '100.43',
},
{
id: 't3',
type: 'REFUND',
status: 'OPEN',
method: 'CREDIT_CARD',
amount: '10.99',
},
{
id: 't4',
type: 'PAYMENT',
status: 'CLOSED',
method: 'PLAN',
amount: '15.99',
},
];
processTransactions(transactions);
}
function processTransactions(transactions) {
if (transactions && transactions.length > 0) {
for (const transaction of transactions) {
if (transaction.type === 'PAYMENT') {
if (transaction.status === 'OPEN') {
if (transaction.method === 'CREDIT_CARD') {
processCreditCardPayment(transaction);
} else if (transaction.method === 'PAYPAL') {
processPayPalPayment(transaction);
} else if (transaction.method === 'PLAN') {
processPlanPayment(transaction);
}
} else {
console.log('Invalid transaction type!', transaction);
}
} else if (transaction.type === 'REFUND') {
if (transaction.status === 'OPEN') {
if (transaction.method === 'CREDIT_CARD') {
processCreditCardRefund(transaction);
} else if (transaction.method === 'PAYPAL') {
processPayPalRefund(transaction);
} else if (transaction.method === 'PLAN') {
processPlanRefund(transaction);
}
} else {
console.log('Invalid transaction type!', transaction);
}
} else {
console.log('Invalid transaction type!', transaction);
}
}
} else {
console.log('No transactions provided!');
}
}
function processCreditCardPayment(transaction) {
console.log(
'Processing credit card payment for amount: ' + transaction.amount
);
}
function processCreditCardRefund(transaction) {
console.log(
'Processing credit card refund for amount: ' + transaction.amount
);
}
function processPayPalPayment(transaction) {
console.log('Processing PayPal payment for amount: ' + transaction.amount);
}
function processPayPalRefund(transaction) {
console.log('Processing PayPal refund for amount: ' + transaction.amount);
}
function processPlanPayment(transaction) {
console.log('Processing plan payment for amount: ' + transaction.amount);
}
function processPlanRefund(transaction) {
console.log('Processing plan refund for amount: ' + transaction.amount);
}