mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
Merge pull request #10533 from inietov/feature/add_remaining_address_field_to_user_import
Add Zip field in the User Importer [sc-18556]
This commit is contained in:
commit
00c8a1ee21
|
@ -52,6 +52,7 @@ class UserImporter extends ItemImporter
|
||||||
$this->item['city'] = $this->findCsvMatch($row, 'city');
|
$this->item['city'] = $this->findCsvMatch($row, 'city');
|
||||||
$this->item['state'] = $this->findCsvMatch($row, 'state');
|
$this->item['state'] = $this->findCsvMatch($row, 'state');
|
||||||
$this->item['country'] = $this->findCsvMatch($row, 'country');
|
$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['activated'] = ($this->fetchHumanBoolean($this->findCsvMatch($row, 'activated')) == 1) ? '1' : 0;
|
||||||
$this->item['employee_num'] = $this->findCsvMatch($row, 'employee_num');
|
$this->item['employee_num'] = $this->findCsvMatch($row, 'employee_num');
|
||||||
$this->item['department_id'] = $this->createOrFetchDepartment($this->findCsvMatch($row, 'department'));
|
$this->item['department_id'] = $this->createOrFetchDepartment($this->findCsvMatch($row, 'department'));
|
||||||
|
|
|
@ -182,6 +182,7 @@
|
||||||
{id: 'address', text: 'Address' },
|
{id: 'address', text: 'Address' },
|
||||||
{id: 'city', text: 'City' },
|
{id: 'city', text: 'City' },
|
||||||
{id: 'state', text: 'State' },
|
{id: 'state', text: 'State' },
|
||||||
|
{id: 'zip', text: 'ZIP' },
|
||||||
{id: 'country', text: 'Country' },
|
{id: 'country', text: 'Country' },
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue