mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-27 14:02:14 +00:00
Merge pull request #71 from EETagent/finish_csv_export
(backend) Personal Id Number in CSV
This commit is contained in:
commit
c81beac1c3
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ impl From<(i32, ApplicationDetails)> for Row {
|
||||||
email: Some(d.email),
|
email: Some(d.email),
|
||||||
sex: Some(d.sex),
|
sex: Some(d.sex),
|
||||||
study: Some(d.study),
|
study: Some(d.study),
|
||||||
personal_identification_number: None, // TODO
|
personal_identification_number: Some(d.personal_id_number),
|
||||||
|
|
||||||
parent_name: Some(d.parent_name),
|
parent_name: Some(d.parent_name),
|
||||||
parent_surname: Some(d.parent_surname),
|
parent_surname: Some(d.parent_surname),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue