stage_audit.js 111 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070
  1. 'use strict';
  2. /**
  3. *
  4. *
  5. * @author Mai
  6. * @date 2019/2/27
  7. * @version
  8. */
  9. const auditConst = require('../const/audit').stage;
  10. const auditType = require('../const/audit').auditType;
  11. const smsTypeConst = require('../const/sms_type');
  12. const SMS = require('../lib/sms');
  13. const SmsAliConst = require('../const/sms_alitemplate');
  14. const wxConst = require('../const/wechat_template');
  15. const shenpiConst = require('../const/shenpi');
  16. const payConst = require('../const/deal_pay');
  17. const pushType = require('../const/audit').pushType;
  18. const syncApiConst = require('../const/sync_api');
  19. const measureType = require('../const/tender').measureType;
  20. const RevisePrice = require('../lib/revise_price');
  21. const pushOperate = require('../const/spec_3f').pushOperate;
  22. module.exports = app => {
  23. class StageAudit extends app.BaseService {
  24. /**
  25. * 构造函数
  26. *
  27. * @param {Object} ctx - egg全局变量
  28. * @return {void}
  29. */
  30. constructor(ctx) {
  31. super(ctx);
  32. this.tableName = 'stage_audit';
  33. }
  34. /**
  35. * 获取 审核人信息
  36. *
  37. * @param {Number} stageId - 期id
  38. * @param {Number} auditorId - 审核人id
  39. * @param {Number} times - 第几次审批
  40. * @return {Promise<*>}
  41. */
  42. async getAuditor(stageId, auditorId, times = 1) {
  43. const sql =
  44. 'SELECT la.`aid`, pa.`name`, pa.`company`, pa.`role`, pa.`mobile`, pa.`telephone`, la.`times`, la.`order`, la.`status`, la.`opinion`, la.`begin_time`, la.`end_time` ' +
  45. 'FROM ?? AS la Left Join ?? AS pa On la.`aid` = pa.`id`' +
  46. 'WHERE la.`sid` = ? and la.`aid` = ? and la.`times` = ?';
  47. const sqlParam = [this.tableName, this.ctx.service.projectAccount.tableName, stageId, auditorId, times];
  48. return await this.db.queryOne(sql, sqlParam);
  49. }
  50. async getAuditorByOrder(stageId, order, times) {
  51. const sql =
  52. 'SELECT la.`aid`, pa.`name`, pa.`company`, pa.`role`, pa.`mobile`, pa.`telephone`,' +
  53. ' la.`times`, la.`order`, la.`status`, la.`opinion`, la.`begin_time`, la.`end_time` ' +
  54. ' FROM ' + this.tableName + ' AS la' +
  55. ' Left Join ' + this.ctx.service.projectAccount.tableName + ' AS pa ON la.`aid` = pa.`id`' +
  56. ' WHERE la.`sid` = ? and la.`order` = ? and la.`times` = ?' +
  57. ' ORDER BY `order` DESC';
  58. const sqlParam = [stageId, order, times ? times: 1];
  59. return await this.db.queryOne(sql, sqlParam);
  60. }
  61. async getAuditorsByOrder(stageId, order, times) {
  62. const sql =
  63. 'SELECT la.`aid`, pa.`name`, pa.`company`, pa.`role`, pa.`mobile`, pa.`telephone`,' +
  64. ' la.`times`, la.`order`, la.`status`, la.`opinion`, la.`begin_time`, la.`end_time` ' +
  65. ' FROM ' + this.tableName + ' AS la' +
  66. ' Left Join ' + this.ctx.service.projectAccount.tableName + ' AS pa ON la.`aid` = pa.`id`' +
  67. ' WHERE la.`sid` = ? and la.`order` = ? and la.`times` = ?' +
  68. ' ORDER BY `order` DESC';
  69. const sqlParam = [stageId, order, times ? times: 1];
  70. return await this.db.query(sql, sqlParam);
  71. }
  72. async getLastestAuditor(stageId, times, status) {
  73. const sql =
  74. 'SELECT la.`aid`, pa.`name`, pa.`company`, pa.`role`, pa.`mobile`, pa.`telephone`, la.audit_type, la.audit_order,' +
  75. ' la.`times`, la.`order`, la.`status`, la.`opinion`, la.`begin_time`, la.`end_time` ' +
  76. ' FROM ' + this.tableName + ' AS la' +
  77. ' Left Join ' + this.ctx.service.projectAccount.tableName + ' AS pa ON la.`aid` = pa.`id`' +
  78. ' WHERE la.`sid` = ? and la.`status` = ? and la.`times` = ?' +
  79. ' ORDER BY `order` DESC';
  80. const sqlParam = [stageId, status, times ? times: 1];
  81. return await this.db.queryOne(sql, sqlParam);
  82. }
  83. async getLastestAuditors(stageId, times, status) {
  84. const sql =
  85. 'SELECT la.`aid`, pa.`name`, pa.`company`, pa.`role`, pa.`mobile`, pa.`telephone`, la.audit_type, la.audit_order,' +
  86. ' la.`times`, la.`order`, la.`status`, la.`opinion`, la.`begin_time`, la.`end_time` ' +
  87. ' FROM ' + this.tableName + ' AS la' +
  88. ' Left Join ' + this.ctx.service.projectAccount.tableName + ' AS pa ON la.`aid` = pa.`id`' +
  89. ' WHERE la.`sid` = ? and la.`status` = ? and la.`times` = ?' +
  90. ' ORDER BY `order` DESC';
  91. const sqlParam = [stageId, status, times ? times: 1];
  92. const result = await this.db.query(sql, sqlParam);
  93. if (result.length === 0) return [];
  94. return result.filter(x => { return x.order === result[0].order });
  95. }
  96. /**
  97. * 获取 审核列表信息
  98. *
  99. * @param {Number} stageId - 期id
  100. * @param {Number} times - 第几次审批
  101. * @param {Number} order_sort - 列表排序方式
  102. * @return {Promise<*>}
  103. */
  104. async getAuditors(stageId, times = 1, order_sort = 'asc') {
  105. const sql = 'SELECT la.id, la.aid, la.times, la.order, la.status, la.opinion, la.begin_time, la.end_time, la.audit_type, la.audit_order,' +
  106. ' pa.name, pa.company, pa.role, pa.mobile, pa.telephone, pa.sign_path' +
  107. ` FROM ${this.tableName} la LEFT JOIN ${this.ctx.service.projectAccount.tableName} pa ON la.aid = pa.id` +
  108. ' WHERE la.sid = ? AND la.times = ?' +
  109. ' ORDER BY la.order ' + order_sort;
  110. const sqlParam = [stageId, times];
  111. const result = await this.db.query(sql, sqlParam);
  112. const max_sort = this._.max(result.map(x => { return x.audit_order; }));
  113. for (const i in result) {
  114. result[i].max_sort = max_sort;
  115. }
  116. return result;
  117. }
  118. async getAllAuditors(tenderId) {
  119. const sql =
  120. 'SELECT sa.aid, sa.tid FROM ' + this.tableName + ' sa' +
  121. ' LEFT JOIN ' + this.ctx.service.tender.tableName + ' t On sa.tid = t.id' +
  122. ' WHERE t.id = ?' +
  123. ' GROUP BY sa.aid';
  124. const sqlParam = [tenderId];
  125. return this.db.query(sql, sqlParam);
  126. }
  127. /**
  128. * 获取标段审核人最后一位的名称
  129. *
  130. * @param {Number} tenderId - 标段id
  131. * @param {Number} auditorId - 审核人id
  132. * @param {Number} times - 第几次审批
  133. * @return {Promise<*>}
  134. */
  135. async getStatusName(stageId) {
  136. const sql = 'SELECT pa.`name` FROM ?? AS sa Left Join ?? AS pa On sa.`aid` = pa.`id`' +
  137. ' WHERE sa.`sid` = ? and sa.`status` != ? ORDER BY sa.`times` DESC, sa.`order` DESC';
  138. const sqlParam = [this.tableName, this.ctx.service.projectAccount.tableName, stageId, auditConst.status.uncheck];
  139. return await this.db.queryOne(sql, sqlParam);
  140. }
  141. /**
  142. * 获取 当前审核人
  143. *
  144. * @param {Number} stageId - 期id
  145. * @param {Number} times - 第几次审批
  146. * @return {Promise<*>}
  147. */
  148. async getCurAuditor(stageId, times = 1) {
  149. const sql =
  150. 'SELECT la.`aid`, pa.`name`, pa.`company`, pa.`role`, pa.`mobile`, pa.`telephone`, la.`times`, la.`order`, la.`status`, la.`opinion`, la.`begin_time`, la.`end_time`, la.audit_type, la.audit_order ' +
  151. ' FROM ?? AS la Left Join ?? AS pa On la.`aid` = pa.`id`' +
  152. ' WHERE la.`sid` = ? and la.`status` = ? and la.`times` = ?';
  153. const sqlParam = [this.tableName, this.ctx.service.projectAccount.tableName, stageId, auditConst.status.checking, times];
  154. return await this.db.queryOne(sql, sqlParam);
  155. }
  156. async getCurAuditors(stageId, times = 1) {
  157. const sql =
  158. 'SELECT la.`aid`, pa.`name`, pa.`company`, pa.`role`, pa.`mobile`, pa.`telephone`, la.`times`, la.`order`, la.`status`, la.`opinion`, la.`begin_time`, la.`end_time`, la.audit_type, la.audit_order ' +
  159. ' FROM ?? AS la Left Join ?? AS pa On la.`aid` = pa.`id`' +
  160. ' WHERE la.`sid` = ? and la.`status` = ? and la.`times` = ?';
  161. const sqlParam = [this.tableName, this.ctx.service.projectAccount.tableName, stageId, auditConst.status.checking, times];
  162. return await this.db.query(sql, sqlParam);
  163. }
  164. /**
  165. * 获取 最新审核顺序
  166. *
  167. * @param {Number} stageId - 期id
  168. * @param {Number} times - 第几次审批
  169. * @return {Promise<number>}
  170. */
  171. async getNewOrder(stageId, times = 1) {
  172. const sql = 'SELECT Max(`order`) As max_order, Max(audit_order) As max_audit_order FROM ' + this.tableName + ' Where `sid` = ? and `times` = ?';
  173. const sqlParam = [stageId, times];
  174. const result = await this.db.queryOne(sql, sqlParam);
  175. return result && result.max_order ? [result.max_order + 1, result.max_audit_order + 1] : [1, 1];
  176. }
  177. /**
  178. * 新增审核人
  179. *
  180. * @param {Number} stageId - 期id
  181. * @param {Number} auditorId - 审核人id
  182. * @param {Number} times - 第几次审批
  183. * @return {Promise<number>}
  184. */
  185. async addAuditor(stageId, auditorId, times = 1, is_gdzs = 0) {
  186. const transaction = await this.db.beginTransaction();
  187. try {
  188. let [newOrder, newAuditOrder] = await this.getNewOrder(stageId, times);
  189. // 判断是否存在固定终审,存在则newOrder - 1并使终审order+1
  190. newOrder = is_gdzs === 1 ? newOrder - 1 : newOrder;
  191. newAuditOrder = is_gdzs === 1 ? newAuditOrder - 1 : newAuditOrder;
  192. if (is_gdzs) await this._syncOrderByDelete(transaction, stageId, newOrder, times, '+');
  193. const data = {
  194. tid: this.ctx.tender.id,
  195. sid: stageId,
  196. aid: auditorId,
  197. times,
  198. order: newOrder,
  199. status: auditConst.status.uncheck,
  200. audit_order: newAuditOrder,
  201. };
  202. const result = await transaction.insert(this.tableName, data);
  203. await transaction.commit();
  204. return result.effectRows = 1;
  205. } catch (err) {
  206. await transaction.rollback();
  207. throw err;
  208. }
  209. return false;
  210. }
  211. /**
  212. * 移除审核人时,同步其后审核人order
  213. * @param transaction - 事务
  214. * @param {Number} stageId - 标段id
  215. * @param {Number} auditorId - 审核人id
  216. * @param {Number} times - 第几次审批
  217. * @return {Promise<*>}
  218. * @private
  219. */
  220. async _syncOrderByDelete(transaction, stageId, order, times, selfOperate = '-') {
  221. this.initSqlBuilder();
  222. this.sqlBuilder.setAndWhere('sid', {
  223. value: stageId,
  224. operate: '=',
  225. });
  226. this.sqlBuilder.setAndWhere('order', {
  227. value: order,
  228. operate: '>=',
  229. });
  230. this.sqlBuilder.setAndWhere('times', {
  231. value: times,
  232. operate: '=',
  233. });
  234. this.sqlBuilder.setUpdateData('order', {
  235. value: 1,
  236. selfOperate: selfOperate,
  237. });
  238. this.sqlBuilder.setUpdateData('audit_order', {
  239. value: 1,
  240. selfOperate: selfOperate,
  241. });
  242. const [sql, sqlParam] = this.sqlBuilder.build(this.tableName, 'update');
  243. const data = await transaction.query(sql, sqlParam);
  244. return data;
  245. }
  246. /**
  247. * 移除审核人
  248. *
  249. * @param {Number} stageId - 期id
  250. * @param {Number} auditorId - 审核人id
  251. * @param {Number} times - 第几次审批
  252. * @return {Promise<boolean>}
  253. */
  254. async deleteAuditor(stageId, auditorId, times = 1) {
  255. const transaction = await this.db.beginTransaction();
  256. try {
  257. const condition = { sid: stageId, aid: auditorId, times };
  258. const auditor = await this.getDataByCondition(condition);
  259. if (!auditor) {
  260. throw '该审核人不存在';
  261. }
  262. await this._syncOrderByDelete(transaction, stageId, auditor.order, times);
  263. // 移除整个流程的人
  264. await transaction.delete(this.tableName, { sid: stageId, order: auditor.order, times});
  265. await transaction.commit();
  266. } catch (err) {
  267. await transaction.rollback();
  268. throw err;
  269. }
  270. return true;
  271. }
  272. async _updateTender(transaction) {
  273. if (!this.ctx.tender) return;
  274. if (this.ctx.tender.data.measure_type !== measureType.gcl.value) return;
  275. const sum = await this.ctx.service.ledger.addUp({ tender_id: this.ctx.tender.id/* , is_leaf: true*/ });
  276. await transaction.update(this.ctx.service.tender.tableName, {
  277. id: this.ctx.tender.id, total_price: sum.total_price, deal_tp: sum.deal_tp
  278. });
  279. return sum;
  280. }
  281. /**
  282. * 开始审批
  283. *
  284. * @param {Number} stageId - 期id
  285. * @param {Number} times - 第几次审批
  286. * @return {Promise<boolean>}
  287. */
  288. async start(stageId, times = 1) {
  289. const audits = await this.getAllDataByCondition({ where: { sid: stageId, times, order: 1 } });
  290. if (audits.length === 0) {
  291. if(this.ctx.tender.info.shenpi.stage === shenpiConst.sp_status.gdspl) {
  292. throw '请联系管理员添加审批人';
  293. } else {
  294. throw '请先选择审批人,再上报数据';
  295. }
  296. }
  297. const transaction = await this.db.beginTransaction();
  298. try {
  299. const ledgerTp = await this._updateTender(transaction);
  300. const begin_time = new Date();
  301. const updateData = audits.map(x => { return { id: x.id, status: auditConst.status.checking, begin_time } });
  302. await transaction.updateRows(this.tableName, updateData);
  303. // 计算原报最终数据
  304. const [yfPay, sfPay] = await this.ctx.service.stagePay.calcAllStagePays(this.ctx.stage, transaction);
  305. // 复制一份下一审核人数据
  306. await this.ctx.service.stagePay.copyAuditStagePays(this.ctx.stage, this.ctx.stage.times, 1, transaction);
  307. await this.ctx.service.stageJgcl.updateHistory(this.ctx.stage, transaction);
  308. await this.ctx.service.stageBonus.updateHistory(this.ctx.stage, transaction);
  309. await this.ctx.service.stageOther.updateHistory(this.ctx.stage, transaction);
  310. await this.ctx.service.stageSafeProd.updateHistory(this.ctx.stage, transaction);
  311. await this.ctx.service.stageTempLand.updateHistory(this.ctx.stage, transaction);
  312. // 更新期数据
  313. const tpData = await this.ctx.service.stageBills.getSumTotalPrice(this.ctx.stage);
  314. const stageTp = {
  315. contract_tp: tpData.contract_tp,
  316. qc_tp: tpData.qc_tp,
  317. positive_qc_tp: tpData.positive_qc_tp,
  318. negative_qc_tp: tpData.negative_qc_tp,
  319. yf_tp: yfPay.tp,
  320. sf_tp: sfPay.tp,
  321. };
  322. this.ctx.stage.tp_history.push({ times: this.ctx.stage.curTimes, order: 0, ...stageTp });
  323. await this.ctx.service.tenderCache.updateStageCache4Start(transaction, this.ctx.stage, auditConst.status.checking, audits, ledgerTp, stageTp);
  324. await transaction.update(this.ctx.service.stage.tableName, {
  325. id: stageId,
  326. status: auditConst.status.checking,
  327. ...stageTp,
  328. tp_history: JSON.stringify(this.ctx.stage.tp_history),
  329. cache_time_r: this.ctx.stage.cache_time_l,
  330. });
  331. // 多人协同,取消下一审批人存在的锁定
  332. await this.ctx.service.stageAuditAss.cancelLock(this.ctx.stage, audits.map(x => { return x.aid; }), transaction);
  333. // 添加短信通知-需要审批提醒功能
  334. const stageInfo = await this.ctx.service.stage.getDataById(stageId);
  335. const shenpiUrl = await this.ctx.helper.urlToShort(this.ctx.protocol + '://' + this.ctx.host + '/wap/tender/' + this.ctx.tender.id + '/measure/stage/' + stageInfo.order);
  336. const auditIds = this._.map(audits, 'aid');
  337. const users = this._.map(this.ctx.stage.auditAssists.filter(x => { return auditIds.indexOf(x.user_id) >= 0; }), 'ass_user_id');
  338. users.push(...auditIds);
  339. await this.ctx.helper.sendAliSms(users, smsTypeConst.const.JL, smsTypeConst.judge.approval.toString(), SmsAliConst.template.stage_check, {
  340. qi: stageInfo.order,
  341. code: shenpiUrl,
  342. });
  343. // 微信模板通知
  344. const wechatData = {
  345. wap_url: shenpiUrl,
  346. qi: stageInfo.order,
  347. status: wxConst.status.check,
  348. tips: wxConst.tips.check,
  349. code: this.ctx.session.sessionProject.code,
  350. };
  351. await this.ctx.helper.sendWechat(users, smsTypeConst.const.JL, smsTypeConst.judge.approval.toString(), wxConst.template.stage, wechatData);
  352. // 上报/审批 - 检查三方特殊推送
  353. await this.ctx.service.specMsg.addStageMsg(transaction, this.ctx.session.sessionProject.id, this.ctx.stage, pushOperate.stage.flow);
  354. await transaction.commit();
  355. // 通知发送 - 第三方更新
  356. if (this.ctx.session.sessionProject.custom && syncApiConst.notice_type.indexOf(this.ctx.session.sessionProject.customType) !== -1) {
  357. const base_data = {
  358. tid: this.ctx.tender.id,
  359. sid: stageId,
  360. op: 'update',
  361. };
  362. this.ctx.helper.syncNoticeSend(this.ctx.session.sessionProject.customType, JSON.stringify(base_data));
  363. base_data.op = 'update';
  364. base_data.sid = -1;
  365. this.ctx.helper.syncNoticeSend(this.ctx.session.sessionProject.customType, JSON.stringify(base_data));
  366. }
  367. } catch (err) {
  368. await transaction.rollback();
  369. throw err;
  370. }
  371. return true;
  372. }
  373. async _checked(pid, stageId, checkData, times) {
  374. const accountId = this.ctx.session.sessionUser.accountId;
  375. const time = new Date();
  376. // 整理当前流程审核人状态更新
  377. const audits = await this.getAllDataByCondition({ where: { sid: stageId, times, status: auditConst.status.checking } });
  378. if (audits.length === 0) throw '审核数据错误';
  379. const selfAudit = audits.find(x => { return x.aid === accountId; });
  380. if (!selfAudit) throw '当前标段您无权审批';
  381. const flowAudits = await this.getAllDataByCondition({ where: { sid: stageId, times, order: selfAudit.order } });
  382. const nextAudits = await this.getAllDataByCondition({ where: { sid: stageId, times, order: selfAudit.order + 1 } });
  383. const tpData = await this.ctx.service.stageBills.getSumTotalPrice(this.ctx.stage);
  384. const stageInfo = await this.ctx.service.stage.getDataById(stageId);
  385. const transaction = await this.db.beginTransaction();
  386. try {
  387. const ledgerTp = await this._updateTender(transaction);
  388. // 添加通知
  389. const noticeContent = await this.getNoticeContent(pid, stageInfo.tid, stageId, accountId, checkData.opinion);
  390. const auditors = await this.getAuditGroupByListWithOwner(stageId, times);
  391. const defaultNoticeRecord = {
  392. pid,
  393. type: pushType.stage,
  394. status: auditConst.status.checked,
  395. content: noticeContent,
  396. };
  397. const records = [];
  398. auditors.forEach(audit => {
  399. records.push({
  400. uid: audit.aid,
  401. ...defaultNoticeRecord,
  402. });
  403. });
  404. this.ctx.stage.userAssists.forEach(u => {
  405. records.push({ uid: u.ass_user_id, ...defaultNoticeRecord});
  406. });
  407. this.ctx.stage.auditAssists.forEach(u => {
  408. records.push({ uid: u.ass_user_id, ...defaultNoticeRecord});
  409. });
  410. await transaction.insert('zh_notice', records);
  411. // 更新本人审批状态
  412. await transaction.update(this.tableName, {
  413. id: selfAudit.id,
  414. status: checkData.checkType,
  415. opinion: checkData.opinion,
  416. end_time: time,
  417. });
  418. // 计算并合同支付最终数据
  419. const [yfPay, sfPay] = await this.ctx.service.stagePay.calcAllStagePays(this.ctx.stage, transaction);
  420. const stageTp = {
  421. contract_tp: tpData.contract_tp,
  422. qc_tp: tpData.qc_tp,
  423. positive_qc_tp: tpData.positive_qc_tp,
  424. negative_qc_tp: tpData.negative_qc_tp,
  425. yf_tp: yfPay.tp,
  426. sf_tp: sfPay.tp,
  427. };
  428. this.ctx.stage.tp_history.push({ times, order: selfAudit.order, ...stageTp });
  429. if (audits.length === 1 || selfAudit.audit_type !== auditType.key.and) {
  430. // 或签更新他人审批状态
  431. if (selfAudit.audit_type === auditType.key.or) {
  432. const updateOther = [];
  433. for (const audit of audits) {
  434. if (audit.aid === selfAudit.aid) continue;
  435. updateOther.push({
  436. id: audit.id,
  437. status: auditConst.status.checkSkip,
  438. opinion: '',
  439. end_time: time,
  440. });
  441. }
  442. if (updateOther.length > 0) transaction.updateRows(this.tableName, updateOther);
  443. }
  444. // 无下一审核人表示,审核结束
  445. if (nextAudits.length > 0) {
  446. // 复制一份下一审核人数据
  447. await this.ctx.service.stagePay.copyAuditStagePays(this.ctx.stage, this.ctx.stage.times, nextAudits[0].order, transaction);
  448. await this.ctx.service.stageJgcl.updateHistory(this.ctx.stage, transaction);
  449. await this.ctx.service.stageBonus.updateHistory(this.ctx.stage, transaction);
  450. await this.ctx.service.stageOther.updateHistory(this.ctx.stage, transaction);
  451. await this.ctx.service.stageSafeProd.updateHistory(this.ctx.stage, transaction);
  452. await this.ctx.service.stageTempLand.updateHistory(this.ctx.stage, transaction);
  453. // 流程至下一审批人
  454. const updateData = nextAudits.map(x => { return { id: x.id, status: auditConst.status.checking, begin_time: time }; });
  455. await transaction.updateRows(this.tableName, updateData);
  456. // 同步 期信息
  457. await transaction.update(this.ctx.service.stage.tableName, {
  458. id: stageId,
  459. status: auditConst.status.checking,
  460. ...stageTp,
  461. tp_history: JSON.stringify(this.ctx.stage.tp_history),
  462. cache_time_r: this.ctx.stage.cache_time_l,
  463. });
  464. await this.ctx.service.tenderCache.updateStageCache4Flow(transaction, this.ctx.stage, auditConst.status.checking, nextAudits, flowAudits, ledgerTp, stageTp);
  465. // 多人协同,取消下一审批人存在的锁定
  466. await this.ctx.service.stageAuditAss.cancelLock(this.ctx.stage, nextAudits.map(x => { return x.aid; }), transaction);
  467. // 添加短信通知-需要审批提醒功能
  468. const shenpiUrl = await this.ctx.helper.urlToShort(this.ctx.protocol + '://' + this.ctx.host + '/wap/tender/' + this.ctx.tender.id + '/measure/stage/' + stageInfo.order);
  469. const nextAuditIds = this._.map(nextAudits, 'aid');
  470. const users = this._.map(this._.filter(this.ctx.auditAssists, function (x) { return nextAuditIds.indexOf(x.user_id) >= 0; }), 'ass_user_id');
  471. users.push(...nextAuditIds);
  472. await this.ctx.helper.sendAliSms(users, smsTypeConst.const.JL, smsTypeConst.judge.approval.toString(), SmsAliConst.template.stage_check, {
  473. qi: stageInfo.order,
  474. code: shenpiUrl,
  475. });
  476. // 微信模板通知
  477. const wechatData = {
  478. wap_url: shenpiUrl,
  479. qi: stageInfo.order,
  480. status: wxConst.status.check,
  481. tips: wxConst.tips.check,
  482. code: this.ctx.session.sessionProject.code,
  483. };
  484. await this.ctx.helper.sendWechat(users, smsTypeConst.const.JL, smsTypeConst.judge.approval.toString(), wxConst.template.stage, wechatData);
  485. } else {
  486. await this.ctx.service.tenderTag.saveTenderTag(this.ctx.tender.id, {stage_time: new Date()}, transaction);
  487. const his_id = await this.ctx.service.ledgerHistory.checkBackupLedgerHistory(this.ctx.stage.tid, this.ctx.stage.id);
  488. // 本期结束
  489. // 生成截止本期数据 final数据
  490. await this.ctx.service.stageBillsFinal.generateFinalData(transaction, this.ctx.tender, this.ctx.stage);
  491. await this.ctx.service.stagePosFinal.generateFinalData(transaction, this.ctx.tender, this.ctx.stage);
  492. await this.ctx.service.stageChangeFinal.generateFinalData(transaction, this.ctx.tender, this.ctx.stage);
  493. // 同步 期信息
  494. await transaction.update(this.ctx.service.stage.tableName, {
  495. id: stageId,
  496. status: checkData.checkType,
  497. ...stageTp,
  498. tp_history: JSON.stringify(this.ctx.stage.tp_history),
  499. cache_time_r: this.ctx.stage.cache_time_l,
  500. his_id,
  501. });
  502. await this.ctx.service.tenderCache.updateStageCache4Flow(transaction, this.ctx.stage, checkData.checkType, nextAudits, flowAudits, ledgerTp, stageTp);
  503. await this.ctx.service.stagePay.cacheOrder(this.ctx.stage, transaction);
  504. // 添加短信通知-审批通过提醒功能
  505. const auditList = await this.getAuditors(stageId, stageInfo.times);
  506. const users = this._.uniq(this._.concat(this._.map(auditList, 'aid'), stageInfo.user_id, this._.map(this.ctx.stage.userAssists, 'ass_user_id'), this._.map(this.ctx.stage.auditAssists, 'ass_user_id')));
  507. await this.ctx.helper.sendAliSms(users, smsTypeConst.const.JL, smsTypeConst.judge.result.toString(), SmsAliConst.template.stage_result, {
  508. qi: stageInfo.order,
  509. status: SmsAliConst.status.success,
  510. });
  511. // 微信模板通知
  512. const shenpiUrl = await this.ctx.helper.urlToShort(this.ctx.protocol + '://' + this.ctx.host + '/wap/tender/' + this.ctx.tender.id + '/measure/stage/' + stageInfo.order);
  513. const wechatData = {
  514. wap_url: shenpiUrl,
  515. qi: stageInfo.order,
  516. status: wxConst.status.success,
  517. tips: wxConst.tips.success,
  518. code: this.ctx.session.sessionProject.code,
  519. };
  520. await this.ctx.helper.sendWechat(users, smsTypeConst.const.JL, smsTypeConst.judge.result.toString(), wxConst.template.stage, wechatData);
  521. // 审批通过 - 检查三方特殊推送
  522. await this.ctx.service.specMsg.addStageMsg(transaction, pid, this.ctx.stage, pushOperate.stage.checked);
  523. }
  524. // 上报/审批 - 检查三方特殊推送
  525. await this.ctx.service.specMsg.addStageMsg(transaction, pid, this.ctx.stage, pushOperate.stage.flow);
  526. }
  527. await transaction.commit();
  528. } catch (err) {
  529. await transaction.rollback();
  530. throw err;
  531. }
  532. }
  533. async _checkNo(pid, stageId, checkData, times) {
  534. const accountId = this.ctx.session.sessionUser.accountId;
  535. const time = new Date();
  536. // 整理当前流程审核人状态更新
  537. const audits = await this.getAllDataByCondition({ where: { sid: stageId, times, status: auditConst.status.checking } });
  538. if (!audits) throw '审核数据错误';
  539. const selfAudit = audits.find(x => { return x.aid === accountId; });
  540. if (!selfAudit) throw '当前标段您无权审批';
  541. const flowAudits = await this.getAllDataByCondition({ where: { sid: stageId, times: selfAudit.times, order: selfAudit.order }});
  542. const tpData = await this.ctx.service.stageBills.getSumTotalPrice(this.ctx.stage);
  543. const auditors = await this.getUniqAuditor(stageId, times); // 全部参与的审批人
  544. const newAuditors = auditors.map(x => {
  545. return {
  546. aid: x.aid, tid: selfAudit.tid, sid: selfAudit.sid,
  547. times: times + 1, order: x.audit_order, status: auditConst.status.uncheck,
  548. audit_type: x.audit_type, audit_order: x.audit_order,
  549. }
  550. });
  551. const transaction = await this.db.beginTransaction();
  552. try {
  553. const ledgerTp = await this._updateTender(transaction);
  554. // 添加推送
  555. const noticeContent = await this.getNoticeContent(pid, selfAudit.tid, stageId, selfAudit.aid, checkData.opinion);
  556. const defaultNoticeRecord = {
  557. pid,
  558. type: pushType.stage,
  559. status: auditConst.status.checkNo,
  560. content: noticeContent,
  561. };
  562. const records = [
  563. {
  564. uid: this.ctx.stage.user_id,
  565. ...defaultNoticeRecord,
  566. },
  567. ];
  568. auditors.forEach(audit => {
  569. records.push({
  570. uid: audit.aid,
  571. ...defaultNoticeRecord,
  572. });
  573. });
  574. this.ctx.stage.userAssists.forEach(u => {
  575. records.push({ uid: u.ass_user_id, ...defaultNoticeRecord});
  576. });
  577. this.ctx.stage.auditAssists.forEach(u => {
  578. records.push({ uid: u.ass_user_id, ...defaultNoticeRecord});
  579. });
  580. await transaction.insert(this.ctx.service.noticePush.tableName, records);
  581. // 计算并合同支付最终数据
  582. const [yfPay, sfPay] = await this.ctx.service.stagePay.calcAllStagePays(this.ctx.stage, transaction);
  583. const stageTp = {
  584. contract_tp: tpData.contract_tp,
  585. qc_tp: tpData.qc_tp,
  586. positive_qc_tp: tpData.positive_qc_tp,
  587. negative_qc_tp: tpData.negative_qc_tp,
  588. yf_tp: yfPay.tp,
  589. sf_tp: sfPay.tp,
  590. };
  591. const orgHisIndex = this.ctx.stage.tp_history.findIndex(x => { return x.times === times && x.order === selfAudit.order; });
  592. if (orgHisIndex) this.ctx.stage.tp_history.splice(orgHisIndex, 1);
  593. this.ctx.stage.tp_history.push({ times, order: selfAudit.order, ...stageTp });
  594. const updateData = [];
  595. audits.forEach(x => {
  596. updateData.push({
  597. id: x.id,
  598. status: x.aid === selfAudit.aid ? checkData.checkType : auditConst.status.checkSkip,
  599. opinion: x.aid === selfAudit.aid ? checkData.opinion : '',
  600. end_time: x.aid === selfAudit.aid ? time : null,
  601. })
  602. });
  603. await transaction.updateRows(this.tableName, updateData);
  604. // 同步 期信息
  605. await transaction.update(this.ctx.service.stage.tableName, {
  606. id: stageId,
  607. status: checkData.checkType,
  608. ...stageTp,
  609. times: times + 1,
  610. tp_history: JSON.stringify(this.ctx.stage.tp_history),
  611. cache_time_r: this.ctx.stage.cache_time_l,
  612. });
  613. await this.ctx.service.tenderCache.updateStageCache4Flow(transaction, this.ctx.stage, checkData.checkType,
  614. [{ aid: this.ctx.stage.user_id, audit_order: 0, audit_type: auditType.key.common, status: auditConst.status.uncheck }], flowAudits, ledgerTp, stageTp);
  615. // 拷贝新一次审核流程列表
  616. await transaction.insert(this.tableName, newAuditors);
  617. // 计算该审批人最终数据
  618. await this.ctx.service.stagePay.calcAllStagePays(this.ctx.stage, transaction);
  619. // 复制一份最新数据给原报
  620. await this.ctx.service.stagePay.copyAuditStagePays(this.ctx.stage, this.ctx.stage.times + 1, 0, transaction);
  621. await this.ctx.service.stageJgcl.updateHistory(this.ctx.stage, transaction);
  622. await this.ctx.service.stageBonus.updateHistory(this.ctx.stage, transaction);
  623. await this.ctx.service.stageOther.updateHistory(this.ctx.stage, transaction);
  624. await this.ctx.service.stageSafeProd.updateHistory(this.ctx.stage, transaction);
  625. await this.ctx.service.stageTempLand.updateHistory(this.ctx.stage, transaction);
  626. // 锁定本人数据,保留锁定数据相关确认状态
  627. await this.ctx.service.stageAuditAss.lockConfirm4CheckNo(this.ctx.stage, audits.map(x => { return x.aid; }), auditors, transaction);
  628. // 添加短信通知-审批退回提醒功能
  629. // const mobile_array = [];
  630. const stageInfo = await this.ctx.service.stage.getDataById(stageId);
  631. const auditList = await this.getAuditors(stageId, stageInfo.times);
  632. const users = this._.uniq(this._.concat(this._.map(auditList, 'aid'), stageInfo.user_id, this._.map(this.ctx.stage.userAssists, 'ass_user_id'), this._.map(this.ctx.stage.auditAssists, 'ass_user_id')));
  633. await this.ctx.helper.sendAliSms(users, smsTypeConst.const.JL, smsTypeConst.judge.result.toString(), SmsAliConst.template.stage_result, {
  634. qi: stageInfo.order,
  635. status: SmsAliConst.status.back,
  636. });
  637. // 微信模板通知
  638. const shenpiUrl = await this.ctx.helper.urlToShort(this.ctx.protocol + '://' + this.ctx.host + '/wap/tender/' + this.ctx.tender.id + '/measure/stage/' + stageInfo.order);
  639. const wechatData = {
  640. wap_url: shenpiUrl,
  641. qi: stageInfo.order,
  642. status: wxConst.status.back,
  643. tips: wxConst.tips.back,
  644. code: this.ctx.session.sessionProject.code,
  645. };
  646. await this.ctx.helper.sendWechat(users, smsTypeConst.const.JL, smsTypeConst.judge.result.toString(), wxConst.template.stage, wechatData);
  647. // 上报/审批 - 检查三方特殊推送
  648. await this.ctx.service.specMsg.addStageMsg(transaction, pid, this.ctx.stage, pushOperate.stage.flow);
  649. await transaction.commit();
  650. } catch (err) {
  651. await transaction.rollback();
  652. throw err;
  653. }
  654. }
  655. async _checkNoPre(pid, stageId, checkData, times) {
  656. const accountId = this.ctx.session.sessionUser.accountId;
  657. const time = new Date();
  658. // 整理当前流程审核人状态更新
  659. const audits = await this.getAllDataByCondition({ where: { sid: stageId, times, status: auditConst.status.checking } });
  660. if (audits.length === 0 || audits[0].order <= 1) throw '审核数据错误';
  661. const selfAudit = audits.find(x => { return x.aid === accountId; });
  662. if (!selfAudit) throw '当前标段您无权审批';
  663. const flowAudits = await this.getAllDataByCondition({ where: { sid: stageId, times: selfAudit.times, order: selfAudit.order }});
  664. // 添加重新审批后,不能用order-1,取groupby值里的上一个才对
  665. // const preAuditor = await this.getDataByCondition({sid: stageId, times: times, order: audit.order - 1});
  666. const auditors2 = await this.getAuditGroupByList(stageId, times);
  667. const preAuditors = auditors2.filter(x => { return x.audit_order === selfAudit.audit_order - 1});
  668. const tpData = await this.ctx.service.stageBills.getSumTotalPrice(this.ctx.stage);
  669. const transaction = await this.db.beginTransaction();
  670. try {
  671. const ledgerTp = await this._updateTender(transaction);
  672. // 添加通知
  673. const noticeContent = await this.getNoticeContent(pid, selfAudit.tid, stageId, selfAudit.aid, checkData.opinion);
  674. const defaultNoticeRecord = {
  675. pid,
  676. type: pushType.stage,
  677. status: auditConst.status.checkNoPre,
  678. content: noticeContent,
  679. };
  680. const records = [
  681. {
  682. uid: this.ctx.stage.user_id,
  683. ...defaultNoticeRecord
  684. },
  685. ];
  686. auditors2.forEach(audit => {
  687. records.push({
  688. uid: audit.aid,
  689. ...defaultNoticeRecord
  690. });
  691. });
  692. this.ctx.stage.userAssists.forEach(u => {
  693. records.push({ uid: u.ass_user_id, ...defaultNoticeRecord});
  694. });
  695. this.ctx.stage.auditAssists.forEach(u => {
  696. records.push({ uid: u.ass_user_id, ...defaultNoticeRecord});
  697. });
  698. await transaction.insert('zh_notice', records);
  699. // 计算并合同支付最终数据
  700. const [yfPay, sfPay] = await this.ctx.service.stagePay.calcAllStagePays(this.ctx.stage, transaction);
  701. const stageTp = {
  702. contract_tp: tpData.contract_tp,
  703. qc_tp: tpData.qc_tp,
  704. positive_qc_tp: tpData.positive_qc_tp,
  705. negative_qc_tp: tpData.negative_qc_tp,
  706. yf_tp: yfPay.tp,
  707. sf_tp: sfPay.tp,
  708. };
  709. this.ctx.stage.tp_history.push({ times, order: selfAudit.order, ...stageTp });
  710. // 同步 期信息
  711. await transaction.update(this.ctx.service.stage.tableName, {
  712. id: stageId,
  713. times,
  714. ...stageTp,
  715. tp_history: JSON.stringify(this.ctx.stage.tp_history),
  716. cache_time_r: this.ctx.stage.cache_time_l,
  717. });
  718. await this.ctx.service.tenderCache.updateStageCache4Flow(transaction, this.ctx.stage, checkData.checkType, preAuditors, flowAudits, ledgerTp, stageTp);
  719. // 更新同一流程所有审批人状态
  720. const updateData = [];
  721. for (const audit of audits) {
  722. if (audit.aid === selfAudit.aid) {
  723. updateData.push({
  724. id: audit.id, status: checkData.checkType, opinion: checkData.opinion, end_time: time,
  725. });
  726. } else {
  727. updateData.push({
  728. id: audit.id, status: auditConst.status.checkSkip, opinion: '', end_time: null,
  729. });
  730. }
  731. }
  732. await transaction.updateRows(this.tableName, updateData);
  733. // 顺移其后审核人流程顺序
  734. const sql = 'UPDATE ' + this.tableName + ' SET `order` = `order` + 2 WHERE sid = ? AND times = ? AND `order` > ?';
  735. await transaction.query(sql, [stageId, selfAudit.times, selfAudit.order]);
  736. // 上一审批人,当前审批人 再次添加至流程
  737. const newAuditors = [];
  738. preAuditors.forEach(x => {
  739. newAuditors.push({
  740. tid: this.ctx.stage.tid, sid: this.ctx.stage.id, aid: x.aid,
  741. times: x.times, order: selfAudit.order + 1,
  742. status: auditConst.status.checking, begin_time: time,
  743. audit_type: x.audit_type, audit_order: x.audit_order,
  744. });
  745. });
  746. flowAudits.forEach(x => {
  747. newAuditors.push({
  748. tid: this.ctx.stage.tid, sid: this.ctx.stage.id, aid: x.aid,
  749. times: x.times, order: selfAudit.order + 2,
  750. status: auditConst.status.uncheck,
  751. audit_type: x.audit_type, audit_order: x.audit_order,
  752. });
  753. });
  754. await transaction.insert(this.tableName, newAuditors);
  755. // 计算该审批人最终数据
  756. await this.ctx.service.stagePay.calcAllStagePays(this.ctx.stage, transaction);
  757. // 复制一份最新数据给下一人
  758. await this.ctx.service.stagePay.copyAuditStagePays(this.ctx.stage, this.ctx.stage.times, selfAudit.order + 1, transaction);
  759. await this.ctx.service.stageJgcl.updateHistory(this.ctx.stage, transaction);
  760. await this.ctx.service.stageBonus.updateHistory(this.ctx.stage, transaction);
  761. await this.ctx.service.stageOther.updateHistory(this.ctx.stage, transaction);
  762. await this.ctx.service.stageSafeProd.updateHistory(this.ctx.stage, transaction);
  763. await this.ctx.service.stageTempLand.updateHistory(this.ctx.stage, transaction);
  764. const preAuditorIds = preAuditors.map(x => { return x.aid; });
  765. // 锁定本人数据,保留锁定数据相关确认状态
  766. await this.ctx.service.stageAuditAss.lockConfirm4CheckNoPre(this.ctx.stage, audits.map(x => { return x.aid; }), preAuditorIds, transaction);
  767. // 同步 期信息
  768. await transaction.update(this.ctx.service.stage.tableName, {
  769. id: stageId,
  770. status: checkData.checkType,
  771. cache_time_r: this.ctx.stage.cache_time_l,
  772. });
  773. const stageInfo = await this.ctx.service.stage.getDataById(stageId);
  774. const shenpiUrl = await this.ctx.helper.urlToShort(this.ctx.protocol + '://' + this.ctx.host + '/wap/tender/' + this.ctx.tender.id + '/measure/stage/' + stageInfo.order);
  775. const users = this._.map(this.ctx.stage.auditAssists.filter(x => {return preAuditorIds.indexOf(x.user_id) >= 0 }), 'ass_user_id');
  776. users.push(...preAuditorIds);
  777. await this.ctx.helper.sendAliSms(users, smsTypeConst.const.JL, smsTypeConst.judge.approval.toString(), SmsAliConst.template.stage_check, {
  778. qi: stageInfo.order,
  779. code: shenpiUrl,
  780. });
  781. // 微信模板通知
  782. const wechatData = {
  783. wap_url: shenpiUrl,
  784. qi: stageInfo.order,
  785. status: wxConst.status.check,
  786. tips: wxConst.tips.check,
  787. code: this.ctx.session.sessionProject.code,
  788. };
  789. await this.ctx.helper.sendWechat(users, smsTypeConst.const.JL, smsTypeConst.judge.approval.toString(), wxConst.template.stage, wechatData);
  790. // 上报/审批 - 检查三方特殊推送
  791. await this.ctx.service.specMsg.addStageMsg(transaction, pid, this.ctx.stage, pushOperate.stage.flow);
  792. await transaction.commit();
  793. } catch (err) {
  794. await transaction.rollback();
  795. throw err;
  796. }
  797. }
  798. /**
  799. * 审批
  800. * @param {Number} stageId - 标段id
  801. * @param {auditConst.status.checked|auditConst.status.checkNo} checkType - 审批结果
  802. * @param {Number} times - 第几次审批
  803. * @return {Promise<void>}
  804. */
  805. async check(stageId, checkData, times = 1) {
  806. if (checkData.checkType !== auditConst.status.checked && checkData.checkType !== auditConst.status.checkNo && checkData.checkType !== auditConst.status.checkNoPre) {
  807. throw '提交数据错误';
  808. }
  809. // // 整理当前流程审核人状态更新
  810. // const audit = await this.getDataByCondition({sid: stageId, times: times, status: auditConst.status.checking});
  811. // if (!audit) {
  812. // throw '审核数据错误';
  813. // }
  814. // const time = new Date();
  815. const pid = this.ctx.session.sessionProject.id;
  816. switch (checkData.checkType) {
  817. case auditConst.status.checked:
  818. await this._checked(pid, stageId, checkData, times);
  819. break;
  820. case auditConst.status.checkNo:
  821. await this._checkNo(pid, stageId, checkData, times);
  822. break;
  823. case auditConst.status.checkNoPre:
  824. await this._checkNoPre(pid, stageId, checkData, times);
  825. break;
  826. default:
  827. throw '无效审批操作';
  828. }
  829. // 通知发送 - 第三方更新
  830. if (this.ctx.session.sessionProject.custom && syncApiConst.notice_type.indexOf(this.ctx.session.sessionProject.customType) !== -1) {
  831. const base_data = {
  832. tid: this.ctx.tender.id,
  833. sid: stageId,
  834. op: 'update',
  835. };
  836. this.ctx.helper.syncNoticeSend(this.ctx.session.sessionProject.customType, JSON.stringify(base_data));
  837. base_data.op = 'update';
  838. base_data.sid = -1;
  839. this.ctx.helper.syncNoticeSend(this.ctx.session.sessionProject.customType, JSON.stringify(base_data));
  840. }
  841. }
  842. /**
  843. * 审批
  844. * @param {Number} stageId - 标段id
  845. * @param {Number} times - 第几次审批
  846. * @return {Promise<void>}
  847. */
  848. async checkAgain(stageId, times = 1, force) {
  849. const accountId = this.ctx.session.sessionUser.accountId;
  850. const time = new Date();
  851. // 整理当前流程审核人状态更新
  852. const auditors = await this.getAllDataByCondition({
  853. where: { sid: stageId, times },
  854. orders: [['order', 'asc']],
  855. });
  856. const maxOrder = auditors[auditors.length - 1].order;
  857. const audits = auditors.filter(x => { return x.order === maxOrder});
  858. if (!audits || audits.length === 0 || maxOrder < 1) throw '审核数据错误';
  859. const selfAudit = audits.find(x => { return x.aid === accountId; });
  860. if (!selfAudit && !force) throw '当前标段您无权审批';
  861. const finalAudit = selfAudit || audits[0];
  862. const stageInfo = await this.ctx.service.stage.getDataById(stageId);
  863. const transaction = await this.db.beginTransaction();
  864. try {
  865. // 当前审批人2次添加至流程中
  866. const checkAgainAuditors = [], checkingAuditors = [];
  867. audits.forEach(x => {
  868. checkAgainAuditors.push({
  869. tid: x.tid, sid: x.sid, aid: x.aid,
  870. times: x.times, order: x.order + 1,
  871. status: !selfAudit || x.aid === selfAudit.aid ? auditConst.status.checkAgain : auditConst.status.checkSkip,
  872. begin_time: time, end_time: time, opinion: '',
  873. audit_type: x.audit_type, audit_order: x.audit_order,
  874. });
  875. });
  876. audits.forEach(x => {
  877. checkingAuditors.push({
  878. tid: x.tid, sid: x.sid, aid: x.aid,
  879. times: x.times, order: x.order + 2,
  880. status: auditConst.status.checking,
  881. begin_time: time, end_time: time, opinion: '',
  882. audit_type: x.audit_type, audit_order: x.audit_order,
  883. });
  884. });
  885. await transaction.insert(this.tableName, checkAgainAuditors);
  886. await transaction.insert(this.tableName, checkingAuditors);
  887. // 复制一份最新数据给下一人
  888. await this.ctx.service.stagePay.copyAuditStagePays(this.ctx.stage, this.ctx.stage.times, finalAudit.order + 1, transaction);
  889. await this.ctx.service.stagePay.copyAuditStagePays(this.ctx.stage, this.ctx.stage.times, finalAudit.order + 2, transaction);
  890. await this.ctx.service.stageJgcl.updateHistory4CheckAgain(this.ctx.stage, transaction);
  891. await this.ctx.service.stageBonus.updateHistory4CheckAgain(this.ctx.stage, transaction);
  892. await this.ctx.service.stageOther.updateHistory4CheckAgain(this.ctx.stage, transaction);
  893. await this.ctx.service.stageSafeProd.updateHistory4CheckAgain(this.ctx.stage, transaction);
  894. await this.ctx.service.stageTempLand.updateHistory4CheckAgain(this.ctx.stage, transaction);
  895. // 同步 期信息
  896. const his = this.ctx.stage.tp_history.find(x => { return x.times === times && x.order === finalAudit.order });
  897. const stageTp = {
  898. contract_tp: his.contract_tp,
  899. qc_tp: his.qc_tp,
  900. positive_qc_tp: his.positive_qc_tp,
  901. negative_qc_tp: his.negative_qc_tp,
  902. yf_tp: his.tp,
  903. sf_tp: his.tp,
  904. };
  905. this.ctx.stage.tp_history.push({ times, order: finalAudit.order + 1, ...stageTp });
  906. await transaction.update(this.ctx.service.stage.tableName, {
  907. id: stageId,
  908. status: auditConst.status.checking,
  909. cache_time_r: this.ctx.stage.cache_time_l,
  910. tp_history: JSON.stringify(this.ctx.stage.tp_history),
  911. });
  912. // 已经引用到本期的单价变更,全部取消
  913. await this.ctx.service.revisePrice.cancelPriceUsed(this.ctx.stage, transaction);
  914. // 重算所有单价变更
  915. const priceCalc = new RevisePrice(this.ctx);
  916. const pcTp = await priceCalc.stageCheckAgainPriceChange(this.ctx.stage, finalAudit.order + 2, transaction);
  917. await this.ctx.service.tenderCache.updateStageCache4Flow(transaction, this.ctx.stage, auditConst.status.checking, checkingAuditors, checkAgainAuditors, null, stageTp, pcTp);
  918. // 添加短信通知-需要审批提醒功能
  919. const shenpiUrl = await this.ctx.helper.urlToShort(this.ctx.protocol + '://' + this.ctx.host + '/wap/tender/' + this.ctx.tender.id + '/measure/stage/' + stageInfo.order);
  920. const auditorIds = audits.map(x => { return x.aid; });
  921. const users = this._.map(this.ctx.stage.auditAssists.filter(x => { return auditorIds.indexOf(x.user_id) >= 0; }), 'ass_user_id');
  922. users.push(...auditorIds);
  923. await this.ctx.helper.sendAliSms(users, smsTypeConst.const.JL, smsTypeConst.judge.approval.toString(), SmsAliConst.template.stage_check, {
  924. qi: stageInfo.order,
  925. code: shenpiUrl,
  926. });
  927. // 微信模板通知
  928. const wechatData = {
  929. wap_url: shenpiUrl,
  930. qi: stageInfo.order,
  931. status: wxConst.status.check,
  932. tips: wxConst.tips.check,
  933. code: this.ctx.session.sessionProject.code,
  934. };
  935. await this.ctx.helper.sendWechat(users, smsTypeConst.const.JL, smsTypeConst.judge.approval.toString(), wxConst.template.stage, wechatData);
  936. // 上报/审批 - 检查三方特殊推送
  937. await this.ctx.service.specMsg.addStageMsg(transaction, this.ctx.session.sessionProject.id, this.ctx.stage, pushOperate.stage.flow);
  938. await transaction.commit();
  939. // 通知发送 - 第三方更新
  940. if (this.ctx.session.sessionProject.custom && syncApiConst.notice_type.indexOf(this.ctx.session.sessionProject.customType) !== -1) {
  941. const base_data = {
  942. tid: this.ctx.tender.id,
  943. sid: stageId,
  944. op: 'update',
  945. };
  946. this.ctx.helper.syncNoticeSend(this.ctx.session.sessionProject.customType, JSON.stringify(base_data));
  947. base_data.op = 'update';
  948. base_data.sid = -1;
  949. this.ctx.helper.syncNoticeSend(this.ctx.session.sessionProject.customType, JSON.stringify(base_data));
  950. }
  951. } catch (err) {
  952. await transaction.rollback();
  953. throw err;
  954. }
  955. }
  956. /**
  957. * 原报撤回,直接改动审批人状态
  958. * 如果存在审批人数据,将其改为原报流程数据,但保留原提交人
  959. *
  960. * 一审 1 A checking -> A uncheck status改 pay/jl:删0(jl为增量数据,只删重复部分) 1->0 删1
  961. * ...
  962. *
  963. * @param stage
  964. * @returns {Promise<void>}
  965. * @private
  966. */
  967. async _userCheckCancel(stage) {
  968. const tpData = await this.ctx.service.stageBills.getSumTotalPrice(stage);
  969. const transaction = await this.db.beginTransaction();
  970. try {
  971. const ledgerTp = await this._updateTender(transaction);
  972. // 整理当前流程审核人状态更新
  973. // 审批人变成待审批状态
  974. const updateData = stage.curAuditors.map(x => {
  975. return {
  976. id: x.id,
  977. status: auditConst.status.uncheck,
  978. begin_time: null,
  979. opinion: null,
  980. }
  981. });
  982. await transaction.updateRows(this.tableName, updateData);
  983. // 计算并合同支付最终数据
  984. const [yfPay, sfPay] = await this.ctx.service.stagePay.calcAllStagePays(stage, transaction);
  985. const stageTp = {
  986. contract_tp: tpData.contract_tp,
  987. qc_tp: tpData.qc_tp,
  988. positive_qc_tp: tpData.positive_qc_tp,
  989. negative_qc_tp: tpData.negative_qc_tp,
  990. yf_tp: yfPay.tp,
  991. sf_tp: sfPay.tp,
  992. };
  993. await transaction.update(this.ctx.service.stage.tableName, {
  994. id: stage.id,
  995. times: stage.times,
  996. ...stageTp,
  997. tp_history: JSON.stringify(this.ctx.stage.tp_history.filter(x => { return x.times < stage.times; })),
  998. cache_time_r: this.ctx.stage.cache_time_l,
  999. status: stage.times === 1 ? auditConst.status.uncheck : auditConst.status.checkNo,
  1000. });
  1001. // 计量明细:重复数据删除原报,新增数据修改为原报
  1002. await this.ctx.service.stageBills.updateStageBills4CheckCancel(stage.id, stage.times, 0, stage.time, 1, transaction);
  1003. await this.ctx.service.stagePos.updateStagePos4CheckCancel(stage.id, stage.times, 0, stage.time, 1, transaction);
  1004. await this.ctx.service.stageDetail.updateStageDetail4CheckCancel(stage.id, stage.times, 0, stage.time, 1, transaction);
  1005. await this.ctx.service.stageChange.updateStageChange4CheckCancel(stage.id, stage.times, 0, stage.time, 1, transaction);
  1006. // 合同支付明细:保留审批人数据,覆盖到原报中并删除该审批人合同支付数据
  1007. await this.ctx.service.stagePay.deleteAuditStagePays(stage, stage.times, 0, transaction);
  1008. await this.ctx.service.stagePay.copyAuditStagePays(stage, stage.times, 0, transaction, this.ctx.stage.times, 1);
  1009. await this.ctx.service.stagePay.deleteAuditStagePays(stage, stage.times, 1, transaction);
  1010. // 其他台账明细:不需更新历史
  1011. // 更新标段计量数据缓存
  1012. const preFlow = stage.times > 1 ? await this.getLastestAuditors(stage.id, stage.times, auditConst.status.checkNo): null;
  1013. const curFlow = [{ aid: this.ctx.stage.user_id, audit_type: auditType.key.common, audit_order: 1, status: auditConst.status.uncheck}];
  1014. await this.ctx.service.tenderCache.updateStageCache4Flow(transaction, this.ctx.stage, stage.times === 1 ? auditConst.status.uncheck : auditConst.status.checkNo,
  1015. curFlow, preFlow, ledgerTp, stageTp);
  1016. // 上报/审批 - 检查三方特殊推送
  1017. await this.ctx.service.specMsg.addStageMsg(transaction, this.ctx.session.sessionProject.id, this.ctx.stage, pushOperate.stage.flow);
  1018. await transaction.commit();
  1019. } catch(err) {
  1020. await transaction.rollback();
  1021. throw err;
  1022. }
  1023. }
  1024. /**
  1025. * 审批人撤回审批通过,插入两条数据
  1026. *
  1027. * 一审 1 A checked 一审 1 A checked
  1028. * 二审 2 B checked pre -> 二审 2 B checked
  1029. * 三审 3 C checking cur 二审 3 B checkCancel 增 增extra_his 增tp_his
  1030. * 四审 4 D uncheck 二审 4 B checking 增 增pay_cur
  1031. * 三审 5 C uncheck order、status改
  1032. * 四审 6 D uncheck order改
  1033. *
  1034. * @param stage
  1035. * @returns {Promise<void>}
  1036. * @private
  1037. */
  1038. async _auditCheckCancel(stage) {
  1039. if (stage.curAuditors.length === 0 || stage.curAuditors[0].order <= 1) {
  1040. throw '撤回用户数据错误';
  1041. }
  1042. const accountId = this.ctx.session.sessionUser.accountId;
  1043. const selfAuditor = this.ctx.stage.preAuditors.find(x => { return x.aid === accountId; });
  1044. if (!selfAuditor) throw '撤回用户数据错误';
  1045. const time = new Date();
  1046. const tpData = await this.ctx.service.stageBills.getSumTotalPrice(this.ctx.stage);
  1047. const transaction = await this.db.beginTransaction();
  1048. try {
  1049. const ledgerTp = await this._updateTender(transaction);
  1050. // 整理当前流程审核人状态更新
  1051. // 顺移其后审核人流程顺序
  1052. const sql = 'UPDATE ' + this.tableName + ' SET `order` = `order` + 2 WHERE sid = ? AND times = ? AND `order` > ?';
  1053. await transaction.query(sql, [stage.id, selfAuditor.times, stage.curAuditors[0].order]);
  1054. // 当前审批人2次添加至流程中
  1055. const checkCancelAuditors = [], checkingAuditors = [];
  1056. stage.preAuditors.forEach(x => {
  1057. checkCancelAuditors.push({
  1058. tid: stage.tid, sid: stage.id, aid: x.aid,
  1059. times: x.times, order: x.order + 1,
  1060. status: x.aid === selfAuditor.aid ? auditConst.status.checkCancel : auditConst.status.checkSkip,
  1061. begin_time: time, end_time: time, opinion: '',
  1062. audit_type: x.audit_type, audit_order: x.audit_order,
  1063. });
  1064. });
  1065. stage.preAuditors.forEach(x => {
  1066. checkingAuditors.push({
  1067. tid: stage.tid, sid: stage.id, aid: x.aid,
  1068. times: x.times, order: x.order + 2,
  1069. status: auditConst.status.checking,
  1070. begin_time: time, end_time: time, opinion: '',
  1071. audit_type: x.audit_type, audit_order: x.audit_order,
  1072. });
  1073. });
  1074. await transaction.insert(this.tableName, [...checkCancelAuditors, ...checkingAuditors]);
  1075. // 当前审批人变成待审批
  1076. await transaction.updateRows(this.tableName, stage.curAuditors.map(x => { return {
  1077. id: x.id, begin_time: null, status: auditConst.status.uncheck, order: x.order + 2
  1078. }}));
  1079. // 计算并合同支付最终数据
  1080. const [yfPay, sfPay] = await this.ctx.service.stagePay.calcAllStagePays(this.ctx.stage, transaction);
  1081. const stageTp = {
  1082. contract_tp: tpData.contract_tp,
  1083. qc_tp: tpData.qc_tp,
  1084. positive_qc_tp: tpData.positive_qc_tp,
  1085. negative_qc_tp: tpData.negative_qc_tp,
  1086. yf_tp: yfPay.tp,
  1087. sf_tp: sfPay.tp,
  1088. };
  1089. this.ctx.stage.tp_history.push({ times: stage.times, order: selfAuditor.order + 1, ...stageTp });
  1090. // 同步 期信息
  1091. await transaction.update(this.ctx.service.stage.tableName, {
  1092. id: stage.id,
  1093. times: stage.times,
  1094. ...stageTp,
  1095. tp_history: JSON.stringify(this.ctx.stage.tp_history),
  1096. cache_time_r: this.ctx.stage.cache_time_l,
  1097. });
  1098. // 计量明细:勿需修改任何数据
  1099. // 合同支付明细:复制一份最新数据给下一人
  1100. await this.ctx.service.stagePay.copyAuditStagePays(stage, stage.times, selfAuditor.order + 2, transaction, stage.times, selfAuditor.order + 1);
  1101. // 其他台账明细:更新两份历史数据
  1102. await this.ctx.service.stageJgcl.updateHistory4TimesOrder(stage, stage.times, [selfAuditor.order + 1], transaction);
  1103. await this.ctx.service.stageBonus.updateHistory4TimesOrder(stage, stage.times, [selfAuditor.order + 1], transaction);
  1104. await this.ctx.service.stageOther.updateHistory4TimesOrder(stage, stage.times, [selfAuditor.order + 1], transaction);
  1105. await this.ctx.service.stageSafeProd.updateHistory4TimesOrder(stage, stage.times, [selfAuditor.order + 1], transaction);
  1106. await this.ctx.service.stageTempLand.updateHistory4TimesOrder(stage, stage.times, [selfAuditor.order + 1], transaction);
  1107. // 更新标段计量数据缓存
  1108. await this.ctx.service.tenderCache.updateStageCache4Flow(transaction, stage, stage.status, checkingAuditors, checkCancelAuditors, ledgerTp, stageTp);
  1109. // 上报/审批 - 检查三方特殊推送
  1110. await this.ctx.service.specMsg.addStageMsg(transaction, this.ctx.session.sessionProject.id, stage, pushOperate.stage.flow);
  1111. await transaction.commit();
  1112. } catch(err) {
  1113. await transaction.rollback();
  1114. throw err;
  1115. }
  1116. }
  1117. /**
  1118. * 审批人撤回审批退回上一人,插入两条数据
  1119. *
  1120. * 一审 1 A checked 一审 1 A checked
  1121. * 二审 2 B checked 二审 2 B checked
  1122. * 三审 3 C checkNoPre pre -> 三审 3 C checkNoPre
  1123. * 二审 4 B checking cur 三审 4 C checkCancel 删4B 增4C 增extra_his 增tp_his
  1124. * 三审 5 C uncheck 三审 5 C checking status改 增pay_cur
  1125. * 四审 6 D uncheck 四审 6 D uncheck
  1126. *
  1127. * @param stage
  1128. * @returns {Promise<void>}
  1129. * @private
  1130. */
  1131. async _auditCheckCancelNoPre(stage) {
  1132. if (stage.curAuditors.length === 0 || stage.curAuditors[0].order <= 1) {
  1133. throw '撤回用户数据错误';
  1134. }
  1135. const accountId = this.ctx.session.sessionUser.accountId;
  1136. const selfAuditor = this.ctx.stage.preAuditors.find(x => { return x.aid === accountId; });
  1137. if (!selfAuditor) throw '撤回用户数据错误';
  1138. const time = new Date();
  1139. const tpData = await this.ctx.service.stageBills.getSumTotalPrice(this.ctx.stage);
  1140. const transaction = await this.db.beginTransaction();
  1141. try {
  1142. const ledgerTp = await this._updateTender(transaction);
  1143. // 整理当前流程审核人状态更新
  1144. // 删除当前审批人
  1145. await transaction.delete(this.tableName, { id: stage.curAuditors.map(x => { return x.id; }) });
  1146. // 添加撤回人到审批流程中
  1147. const newAuditors = [];
  1148. stage.preAuditors.forEach(x => {
  1149. newAuditors.push({
  1150. tid: stage.tid, sid: stage.id, aid: x.aid,
  1151. times: x.times, order: x.order + 1,
  1152. status: x.aid === selfAuditor.aid ? auditConst.status.checkCancel : auditConst.status.checkSkip,
  1153. begin_time: time, end_time: time, opinion: '',
  1154. audit_type: x.audit_type, audit_order: x.audit_order,
  1155. });
  1156. });
  1157. await transaction.insert(this.tableName, newAuditors);
  1158. // 更新上一个人,最新审批状态为审批中
  1159. await transaction.update(this.tableName, { begin_time: time, status: auditConst.status.checking }, {
  1160. where: { sid: stage.id, times: selfAuditor.times, order: selfAuditor.order + 2 }
  1161. });
  1162. // 计算并合同支付最终数据
  1163. const [yfPay, sfPay] = await this.ctx.service.stagePay.calcAllStagePays(stage, transaction);
  1164. const stageTp = {
  1165. contract_tp: tpData.contract_tp,
  1166. qc_tp: tpData.qc_tp,
  1167. positive_qc_tp: tpData.positive_qc_tp,
  1168. negative_qc_tp: tpData.negative_qc_tp,
  1169. yf_tp: yfPay.tp,
  1170. sf_tp: sfPay.tp,
  1171. };
  1172. stage.tp_history.push({ times: stage.times, order: selfAuditor.order + 1, ...stageTp });
  1173. // 同步 期信息
  1174. await transaction.update(this.ctx.service.stage.tableName, {
  1175. id: stage.id,
  1176. times: stage.times,
  1177. ...stageTp,
  1178. status: auditConst.status.checking,
  1179. tp_history: JSON.stringify(stage.tp_history),
  1180. cache_time_r: stage.cache_time_l,
  1181. });
  1182. // 计量明细:勿需修改任何数据
  1183. // 合同支付明细:复制一份最新数据给下一人
  1184. await this.ctx.service.stagePay.copyAuditStagePays(stage, stage.times, selfAuditor.order + 2, transaction, stage.times, selfAuditor.order + 1);
  1185. // 其他台账明细:更新一份历史数据
  1186. await this.ctx.service.stageJgcl.updateHistory4TimesOrder(stage, stage.times, [selfAuditor.order + 1], transaction);
  1187. await this.ctx.service.stageBonus.updateHistory4TimesOrder(stage, stage.times, [selfAuditor.order + 1], transaction);
  1188. await this.ctx.service.stageOther.updateHistory4TimesOrder(stage, stage.times, [selfAuditor.order + 1], transaction);
  1189. await this.ctx.service.stageSafeProd.updateHistory4TimesOrder(stage, stage.times, [selfAuditor.order + 1], transaction);
  1190. await this.ctx.service.stageTempLand.updateHistory4TimesOrder(stage, stage.times, [selfAuditor.order + 1], transaction);
  1191. // 更新标段计量数据缓存
  1192. await this.ctx.service.tenderCache.updateStageCache4Flow(transaction, stage, stage.status, newAuditors, stage.preAuditors, ledgerTp, stageTp);
  1193. // 上报/审批 - 检查三方特殊推送
  1194. await this.ctx.service.specMsg.addStageMsg(transaction, this.ctx.session.sessionProject.id, stage, pushOperate.stage.flow);
  1195. await transaction.commit();
  1196. } catch(err) {
  1197. await transaction.rollback();
  1198. throw err;
  1199. }
  1200. }
  1201. /**
  1202. * 审批人撤回审批退回原报
  1203. *
  1204. * 1# 一审 1 A checked 1# 一审 1 A checked
  1205. * 二审 2 B checkNo pre -> 二审 2 B checkNo
  1206. * 三审 3 C uncheck 二审 3 B checkCancel 增 pay: 2#0 -> 1#3 jl: 2#0 -> 1#3 增tp_his 增extra_his
  1207. * 二审 4 B checking 增 pay: 2#0 -> 1#4
  1208. * 三审 5 C uncheck order改
  1209. *
  1210. * 2# 一审 1 A uncheck 2# 删 pay: 2#0删 jl: 2#0删
  1211. * 二审 2 B uncheck
  1212. * 三审 3 C uncheck
  1213. *
  1214. * @param stage
  1215. * @returns {Promise<void>}
  1216. * @private
  1217. */
  1218. async _auditCheckCancelNo(stage) {
  1219. const accountId = this.ctx.session.sessionUser.accountId;
  1220. const selfAuditor = stage.preAuditors.find(x => { return x.aid === accountId && x.status === auditConst.status.checkNo; });
  1221. if (!selfAuditor) throw '该标段由他人审批退回,您不可撤回';
  1222. const time = new Date();
  1223. const tpData = await this.ctx.service.stageBills.getSumTotalPrice(stage);
  1224. const transaction = await this.db.beginTransaction();
  1225. try {
  1226. const ledgerTp = await this._updateTender(transaction);
  1227. // 整理上一个流程审核人状态更新
  1228. // 顺移其后审核人流程顺序
  1229. const sql = 'UPDATE ' + this.tableName + ' SET `order` = `order` + 2 WHERE sid = ? AND times = ? AND `order` > ?';
  1230. await transaction.query(sql, [stage.id, selfAuditor.times, selfAuditor.order]);
  1231. // 当前审批人2次添加至流程中
  1232. const checkCancelAuditors = [], checkingAuditors = [];
  1233. stage.preAuditors.forEach(x => {
  1234. checkCancelAuditors.push({
  1235. tid: stage.tid, sid: stage.id, aid: x.aid,
  1236. times: x.times, order: x.order + 1,
  1237. status: x.aid === selfAuditor.aid ? auditConst.status.checkCancel : auditConst.status.checkSkip,
  1238. begin_time: time, end_time: time, opinion: '',
  1239. audit_type: x.audit_type, audit_order: x.audit_order,
  1240. });
  1241. });
  1242. stage.preAuditors.forEach(x => {
  1243. checkingAuditors.push({
  1244. tid: stage.tid, sid: stage.id, aid: x.aid,
  1245. times: x.times, order: x.order + 2,
  1246. status: auditConst.status.checking,
  1247. begin_time: time, end_time: time, opinion: '',
  1248. audit_type: x.audit_type, audit_order: x.audit_order,
  1249. });
  1250. });
  1251. await transaction.insert(this.tableName, [...checkCancelAuditors, ...checkingAuditors]);
  1252. // 删除当前次审批流
  1253. await transaction.delete(this.tableName, { sid: stage.id, times: stage.times });
  1254. // 计算并合同支付最终数据
  1255. const [yfPay, sfPay] = await this.ctx.service.stagePay.calcAllStagePays(stage, transaction);
  1256. const stageTp = {
  1257. contract_tp: tpData.contract_tp,
  1258. qc_tp: tpData.qc_tp,
  1259. positive_qc_tp: tpData.positive_qc_tp,
  1260. negative_qc_tp: tpData.negative_qc_tp,
  1261. yf_tp: yfPay.tp,
  1262. sf_tp: sfPay.tp,
  1263. };
  1264. stage.tp_history.push({ times: selfAuditor.times, order: selfAuditor.order + 1, ...stageTp });
  1265. await transaction.update(this.ctx.service.stage.tableName, {
  1266. id: stage.id,
  1267. times: stage.times - 1,
  1268. ...stageTp,
  1269. tp_history: JSON.stringify(this.ctx.stage.tp_history),
  1270. cache_time_r: stage.cache_time_l,
  1271. status: auditConst.status.checking,
  1272. });
  1273. // 计量明细:重复数据删除原报,新增数据修改为原报
  1274. await this.ctx.service.stageBills.updateStageBills4CheckCancel(stage.id, selfAuditor.times, selfAuditor.order + 1, stage.times, 0, transaction);
  1275. await this.ctx.service.stagePos.updateStagePos4CheckCancel(stage.id, selfAuditor.times, selfAuditor.order + 1, stage.times, 0, transaction);
  1276. await this.ctx.service.stageDetail.updateStageDetail4CheckCancel(stage.id, selfAuditor.times, selfAuditor.order + 1, stage.times, 0, transaction);
  1277. await this.ctx.service.stageChange.updateStageChange4CheckCancel(stage.id, selfAuditor.times, selfAuditor.order + 1, stage.times, 0, transaction);
  1278. // 合同支付明细:复制一份最新数据新增的2个审批流,删除最新一次审批数据
  1279. await this.ctx.service.stagePay.copyAuditStagePays(stage, stage.times - 1, selfAuditor.order + 1, transaction, stage.times, 0);
  1280. await this.ctx.service.stagePay.copyAuditStagePays(stage, stage.times - 1, selfAuditor.order + 2, transaction, stage.times, 0);
  1281. await this.ctx.service.stagePay.deleteAuditStagePays(stage, stage.times, 0, transaction);
  1282. // 其他台账明细:更新一份历史数据
  1283. await this.ctx.service.stageJgcl.updateHistory4TimesOrder(stage, stage.times, [selfAuditor.order + 1], transaction);
  1284. await this.ctx.service.stageBonus.updateHistory4TimesOrder(stage, stage.times, [selfAuditor.order + 1], transaction);
  1285. await this.ctx.service.stageOther.updateHistory4TimesOrder(stage, stage.times, [selfAuditor.order + 1], transaction);
  1286. await this.ctx.service.stageSafeProd.updateHistory4TimesOrder(stage, stage.times, [selfAuditor.order + 1], transaction);
  1287. await this.ctx.service.stageTempLand.updateHistory4TimesOrder(stage, stage.times, [selfAuditor.order + 1], transaction);
  1288. // 更新标段计量数据缓存
  1289. await this.ctx.service.tenderCache.updateStageCache4Flow(transaction, stage, auditConst.status.checking, checkingAuditors, checkCancelAuditors, ledgerTp, stageTp);
  1290. // 上报/审批 - 检查三方特殊推送
  1291. await this.ctx.service.specMsg.addStageMsg(transaction, this.ctx.session.sessionProject.id, stage, pushOperate.stage.flow);
  1292. await transaction.commit();
  1293. } catch(err) {
  1294. await transaction.rollback();
  1295. throw err;
  1296. }
  1297. }
  1298. /**
  1299. * 会签未全部审批通过时,撤回仅修改本人状态
  1300. *
  1301. * @param stage
  1302. * @returns {Promise<void>}
  1303. * @private
  1304. */
  1305. async _auditCheckCancelAnd(stage) {
  1306. const accountId = this.ctx.session.sessionUser.accountId;
  1307. const selfAuditor = stage.flowAuditors.find(x => { return x.aid === accountId; });
  1308. if (!selfAuditor || selfAuditor.status !== auditConst.status.checked) throw '不可撤回';
  1309. const transaction = await this.db.beginTransaction();
  1310. try {
  1311. await transaction.update(this.tableName, {
  1312. id: selfAuditor.id, status: auditConst.status.checking, opinion: '', end_time: null,
  1313. });
  1314. await transaction.commit();
  1315. } catch(err) {
  1316. await transaction.rollback();
  1317. throw err;
  1318. }
  1319. }
  1320. /**
  1321. * 审批撤回
  1322. * @param {Number} stageId - 标段id
  1323. * @param {Number} times - 第几次审批
  1324. * @return {Promise<void>}
  1325. */
  1326. async checkCancel(stage) {
  1327. // 分5种情况,根据ctx.cancancel值判断:
  1328. // 1.原报发起撤回,当前流程删除,并回到待上报
  1329. // 2.审批人撤回审批通过,增加流程,并回到它审批中
  1330. // 3.审批人撤回审批退回上一人,并删除退回人,增加流程,并回到它审批中,并更新计量期状态为审批中
  1331. // 4.审批人撤回退回原报操作,删除新增的审批流,增加流程,回滚到它审批中
  1332. // 5.会签审批人撤回审批通过(还有其他审批人未审批通过),仅修改本人流程状态
  1333. if (stage.cancancel === 5) {
  1334. await this._auditCheckCancelAnd(stage);
  1335. } else {
  1336. switch (this.ctx.stage.cancancel) {
  1337. case 1: await this._userCheckCancel(stage); break;
  1338. case 2: await this._auditCheckCancel(stage); break;
  1339. case 3: await this._auditCheckCancelNoPre(stage); break;
  1340. case 4: await this._auditCheckCancelNo(stage); break;
  1341. default: throw '不可撤回,请刷新页面重试';
  1342. }
  1343. // 通知发送 - 第三方更新
  1344. if (this.ctx.session.sessionProject.custom && syncApiConst.notice_type.indexOf(this.ctx.session.sessionProject.customType) !== -1) {
  1345. const base_data = {
  1346. tid: stage.tid,
  1347. sid: stage.id,
  1348. op: 'update',
  1349. };
  1350. this.ctx.helper.syncNoticeSend(this.ctx.session.sessionProject.customType, JSON.stringify(base_data));
  1351. base_data.op = 'update';
  1352. base_data.sid = -1;
  1353. this.ctx.helper.syncNoticeSend(this.ctx.session.sessionProject.customType, JSON.stringify(base_data));
  1354. }
  1355. }
  1356. }
  1357. /**
  1358. * 获取审核人需要审核的期列表
  1359. *
  1360. * @param auditorId
  1361. * @return {Promise<*>}
  1362. */
  1363. async getAuditStage(auditorId) {
  1364. const sql =
  1365. 'SELECT sa.`aid`, sa.`times`, sa.`order`, sa.`begin_time`, sa.`end_time`, sa.`tid`, sa.`sid`,' +
  1366. ' s.`order` As `sorder`, s.`status` As `sstatus`,' +
  1367. ' t.`name`, t.`project_id`, t.`type`, t.`user_id` ' +
  1368. ' FROM ?? AS sa ' +
  1369. ' Left Join ?? AS s On sa.`sid` = s.`id` ' +
  1370. ' Left Join ?? As t ON sa.`tid` = t.`id`' +
  1371. ' WHERE ((sa.`aid` = ? and sa.`status` = ?) OR (s.`user_id` = ? and sa.`status` = ? and s.`status` = ? and sa.`times` = (s.`times`-1)))' +
  1372. ' ORDER BY sa.`begin_time` DESC';
  1373. const sqlParam = [
  1374. this.tableName,
  1375. this.ctx.service.stage.tableName,
  1376. this.ctx.service.tender.tableName,
  1377. auditorId,
  1378. auditConst.status.checking,
  1379. auditorId,
  1380. auditConst.status.checkNo,
  1381. auditConst.status.checkNo,
  1382. ];
  1383. return await this.db.query(sql, sqlParam);
  1384. }
  1385. /**
  1386. * 获取审核人审核的次数
  1387. *
  1388. * @param auditorId
  1389. * @return {Promise<*>}
  1390. */
  1391. async getCountByChecked(auditorId) {
  1392. return await this.db.count(this.tableName, { aid: auditorId, status: [auditConst.status.checked, auditConst.status.checkNo, auditConst.status.checkNoPre] });
  1393. }
  1394. /**
  1395. * 获取最近一次审批结束时间
  1396. *
  1397. * @param auditorId
  1398. * @return {Promise<*>}
  1399. */
  1400. async getLastEndTimeByChecked(auditorId) {
  1401. const sql = 'SELECT `end_time` FROM ?? WHERE `aid` = ? ' +
  1402. 'AND `status` in (' + this.ctx.helper.getInArrStrSqlFilter([auditConst.status.checked, auditConst.status.checkNo, auditConst.status.checkNoPre]) + ') ORDER BY `end_time` DESC';
  1403. const sqlParam = [this.tableName, auditorId];
  1404. const result = await this.db.queryOne(sql, sqlParam);
  1405. return result ? result.end_time : null;
  1406. }
  1407. /**
  1408. * 获取 某时间后 审批进度 更新的期
  1409. * @param {Number} pid - 查询标段
  1410. * @param {Number} uid - 查询人
  1411. * @param {Date} time - 查询时间
  1412. * @return {Promise<*>}
  1413. */
  1414. async getNoticeStage(pid, uid, time) {
  1415. let notice = await this.db.select('zh_notice', {
  1416. where: { pid, type: pushType.stage, uid },
  1417. orders: [['create_time', 'desc']],
  1418. limit: 10,
  1419. offset: 0,
  1420. });
  1421. notice = notice.map(v => {
  1422. const extra = JSON.parse(v.content);
  1423. delete v.content;
  1424. return { ...v, ...extra };
  1425. });
  1426. return notice;
  1427. }
  1428. /**
  1429. * 用于添加推送所需的content内容
  1430. * @param {Number} pid 项目id
  1431. * @param {Number} tid 台账id
  1432. * @param {Number} sid 期id
  1433. * @param {Number} uid 审核人id
  1434. */
  1435. async getNoticeContent(pid, tid, sid, uid, opinion = '') {
  1436. const noticeSql =
  1437. 'SELECT * FROM (SELECT ' +
  1438. ' t.`id` As `tid`, t.`name`, s.`order`, pa.`name` As `su_name`, pa.role As `su_role`' +
  1439. ' FROM (SELECT * FROM ?? WHERE `id` = ? ) As t' +
  1440. ' LEFT JOIN ?? As s On s.`id` = ?' +
  1441. ' LEFT JOIN ?? As pa ON pa.`id` = ?' +
  1442. ' WHERE t.`project_id` = ? ) as new_t GROUP BY new_t.`tid`';
  1443. const noticeSqlParam = [this.ctx.service.tender.tableName, tid, this.ctx.service.stage.tableName, sid, this.ctx.service.projectAccount.tableName, uid, pid];
  1444. const content = await this.db.query(noticeSql, noticeSqlParam);
  1445. if (content.length) {
  1446. content[0].opinion = opinion;
  1447. }
  1448. return content.length ? JSON.stringify(content[0]) : '';
  1449. }
  1450. /**
  1451. * 获取审核人流程列表
  1452. *
  1453. * @param auditorId
  1454. * @return {Promise<*>}
  1455. */
  1456. async getAuditGroupByList(stageId, times, transaction = false) {
  1457. // const sql =
  1458. // 'SELECT la.`aid`, pa.`name`, pa.`company`, pa.`role`, la.`times`, la.`sid`, la.`aid`, la.`order`, la.`status`' +
  1459. // ' FROM ?? AS la Left Join ?? AS pa On la.`aid` = pa.`id` ' +
  1460. // ' WHERE la.`sid` = ? and la.`times` = ? and la.`is_old` = 0 GROUP BY la.`aid` ORDER BY la.`order`';
  1461. // const sqlParam = [this.tableName, this.ctx.service.projectAccount.tableName, stageId, times];
  1462. const sql =
  1463. 'SELECT la.`aid`, pa.`name`, pa.`company`, pa.`role`, la.`times`, la.`sid`, la.`order`, la.`status`, la.audit_type, la.audit_order' +
  1464. ' FROM (SELECT `aid`, max(`order`) `order` FROM ?? WHERE `sid` = ? and `times` = ? and `is_old` = ? GROUP BY aid) sa' +
  1465. ' LEFT JOIN ?? la ON sa.`aid` = la.`aid` AND sa.`order` = la.`order`' +
  1466. ' Left JOIN ?? AS pa On la.`aid` = pa.`id` WHERE la.`sid` = ? and la.`times` = ? and la.`is_old` = ? order BY la.`order`';
  1467. const sqlParam = [this.tableName, stageId, times, 0, this.tableName, this.ctx.service.projectAccount.tableName, stageId, times, 0];
  1468. return transaction !== false ? await transaction.query(sql, sqlParam) : await this.db.query(sql, sqlParam);
  1469. }
  1470. /**
  1471. * 获取审核人流程列表
  1472. *
  1473. * @param auditorId
  1474. * @return {Promise<*>}
  1475. */
  1476. async getAuditGroupByListWithOwner(stageId, times) {
  1477. const result = await this.getAuditGroupByList(stageId, times);
  1478. const sql =
  1479. 'SELECT pa.`id` As aid, pa.`name`, pa.`company`, pa.`role`, ? As times, ? As sid, 0 As `order`' +
  1480. ' FROM ' + this.ctx.service.stage.tableName + ' As s' +
  1481. ' LEFT JOIN ' + this.ctx.service.projectAccount.tableName + ' As pa' +
  1482. ' ON s.user_id = pa.id' +
  1483. ' WHERE s.id = ?';
  1484. const sqlParam = [times, stageId, stageId];
  1485. const user = await this.db.queryOne(sql, sqlParam);
  1486. result.unshift(user);
  1487. return result;
  1488. }
  1489. /**
  1490. * 复制上一期的审批人列表给最新一期
  1491. *
  1492. * @param transaction - 新增一期的事务
  1493. * @param {Object} preStage - 上一期
  1494. * @param {Object} newStage - 最新一期
  1495. * @return {Promise<*>}
  1496. */
  1497. async copyPreStageAuditors(transaction, preStage, newStage) {
  1498. const auditors = await this.getAuditGroupByList(preStage.id, preStage.times);
  1499. const newAuditors = [];
  1500. for (const a of auditors) {
  1501. const na = {
  1502. tid: preStage.tid,
  1503. sid: newStage.id,
  1504. aid: a.aid,
  1505. times: newStage.times,
  1506. order: a.audit_order,
  1507. status: auditConst.status.uncheck,
  1508. audit_type: a.audit_type,
  1509. audit_order: a.audit_order,
  1510. };
  1511. newAuditors.push(na);
  1512. }
  1513. const result = await transaction.insert(this.tableName, newAuditors);
  1514. return (result.effectRows = auditors.length);
  1515. }
  1516. /**
  1517. * 移除审核人
  1518. *
  1519. * @param {Number} stageId - 期id
  1520. * @param {Number} status - 期状态
  1521. * @param {Number} status - 期次数
  1522. * @return {Promise<boolean>}
  1523. */
  1524. async getAuditorByStatus(stageId, status, times = 1) {
  1525. let auditor = null;
  1526. let sql = '';
  1527. let sqlParam = '';
  1528. switch (status) {
  1529. case auditConst.status.checking:
  1530. case auditConst.status.checked:
  1531. case auditConst.status.checkNoPre:
  1532. sql = 'SELECT la.`aid`, pa.`name`, pa.`company`, pa.`role`, la.`times`, la.`sid`, la.`order` ' +
  1533. ' FROM ?? AS la Left Join ?? AS pa On la.`aid` = pa.`id` ' +
  1534. ' WHERE la.`sid` = ? and la.`status` = ? order by la.`times` desc, la.`order` desc';
  1535. sqlParam = [this.tableName, this.ctx.service.projectAccount.tableName, stageId, status];
  1536. auditor = await this.db.queryOne(sql, sqlParam);
  1537. break;
  1538. case auditConst.status.checkNo:
  1539. sql = 'SELECT la.`aid`, pa.`name`, pa.`company`, pa.`role`, la.`times`, la.`sid`, la.`order` ' +
  1540. ' FROM ?? AS la Left Join ?? AS pa On la.`aid` = pa.`id` ' +
  1541. ' WHERE la.`sid` = ? and la.`status` = ? and la.`times` = ? order by la.`times` desc, la.`order` desc';
  1542. sqlParam = [this.tableName, this.ctx.service.projectAccount.tableName, stageId, auditConst.status.checkNo, parseInt(times) - 1];
  1543. auditor = await this.db.queryOne(sql, sqlParam);
  1544. break;
  1545. case auditConst.status.uncheck:
  1546. default:
  1547. break;
  1548. }
  1549. return auditor;
  1550. }
  1551. async getAuditorsByStatus(stageId, status, times = 1) {
  1552. let auditor = [];
  1553. let sql = '';
  1554. let sqlParam = '';
  1555. let cur;
  1556. switch (status) {
  1557. case auditConst.status.checking:
  1558. case auditConst.status.checked:
  1559. case auditConst.status.checkNoPre:
  1560. cur = await this.db.queryOne(`SELECT * From ${this.tableName} where sid = ? AND times = ? AND status = ? ORDER By times DESC, ` + '`order` DESC', [stageId, times, status]);
  1561. if (!cur) return [];
  1562. sql = 'SELECT la.`aid`, pa.`name`, pa.`company`, pa.`role`, la.`times`, la.`sid`, la.`order`, la.audit_order, la.audit_type ' +
  1563. ' FROM ?? AS la Left Join ?? AS pa On la.`aid` = pa.`id` ' +
  1564. ' WHERE la.`sid` = ? and la.`order` = ?';
  1565. sqlParam = [this.tableName, this.ctx.service.projectAccount.tableName, stageId, cur.order];
  1566. auditor = await this.db.query(sql, sqlParam);
  1567. break;
  1568. case auditConst.status.checkNo:
  1569. cur = await this.db.queryOne(`SELECT * From ${this.tableName} where sid = ? AND times = ? AND status = ? ORDER By times DESC, ` + '`order` DESC', [stageId, parseInt(times) - 1, status]);
  1570. if (!cur) return [];
  1571. sql = 'SELECT la.`aid`, pa.`name`, pa.`company`, pa.`role`, la.`times`, la.`sid`, la.`order`, la.audit_order, la.audit_type ' +
  1572. ' FROM ?? AS la Left Join ?? AS pa On la.`aid` = pa.`id` ' +
  1573. ' WHERE la.`sid` = ? and la.`order` = ? and la.`times` = ?';
  1574. sqlParam = [this.tableName, this.ctx.service.projectAccount.tableName, stageId, cur.order, parseInt(times) - 1];
  1575. auditor = await this.db.query(sql, sqlParam);
  1576. break;
  1577. case auditConst.status.uncheck:
  1578. default:
  1579. break;
  1580. }
  1581. return auditor;
  1582. }
  1583. /**
  1584. * 取某一期已批准审核信息(报表用)
  1585. *
  1586. * @param {Number} stageId - 期id
  1587. * @param {Number} times - 期次数
  1588. * @return {Promise<boolean>}
  1589. */
  1590. async getStageAudit(stageId, times = 1) {
  1591. const sql = 'SELECT a1.aid, a1.begin_time, a1.end_time, a1.status, a1.opinion ' + 'FROM ?? AS a1 ' + 'WHERE a1.`sid` = ? and a1.`times` = ? ' + 'ORDER BY a1.order';
  1592. const sqlParam = [this.tableName, stageId, times];
  1593. const rst = await this.db.query(sql, sqlParam);
  1594. return rst;
  1595. }
  1596. /**
  1597. * 取待审批期列表(wap用)
  1598. *
  1599. * @param auditorId
  1600. * @return {Promise<*>}
  1601. */
  1602. async getAuditStageByWap(auditorId) {
  1603. const sql =
  1604. 'SELECT sa.`aid`, sa.`times`, sa.`begin_time`, sa.`end_time`, sa.`tid`, sa.`sid`,' +
  1605. // ' s.`order` As `sorder`, s.`status` As `sstatus`, s.`s_time`, s.`contract_tp`, s.`qc_tp`, s.`pre_contract_tp`, s.`pre_qc_tp`, s.`yf_tp`, s.`pre_yf_tp`, ' +
  1606. ' s.*,' +
  1607. ' t.`name`, t.`project_id`, t.`type`, t.`user_id`,' +
  1608. ' ti.`deal_info` ' +
  1609. ' FROM ?? AS sa' +
  1610. ' Left Join ?? AS s On sa.`sid` = s.`id`' +
  1611. ' Left Join ?? As t On sa.`tid` = t.`id`' +
  1612. ' Left Join ?? AS ti ON ti.`tid` = t.`id`' +
  1613. ' WHERE sa.`aid` = ? and sa.`status` = ?';
  1614. const sqlParam = [
  1615. this.tableName,
  1616. this.ctx.service.stage.tableName,
  1617. this.ctx.service.tender.tableName,
  1618. this.ctx.service.tenderInfo.tableName,
  1619. auditorId,
  1620. auditConst.status.checking,
  1621. ];
  1622. return await this.db.query(sql, sqlParam);
  1623. }
  1624. /**
  1625. * 删除 某期 某次 全审批流程
  1626. * 私有,不做判断,不补全最新一轮审批人数据,不计算缓存
  1627. * @param {Number} sid - 标段id
  1628. * @param {Number} times - 第几次审批
  1629. * @param transaction - 删除事务
  1630. * @return {Promise<void>}
  1631. */
  1632. async _timesDelete(sid, times, transaction) {
  1633. // 审批流程
  1634. await transaction.delete(this.tableName, { sid, times });
  1635. await transaction.delete(this.ctx.service.pos.tableName, { add_stage: sid, add_times: times });
  1636. await transaction.delete(this.ctx.service.stageBills.tableName, { sid, times });
  1637. await transaction.delete(this.ctx.service.stagePos.tableName, { sid, times });
  1638. await transaction.delete(this.ctx.service.stageDetail.tableName, { sid, times });
  1639. await transaction.delete(this.ctx.service.stageChange.tableName, { sid, stimes: times });
  1640. await transaction.delete(this.ctx.service.stagePay.tableName, { sid, stimes: times });
  1641. await transaction.delete(this.ctx.service.pay.tableName, { csid: sid, cstimes: times });
  1642. await transaction.delete(this.ctx.service.stageAuditAss.tableName, { sid, times });
  1643. // 其他台账
  1644. await this.ctx.service.stageJgcl.deleteStageTimesData(sid, times, transaction);
  1645. await this.ctx.service.stageOther.deleteStageTimesData(sid, times, transaction);
  1646. await this.ctx.service.stageBonus.deleteStageTimesData(sid, times, transaction);
  1647. await this.ctx.service.stageSafeProd.deleteStageTimesData(sid, times, transaction);
  1648. await this.ctx.service.stageTempLand.deleteStageTimesData(sid, times, transaction);
  1649. }
  1650. /**
  1651. * 删除本次审批流程
  1652. * @param {Number} stageId - 标段id
  1653. * @param {Number} times - 第几次审批
  1654. * @return {Promise<void>}
  1655. */
  1656. async timesDelete() {
  1657. const transaction = await this.db.beginTransaction();
  1658. try {
  1659. // 删除最新一次数据
  1660. await this._timesDelete(this.ctx.stage.id, this.ctx.stage.times, transaction);
  1661. // 审批退回,未重新上报时,需删除最新两次数据
  1662. const isCheckNo = this.ctx.stage.status === auditConst.status.checkNo;
  1663. const nowTimes = isCheckNo ? this.ctx.stage.times - 1 : this.ctx.stage.times;
  1664. if (isCheckNo) {
  1665. await this._timesDelete(this.ctx.stage.id, nowTimes, transaction);
  1666. }
  1667. // 添加上一次审批人
  1668. const sql = 'SELECT `tid`, `sid`, `aid`, `order` FROM ?? WHERE `sid` = ? and `times` = ? GROUP BY `aid` ORDER BY `id` ASC';
  1669. const sqlParam = [this.tableName, this.ctx.stage.id, nowTimes - 1];
  1670. const auditors = await this.db.query(sql, sqlParam);
  1671. let order = 1;
  1672. for (const a of auditors) {
  1673. a.times = nowTimes;
  1674. a.order = order;
  1675. a.status = auditConst.status.uncheck;
  1676. order++;
  1677. }
  1678. const ledgerTp = await this._updateTender(transaction);
  1679. // 拷贝新一次审核流程列表
  1680. await transaction.insert(this.tableName, auditors);
  1681. // 计算缓存
  1682. const tpData = await this.ctx.service.stageBills.getSumTotalPrice(this.ctx.stage);
  1683. // 计算并合同支付最终数据
  1684. const lastAudit = await this.getDataByCondition({
  1685. sid: this.ctx.stage.id,
  1686. times: nowTimes - 1,
  1687. status: auditConst.status.checkNo,
  1688. });
  1689. if (!lastAudit) throw '审批数据错误';
  1690. await this.ctx.service.stagePay.copyStagePays4DeleteTimes(this.ctx.stage, nowTimes, 0, lastAudit.times, lastAudit.order, transaction);
  1691. const stagePay = await this.ctx.service.stagePay.getAuditorStageData(this.ctx.stage.id, lastAudit.times, lastAudit.order);
  1692. const yfPay = stagePay.find(function(x) {
  1693. return x.ptype === payConst.payType.yf;
  1694. });
  1695. const sfPay = stagePay.find(function(x) {
  1696. return x.ptype === payConst.payType.sf;
  1697. });
  1698. // 同步 期信息
  1699. const time = new Date();
  1700. await transaction.update(this.ctx.service.stage.tableName, {
  1701. id: this.ctx.stage.id,
  1702. status: auditConst.status.checkNo,
  1703. contract_tp: tpData.contract_tp,
  1704. qc_tp: tpData.qc_tp,
  1705. positive_qc_tp: tpData.positive_qc_tp,
  1706. negative_qc_tp: tpData.negative_qc_tp,
  1707. times: nowTimes,
  1708. yf_tp: yfPay ? yfPay.tp : null,
  1709. sf_tp: sfPay ? sfPay.tp : null,
  1710. tp_history: JSON.stringify(this.ctx.stage.tp_history.filter(x => { return x.times <= nowTimes; })),
  1711. cache_time_l: time,
  1712. cache_time_r: time,
  1713. });
  1714. await transaction.commit();
  1715. // 通知发送 - 第三方更新
  1716. if (this.ctx.session.sessionProject.custom && syncApiConst.notice_type.indexOf(this.ctx.session.sessionProject.customType) !== -1) {
  1717. const base_data = {
  1718. tid: this.ctx.tender.id,
  1719. sid: this.ctx.stage.id,
  1720. op: 'update',
  1721. };
  1722. this.ctx.helper.syncNoticeSend(this.ctx.session.sessionProject.customType, JSON.stringify(base_data));
  1723. base_data.op = 'update';
  1724. base_data.sid = -1;
  1725. this.ctx.helper.syncNoticeSend(this.ctx.session.sessionProject.customType, JSON.stringify(base_data));
  1726. }
  1727. } catch (err) {
  1728. await transaction.rollback();
  1729. throw err;
  1730. }
  1731. }
  1732. // 固定审批流-更新
  1733. async updateNewAuditList(stage, newList) {
  1734. const transaction = await this.db.beginTransaction();
  1735. try {
  1736. // 先删除旧的审批流,再添加新的
  1737. await transaction.delete(this.tableName, { sid: stage.id, times: stage.times });
  1738. await transaction.delete(this.ctx.service.stageAuditAss.tableName, { sid: stage.id, times: stage.times });
  1739. const newAuditors = [];
  1740. for (const auditor of newList) {
  1741. newAuditors.push({
  1742. tid: stage.tid, sid: stage.id, aid: auditor.audit_id,
  1743. times: stage.times, order: auditor.audit_order, status: auditConst.status.uncheck,
  1744. audit_type: auditor.audit_type, audit_order: auditor.audit_order,
  1745. });
  1746. }
  1747. if(newAuditors.length > 0) await transaction.insert(this.tableName, newAuditors);
  1748. await transaction.commit();
  1749. } catch (err) {
  1750. await transaction.rollback();
  1751. throw err;
  1752. }
  1753. }
  1754. // 固定终审-更新
  1755. async updateLastAudit(stage, auditList, lastId) {
  1756. const transaction = await this.db.beginTransaction();
  1757. try {
  1758. // 先判断auditList里的aid是否与lastId相同,相同则删除并重新更新order
  1759. const existAudit = auditList.find(x => { return x.aid === lastId });
  1760. let order = auditList.length > 0 ? auditList.reduce((rst, a) => { return Math.max(rst, a.order)}, 0) + 1 : 1; // 最大值 + 1
  1761. if (existAudit) {
  1762. await transaction.delete(this.tableName, { sid: stage.id, times: stage.times, aid: lastId });
  1763. const sameOrder = auditList.filter(x => { return x.order === existAudit.order });
  1764. if (sameOrder.length === 1) {
  1765. const updateData = [];
  1766. auditList.forEach(x => {
  1767. if (x.order <= existAudit.order) return;
  1768. updateData.push({id: x.id, order: x.order - 1, audit_order: x.audit_order - 1});
  1769. });
  1770. if (updateData.length > 0) {
  1771. await transaction.updateRows(updateData);
  1772. }
  1773. order = order - 1;
  1774. }
  1775. }
  1776. // 添加终审
  1777. const newAuditor = {
  1778. tid: stage.tid, sid: stage.id, aid: lastId,
  1779. times: stage.times, order, status: auditConst.status.uncheck,
  1780. audit_type: auditType.key.common, audit_order: order,
  1781. };
  1782. await transaction.insert(this.tableName, newAuditor);
  1783. await transaction.commit();
  1784. } catch (err) {
  1785. await transaction.rollback();
  1786. throw err;
  1787. }
  1788. }
  1789. async getFinalAuditGroup(stageId, times) {
  1790. const sql =
  1791. 'SELECT la.`aid`, pa.`name`, pa.`company`, pa.`role`, pa.`mobile`, pa.`telephone`, pa.`sign_path`, la.`times`, la.`sid`, Max(la.`order`) as max_order ' +
  1792. ' FROM ?? AS la Left Join ?? AS pa On la.`aid` = pa.`id`' +
  1793. ' WHERE la.`sid` = ? and la.`times` = ? GROUP BY la.`aid` ORDER BY la.`order`';
  1794. const sqlParam = [this.tableName, this.ctx.service.projectAccount.tableName, stageId, times];
  1795. const result = await this.db.query(sql, sqlParam);
  1796. for (const r of result) {
  1797. const auditor = await this.getDataByCondition({sid: stageId, times: r.times, order: r.max_order});
  1798. r.status = auditor.status;
  1799. r.opinion = auditor.opinion;
  1800. r.begin_time = auditor.begin_time;
  1801. r.end_time = auditor.end_time;
  1802. }
  1803. return result;
  1804. }
  1805. async getNumByMonth(tid, startMonth, endMonth) {
  1806. const sql = 'SELECT COUNT(*) as num FROM ?? WHERE id in (SELECT MAX(id) FROM ?? WHERE tid = ? GROUP BY sid) AND status = ? AND end_time between ? and ?';
  1807. const sqlParam = [this.tableName, this.tableName, tid, auditConst.status.checked, startMonth, endMonth];
  1808. const result = await this.db.queryOne(sql, sqlParam);
  1809. return result ? result.num : 0;
  1810. }
  1811. /**
  1812. * 删除本次审批流程
  1813. * @param {Number} stageId - 标段id
  1814. * @param {Number} times - 第几次审批
  1815. * @param {Object} data - 更改参数
  1816. * @return {Promise<void>}
  1817. */
  1818. async saveAudit(stageId, times, data) {
  1819. const transaction = await this.db.beginTransaction();
  1820. try {
  1821. const auditors = await this.getAuditGroupByList(stageId, times);
  1822. const now_audit = this._.find(auditors, { aid: data.old_aid });
  1823. if (data.operate === 'add') {
  1824. if (now_audit.status !== auditConst.status.uncheck && now_audit.status !== auditConst.status.checking) {
  1825. throw '当前人下无法操作新增';
  1826. }
  1827. const newAudit = {
  1828. tid: this.ctx.tender.id,
  1829. sid: stageId,
  1830. aid: data.new_aid,
  1831. order: now_audit.order+1,
  1832. times: times,
  1833. status: 1
  1834. };
  1835. // order+1
  1836. await this._syncOrderByDelete(transaction, stageId, now_audit.order+1, times, '+');
  1837. await transaction.insert(this.tableName, newAudit);
  1838. // 更新审批流程页数据,如果存在
  1839. } else if (data.operate === 'del') {
  1840. if (now_audit.status !== auditConst.status.uncheck) {
  1841. throw '当前人无法操作删除';
  1842. }
  1843. await transaction.delete(this.tableName, { sid: stageId, times, aid: now_audit.aid, order: now_audit.order });
  1844. await this._syncOrderByDelete(transaction, stageId, now_audit.order, times);
  1845. // 旧的更新为is_old为1
  1846. await transaction.update(this.tableName, { is_old: 1 }, {
  1847. where: {
  1848. sid: stageId,
  1849. times,
  1850. aid: data.old_aid,
  1851. }
  1852. });
  1853. } else if (data.operate === 'change') {
  1854. const nowAudit = await this.getDataByCondition({ sid: stageId, times, aid: now_audit.aid, order: now_audit.order });
  1855. if (now_audit.status !== auditConst.status.uncheck || !nowAudit) {
  1856. throw '当前人无法操作替换';
  1857. }
  1858. nowAudit.aid = data.new_aid;
  1859. await transaction.update(this.tableName, nowAudit);
  1860. // 旧的更新为is_old为1
  1861. await transaction.update(this.tableName, { is_old: 1 }, {
  1862. where: {
  1863. sid: stageId,
  1864. times,
  1865. aid: data.old_aid,
  1866. }
  1867. });
  1868. }
  1869. if (this.ctx.tender.info.shenpi.stage === shenpiConst.sp_status.gdspl || this.ctx.tender.info.shenpi.stage === shenpiConst.sp_status.gdzs) {
  1870. const newAuditors = await this.getAuditGroupByList(stageId, times, transaction);
  1871. await this.ctx.service.shenpiAudit.updateAuditList(transaction, this.ctx.tender.id, this.ctx.tender.info.shenpi.stage, shenpiConst.sp_type.stage, this._.map(newAuditors, 'aid'));
  1872. }
  1873. // 更新到审批流程方法
  1874. await transaction.commit();
  1875. } catch (err) {
  1876. await transaction.rollback();
  1877. throw err;
  1878. }
  1879. }
  1880. async getAuditorGroup(stageId, times) {
  1881. const auditors = await this.ctx.service.stageAudit.getAuditors(stageId, times); // 全部参与的审批人
  1882. return this.ctx.helper.groupAuditors(auditors);
  1883. }
  1884. async getUserGroup(stageId, times) {
  1885. const group = await this.getAuditorGroup(stageId, times);
  1886. const sql =
  1887. 'SELECT pa.`id` As aid, pa.`name`, pa.`company`, pa.`role`, ? As times, ? As sid, 0 As `order`' +
  1888. ' FROM ' + this.ctx.service.stage.tableName + ' As s' +
  1889. ' LEFT JOIN ' + this.ctx.service.projectAccount.tableName + ' As pa' +
  1890. ' ON s.user_id = pa.id' +
  1891. ' WHERE s.id = ?';
  1892. const sqlParam = [times, stageId, stageId];
  1893. const user = await this.db.queryOne(sql, sqlParam);
  1894. group.unshift([ user ]);
  1895. return group;
  1896. }
  1897. async getAuditorHistory(stageId, times, reverse = false) {
  1898. const history = [];
  1899. if (times >= 1) {
  1900. for (let i = 1; i <= times; i++) {
  1901. const auditors = await this.ctx.service.stageAudit.getAuditors(stageId, i);
  1902. const group = this.ctx.helper.groupAuditors(auditors);
  1903. const historyGroup = [];
  1904. const max_order = group.length > 0 && group[group.length - 1].length > 0 ? group[group.length - 1][0].audit_order : -1;
  1905. for (const g of group) {
  1906. const his = {
  1907. beginYear: '', beginDate: '', beginTime: '', endYear: '', endDate: '', endTime: '', begin_time: null, end_time: null,
  1908. audit_type: g[0].audit_type, audit_order: g[0].audit_order,
  1909. auditors: g
  1910. };
  1911. if (his.audit_type === auditType.key.common) {
  1912. his.name = g[0].name;
  1913. } else {
  1914. his.name = this.ctx.helper.transFormToChinese(his.audit_order) + '审';
  1915. }
  1916. his.is_final = his.audit_order === max_order;
  1917. if (g[0].begin_time) {
  1918. his.begin_time = g[0].begin_time;
  1919. const beginTime = this.ctx.moment(g[0].begin_time);
  1920. his.beginYear = beginTime.format('YYYY');
  1921. his.beginDate = beginTime.format('MM-DD');
  1922. his.beginTime = beginTime.format('HH:mm:ss');
  1923. }
  1924. let end_time;
  1925. g.forEach(x => {
  1926. if (x.status === auditConst.status.checkSkip) return;
  1927. if (!his.status || x.status === auditConst.status.checking) his.status = x.status;
  1928. if (x.end_time && (!end_time || x.end_time > end_time)) {
  1929. end_time = x.end_time;
  1930. if (his.status !== auditConst.status.checking) his.status = x.status;
  1931. }
  1932. });
  1933. if (end_time) {
  1934. his.end_time = end_time;
  1935. const endTime = this.ctx.moment(end_time);
  1936. his.endYear = endTime.format('YYYY');
  1937. his.endDate = endTime.format('MM-DD');
  1938. his.endTime = endTime.format('HH:mm:ss');
  1939. }
  1940. historyGroup.push(his);
  1941. }
  1942. if (reverse) {
  1943. history.push(historyGroup.reverse());
  1944. } else {
  1945. history.push(historyGroup);
  1946. }
  1947. }
  1948. }
  1949. return history;
  1950. }
  1951. async getUniqAuditor(stageId, times) {
  1952. const auditors = await this.ctx.service.stageAudit.getAuditors(stageId, times); // 全部参与的审批人
  1953. const result = [];
  1954. auditors.forEach(x => {
  1955. if (result.findIndex(r => { return x.aid === r.aid && x.audit_order === x.audit_order; }) < 0) {
  1956. result.push(x);
  1957. }
  1958. });
  1959. return result;
  1960. }
  1961. }
  1962. return StageAudit;
  1963. };