-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtasks.todo
More file actions
23 lines (18 loc) · 1.06 KB
/
tasks.todo
File metadata and controls
23 lines (18 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Parsing arguments:
✔ set up variables for command-line arguments @done(24-12-28 20:35)
✔ 4 arguments: scriptName, commandName, dataFile, excelFile @done(24-12-28 20:35)
✔ raise exception if incorrrect number of arguments @done(24-12-28 20:35)
function converting pdf to csv:
✔ write function to convert input pdf to csv file @done(24-12-28 20:46)
✔ return new csv file @done(24-12-28 20:46)
main:
✔ IF dataFile is not csv, call pdf to csv function @done(24-12-28 20:53)
✔ call function depending on command argument @done(24-12-28 20:57)
fill with exec names:
✔ switch to exec sheet @done(24-12-29 00:36)
✔ parse data file to obtain name, email, phone number, student id @done(24-12-29 01:39)
✔ fill rows and cols with data (using loops) @done(24-12-29 01:39)
fill with bank transactions:
✔ parse csv file for essential data: customer name, status completed, due date, amount @done(24-12-29 18:37)
✔ sort by due date @done(24-12-29 18:37)
✔ starting at row 9, column B, find next empty row and append corresponding data to excel rows @done(24-12-29 18:37)