|
@@ -937,7 +937,33 @@ class TalentAllowance extends AdminController {
|
|
|
* 导出基本信息
|
|
|
*/
|
|
|
public function exportBasicInfo() {
|
|
|
-
|
|
|
+ $obj["year"] = \StrUtil::getRequestDecodeParam($this->request, "year");
|
|
|
+ $obj["enterpriseName"] = \StrUtil::getRequestDecodeParam($this->request, "enterpriseName");
|
|
|
+ $obj["name"]= \StrUtil::getRequestDecodeParam($this->request, "name");
|
|
|
+ $obj["idCard"] = \StrUtil::getRequestDecodeParam($this->request, "idCard");
|
|
|
+ $obj["talentType"] = \StrUtil::getRequestDecodeParam($this->request, "talentType");
|
|
|
+ $obj["talentArrange"] = \StrUtil::getRequestDecodeParam($this->request, "talentArrange");
|
|
|
+ $obj["address"] = \StrUtil::getRequestDecodeParam($this->request, "address");
|
|
|
+ $obj["identifyCondition"] = \StrUtil::getRequestDecodeParam($this->request, "identifyCondition");
|
|
|
+ $obj["isSupple"] = \StrUtil::getRequestDecodeParam($this->request, "isSupple");
|
|
|
+ $obj["checkState"] = \StrUtil::getRequestDecodeParam($this->request, "checkState");
|
|
|
+ $obj["companyName"] = \StrUtil::getRequestDecodeParam($this->request, "companyName");
|
|
|
+ $obj["introductionMode"] = \StrUtil::getRequestDecodeParam($this->request, "introductionMode");
|
|
|
+ $obj["firstJJStartTime"] = \StrUtil::getRequestDecodeParam($this->request, "firstJJStartTime");
|
|
|
+ $obj["firstJJEndTime"] = \StrUtil::getRequestDecodeParam($this->request, "firstJJEndTime");
|
|
|
+ $obj["process"] = intval(\StrUtil::getRequestDecodeParam($this->request, "process"));
|
|
|
+ $obj["type"] = $this->user["type"];
|
|
|
+ $list = [];
|
|
|
+ switch ($obj["process"]) {
|
|
|
+ case 1:
|
|
|
+ break;
|
|
|
+ case 2:
|
|
|
+ break;
|
|
|
+ case 3:
|
|
|
+ break;
|
|
|
+ case 4:
|
|
|
+ break;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
private function validateAllowanceType(&$info) {
|