123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- 'use strict';
- /**
- *
- * @author EllisRan
- * @date
- * @version
- */
- const status = require('../const/audit').material.status;
- const _ = require('lodash');
- module.exports = options => {
- /**
- * 材料调差校验 中间件
- * 1. 读取材料调差数据
- * 2. 检验用户是否参与材料调差(不校验具体权限)
- *
- * 写入ctx.material数据
- * 其中:
- * material.auditors: 审批人列表(退回原报时,加载上一流程)
- * material.curAuditor: 当前审批人(未上报为空,审批通过 or 退回原报时,为空)
- * material.readonly: 登录人,是否可操作
- * material.curTimes: 当前登录人,操作、查阅数据times
- * material.curOrder: 当前登录人,操作、查阅数据order
- *
- * 该方法为通用方法,如需material其他数据,请在controller中查询
- *
- * @param {function} next - 中间件继续执行的方法
- * @return {void}
- */
- return function* materialCheck(next) {
- try {
- // 读取标段数据
- const materialOrder = parseInt(this.params.order);
- if (materialOrder <= 0) {
- throw '您访问的期不存在';
- }
- const material = yield this.service.material.getDataByCondition({
- tid: this.tender.id,
- order: materialOrder,
- });
- if (!material) {
- throw '材料调差期数据错误';
- }
- // 读取原报、审核人数据
- material.auditors = yield this.service.materialAudit.getAuditors(material.id, material.times);
- material.curAuditor = yield this.service.materialAudit.getCurAuditor(material.id, material.times);
- // 权限相关
- // todo 校验权限 (标段参与人、分享)
- const accountId = this.session.sessionUser.accountId, auditorIds = _.map(material.auditors, 'aid'), shareIds = [];
- if (accountId === material.user_id) { // 原报
- // if (material.curAuditor) {
- // material.readOnly = material.status === status.checking && material.curAuditor.user_id === accountId;
- // } else {
- // material.readOnly = material.status !== status.uncheck && material.status !== status.checkNo;
- // }
- material.curTimes = material.times;
- if (material.status === status.uncheck || material.status === status.checkNo) {
- material.curOrder = 0;
- } else if (material.status === status.checked) {
- material.curOrder = _.max(_.map(material.auditors, 'order'));
- } else {
- material.curOrder = material.curAuditor.aid === accountId ? material.curAuditor.order : material.curAuditor.order - 1;
- }
- } else if (auditorIds.indexOf(accountId) !== -1) { // 审批人
- if (material.status === status.uncheck) {
- throw '您无权查看该数据';
- }
- // material.readOnly = material.status !== status.checking || accountId !== material.curAuditor.aid;
- material.curTimes = material.status === status.checkNo ? material.times - 1 : material.times;
- if (material.status === status.checked) {
- material.curOrder = _.max(_.map(material.auditors, 'order'));
- } else if (material.status === status.checkNo) {
- const audit = this.service.materialAudit.getDataByCondition({
- mid: material.id, times: material.times, status: status.checkNo
- });
- material.curOrder = audit.order;
- } else {
- material.curOrder = accountId === material.curAuditor.aid ? material.curAuditor.order : material.curAuditor.order - 1;
- }
- } else if (shareIds.indexOf(accountId) !== -1) { // 分享人
- if (material.status === status.uncheck) {
- throw '您无权查看该数据';
- }
- // material.readOnly = true;
- material.curTimes = material.status === status.checkNo ? material.times - 1 : material.times;
- material.curOrder = material.status === status.checked ? _.max(_.map(material.auditors, 'order')) : material.curAuditor.order - 1;
- } else { // 其他不可见
- throw '您无权查看该数据';
- }
- // 获取最新的期
- material.highOrder = yield this.service.material.count({
- tid: this.tender.id,
- });
- // 调差的readOnly 指表格和页面只能看不能改,和审批无关
- material.readOnly = !((material.status === status.uncheck || material.status === status.checkNo) && accountId === material.user_id);
- this.material = material;
- yield next;
- } catch (err) {
- console.log(err);
- // 输出错误到日志
- if (err.stack) {
- this.logger.error(err);
- } else {
- this.getLogger('fail').info(JSON.stringify({
- error: err,
- project: this.session.sessionProject,
- user: this.session.sessionUser,
- body: this.session.body,
- }));
- }
- // 重定向值标段管理
- this.redirect(this.request.headers.referer);
- }
- };
- };
|