|
@@ -671,7 +671,7 @@ class VerifyApi {
|
|
$exportFields = $params["export"];
|
|
$exportFields = $params["export"];
|
|
$fields = [];
|
|
$fields = [];
|
|
foreach ($exportFields as $field) {
|
|
foreach ($exportFields as $field) {
|
|
- if (!in_array($field, ["industryFieldNew", "enterpriseName", "enterpriseTag", "street", "talent_arrange_category", "checkMsg", "breakFaithName", "activeName"])) {
|
|
|
|
|
|
+ if (!in_array($field, ["industryFieldNew", "enterpriseName", "enterpriseTag", "street", "talent_arrange_category", "checkMsg", "breakFaithName", "activeName", "certificateGetTime"])) {
|
|
$fields[] = "ti." . $field;
|
|
$fields[] = "ti." . $field;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -685,6 +685,10 @@ class VerifyApi {
|
|
$fields[] = "tl.description as checkMsg";
|
|
$fields[] = "tl.description as checkMsg";
|
|
$fields[] = "if(ti.break_faith=1,'是','否') as breakFaithName";
|
|
$fields[] = "if(ti.break_faith=1,'是','否') as breakFaithName";
|
|
$fields[] = "if(ti.active=2,'离职','在职') as activeName";
|
|
$fields[] = "if(ti.active=2,'离职','在职') as activeName";
|
|
|
|
+
|
|
|
|
+ if (in_array("certificateGetTime", $exportFields)) {
|
|
|
|
+ $fields[] = "concat(ti.certificateGetTime,'至',ti.certificateExpireTime) as certificateGetTime";
|
|
|
|
+ }
|
|
if (in_array("card_type", $exportFields)) {
|
|
if (in_array("card_type", $exportFields)) {
|
|
$cardTypes = DictApi::selectByParentCode("card_type");
|
|
$cardTypes = DictApi::selectByParentCode("card_type");
|
|
}
|
|
}
|