|
@@ -42,12 +42,16 @@ const StringUtil = {
|
|
|
setFinanceAuditor: false, //设置财务审核人
|
|
|
|
|
|
// 项目报表服务 //
|
|
|
- reportProject: false, // 项目报表 //
|
|
|
- reportTask : false, // 项目任务报表 //
|
|
|
- reportCostOf : false, // 项目成本报表 //
|
|
|
- reportBalance : false, // 项目收支平衡表 //
|
|
|
+ reportProject: false, // 全部项目报表 //
|
|
|
+ reportAllTask : false, // 全部项目任务报表 //
|
|
|
+ reportTask : false, // 负责项目任务报表 //
|
|
|
+ reportAllCostOf : false, // 全部项目成本报表 //
|
|
|
+ reportCostOf : false, // 负责项目成本报表 //
|
|
|
+ reportAllBalance : false, // 全部项目收支平衡表 //
|
|
|
+ reportBalance : false, // 负责项目收支平衡表 //
|
|
|
reportProfits : false, // 客户项目利润表 //
|
|
|
- reportPhase : false, // 项目阶段工时表 //
|
|
|
+ reportAllPhase : false, // 全部项目阶段工时表 //
|
|
|
+ reportPhase : false, // 负责项目阶段工时表 //
|
|
|
reportAllOvertime : false, // 全公司加班情况 //
|
|
|
reportOvertime : false, // 负责部门加班情况 //
|
|
|
reportCost: false, // 查看加班成本 //
|
|
@@ -57,7 +61,7 @@ const StringUtil = {
|
|
|
reportTimeDivide: false, // 负责部门工时分配 //
|
|
|
reportAllTimely: false, // 全公司填报及时率 //
|
|
|
reportTimely: false, // 负责部门填报及时率 //
|
|
|
- reportAuditRate: false, // 查看日报待审核统计 //
|
|
|
+ reportAuditRate: false, // 日报待审核统计 //
|
|
|
reportPersonnel: false, // 全公司工时统计 //
|
|
|
reportResponsible: false, // 负责部门工时统计 //
|
|
|
|
|
@@ -121,11 +125,15 @@ const StringUtil = {
|
|
|
arr[i] == '薪资数据上传' ? obj.financialUpload = true : ''
|
|
|
arr[i] == '薪资数据导出' ? obj.financialExport = true : ''
|
|
|
arr[i] == '导出分摊数据' ? obj.financialShare = true : ''
|
|
|
- arr[i] == '项目任务报表' ? obj.reportTask = true : ''
|
|
|
- arr[i] == '项目成本报表' ? obj.reportCostOf = true : ''
|
|
|
- arr[i] == '项目收支平衡表' ? obj.reportBalance = true : ''
|
|
|
+ arr[i] == '负责项目任务报表' ? obj.reportTask = true : ''
|
|
|
+ arr[i] == '全部项目任务报表' ? obj.reportAllTask = true : ''
|
|
|
+ arr[i] == '负责项目成本报表' ? obj.reportCostOf = true : ''
|
|
|
+ arr[i] == '全部项目成本报表' ? obj.reportAllCostOf = true : ''
|
|
|
+ arr[i] == '负责项目收支平衡表' ? obj.reportBalance = true : ''
|
|
|
+ arr[i] == '全部项目收支平衡表' ? obj.reportAllBalance = true : ''
|
|
|
arr[i] == '客户项目利润表' ? obj.reportProfits = true : ''
|
|
|
- arr[i] == '项目阶段工时表' ? obj.reportPhase = true : ''
|
|
|
+ arr[i] == '负责项目阶段工时表' ? obj.reportPhase = true : ''
|
|
|
+ arr[i] == '全部项目阶段工时表' ? obj.reportAllPhase = true : ''
|
|
|
arr[i] == '全公司加班情况' ? obj.reportAllOvertime = true : ''
|
|
|
arr[i] == '负责部门加班情况' ? obj.reportOvertime = true : ''
|
|
|
arr[i] == '请假填报' ? obj.leaveFil = true : ''
|
|
@@ -157,7 +165,7 @@ const StringUtil = {
|
|
|
arr[i] == '日报待审核统计' ? obj.reportAuditRate = true : ''
|
|
|
arr[i] == '查看工时统计' ? obj.countHours = true : ''
|
|
|
arr[i] == '查看成本统计' ? obj.countCost = true : ''
|
|
|
- arr[i] == '项目报表' ? obj.reportProject = true : ''
|
|
|
+ arr[i] == '全部项目报表' ? obj.reportProject = true : ''
|
|
|
arr[i] == '批量填报' ? obj.reportBatch = true : ''
|
|
|
arr[i] == '项目阶段管理' ? obj.projectPhase = true : ''
|
|
|
arr[i] == '全公司工时统计' ? obj.reportPersonnel = true : ''
|