stage.js 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074
  1. 'use strict';
  2. /**
  3. * 期计量 数据模型
  4. *
  5. * @author Mai
  6. * @date 2018/8/13
  7. * @version
  8. */
  9. const auditConst = require('../const/audit');
  10. const payConst = require('../const/deal_pay.js');
  11. const roleRelSvr = require('./role_rpt_rel');
  12. const fs = require('fs');
  13. const path = require('path');
  14. const _ = require('lodash');
  15. const projectLogConst = require('../const/project_log');
  16. const syncApiConst = require('../const/sync_api');
  17. const RevisePrice = require('../lib/revise_price');
  18. module.exports = app => {
  19. class Stage extends app.BaseService {
  20. /**
  21. * 构造函数
  22. *
  23. * @param {Object} ctx - egg全局变量
  24. * @return {void}
  25. */
  26. constructor(ctx) {
  27. super(ctx);
  28. this.tableName = 'stage';
  29. }
  30. /**
  31. * 根据id查找数据
  32. *
  33. * @param {Number} id - 数据库中的id
  34. * @return {Object} - 返回单条数据
  35. */
  36. async getDataById(id) {
  37. const result = await this.db.get(this.tableName, { id });
  38. if (result) { result.tp_history = result.tp_history ? JSON.parse(result.tp_history) : []; }
  39. return result;
  40. }
  41. /**
  42. * 根据条件查找单条数据
  43. *
  44. * @param {Object} condition - 筛选条件
  45. * @return {Object} - 返回单条数据
  46. */
  47. async getDataByCondition(condition) {
  48. const result = await this.db.get(this.tableName, condition);
  49. if (result) { result.tp_history = result.tp_history ? JSON.parse(result.tp_history) : []; }
  50. return result;
  51. }
  52. /**
  53. * 根据条件查找列表数据
  54. *
  55. * @param {Object} condition - 筛选条件
  56. * @return {Array} - 返回数据
  57. */
  58. async getAllDataByCondition(condition) {
  59. const result = await this.db.select(this.tableName, condition);
  60. for (const r of result) {
  61. r.tp_history = r.tp_history ? JSON.parse(r.tp_history) : [];
  62. }
  63. return result;
  64. }
  65. async loadStageUser(stage) {
  66. const status = auditConst.stage.status;
  67. const accountId = this.ctx.session.sessionUser.accountId;
  68. stage.user = await this.ctx.service.projectAccount.getAccountInfoById(stage.user_id);
  69. stage.auditors = await this.ctx.service.stageAudit.getAuditors(stage.id, stage.times); // 全部参与的审批人
  70. stage.auditorIds = this._.map(stage.auditors, 'aid');
  71. stage.curAuditors = stage.auditors.filter(x => { return x.status === status.checking; }); // 当前流程中审批中的审批人
  72. // 分组审批时,根据受限筛选当前审批人
  73. if (stage.curAuditors.length > 0 && stage.curAuditors[0].audit_type === auditConst.auditType.key.multi) {
  74. stage.curAuditors.sort((a, b) => { return a.audit_group_order - b.audit_group_order; });
  75. const filter = [];
  76. stage.curAuditors.forEach(x => {
  77. if (!x.audit_group_limit) {
  78. filter.push(x);
  79. } else {
  80. const exist = filter.find(f => { return f.audit_group === x.audit_group && f.audit_group_order < x.audit_group_order; });
  81. if (!exist) filter.push(x);
  82. }
  83. });
  84. stage.curAuditors = filter;
  85. }
  86. stage.curAuditorIds = this._.map(stage.curAuditors, 'aid');
  87. stage.flowAuditors = stage.curAuditors.length > 0 ? stage.auditors.filter(x => { return x.order === stage.curAuditors[0].order; }) : []; // 当前流程中参与的审批人(包含会签时,审批通过的人)
  88. stage.flowAuditorIds = this._.map(stage.flowAuditors, 'aid');
  89. stage.nextAuditors = stage.curAuditors.length > 0 ? stage.auditors.filter(x => { return x.order === stage.curAuditors[0].order + 1; }) : [];
  90. stage.nextAuditorIds = this._.map(stage.nextAuditors, 'aid');
  91. stage.auditorGroups = this.ctx.helper.groupAuditors(stage.auditors);
  92. stage.userGroups = this.ctx.helper.groupAuditorsUniq(stage.auditorGroups);
  93. stage.userGroups.unshift([{
  94. aid: stage.user.id, order: 0, times: stage.times, audit_order: 0, audit_type: auditConst.auditType.key.common,
  95. name: stage.user.name, role: stage.user.role, company: stage.user.company
  96. }]);
  97. stage.finalAuditorIds = stage.userGroups[stage.userGroups.length - 1].map(x => { return x.aid; });
  98. stage.relaAuditor = this._.findLast(stage.auditors, x => { return x.aid === accountId });
  99. stage.assists = await this.service.stageAuditAss.getData(stage); // 全部协同人
  100. stage.assists = stage.assists.filter(x => {
  101. return x.user_id === stage.user_id || stage.auditorIds.indexOf(x.user_id) >= 0;
  102. }); // 过滤无效协同人
  103. stage.userAssists = stage.assists.filter(x => { return x.user_id === stage.user_id; }); // 原报协同人
  104. stage.userAssistIds = this._.map(stage.userAssists, 'ass_user_id');
  105. stage.auditAssists = stage.assists.filter(x => { return x.user_id !== stage.user_id; }); // 审批协同人
  106. stage.auditAssistIds = this._.map(stage.auditAssists, 'ass_user_id');
  107. stage.relaAssists = stage.assists.filter(x => { return x.user_id === accountId }); // 登录人的协同人
  108. stage.userIds = stage.status === status.uncheck // 当前流程下全部参与人id
  109. ? [stage.user_id, ...stage.userAssistIds]
  110. : [stage.user_id, ...stage.userAssistIds, ...stage.auditorIds, ...stage.auditAssistIds];
  111. }
  112. async loadStageAuditViewData(stage) {
  113. const times = stage.status === auditConst.stage.status.checkNo ? stage.times - 1 : stage.times;
  114. if (!stage.user) stage.user = await this.ctx.service.projectAccount.getAccountInfoById(stage.user_id);
  115. stage.auditHistory = await this.ctx.service.stageAudit.getAuditorHistory(stage.id, times);
  116. // 获取审批流程中左边列表
  117. if (stage.status === auditConst.stage.status.checkNo && stage.user_id !== this.ctx.session.sessionUser.accountId) {
  118. const auditors = await this.ctx.service.stageAudit.getAuditors(stage.id, times); // 全部参与的审批人
  119. const auditorGroups = this.ctx.helper.groupAuditors(auditors);
  120. stage.auditors2 = this.ctx.helper.groupAuditorsUniq(auditorGroups);
  121. stage.auditors2.unshift([{
  122. aid: stage.user.id, order: 0, times: stage.times - 1, audit_order: 0, audit_type: auditConst.auditType.key.common,
  123. name: stage.user.name, role: stage.user.role, company: stage.user.company
  124. }]);
  125. } else {
  126. stage.auditors2 = stage.userGroups;
  127. }
  128. if (stage.status === auditConst.stage.status.uncheck || stage.status === auditConst.stage.status.checkNo) {
  129. stage.auditorList = await this.ctx.service.stageAudit.getAuditors(stage.id, stage.times);
  130. }
  131. }
  132. async loadPreCheckedStage(stage) {
  133. if (stage.order > 1) {
  134. if (stage.status === auditConst.stage.status.checked) {
  135. stage.preCheckedStage = await this.getDataByCondition({ tid: stage.tid, order: stage.order - 1 });
  136. } else {
  137. const preCheckedStages = await this.getAllDataByCondition({
  138. where: { tid: stage.tid, status: auditConst.stage.status.checked },
  139. orders: [['order', 'desc']],
  140. });
  141. stage.preCheckedStage = preCheckedStages[0];
  142. }
  143. stage.isCheckFirst = stage.order > 1 ? (stage.preCheckedStage ? stage.preCheckedStage.order === stage.order - 1 : false) : true;
  144. } else {
  145. stage.preCheckedStage = undefined;
  146. stage.isCheckFirst = true;
  147. }
  148. }
  149. async doCheckStage(stage, force = false) {
  150. const status = auditConst.stage.status;
  151. await this.loadStageUser(stage);
  152. await this.loadPreCheckedStage(stage);
  153. const accountId = this.ctx.session.sessionUser.accountId, shareIds = [];
  154. const isTenderTourist = await this.service.tenderTourist.getDataByCondition({ tid: stage.tid, user_id: accountId });
  155. const permission = this.ctx.session.sessionUser.permission;
  156. if (stage.status === status.uncheck) {
  157. stage.readOnly = accountId !== stage.user_id && stage.userAssistIds.indexOf(accountId) < 0;
  158. if (!stage.readOnly) {
  159. stage.assist = stage.userAssists.find(x => { return x.ass_user_id === accountId; });
  160. }
  161. stage.curTimes = stage.times;
  162. stage.curOrder = 0;
  163. } else if (stage.status === status.checkNo) {
  164. stage.readOnly = accountId !== stage.user_id && stage.userAssistIds.indexOf(accountId) < 0;
  165. const checkNoAudit = await this.service.stageAudit.getDataByCondition({
  166. sid: stage.id, times: stage.times - 1, status: status.checkNo,
  167. });
  168. if (!stage.readOnly) {
  169. stage.assist = stage.userAssists.find(x => { return x.ass_user_id === accountId; });
  170. stage.curTimes = stage.times;
  171. stage.curOrder = 0;
  172. } else {
  173. stage.curTimes = stage.times - 1;
  174. stage.curOrder = checkNoAudit.order;
  175. }
  176. } else if (stage.status === status.checked) {
  177. stage.readOnly = true;
  178. stage.curTimes = stage.times;
  179. stage.curOrder = _.max(_.map(stage.auditors, 'order'));
  180. } else {
  181. const ass = stage.auditAssists.find(x => { return stage.flowAuditorIds.indexOf(x.user_id) >= 0 && x.ass_user_id === accountId; });
  182. stage.readOnly = stage.flowAuditorIds.indexOf(accountId) < 0 && !ass;
  183. stage.curTimes = stage.times;
  184. if (!stage.readOnly) {
  185. stage.assist = ass;
  186. stage.curOrder = stage.curAuditors[0].order;
  187. } else {
  188. stage.curOrder = stage.curAuditors[0].order - 1;
  189. }
  190. // 会签,会签人审批通过时,只读,但是curOrder需按原来的取值
  191. if (!stage.readOnly) {
  192. stage.readOnly = !_.isEqual(stage.flowAuditorIds, stage.curAuditorIds);
  193. stage.canCheck = true;
  194. }
  195. }
  196. if (stage.readOnly) {
  197. stage.assist = accountId === stage.user_id || stage.auditorIds.indexOf(accountId) >= 0
  198. ? null
  199. : stage.assists.find(x => { return x.ass_user_id === accountId});
  200. }
  201. if (stage.userIds.indexOf(accountId) >= 0) {
  202. stage.filePermission = true;
  203. } else if (!!isTenderTourist || force) {
  204. stage.filePermission = this.tender && this.tender.touristPermission ? this.tender.touristPermission.file : false;
  205. } else {
  206. stage.filePermission = false;
  207. }
  208. let time = stage.readOnly ? stage.cache_time_r : stage.cache_time_l;
  209. if (!time) time = stage.in_time ? stage.in_time : new Date();
  210. stage.cacheTime = time.getTime();
  211. // 历史台账
  212. if (stage.status === status.checked) {
  213. stage.ledgerHis = await this.service.ledgerHistory.getDataById(stage.his_id);
  214. }
  215. // 是否台账修订中
  216. const lastRevise = await this.service.ledgerRevise.getLastestRevise(stage.tid);
  217. stage.revising = (lastRevise && lastRevise.status !== auditConst.revise.status.checked) || false;
  218. return stage;
  219. }
  220. async doCheckStageCanCancel(stage) {
  221. // 获取当前审批人的上一个审批人,判断是否是当前登录人,并赋予撤回功能,(当审批人存在有审批过时,上一人不允许再撤回)
  222. const status = auditConst.stage.status;
  223. const accountId = this.ctx.session.sessionUser.accountId;
  224. stage.cancancel = 0;
  225. if (stage.status !== status.checked && stage.status !== status.uncheck) {
  226. if (stage.status !== status.checkNo) {
  227. // 找出当前操作人上一个审批人,包括审批完成的和退回上一个审批人的,同时当前操作人为第一人时,就是则为原报
  228. if (stage.flowAuditors.find(x => { return x.status !== auditConst.stage.status.checking}) && stage.flowAuditorIds.indexOf(accountId) < 0) return; // 当前流程存在审批人审批通过时,不可撤回
  229. const flowAssists = stage.auditAssists.filter(x => { return stage.flowAuditorIds.indexOf(x.user_id) >= 0; });
  230. if (flowAssists.find(x => { return x.confirm; })) return; //当前流程存在协审人确认时,不可撤回
  231. if (stage.curAuditorIds.indexOf(accountId) < 0 && stage.flowAuditorIds.indexOf(accountId) >= 0) {
  232. if (stage.curAuditors[0].audit_type === auditConst.auditType.key.multi) return; // 当前审批流程为分组审批时,不允许撤回
  233. const selfAudit = stage.flowAuditors.find(x => { return x.aid === accountId; });
  234. if (!selfAudit || selfAudit.status !== status.checked) return;
  235. if (selfAudit.audit_group_order) {
  236. const nextChecked = stage.flowAuditors.find(x => { return x.audit_group_order > selfAudit.audit_group_order && x.status === status.checked; });
  237. if (!nextChecked) stage.cancancel = 5;
  238. } else {
  239. stage.cancancel = 5; // 会签/协同 未全部审批通过时,审批人撤回审批通过(或签需要多人审批通过是亦然)
  240. }
  241. return;
  242. }
  243. const preAuditors = stage.curAuditors[0].order !== 1 ? stage.auditors.filter(x => { return x.order === stage.curAuditors[0].order - 1; }) : [];
  244. const preAuditorCheckAgain = preAuditors.find(pa => { return pa.status === status.checkAgain; });
  245. const preAuditorCheckCancel = preAuditors.find(pa => { return pa.status === status.checkCancel; });
  246. const preAuditorHasOld = preAuditors.find(pa => { return pa.is_old === 1; });
  247. const preAuditorIds = (preAuditorCheckAgain ? [] : preAuditors.map(x => { return x.aid })); // 重审不可撤回
  248. if ((this._.isEqual(stage.flowAuditorIds, preAuditorIds) && preAuditorCheckCancel) || preAuditorHasOld) {
  249. return; // 不可以多次撤回
  250. }
  251. const preAuditChecked = preAuditors.find(pa => { return pa.status === status.checked && pa.aid === accountId; });
  252. const preAuditCheckNoPre = preAuditors.find(pa => { return pa.status === status.checkNoPre && pa.aid === accountId; });
  253. if (preAuditorIds.indexOf(accountId) >= 0) {
  254. if (preAuditChecked) {
  255. stage.cancancel = 2;// 审批人撤回审批通过
  256. } else if (preAuditCheckNoPre) {
  257. stage.cancancel = 3;// 审批人撤回审批退回上一人
  258. }
  259. stage.preAuditors = preAuditors;
  260. } else if (preAuditors.length === 0 && accountId === stage.user_id) {
  261. stage.cancancel = 1;// 原报撤回
  262. }
  263. } else {
  264. const lastAuditors = await this.service.stageAudit.getAuditors(stage.id, stage.times - 1);
  265. const onAuditor = _.findLast(lastAuditors, { status: status.checkNo });
  266. if (onAuditor.aid === accountId) {
  267. stage.cancancel = 4;// 审批人撤回退回原报
  268. stage.preAuditors = lastAuditors.filter(x => { return x.order === onAuditor.order });
  269. }
  270. }
  271. }
  272. }
  273. async checkStage(sid) {
  274. if (!this.ctx.stage) {
  275. const stage = await this.ctx.service.stage.getDataById(sid);
  276. if (!stage) throw '校验的期数据不存在';
  277. await this.doCheckStage(stage);
  278. this.ctx.stage = stage;
  279. }
  280. }
  281. /**
  282. * 获取 最新一期 期计量
  283. * @param tenderId
  284. * @param includeUnCheck
  285. * @return {Promise<*>}
  286. */
  287. async getLastestStage(tenderId, includeUnCheck = false) {
  288. this.initSqlBuilder();
  289. this.sqlBuilder.setAndWhere('tid', {
  290. value: tenderId,
  291. operate: '=',
  292. });
  293. if (!includeUnCheck) {
  294. this.sqlBuilder.setAndWhere('status', {
  295. value: auditConst.stage.status.uncheck,
  296. operate: '!=',
  297. });
  298. }
  299. this.sqlBuilder.orderBy = [['order', 'desc']];
  300. const [sql, sqlParam] = this.sqlBuilder.build(this.tableName);
  301. const stage = await this.db.queryOne(sql, sqlParam);
  302. if (stage) stage.tp_history = stage.tp_history ? JSON.parse(stage.tp_history) : [];
  303. return stage;
  304. }
  305. /**
  306. * 获取 最新一期 期计量
  307. * @param tenderId
  308. * @param includeUnCheck
  309. * @return {Promise<*>}
  310. */
  311. async getFlowLatestStage(tenderId, includeUnCheck = false) {
  312. const stages = await this.getAllDataByCondition({ where: {tid: tenderId}, orders: [['order', 'desc']] });
  313. const flowStages = [];
  314. for (const s of stages) {
  315. if (s.status !== auditConst.stage.status.checked) flowStages.push(s);
  316. }
  317. let stage;
  318. if (flowStages.length === 0) {
  319. stage = stages[0];
  320. } else {
  321. const firstFlowStage = flowStages[flowStages.length - 1];
  322. if (includeUnCheck) {
  323. stage = firstFlowStage;
  324. } else {
  325. stage = firstFlowStage.status === auditConst.stage.status.uncheck ? stages[flowStages.length] : firstFlowStage;
  326. }
  327. }
  328. return stage;
  329. }
  330. async getUnCompleteStages(tenderId) {
  331. return this.db.query(`SELECT * From ${this.tableName} WHERE tid = ? and status <> ?`, [tenderId, auditConst.stage.status.checked]);
  332. }
  333. async getNumByChecked(tenderId) {
  334. const num = await this.db.queryOne(`SELECT COUNT(*) as num From ${this.tableName} WHERE tid = ? and status = ?`, [tenderId, auditConst.stage.status.checked]);
  335. return num ? num.num : 0;
  336. }
  337. /**
  338. * 获取 最新一期 审批完成的 期计量
  339. * @param tenderId
  340. * @return {Promise<*>}
  341. */
  342. async getLastestCompleteStage(tenderId) {
  343. this.initSqlBuilder();
  344. this.sqlBuilder.setAndWhere('tid', {
  345. value: tenderId,
  346. operate: '=',
  347. });
  348. this.sqlBuilder.setAndWhere('status', {
  349. value: auditConst.stage.status.checked,
  350. operate: '=',
  351. });
  352. this.sqlBuilder.orderBy = [['order', 'desc']];
  353. const [sql, sqlParam] = this.sqlBuilder.build(this.tableName);
  354. const stage = await this.db.queryOne(sql, sqlParam);
  355. if (stage) stage.tp_history = stage.tp_history ? JSON.parse(stage.tp_history) : [];
  356. return stage;
  357. }
  358. /**
  359. * 获取标段下的期列表(报表选择用,只需要一些key信息,不需要计算详细数据,也懒得一个个字段写了,用*来处理)
  360. * @param tenderId
  361. * @return {Promise<void>}
  362. */
  363. async getValidStagesShort(tenderId) {
  364. const sql = 'select * from zh_stage where tid = ? order by zh_stage.order';
  365. const sqlParam = [tenderId];
  366. return await this.db.query(sql, sqlParam);
  367. }
  368. async getListByArchives(tid, ids) {
  369. if (ids.length === 0) return [];
  370. const sql = 'SELECT c.* FROM ?? as c LEFT JOIN (SELECT sid, MAX(end_time) as end_time FROM ?? WHERE ' +
  371. 'tid = ? AND sid in (' + this.ctx.helper.getInArrStrSqlFilter(ids) + ') GROUP BY sid) as ca ON c.id = ca.sid WHERE' +
  372. ' c.tid = ? AND c.id in (' + this.ctx.helper.getInArrStrSqlFilter(ids) + ') AND c.status = ? ORDER BY c.order ASC';
  373. const params = [this.tableName, this.ctx.service.stageAudit.tableName, tid, tid, auditConst.stage.status.checked];
  374. const list = await this.db.query(sql, params);
  375. return list;
  376. }
  377. /**
  378. * 获取某一期信息(报表用)
  379. * @param stageId
  380. * @return {Promise<void>}
  381. */
  382. async getStageById(stageId) {
  383. const sql = 'select * from zh_stage where id = ? order by zh_stage.order';
  384. const sqlParam = [stageId];
  385. return await this.db.query(sql, sqlParam);
  386. }
  387. async checkStageGatherData(stage, force = false) {
  388. // 最新一期计量(未审批完成),当前操作人的期详细数据,应实时计算
  389. if (stage.status !== auditConst.stage.status.checked) {
  390. await this.doCheckStage(stage, force);
  391. if (!stage.readOnly && stage.check_calc) {
  392. const tpData = await this.ctx.service.stageBills.getSumTotalPrice(stage);
  393. const pcSum = await this.ctx.service.stageBillsPc.getSumTotalPrice(stage);
  394. stage.contract_tp = tpData.contract_tp;
  395. stage.qc_tp = tpData.qc_tp;
  396. stage.positive_qc_tp = tpData.positive_qc_tp;
  397. stage.negative_qc_tp = tpData.negative_qc_tp;
  398. stage.contract_pc_tp = pcSum.contract_pc_tp;
  399. stage.qc_pc_tp = pcSum.qc_pc_tp;
  400. stage.pc_tp = pcSum.pc_tp;
  401. stage.positive_qc_pc_tp = pcSum.positive_qc_pc_tp;
  402. stage.negative_qc_pc_tp = pcSum.negative_qc_pc_tp;
  403. stage.tp = this.ctx.helper.sum([stage.contract_tp, stage.qc_tp, stage.pc_tp]);
  404. const tp = await this.ctx.service.stagePay.getSpecialTotalPrice(stage);
  405. stage.yf_tp = tp.yf;
  406. stage.sf_tp = tp.sf;
  407. stage.end_tp = this.ctx.helper.add(stage.pre_tp, stage.tp);
  408. await this.update({
  409. check_calc: false,
  410. contract_tp: stage.contract_tp, qc_tp: stage.qc_tp,
  411. positive_qc_tp: stage.positive_qc_tp, negative_qc_tp: stage.negative_qc_tp,
  412. contract_pc_tp: stage.contract_pc_tp || 0, qc_pc_tp: stage.qc_pc_tp || 0, pc_tp: stage.pc_tp || 0,
  413. positive_qc_pc_tp: stage.positive_qc_pc_tp || 0, negative_qc_pc_tp: stage.negative_qc_pc_tp || 0,
  414. yf_tp: stage.yf_tp, sf_tp: stage.sf_tp,
  415. }, { id: stage.id });
  416. } else if (stage.tp_history) {
  417. const his = this.ctx.helper._.find(stage.tp_history, { times: stage.curTimes, order: stage.curOrder });
  418. if (his) {
  419. stage.contract_tp = his.contract_tp;
  420. stage.qc_tp = his.qc_tp;
  421. stage.positive_qc_tp = his.positive_qc_tp;
  422. stage.negative_qc_tp = his.negative_qc_tp;
  423. stage.yf_tp = his.yf_tp;
  424. stage.sf_tp = his.sf_tp;
  425. stage.tp = this.ctx.helper.sum([stage.contract_tp, stage.qc_tp, stage.pc_tp]);
  426. stage.end_tp = this.ctx.helper.add(stage.pre_tp, stage.tp);
  427. }
  428. }
  429. }
  430. }
  431. async _checkStageValid(stage) {
  432. if (stage.status === auditConst.stage.status.uncheck && !this.ctx.tender.isTourist) {
  433. const assist = await this.ctx.service.auditAss.getAllDataByCondition({ where: { tid: stage.tid, user_id: stage.user_id } });
  434. const assistId = assist.map(x => { return x.ass_user_id });
  435. return stage.user_id === this.ctx.session.sessionUser.accountId || assistId.indexOf(this.ctx.session.sessionUser.accountId) >= 0;
  436. } else {
  437. return true;
  438. }
  439. }
  440. /**
  441. * 获取标段下的全部计量期,按倒序
  442. * @param tenderId
  443. * @return {Promise<void>}
  444. */
  445. async getValidStages(tenderId, force = false) {
  446. let stages = await this.db.select(this.tableName, {
  447. where: { tid: tenderId },
  448. orders: [['order', 'desc']],
  449. });
  450. for (const s of stages) {
  451. s.tp_history = s.tp_history ? JSON.parse(s.tp_history) : [];
  452. s.valid = await this._checkStageValid(s);
  453. }
  454. if (stages.length !== 0 && !this.ctx.session.sessionUser.is_admin) {
  455. stages = stages.filter(x => { return x.valid; });
  456. }
  457. // 最新一期计量(未审批完成),当前操作人的期详细数据,应实时计算
  458. if (stages.length === 0) return stages;
  459. for (const s of stages) {
  460. if (s.status !== auditConst.stage.status.checked) await this.checkStageGatherData(s, force);
  461. s.tp = this.ctx.helper.sum([s.contract_tp, s.qc_tp, s.pc_tp]);
  462. s.pre_tp = this.ctx.helper.add(s.pre_contract_tp, s.pre_qc_tp);
  463. s.end_tp = this.ctx.helper.add(s.pre_tp, s.tp);
  464. if (s.yf_tp && s.sf_tp === 0) {
  465. const sf = await this.ctx.service.stagePay.getHistorySf(s);
  466. if (sf && s.readOnly) {
  467. await this.ctx.service.stage.update({ sf_tp: sf.tp, pre_sf_tp: sf.pre_tp }, { id: s.id });
  468. }
  469. s.sf_tp = sf ? sf.tp : 0;
  470. }
  471. }
  472. return stages;
  473. }
  474. async getNextStages(tenderId, order) {
  475. const sql = 'SELECT * FROM ?? WHERE tid = ? AND `order` > ?';
  476. return await this.db.query(sql, [this.tableName, tenderId, order]);
  477. }
  478. async _getSumTp(condition, ...field) {
  479. const fieldSql = [];
  480. for (const f of field) {
  481. fieldSql.push('SUM(`' + f + '`) as ' + '`' + f + '`');
  482. }
  483. const sql = 'SELECT ' + fieldSql.join(', ') + ' FROM ' + this.tableName + ' ' + this.ctx.helper.whereSql(condition);
  484. return await this.db.queryOne(sql);
  485. }
  486. /**
  487. *
  488. * @param tenderId - 标段id
  489. * @param date - 计量年月
  490. * @param period - 开始-截止日期
  491. * @return {Promise<void>}
  492. */
  493. async addStage(tender, date, period) {
  494. const stages = await this.getAllDataByCondition({
  495. where: { tid: tender.id },
  496. orders: [['order', 'DESC']],
  497. });
  498. const preStage = stages[0];
  499. const preCheckedStage = stages.find(x => { return x.status === auditConst.stage.status.checked; });
  500. const order = stages.length + 1;
  501. const newStage = {
  502. sid: this.uuid.v4(),
  503. tid: tender.id,
  504. order,
  505. in_time: new Date(),
  506. s_time: date,
  507. period,
  508. times: 1,
  509. status: auditConst.stage.status.uncheck,
  510. user_id: tender.user_id, // this.ctx.session.sessionUser.accountId,
  511. check_calc: false,
  512. };
  513. newStage.cache_time_l = newStage.in_time;
  514. newStage.cache_time_r = newStage.in_time;
  515. if (preStage) {
  516. newStage.im_type = preStage.im_type;
  517. newStage.im_pre = preStage.im_pre;
  518. newStage.im_gather = preStage.im_gather;
  519. newStage.im_gather_node = preStage.im_gather_node;
  520. if (preCheckedStage) {
  521. newStage.pre_contract_tp = this.ctx.helper.sum([preCheckedStage.pre_contract_tp, preCheckedStage.contract_tp, preCheckedStage.contract_pc_tp]);
  522. newStage.pre_qc_tp = this.ctx.helper.sum([preCheckedStage.pre_qc_tp, preCheckedStage.qc_tp, preCheckedStage.qc_pc_tp]);
  523. newStage.pre_positive_qc_tp = this.ctx.helper.sum([preCheckedStage.pre_positive_qc_tp, preCheckedStage.positive_qc_tp, preCheckedStage.positive_qc_pc_tp]);
  524. newStage.pre_negative_qc_tp = this.ctx.helper.sum([preCheckedStage.pre_negative_qc_tp, preCheckedStage.negative_qc_tp, preCheckedStage.negative_qc_pc_tp]);
  525. newStage.pre_yf_tp = this.ctx.helper.add(preCheckedStage.pre_yf_tp, preCheckedStage.yf_tp);
  526. if (preCheckedStage.order === 1 || preCheckedStage.pre_sf_tp) {
  527. newStage.pre_sf_tp = this.ctx.helper.add(preCheckedStage.pre_sf_tp, preCheckedStage.sf_tp);
  528. } else {
  529. const sumTp = await this._getSumTp({tid: preCheckedStage.tid}, 'sf_tp');
  530. newStage.pre_sf_tp = sumTp.sf_tp || 0;
  531. }
  532. }
  533. } else {
  534. const projFunRela = this.ctx.subProject.fun_rela;
  535. newStage.im_type = projFunRela.imType;
  536. }
  537. const transaction = await this.db.beginTransaction();
  538. try {
  539. // 新增期记录
  540. const result = await transaction.insert(this.tableName, newStage);
  541. if (result.affectedRows === 1) {
  542. newStage.id = result.insertId;
  543. newStage.preCheckedStage = preCheckedStage;
  544. } else {
  545. throw '新增期数据失败';
  546. }
  547. // 存在上一期时,复制上一期审批流程
  548. if (preStage) {
  549. const auditResult = await this.ctx.service.stageAudit.copyPreStageAuditors(transaction, preStage, newStage);
  550. if (!auditResult) {
  551. throw '复制上一期审批流程失败';
  552. }
  553. }
  554. // 新增期合同支付数据
  555. const dealResult = await this.ctx.service.stagePay.addInitialStageData(newStage, transaction);
  556. if (!dealResult) {
  557. throw '新增期合同支付数据失败';
  558. }
  559. // 新增期其他台账数据
  560. let pcTp = { contract_pc_tp: 0, qc_pc_tp: 0, pc_tp: 0, positive_qc_pc_tp: 0, negative_qc_pc_tp: 0 };
  561. if (preCheckedStage) {
  562. const jgclResult = await this.ctx.service.stageJgcl.addInitialStageData(newStage, preCheckedStage, transaction);
  563. if (!jgclResult) throw '初始化甲供材料数据失败';
  564. const yjclResult = await this.ctx.service.stageYjcl.addInitialStageData(newStage, preCheckedStage, transaction);
  565. if (!yjclResult) throw '初始化甲供材料数据失败';
  566. const otherResult = await this.ctx.service.stageOther.addInitialStageData(newStage, preCheckedStage, transaction);
  567. if (!otherResult) throw '初始化其他台账数据失败';
  568. const safeResult = await this.ctx.service.stageSafeProd.addInitialStageData(newStage, preCheckedStage, transaction);
  569. if (!safeResult) throw '初始化其他台账数据失败';
  570. const tempResult = await this.ctx.service.stageTempLand.addInitialStageData(newStage, preCheckedStage, transaction);
  571. if (!tempResult) throw '初始化其他台账数据失败';
  572. }
  573. if (preStage && preCheckedStage && preStage.order === preCheckedStage.order) {
  574. const priceCalc = new RevisePrice(this.ctx);
  575. pcTp = await priceCalc.newStagePriceChange(newStage, preStage, transaction);
  576. }
  577. if (order === 1 || (preStage && preCheckedStage && preStage.order === preCheckedStage.order)) {
  578. await this.ctx.service.tenderCache.updateStageCache4Add(transaction, newStage, pcTp);
  579. }
  580. // 新增期拷贝报表相关配置/签名角色 等
  581. if (preStage) {
  582. const rptResult = await this.ctx.service.rptCustomDefine.addInitialStageData(newStage, preStage, transaction);
  583. await this.ctx.service.roleRptRel.addInitialStageData(tender.id, newStage, preStage);
  584. }
  585. await transaction.commit();
  586. // 通知发送 - 第三方更新
  587. if (this.ctx.session.sessionProject.custom && syncApiConst.notice_type.indexOf(this.ctx.session.sessionProject.customType) !== -1) {
  588. const base_data = {
  589. tid: tender.id,
  590. sid: result.insertId,
  591. op: 'insert',
  592. };
  593. this.ctx.helper.syncNoticeSend(this.ctx.session.sessionProject.customType, JSON.stringify(base_data));
  594. // 存在上一期时
  595. base_data.op = preStage ? 'update' : 'insert';
  596. base_data.sid = -1;
  597. this.ctx.helper.syncNoticeSend(this.ctx.session.sessionProject.customType, JSON.stringify(base_data));
  598. }
  599. return newStage;
  600. } catch (err) {
  601. await transaction.rollback();
  602. throw err;
  603. }
  604. }
  605. /**
  606. * 编辑计量期
  607. *
  608. * @param {Number} tenderId - 标段Id
  609. * @param {Number} order - 第N期
  610. * @param {String} date - 计量年月
  611. * @param {String} period - 开始-截止时间
  612. * @return {Promise<void>}
  613. */
  614. async saveStage(tenderId, order, date, period) {
  615. await this.db.update(this.tableName, {
  616. s_time: date,
  617. period,
  618. }, { where: { tid: tenderId, order } });
  619. }
  620. /**
  621. * 设置 中间计量 生成规则,并生成数据
  622. * @param {Number} tenderId - 标段id
  623. * @param {Number} order - 期序号
  624. * @param {Number} data - 中间计量生成规则
  625. * @return {Promise<void>}
  626. */
  627. async buildDetailData(tenderId, order, data) {
  628. const conn = await this.db.beginTransaction();
  629. try {
  630. await conn.update(this.tableName, { im_type: data.im_type, im_pre: data.im_pre , im_start_num: data.im_start_num }, { where: { tid: tenderId, order } });
  631. // to do 生成中间计量数据
  632. await conn.commit();
  633. } catch (err) {
  634. await conn.rollback();
  635. throw err;
  636. }
  637. }
  638. async getChangeSubtotal(stage) {
  639. const result = {};
  640. const bg = await this.ctx.service.stageChange.getSubtotal(stage);
  641. const importBg = await this.ctx.service.stageImportChange.getSubtotal(stage);
  642. result.common = this.ctx.helper.add(bg.common, importBg.common);
  643. result.great = this.ctx.helper.add(bg.great, importBg.great);
  644. result.more = this.ctx.helper.add(bg.more, importBg.more);
  645. return result;
  646. }
  647. /**
  648. * 获取 当期的 计算基数
  649. * @return {Promise<any>}
  650. */
  651. async getStagePayCalcBase(stage, tenderInfo) {
  652. const calcBase = JSON.parse(JSON.stringify(payConst.calcBase));
  653. const param = tenderInfo.deal_param;
  654. const sum = await this.ctx.service.stageBills.getSumTotalPrice(stage);
  655. const qdSum = await this.ctx.service.stageBills.getSumTotalPriceGcl(stage);
  656. const pcSum = await this.ctx.service.stageBillsPc.getSumTotalPrice(stage);
  657. const bg = await this.getChangeSubtotal(stage);
  658. for (const cb of calcBase) {
  659. switch (cb.code) {
  660. case 'htj':
  661. cb.value = param.contractPrice;
  662. break;
  663. case 'zlje':
  664. cb.value = param.zanLiePrice;
  665. break;
  666. case 'htjszl':
  667. cb.value = this.ctx.helper.sub(this.ctx.helper.sub(param.contractPrice, param.zanLiePrice), param.jrgPrice);
  668. break;
  669. case 'kgyfk':
  670. cb.value = param.startAdvance;
  671. break;
  672. case 'clyfk':
  673. cb.value = param.materialAdvance;
  674. break;
  675. case 'bqwc':
  676. cb.value = this.ctx.helper.sum([sum.contract_tp, sum.qc_tp, pcSum.pc_tp]);
  677. break;
  678. case 'bqht':
  679. cb.value = sum.contract_tp; //this.ctx.helper.add(sum.contract_tp, pcSum.contract_pc_tp);
  680. break;
  681. case 'bqbg':
  682. cb.value = sum.qc_tp; //this.ctx.helper.add(sum.qc_tp, pcSum.qc_pc_tp);
  683. break;
  684. case 'bqqdwc':
  685. cb.value = this.ctx.helper.sum([qdSum.contract_tp, qdSum.qc_tp, pcSum.pc_tp]);
  686. break;
  687. case 'bqqdht':
  688. cb.value = qdSum.contract_tp;
  689. break;
  690. case 'bqqdbg':
  691. cb.value = qdSum.qc_tp;
  692. break;
  693. case 'ybbqwc':
  694. const sumGcl = await this.ctx.service.stageBills.getSumTotalPriceGcl(stage, '^[^0-9]*([0-9]{0,2}-)?1[0-9]{2}(-|$)');
  695. const sumPc = await this.ctx.service.stageBillsPc.getSumTotalPriceGcl(stage, '^[^0-9]*([0-9]{0,2}-)?1[0-9]{2}(-|$)');
  696. cb.value = this.ctx.helper.sum([sumGcl.contract_tp, sumGcl.qc_tp, sumPc.pc_tp]);
  697. break;
  698. case 'ybbqbg':
  699. cb.value = bg.common;
  700. break;
  701. case 'jdbqbg':
  702. cb.value = bg.more;
  703. break;
  704. case 'zdbqbg':
  705. cb.value = bg.great;
  706. break;
  707. default:
  708. cb.value = 0;
  709. }
  710. }
  711. return calcBase;
  712. }
  713. async updateCheckCalcFlag(stage, check) {
  714. const result = await this.db.update(this.tableName, { id: stage.id, check_calc: check });
  715. return result.affectedRows === 1;
  716. }
  717. async updateCacheTime(sid) {
  718. const result = await this.db.update(this.tableName, { id: sid, cache_time_l: new Date() });
  719. return result.affectedRows === 1;
  720. }
  721. /**
  722. * 删除计量期
  723. *
  724. * @param {Number} id - 期Id
  725. * @return {Promise<void>}
  726. */
  727. async deleteStage(id) {
  728. const stageInfo = await this.getDataById(id);
  729. await this.loadPreCheckedStage(stageInfo);
  730. const transaction = await this.db.beginTransaction();
  731. try {
  732. // 通知发送 - 第三方更新
  733. // if (this.ctx.session.sessionProject.custom && syncApiConst.notice_type.indexOf(this.ctx.session.sessionProject.customType) !== -1) {
  734. // const base_data = {
  735. // tid: this.ctx.tender.id,
  736. // sid: id,
  737. // op: 'delete',
  738. // };
  739. // await this.ctx.helper.syncNoticeSend(this.ctx.session.sessionProject.customType, JSON.stringify(base_data));
  740. // // 是否还存在其他期
  741. // base_data.op = stageInfo.order === 1 ? 'delete' : 'update';
  742. // base_data.sid = -1;
  743. // await this.ctx.helper.syncNoticeSend(this.ctx.session.sessionProject.customType, JSON.stringify(base_data));
  744. // }
  745. await transaction.delete(this.tableName, { id });
  746. if (stageInfo.isCheckFirst) await this.ctx.service.tenderCache.updateStageCache4Del(transaction, stageInfo);
  747. await transaction.delete(this.ctx.service.pos.tableName, { add_stage: id });
  748. await transaction.delete(this.ctx.service.stageAudit.tableName, { sid: id });
  749. await transaction.delete(this.ctx.service.stageBills.tableName, { sid: id });
  750. await transaction.delete(this.ctx.service.stageChange.tableName, { sid: id });
  751. await transaction.delete(this.ctx.service.stageChangeFinal.tableName, { sid: id });
  752. await transaction.delete(this.ctx.service.stageImportChange.tableName, { sid: id });
  753. await transaction.delete(this.ctx.service.stagePos.tableName, { sid: id });
  754. await transaction.delete(this.ctx.service.stageDetail.tableName, { sid: id });
  755. await transaction.delete(this.ctx.service.stagePosFinal.tableName, { sid: id });
  756. await transaction.delete(this.ctx.service.stageBillsFinal.tableName, { sid: id });
  757. await transaction.delete(this.ctx.service.stageRela.tableName, { sid: id });
  758. await transaction.delete(this.ctx.service.stageRelaBills.tableName, { sid: id });
  759. await transaction.delete(this.ctx.service.stageRelaBillsFinal.tableName, { sid: id });
  760. await transaction.delete(this.ctx.service.stageRelaIm.tableName, { sid: id });
  761. await transaction.delete(this.ctx.service.stageRelaImBills.tableName, { sid: id });
  762. await transaction.delete(this.ctx.service.stageAuditAss.tableName, { sid: id });
  763. // 删除计量合同支付附件
  764. const payList = await this.ctx.service.stagePay.getAllDataByCondition({ where: { sid: id } });
  765. if (payList) {
  766. for (const pt of payList) {
  767. if (pt.attachment !== null && pt.attachment !== '') {
  768. const payAttList = JSON.parse(pt.attachment);
  769. for (const pat of payAttList) {
  770. if (fs.existsSync(path.join(this.app.baseDir, pat.filepath))) {
  771. await fs.unlinkSync(path.join(this.app.baseDir, pat.filepath));
  772. }
  773. }
  774. }
  775. }
  776. }
  777. await transaction.delete(this.ctx.service.stagePay.tableName, { sid: id });
  778. await this.ctx.service.pay.doDeleteStage(stageInfo, transaction);
  779. // 删除计量附件文件
  780. const attList = await this.ctx.service.stageAtt.getAllDataByCondition({ where: { tid: stageInfo.tid, sid: stageInfo.order } });
  781. if (attList.length !== 0) {
  782. for (const att of attList) {
  783. if (fs.existsSync(path.join(this.app.baseDir, att.filepath))) {
  784. await fs.unlinkSync(path.join(this.app.baseDir, att.filepath));
  785. }
  786. }
  787. }
  788. await transaction.delete(this.ctx.service.stageAtt.tableName, { tid: stageInfo.tid, sid: stageInfo.order });
  789. // 其他台账
  790. await transaction.delete(this.ctx.service.stageJgcl.tableName, { sid: id });
  791. const bonus = await this.ctx.service.stageBonus.getStageData(stageInfo);
  792. if (bonus && bonus.length > 0) {
  793. for (const b of bonus) {
  794. for (const f of b.proof_file) {
  795. if (fs.existsSync(path.join(this.app.baseDir, f.filepath))) {
  796. await fs.unlinkSync(path.join(this.app.baseDir, f.filepath));
  797. }
  798. }
  799. }
  800. }
  801. await transaction.delete(this.ctx.service.stageYjcl.tableName, {sid: id});
  802. await transaction.delete(this.ctx.service.stageBonus.tableName, { sid: id });
  803. await transaction.delete(this.ctx.service.stageOther.tableName, { sid: id });
  804. // 同步删除进度里所选的期
  805. await transaction.delete(this.ctx.service.scheduleStage.tableName, { tid: stageInfo.tid, order: stageInfo.order });
  806. const detailAtt = await this.ctx.service.stageDetailAtt.getAllDataByCondition({ where: { sid: id } });
  807. if (detailAtt && detailAtt.length > 0) {
  808. for (const da of detailAtt) {
  809. da.attachment = da.attachment ? JSON.parse(da.attachment) : [];
  810. for (const daa of da.attachment) {
  811. if (fs.existsSync(path.join(this.app.baseDir, daa.filepath))) {
  812. await fs.unlinkSync(path.join(this.app.baseDir, daa.filepath));
  813. }
  814. }
  815. }
  816. }
  817. await transaction.delete(this.ctx.service.stageDetailAtt.tableName, { sid: id });
  818. // 重算进度计量总金额
  819. await this.ctx.service.scheduleStage.calcStageSjTp(transaction, stageInfo.tid);
  820. // 删除收方单及附件
  821. const shoufangAttList = await this.ctx.service.stageShoufangAtt.getAllDataByCondition({ where: { sid: id } });
  822. if (shoufangAttList.length !== 0) {
  823. for (const att of shoufangAttList) {
  824. if (fs.existsSync(path.join(this.app.baseDir, att.filepath))) {
  825. await fs.unlinkSync(path.join(this.app.baseDir, att.filepath));
  826. }
  827. }
  828. }
  829. await transaction.delete(this.ctx.service.stageShoufangAtt.tableName, { sid: id });
  830. const shoufangList = await this.ctx.service.stageShoufang.getAllDataByCondition({ where: { sid: id } });
  831. if (shoufangList.length !== 0) {
  832. for (const att of shoufangList) {
  833. if (fs.existsSync(path.join(this.app.baseDir, 'app/' + att.qrcode))) {
  834. await fs.unlinkSync(path.join(this.app.baseDir, 'app/' + att.qrcode));
  835. }
  836. }
  837. }
  838. await transaction.delete(this.ctx.service.stageShoufang.tableName, { sid: id });
  839. await transaction.delete(this.ctx.service.cooperationConfirm.tableName, { sid: id });
  840. // 记录删除日志
  841. await this.ctx.service.projectLog.addProjectLog(transaction, projectLogConst.type.stage, projectLogConst.status.delete, '第' + stageInfo.order + '期');
  842. await transaction.commit();
  843. return true;
  844. } catch (err) {
  845. await transaction.rollback();
  846. throw err;
  847. }
  848. }
  849. /**
  850. * 获取 多期的 计算基数 -(材料调差调用)
  851. * @return {Promise<any>}
  852. */
  853. async getMaterialCalcBase(stage_list, tenderInfo) {
  854. const calcBase = JSON.parse(JSON.stringify(payConst.materialCalcBase));
  855. const param = tenderInfo.deal_param;
  856. const sum = await this.ctx.service.stageBills.getSumTotalPriceByMaterial(stage_list);
  857. const pcSum = await this.ctx.service.stageBillsPc.getSumTotalPriceByMaterial(stage_list);
  858. for (const cb of calcBase) {
  859. switch (cb.code) {
  860. case 'htj':
  861. cb.value = param.contractPrice;
  862. break;
  863. case 'zlje':
  864. cb.value = param.zanLiePrice;
  865. break;
  866. case 'htjszl':
  867. cb.value = this.ctx.helper.sub(this.ctx.helper.sub(param.contractPrice, param.zanLiePrice), param.jrgPrice);
  868. break;
  869. case 'kgyfk':
  870. cb.value = param.startAdvance;
  871. break;
  872. case 'clyfk':
  873. cb.value = param.materialAdvance;
  874. break;
  875. case 'bqwc':
  876. cb.value = this.ctx.helper.sum([sum.contract_tp, sum.qc_tp, pcSum.pc_tp]);
  877. break;
  878. case 'bqht':
  879. cb.value = sum.contract_tp;
  880. break;
  881. case 'bqbg':
  882. cb.value = sum.qc_tp;
  883. break;
  884. case 'yib':
  885. case 'erb':
  886. case 'sanb':
  887. case 'sib':
  888. case 'wub':
  889. case 'liub':
  890. case 'qib':
  891. case 'bab':
  892. case 'jiub':
  893. const sumGcl = await this.ctx.service.stageBills.getSumTotalPriceGclByMaterial(stage_list, cb.filter);
  894. const sumPc = await this.ctx.service.stageBillsPc.getSumTotalPriceGclByMaterial(stage_list, cb.filter);
  895. cb.value = this.ctx.helper.sum([sumGcl.contract_tp, sumGcl.qc_tp, sumPc.pc_tp]);
  896. break;
  897. case 'bqyf':
  898. cb.value = this.ctx.helper.roundNum(this._.sumBy(stage_list, 'yf_tp'), 2);
  899. break;
  900. default:
  901. cb.value = 0;
  902. }
  903. }
  904. return calcBase;
  905. }
  906. /**
  907. * 获取必要的stage信息调用curTimes, curOrder, id , times, curAuditor(材料调差)
  908. * @param stage_id_list
  909. * @return {Promise<void>}
  910. */
  911. async getStageMsgByStageId(stage_id_list) {
  912. const list = [];
  913. stage_id_list = stage_id_list.toString().split(',');
  914. for (const sid of stage_id_list) {
  915. const stage = await this.getDataById(sid);
  916. stage.auditors = await this.service.stageAudit.getAuditors(stage.id, stage.times);
  917. // todo 不确定是否使用,暂时注释,待测试验证
  918. // stage.curAuditor = await this.service.stageAudit.getCurAuditor(stage.id, stage.times);
  919. stage.curOrder = _.max(_.map(stage.auditors, 'order'));
  920. stage.curTimes = stage.times;
  921. list.push(stage);
  922. }
  923. return list;
  924. }
  925. async getStageByDataCollect(tenderId, stage_tp) {
  926. const allStages = await this.db.select(this.tableName, {
  927. columns: ['id', 'user_id', 'times', 'status', 's_time', 'contract_tp', 'qc_tp', 'pc_tp', 'pre_contract_tp', 'pre_qc_tp', 'pre_yf_tp', 'yf_tp', 'pre_sf_tp', 'sf_tp', 'tp_history'],
  928. where: { tid: tenderId },
  929. orders: [['order', 'desc']],
  930. });
  931. const stages = this._.filter(allStages, function(s) {
  932. return s.status !== auditConst.stage.status.uncheck;
  933. });
  934. // if (stages.length > 0 && stages[0].status === auditConst.stage.status.uncheck) {
  935. // stages.splice(0, 1);
  936. // }
  937. // 最新一期计量(未审批完成),取上一个人的期详细数据,应实时计算
  938. const stage = stages[0];
  939. if (stages.length === 0) return stages;
  940. // await this.checkStageGatherDataByDataCollect(stage);
  941. if (stage.status !== auditConst.stage.status.checked) {
  942. // 批量把stage_tp的值赋值给stage
  943. _.forEach(stage_tp, function(value, key) {
  944. stage[key] = stage_tp[key] ? stage_tp[key] : null;
  945. });
  946. }
  947. for (const s of stages) {
  948. s.tp = this.ctx.helper.sum([s.contract_tp, s.qc_tp, s.pc_tp]);
  949. s.pre_tp = this.ctx.helper.add(s.pre_contract_tp, s.pre_qc_tp);
  950. s.end_tp = this.ctx.helper.add(s.pre_tp, s.tp);
  951. // s.yf_tp = this.ctx.helper.add(s.pre_yf_tp, s.yf_tp);
  952. // s.sf_tp = this.ctx.helper.add(s.pre_sf_tp, s.sf_tp);
  953. }
  954. return stages;
  955. }
  956. async doCheckStageByDataCollect(stage) {
  957. const status = auditConst.stage.status;
  958. await this.loadStageUser(stage);
  959. if (stage.status === status.checkNo) {
  960. stage.readOnly = false;
  961. const checkNoAudit = await this.service.stageAudit.getDataByCondition({
  962. sid: stage.id, times: stage.times - 1, status: status.checkNo,
  963. });
  964. stage.curTimes = stage.times - 1;
  965. stage.curOrder = checkNoAudit.order;
  966. } else if (stage.status === status.checked) {
  967. stage.readOnly = true;
  968. stage.curTimes = stage.times;
  969. stage.curOrder = _.max(_.map(stage.auditors, 'order'));
  970. } else {
  971. stage.readOnly = false;
  972. stage.curTimes = stage.times;
  973. stage.curOrder = stage.curAuditors[0].order - 1;
  974. }
  975. return stage;
  976. }
  977. async checkStageGatherDataByDataCollect(stage) {
  978. // 最新一期计量(未审批完成),当前操作人的期详细数据,应实时计算
  979. if (stage.status !== auditConst.stage.status.checked) {
  980. await this.doCheckStageByDataCollect(stage);
  981. if (!stage.readOnly && stage.check_calc) {
  982. const tpData = await this.ctx.service.stageBills.getSumTotalPrice(stage);
  983. const pcSum = await this.ctx.service.stageBillsPc.getSumTotalPrice(stage);
  984. stage.contract_tp = tpData.contract_tp;
  985. stage.qc_tp = tpData.qc_tp;
  986. stage.positive_qc_tp = tpData.positive_qc_tp;
  987. stage.negative_qc_tp = tpData.negative_qc_tp;
  988. stage.contract_pc_tp = pcSum.contract_pc_tp;
  989. stage.qc_pc_tp = pcSum.qc_pc_tp;
  990. stage.pc_tp = pcSum.pc_tp;
  991. stage.positive_qc_pc_tp = pcSum.positive_qc_pc_tp;
  992. stage.negative_qc_pc_tp = pcSum.negative_qc_pc_tp;
  993. stage.tp = this.ctx.helper.sum([stage.contract_tp, stage.qc_tp, stage.pc_tp]);
  994. const tp = await this.ctx.service.stagePay.getSpecialTotalPrice(stage);
  995. stage.yf_tp = tp.yf;
  996. stage.sf_tp = tp.sf;
  997. stage.end_tp = this.ctx.helper.add(stage.pre_tp, stage.tp);
  998. } else if (stage.tp_history) {
  999. const his = this.ctx.helper._.find(stage.tp_history, { times: stage.curTimes, order: stage.curOrder });
  1000. if (his) {
  1001. stage.contract_tp = his.contract_tp;
  1002. stage.qc_tp = his.qc_tp;
  1003. stage.positive_qc_tp = his.positive_qc_tp;
  1004. stage.negative_qc_tp = his.negative_qc_tp;
  1005. stage.yf_tp = his.yf_tp;
  1006. stage.sf_tp = his.sf_tp;
  1007. stage.tp = this.ctx.helper.sum([stage.contract_tp, stage.qc_tp, stage.pc_tp]);
  1008. stage.end_tp = this.ctx.helper.add(stage.pre_tp, stage.tp);
  1009. }
  1010. }
  1011. }
  1012. }
  1013. async isLastStage(tid, sid) {
  1014. const lastStage = await this.ctx.service.stage.getLastestStage(tid, true);
  1015. return lastStage ? lastStage.id === sid : false;
  1016. }
  1017. }
  1018. return Stage;
  1019. };