Fix issue with accounts in select map not matching

When mapping Opposing Accounts the select input's values are incorrect and do not match account ids.
This commit is contained in:
Kelvin 2018-01-06 00:40:17 -05:00 committed by GitHub
parent 9e1586878b
commit e300c1aab4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,7 @@ class OpposingAccounts implements MapperInterface
}
$list[$accountId] = $name;
}
$list = array_merge([0 => trans('import.map_do_not_map')], $list);
$list = ["0" => trans('import.map_do_not_map')] + $list;
return $list;
}