|
@@ -21,6 +21,7 @@ import com.jeeplus.common.web.BaseController;
|
|
|
import com.jeeplus.modules.projectrecord.entity.ProjectRecords;
|
|
|
import com.jeeplus.modules.sys.entity.Area;
|
|
|
import com.jeeplus.modules.sys.entity.MainDictDetail;
|
|
|
+import com.jeeplus.modules.sys.entity.User;
|
|
|
import com.jeeplus.modules.sys.utils.DictUtils;
|
|
|
import com.jeeplus.modules.sys.utils.UserUtils;
|
|
|
import com.jeeplus.modules.sysimportinfo.entity.SysImportInfo;
|
|
@@ -84,6 +85,11 @@ public class WorkClientInfoController extends BaseController {
|
|
|
@RequiresPermissions("workclientinfo:workClientInfo:list")
|
|
|
@RequestMapping(value = {"list", ""})
|
|
|
public String list(WorkClientInfo workClientInfo, HttpServletRequest request, HttpServletResponse response, Model model) {
|
|
|
+
|
|
|
+ if(StringUtils.isNotBlank(workClientInfo.getCreateId())){
|
|
|
+ User selectUser = UserUtils.get(workClientInfo.getCreateId());
|
|
|
+ model.addAttribute("createName", selectUser.getName());
|
|
|
+ }
|
|
|
WorkClientLinkman workClientLinkman = workClientInfo.getWorkClientLinkman();
|
|
|
if(workClientLinkman != null){
|
|
|
workClientLinkman.setId("");
|
|
@@ -94,6 +100,7 @@ public class WorkClientInfoController extends BaseController {
|
|
|
}
|
|
|
Page<WorkClientInfo> page = workClientInfoService.findPage(new Page<WorkClientInfo>(request, response), workClientInfo);
|
|
|
model.addAttribute("page", page);
|
|
|
+ model.addAttribute("createId", workClientInfo.getCreateId());
|
|
|
return "modules/workclientinfo/workClientInfoList";
|
|
|
}
|
|
|
|