diff --git a/app/Importer/UserImporter.php b/app/Importer/UserImporter.php index d32f3a0f29..13d163b4c1 100644 --- a/app/Importer/UserImporter.php +++ b/app/Importer/UserImporter.php @@ -52,6 +52,7 @@ class UserImporter extends ItemImporter $this->item['city'] = $this->findCsvMatch($row, 'city'); $this->item['state'] = $this->findCsvMatch($row, 'state'); $this->item['country'] = $this->findCsvMatch($row, 'country'); + $this->item['zip'] = $this->findCsvMatch($row, 'zip'); $this->item['activated'] = ($this->fetchHumanBoolean($this->findCsvMatch($row, 'activated')) == 1) ? '1' : 0; $this->item['employee_num'] = $this->findCsvMatch($row, 'employee_num'); $this->item['department_id'] = $this->createOrFetchDepartment($this->findCsvMatch($row, 'department')); diff --git a/resources/assets/js/components/importer/importer-file.vue b/resources/assets/js/components/importer/importer-file.vue index f051cd9d68..f208a84079 100644 --- a/resources/assets/js/components/importer/importer-file.vue +++ b/resources/assets/js/components/importer/importer-file.vue @@ -182,6 +182,7 @@ {id: 'address', text: 'Address' }, {id: 'city', text: 'City' }, {id: 'state', text: 'State' }, + {id: 'zip', text: 'ZIP' }, {id: 'country', text: 'Country' }, ],