Add den, health, and notes columns to reports

master
Skylar Ittner 5 years ago
parent d1acda3349
commit 50c7a4afa7

@ -30,6 +30,9 @@
"ZIP": "ZIP", "ZIP": "ZIP",
"Shirt": "Shirt", "Shirt": "Shirt",
"Shirts": "Shirts", "Shirts": "Shirts",
"Den": "Den",
"Health": "Health",
"Notes": "Notes",
"Total": "Total", "Total": "Total",
"Yes": "Yes", "Yes": "Yes",
"No": "No", "No": "No",

@ -60,7 +60,10 @@ function getPeopleReport($filter = ""): Report {
$Strings->get("Address", false), $Strings->get("Address", false),
$Strings->get("ZIP", false), $Strings->get("ZIP", false),
$Strings->get("Shirt", false), $Strings->get("Shirt", false),
$Strings->get("Sex", false) $Strings->get("Sex", false),
$Strings->get("Den", false),
$Strings->get("Health", false),
$Strings->get("Notes", false)
]; ];
break; break;
case "Adults": case "Adults":
@ -76,7 +79,8 @@ function getPeopleReport($filter = ""): Report {
$Strings->get("Days", false), $Strings->get("Days", false),
$Strings->get("Position", false), $Strings->get("Position", false),
$Strings->get("Shirt", false), $Strings->get("Shirt", false),
$Strings->get("Sex", false) $Strings->get("Sex", false),
$Strings->get("Notes", false)
]; ];
break; break;
case "Youth": case "Youth":
@ -94,7 +98,8 @@ function getPeopleReport($filter = ""): Report {
$Strings->get("Days", false), $Strings->get("Days", false),
$Strings->get("Position", false), $Strings->get("Position", false),
$Strings->get("Shirt", false), $Strings->get("Shirt", false),
$Strings->get("Sex", false) $Strings->get("Sex", false),
$Strings->get("Notes", false)
]; ];
break; break;
default: default:
@ -107,7 +112,8 @@ function getPeopleReport($filter = ""): Report {
$Strings->get("Address", false), $Strings->get("Address", false),
$Strings->get("ZIP", false), $Strings->get("ZIP", false),
$Strings->get("Shirt", false), $Strings->get("Shirt", false),
$Strings->get("Sex", false) $Strings->get("Sex", false),
$Strings->get("Notes", false)
]; ];
} }
@ -144,7 +150,10 @@ function getPeopleReport($filter = ""): Report {
$p['address'], $p['address'],
$p['zip'], $p['zip'],
$p['shirt'], $p['shirt'],
$p['sex'] $p['sex'],
$p['den'],
$p['health'],
$p['notes']
]; ];
break; break;
case "Adults": case "Adults":
@ -158,7 +167,8 @@ function getPeopleReport($filter = ""): Report {
$p['days'], $p['days'],
$p['position'], $p['position'],
$p['shirt'], $p['shirt'],
$p['sex'] $p['sex'],
$p['notes']
]; ];
break; break;
case "Youth": case "Youth":
@ -174,7 +184,8 @@ function getPeopleReport($filter = ""): Report {
$p['days'], $p['days'],
$p['position'], $p['position'],
$p['shirt'], $p['shirt'],
$p['sex'] $p['sex'],
$p['notes']
]; ];
break; break;
default: default:
@ -187,7 +198,8 @@ function getPeopleReport($filter = ""): Report {
$p['address'], $p['address'],
$p['zip'], $p['zip'],
$p['shirt'], $p['shirt'],
$p['sex'] $p['sex'],
$p['notes']
]; ];
} }

Loading…
Cancel
Save