1、添加公司员工管理关联系统用户表

2、添加项目延期字段,缺乏逻辑开发
3、完成库存管理ui开发
4、创建task后针对于个人的任务安排数据库work表,将在下次迭代后完成三表联查业务逻辑完善
5、添加库存管理的模板下载、excl整流后批量导入
混淆项1、work的时间粒度到人|任务 2、已分配任务员工是否在分配任务页面显示
This commit is contained in:
2024-11-03 17:07:07 +08:00
parent 256952f0cb
commit 36a60d2f02
13 changed files with 786 additions and 50 deletions

View File

@@ -115,4 +115,18 @@ public class SysOaProject extends BaseEntity {
*/
private String remark;
/**
* 是否延期
*/
private Long isPostpone;
/**
* 延期原因
*/
private String postponeReason;
/**
* 延期至
*/
private Date postponeTime;
}

View File

@@ -141,4 +141,19 @@ public class SysOaProjectBo extends BaseEntity {
private String remark;
/**
* 是否延期
*/
private Long isPostpone;
/**
* 延期原因
*/
private String postponeReason;
/**
* 延期至
*/
private Date postponeTime;
}

View File

@@ -165,4 +165,19 @@ public class SysOaProjectVo {
private String remark;
/**
* 是否延期
*/
private Long isPostpone;
/**
* 延期原因
*/
private String postponeReason;
/**
* 延期至
*/
private Date postponeTime;
}

View File

@@ -84,6 +84,7 @@ public class SysOaTaskServiceImpl implements ISysOaTaskService {
ajax.put("color", "#cccccc");
objects.add(ajax);
});
System.out.println(objects);
//根据项目id获取任务列表类型属性最大的值
SysOaTaskBo task = new SysOaTaskBo();