|
|
@@ -1611,6 +1611,9 @@ class ImportService extends Service
|
|
|
foreach ($table_config as $k => $conf) {
|
|
|
if (!$conf['is_main']) {
|
|
|
$fieldKey = $conf['key'];
|
|
|
+
|
|
|
+ if ($fieldKey == 'employee_title') continue;
|
|
|
+
|
|
|
$fieldVal = $row[$k];
|
|
|
// 如果是人员,转换为 ID
|
|
|
if ($fieldKey == 'employee_id') {
|
|
|
@@ -1872,6 +1875,9 @@ class ImportService extends Service
|
|
|
foreach ($table_config as $k => $conf) {
|
|
|
if (!$conf['is_main']) {
|
|
|
$fieldKey = $conf['key'];
|
|
|
+
|
|
|
+ if ($fieldKey == 'device_title') continue;
|
|
|
+
|
|
|
$fieldVal = $row[$k];
|
|
|
// 如果是人员,转换为 ID
|
|
|
if ($fieldKey == 'device_id') {
|
|
|
@@ -2127,6 +2133,9 @@ class ImportService extends Service
|
|
|
foreach ($table_config as $k => $conf) {
|
|
|
if (!$conf['is_main']) {
|
|
|
$fieldKey = $conf['key'];
|
|
|
+
|
|
|
+ if ($fieldKey == 'employee_title') continue;
|
|
|
+
|
|
|
$fieldVal = $row[$k];
|
|
|
// 如果是人员,转换为 ID
|
|
|
if ($fieldKey == 'employee_id') {
|
|
|
@@ -2371,6 +2380,8 @@ class ImportService extends Service
|
|
|
foreach ($table_config as $k => $conf) {
|
|
|
if (!$conf['is_main']) {
|
|
|
$fieldKey = $conf['key'];
|
|
|
+ if ($fieldKey == 'device_title') continue;
|
|
|
+
|
|
|
$fieldVal = $row[$k];
|
|
|
// 如果是人员,转换为 ID
|
|
|
if ($fieldKey == 'device_id') {
|