| | |
| | | * 规划员 |
| | | */ |
| | | @ApiModelProperty(value= "规划员") |
| | | private String planner; |
| | | private Long planner; |
| | | |
| | | /** |
| | | * 完成时间 |
| | |
| | | private String memo; |
| | | |
| | | public Plan() {} |
| | | |
| | | public Plan(Long hostId,Long deptId,Long planType,Long userId,Long orderId,Long cstmrId,String uuid,String name,Date appleTime,Long planNeed,Integer beItem,String planner,Date finishTime,String form,Integer change,Integer changeTime,String changeReason,Double planBonus,Double planLeaderBonus,String files,Integer settle,String settleMsg,String comment,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) { |
| | | this.hostId = hostId; |
| | | this.deptId = deptId; |
| | | this.planType = planType; |
| | | this.userId = userId; |
| | | this.orderId = orderId; |
| | | this.cstmrId = cstmrId; |
| | | this.uuid = uuid; |
| | | this.name = name; |
| | | this.appleTime = appleTime; |
| | | this.planNeed = planNeed; |
| | | this.beItem = beItem; |
| | | this.planner = planner; |
| | | this.finishTime = finishTime; |
| | | this.form = form; |
| | | this.change = change; |
| | | this.changeTime = changeTime; |
| | | this.changeReason = changeReason; |
| | | this.planBonus = planBonus; |
| | | this.planLeaderBonus = planLeaderBonus; |
| | | this.files = files; |
| | | this.settle = settle; |
| | | this.settleMsg = settleMsg; |
| | | this.comment = comment; |
| | | this.status = status; |
| | | this.createBy = createBy; |
| | | this.createTime = createTime; |
| | | this.updateBy = updateBy; |
| | | this.updateTime = updateTime; |
| | | this.memo = memo; |
| | | } |
| | | |
| | | // Plan plan = new Plan( |
| | | // null, // 所属商户 |
| | | // null, // 所属部门 |
| | | // null, // 业务类型[非空] |
| | | // null, // 业务员 |
| | | // null, // 跟踪项目 |
| | | // null, // 甲方单位 |
| | | // null, // 规划单代号[非空] |
| | | // null, // 规划单名称[非空] |
| | | // null, // 申请日期 |
| | | // null, // 方案所需 |
| | | // null, // 立项 |
| | | // null, // 规划员 |
| | | // null, // 完成时间 |
| | | // null, // 表单内容 |
| | | // null, // 更改方案 |
| | | // null, // 更改次数 |
| | | // null, // 更改方案原因 |
| | | // null, // 规格奖金 |
| | | // null, // 规格组长奖金 |
| | | // null, // 附件 |
| | | // null, // 进度 |
| | | // null, // 审核进度 |
| | | // null, // 评论 |
| | | // null, // 状态 |
| | | // null, // 添加人员 |
| | | // null, // 添加时间 |
| | | // null, // 修改人员 |
| | | // null, // 修改时间 |
| | | // null // 注释 |
| | | // ); |
| | | |
| | | public String getHostId$(){ |
| | | HostService service = SpringUtils.getBean(HostService.class); |
| | |
| | | } |
| | | } |
| | | |
| | | public String getPlanner$(){ |
| | | UserService service = SpringUtils.getBean(UserService.class); |
| | | User user = service.selectById(this.planner); |
| | | if (!Cools.isEmpty(user)){ |
| | | return String.valueOf(user.getNickname()); |
| | | } |
| | | return null; |
| | | } |
| | | |
| | | public String getStatus$(){ |
| | | if (null == this.status){ return null; } |
| | | switch (this.status){ |
| | |
| | | <div class="layui-form-item"> |
| | | <label class="layui-form-label">规划员: </label> |
| | | <div class="layui-input-block"> |
| | | <input class="layui-input" name="planner" placeholder="请输入规划员"> |
| | | <input class="layui-input" name="planner$" placeholder="请输入规划员" disabled> |
| | | </div> |
| | | </div> |
| | | <div class="layui-form-item"> |