cqp 1 месяц назад
Родитель
Сommit
d34cf79f71
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      app/Service/ImportService.php

+ 2 - 2
app/Service/ImportService.php

@@ -48,7 +48,7 @@ class ImportService extends Service
         'overtimeOrder', // 加班单
         'feeOrder', // 费用项目单
         'RDOrder', // 研发支出辅助帐
-        'priority', // 优先级
+        'tag', // 标签管理
         'team', // 团队
     ];
 
@@ -4051,7 +4051,7 @@ class ImportService extends Service
         $type_map = array_flip(Tag::TYPE_TITLE);
         $isUse_map = array_flip(Tag::IS_USE);
 
-        // 获取当前企业下已存在的优先级,用于判断是新增还是更新
+        // 获取当前企业下已存在的标签,用于判断是新增还是更新
         $dbMap = Tag::where('del_time', 0)
             ->where('top_depart_id', $user['top_depart_id'])
             ->get()