| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 | 'use strict';/** * * @author Mai * @date * @version */const status = require('../const/audit').stage.status;const reviseStatus = require('../const/audit').revise.status;const _ = require('lodash');module.exports = options => {    /**     * 期校验 中间件     * 1. 读取期数据     * 2. 检验用户是否参与期(不校验具体权限)     *     * 写入ctx.stage数据     * 其中:     * stage.auditors: 审批人列表(退回原报时,加载上一流程)     * stage.curAuditor: 当前审批人(未上报为空,审批通过 or 退回原报时,为空)     * stage.readonly: 登录人,是否可操作     * stage.curTimes: 当前登录人,操作、查阅数据times     * stage.curOrder: 当前登录人,操作、查阅数据order     *     * 该方法为通用方法,如需stage其他数据,请在controller中查询     *     * @param {function} next - 中间件继续执行的方法     * @return {void}     */    return function* stageCheck(next) {        try {            // 读取标段数据            const stageOrder = parseInt(this.params.order);            if (stageOrder <= 0) {                throw '您访问的期不存在';            }            const stage = yield this.service.stage.getDataByCondition({                tid: this.tender.id,                order: stageOrder,            });            if (!stage) {                throw '期数据错误';            }            // 读取原报、审核人数据            stage.auditors = yield this.service.stageAudit.getAuditors(stage.id, stage.times);            stage.curAuditor = yield this.service.stageAudit.getCurAuditor(stage.id, stage.times);            // 获取最新的期            stage.highOrder = yield this.service.stage.count({                tid: this.tender.id,            });            const materials = yield this.service.material.getAllDataByCondition({ columns: ['stage_id', 's_order'], where: { tid: this.tender.id } });            stage.hadMaterial = materials.find(function(item) {                return item.s_order.split(',').indexOf(stage.highOrder.toString()) !== -1;            });            // 权限相关            // todo 校验权限 (标段参与人、分享)            const accountId = this.session.sessionUser.accountId,                auditorIds = _.map(stage.auditors, 'aid'),                shareIds = [];            const permission = this.session.sessionUser.permission;            if (accountId === stage.user_id) { // 原报                if (stage.curAuditor) {                    stage.readOnly = stage.curAuditor.aid !== accountId;                } else {                    stage.readOnly = stage.status !== status.uncheck && stage.status !== status.checkNo;                }                stage.curTimes = stage.times;                if (stage.status === status.uncheck || stage.status === status.checkNo) {                    stage.curOrder = 0;                } else if (stage.status === status.checked) {                    stage.curOrder = _.max(_.map(stage.auditors, 'order'));                } else {                    stage.curOrder = stage.curAuditor.aid === accountId ? stage.curAuditor.order : stage.curAuditor.order - 1;                }            } else if (auditorIds.indexOf(accountId) !== -1) { // 审批人                if (stage.status === status.uncheck) {                    throw '您无权查看该数据';                }                stage.curTimes = stage.status === status.checkNo ? stage.times - 1 : stage.times;                if (stage.status === status.checked) {                    stage.curOrder = _.max(_.map(stage.auditors, 'order'));                } else if (stage.status === status.checkNo) {                    const audit = yield this.service.stageAudit.getDataByCondition({                        sid: stage.id, times: stage.times - 1, status: status.checkNo,                    });                    stage.curOrder = audit.order;                } else {                    stage.curOrder = accountId === stage.curAuditor.aid ? stage.curAuditor.order : stage.curAuditor.order - 1;                }                stage.readOnly = (stage.status !== status.checking && stage.status !== status.checkNoPre) || accountId !== stage.curAuditor.aid;            } else if (shareIds.indexOf(accountId) !== -1 || (permission !== null && permission.tender !== undefined && permission.tender.indexOf('2') !== -1)) { // 分享人                if (stage.status === status.uncheck) {                    throw '您无权查看该数据';                }                stage.readOnly = true;                stage.curTimes = stage.status === status.checkNo ? stage.times - 1 : stage.times;                if (stage.status === status.checkNo) {                    const audit = yield this.service.stageAudit.getDataByCondition({                        sid: stage.id, times: stage.times - 1, status: status.checkNo,                    });                    stage.curOrder = audit.order;                } else {                    stage.curOrder = stage.status === status.checked ? _.max(_.map(stage.auditors, 'order')) : stage.curAuditor.order - 1;                }            } else { // 其他不可见                throw '您无权查看该数据';            }            const lastRevise = yield this.service.ledgerRevise.getLastestRevise(this.tender.id);            stage.revising = (lastRevise && lastRevise.status !== reviseStatus.checked) || false;            this.stage = stage;            yield next;        } catch (err) {            this.helper.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);        }    };};
 |