change.js 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773
  1. 'use strict';
  2. /**
  3. *
  4. *
  5. * @author Mai
  6. * @date 2018/8/14
  7. * @version
  8. */
  9. const audit = require('../const/audit');
  10. const fs = require('fs');
  11. const path = require('path');
  12. const changeConst = require('../const/change');
  13. const smsTypeConst = require('../const/sms_type');
  14. const SMS = require('../lib/sms');
  15. const SmsAliConst = require('../const/sms_alitemplate');
  16. const wxConst = require('../const/wechat_template');
  17. const pushType = require('../const/audit').pushType;
  18. const projectLogConst = require('../const/project_log');
  19. module.exports = app => {
  20. class Change extends app.BaseService {
  21. /**
  22. * 构造函数
  23. *
  24. * @param {Object} ctx - egg全局变量
  25. * @return {void}
  26. */
  27. constructor(ctx) {
  28. super(ctx);
  29. this.tableName = 'change';
  30. }
  31. /**
  32. * 查找数据
  33. *
  34. * @param {Object} data - 筛选表单中的get数据
  35. * @return {void}
  36. */
  37. searchFilter(data) {
  38. this.initSqlBuilder();
  39. // this.sqlBuilder.columns = ['id', 'username', 'real_name', 'create_time', 'last_login', 'login_ip',
  40. // 'group_id', 'token', 'can_login'];
  41. data.type = parseInt(data.status);
  42. if (data.keyword !== undefined) {
  43. switch (data.type) {
  44. // 用户名
  45. case 1:
  46. this.sqlBuilder.setAndWhere('username', {
  47. value: this.db.escape(data.keyword + '%'),
  48. operate: 'like',
  49. });
  50. break;
  51. // 姓名
  52. case 2:
  53. this.sqlBuilder.setAndWhere('real_name', {
  54. value: this.db.escape(data.keyword + '%'),
  55. operate: 'like',
  56. });
  57. break;
  58. // 联系电话
  59. case 3:
  60. this.sqlBuilder.setAndWhere('telephone', {
  61. value: this.db.escape(data.keyword + '%'),
  62. operate: 'like',
  63. });
  64. break;
  65. default:
  66. break;
  67. }
  68. }
  69. // 办事处筛选
  70. if (data.office !== undefined && data.office !== '') {
  71. this.sqlBuilder.setAndWhere('office', {
  72. value: this.db.escape(data.office),
  73. operate: '=',
  74. });
  75. }
  76. }
  77. async add(tenderId, userId, code, plan_code, name, delimit = 100) {
  78. const sql = 'SELECT COUNT(*) as count FROM ?? WHERE `tid` = ? AND ((`code` = ? AND `status` != ?) OR (`p_code` = ? AND `status` = ?))';
  79. const sqlParam = [this.tableName, tenderId, code, audit.flow.status.checked, code, audit.flow.status.checked];
  80. const codeCount = await this.db.queryOne(sql, sqlParam);
  81. const count = codeCount.count;
  82. if (count > 0) {
  83. throw '变更令号重复';
  84. }
  85. // 初始化事务
  86. this.transaction = await this.db.beginTransaction();
  87. let result = false;
  88. try {
  89. const cid = this.uuid.v4();
  90. const change = {
  91. cid,
  92. tid: tenderId,
  93. uid: userId,
  94. status: audit.flow.status.uncheck,
  95. times: 1,
  96. valid: true,
  97. in_time: new Date(),
  98. code,
  99. name,
  100. plan_code,
  101. state: 3,
  102. delimit,
  103. // tp_decimal: this.ctx.tender.info.decimal.tp,
  104. // up_decimal: this.ctx.tender.info.decimal.up,
  105. };
  106. if (plan_code) {
  107. const planInfo = await this.ctx.service.changePlan.getDataByCondition({ tid: tenderId, code: plan_code });
  108. if (planInfo) {
  109. change.org_name = planInfo.org_name;
  110. change.peg = planInfo.peg;
  111. change.org_code = planInfo.new_code;
  112. change.new_code = planInfo.c_new_code;
  113. change.new_name = planInfo.design_name;
  114. // 工程变更类别读取
  115. const projectData = await this.ctx.service.project.getDataById(this.ctx.session.sessionProject.id);
  116. const fun_set = await this.ctx.service.project.getFunSet(projectData.fun_set);
  117. const classInfo = this._.find(fun_set.change_class, function(item) {
  118. return item.name === planInfo.class || (item.checked && item.new_name === planInfo.class);
  119. });
  120. change.class = classInfo ? classInfo.value : this._.find(fun_set.change_class, { checked: true }).value;
  121. const qualityIndex = planInfo.quality && this._.indexOf(changeConst.qualityName, planInfo.quality) !== -1 ? this._.indexOf(changeConst.qualityName, planInfo.quality) : 0;
  122. change.quality = qualityIndex ? qualityIndex : changeConst.quality.common.value;
  123. let content = planInfo.reason ? planInfo.reason.replace(/[\r\n]/g, '\r\n') : '';
  124. content = content + (planInfo.content ? (planInfo.reason ? '\r\n' : '') + planInfo.content.replace(/[\r\n]/g, '\r\n') : '');
  125. change.content = content ? content : null;
  126. change.expr = planInfo.expr;
  127. }
  128. }
  129. const operate = await this.transaction.insert(this.tableName, change);
  130. if (operate.affectedRows <= 0) {
  131. throw '新建变更令数据失败';
  132. }
  133. // 把提交人信息添加到zh_change_audit
  134. const userInfo = await this.ctx.service.projectAccount.getDataById(userId);
  135. const changeaudit = [
  136. {
  137. tid: tenderId,
  138. cid,
  139. uid: userId,
  140. name: userInfo.name,
  141. jobs: userInfo.role,
  142. company: userInfo.company,
  143. times: 1,
  144. usite: 0,
  145. usort: 0,
  146. status: 2,
  147. },
  148. ];
  149. // 并把之前存在的变更令审批人添加到zh_change_audit
  150. // 先找出标段最近存在的变更令审批人的变更令info
  151. const changeInfo = await this.ctx.service.change.getHaveAuditLastInfo(tenderId);
  152. if (changeInfo) {
  153. // 再获取非原报审批人
  154. const auditList = await this.ctx.service.changeAudit.getListGroupByTimes(changeInfo.cid, changeInfo.times);
  155. let sort = 1;
  156. for (const audit of auditList) {
  157. if (audit.usite !== 0) {
  158. const oneaudit = {
  159. tid: tenderId,
  160. cid,
  161. uid: audit.uid,
  162. name: audit.name,
  163. jobs: audit.jobs,
  164. company: audit.company,
  165. times: 1,
  166. usite: audit.usite,
  167. usort: sort++,
  168. status: 1,
  169. };
  170. changeaudit.push(oneaudit);
  171. }
  172. }
  173. }
  174. await this.transaction.insert(this.ctx.service.changeAudit.tableName, changeaudit);
  175. result = change;
  176. this.transaction.commit();
  177. } catch (error) {
  178. console.log(error);
  179. // 回滚
  180. await this.transaction.rollback();
  181. }
  182. return result;
  183. }
  184. async getHaveAuditLastInfo(tenderId) {
  185. const sql = 'SELECT a.* FROM ?? as a LEFT JOIN ?? as b ON a.`cid` = b.`cid` WHERE a.`tid` = ? AND b.`usite` > 0 ORDER BY a.`in_time` DESC';
  186. const sqlParam = [this.tableName, this.ctx.service.changeAudit.tableName, tenderId];
  187. return await this.db.queryOne(sql, sqlParam);
  188. }
  189. async pendingDatas(tenderId, userId) {
  190. return await this.getAllDataByCondition({
  191. tid: tenderId,
  192. uid: userId,
  193. status: audit.flow.status.checking,
  194. });
  195. }
  196. async uncheckDatas(tenderId, userId) {
  197. return await this.getAllDataByCondition({
  198. tid: tenderId,
  199. uid: userId,
  200. status: audit.flow.status.uncheck,
  201. });
  202. }
  203. async checkingDatas(tenderId, userId) {
  204. return await this.getAllDataByCondition({
  205. tid: tenderId,
  206. uid: userId,
  207. status: audit.flow.status.checking,
  208. });
  209. }
  210. async checkedDatas(tenderId, userId) {
  211. return await this.getAllDataByCondition({
  212. tid: tenderId,
  213. uid: userId,
  214. status: audit.flow.status.checked,
  215. });
  216. }
  217. async checkNoDatas(tenderId, userId) {
  218. return await this.getAllDataByCondition({
  219. tid: tenderId,
  220. uid: userId,
  221. status: audit.flow.status.checkNo,
  222. });
  223. }
  224. async checkNoCount(tenderId, userId) {
  225. return await this.count({
  226. tid: tenderId,
  227. uid: userId,
  228. status: audit.flow.status.checkNo,
  229. });
  230. }
  231. /**
  232. * 获取变更令列表
  233. * @param {int} tenderId - 标段id
  234. * @param {int} status - 状态
  235. * @param {int} hadlimit - 分页
  236. * @return {object} list - 列表
  237. */
  238. async getListByStatus(tenderId, status = 0, hadlimit = 1, sortBy = '', orderBy = '') {
  239. let sql = '';
  240. let sqlParam = '';
  241. if (this.ctx.tender.isTourist && status === 0) {
  242. sql = 'SELECT a.* FROM ?? As a WHERE a.tid = ?';
  243. sqlParam = [this.tableName, tenderId];
  244. } else {
  245. switch (status) {
  246. case 0: // 包含你的所有变更令
  247. sql =
  248. 'SELECT a.* FROM ?? AS a WHERE a.tid = ? AND ' +
  249. '(a.uid = ? OR (a.status != ? AND a.cid IN (SELECT b.cid FROM ?? AS b WHERE b.uid = ? AND a.times = b.times GROUP BY b.cid)) OR a.status = ? )';
  250. sqlParam = [
  251. this.tableName,
  252. tenderId,
  253. this.ctx.session.sessionUser.accountId,
  254. audit.flow.status.uncheck,
  255. this.ctx.service.changeAudit.tableName,
  256. this.ctx.session.sessionUser.accountId,
  257. audit.flow.status.checked,
  258. ];
  259. break;
  260. case 1: // 待处理(你的)
  261. sql = 'SELECT a.* FROM ?? as a WHERE cid in(SELECT b.cid FROM ?? as b WHERE tid = ? AND uid = ? AND status = ?)';
  262. sqlParam = [this.tableName, this.ctx.service.changeAudit.tableName, tenderId, this.ctx.session.sessionUser.accountId, audit.flow.auditStatus.checking];
  263. break;
  264. case 5: // 待上报(所有的)PS:取未上报,退回,修订的变更令
  265. sql =
  266. 'SELECT a.* FROM ?? AS a WHERE ' +
  267. 'a.cid IN (SELECT b.cid FROM ?? AS b WHERE b.uid = ? GROUP BY b.cid) AND ' +
  268. '(a.status = ? OR a.status = ? OR a.status = ?) AND a.tid = ?';
  269. sqlParam = [
  270. this.tableName,
  271. this.ctx.service.changeAudit.tableName,
  272. this.ctx.session.sessionUser.accountId,
  273. audit.flow.status.uncheck,
  274. audit.flow.status.back,
  275. audit.flow.status.revise,
  276. tenderId,
  277. ];
  278. break;
  279. case 2: // 进行中(所有的)
  280. case 4: // 终止(所有的)
  281. sql =
  282. 'SELECT a.* FROM ?? AS a WHERE ' +
  283. 'a.cid IN (SELECT b.cid FROM ?? AS b WHERE b.uid = ? AND a.times = b.times GROUP BY b.cid) AND ' +
  284. 'a.status = ? AND a.tid = ?';
  285. sqlParam = [this.tableName, this.ctx.service.changeAudit.tableName, this.ctx.session.sessionUser.accountId, status, tenderId];
  286. break;
  287. case 3: // 已完成(所有的)
  288. sql = 'SELECT a.* FROM ?? AS a WHERE a.status = ? AND a.tid = ?';
  289. sqlParam = [this.tableName, status, tenderId];
  290. break;
  291. default:
  292. break;
  293. }
  294. }
  295. if (sortBy && orderBy) {
  296. if (sortBy === 'code') {
  297. sql += ' ORDER BY CHAR_LENGTH(a.code) ' + orderBy + ',convert(a.code using gbk) ' + orderBy;
  298. } else {
  299. sql += ' ORDER BY a.in_time ' + orderBy;
  300. }
  301. } else {
  302. sql += ' ORDER BY a.in_time DESC';
  303. }
  304. if (hadlimit) {
  305. const limit = this.ctx.pageSize ? this.ctx.pageSize : this.app.config.pageSize;
  306. const offset = limit * (this.ctx.page - 1);
  307. const limitString = offset >= 0 ? offset + ',' + limit : limit;
  308. sql += ' LIMIT ' + limitString;
  309. }
  310. const list = await this.db.query(sql, sqlParam);
  311. return list;
  312. }
  313. /**
  314. * 获取变更令个数
  315. * @param {int} tenderId - 标段id
  316. * @param {int} status - 状态
  317. * @return {void}
  318. */
  319. async getCountByStatus(tenderId, status) {
  320. if (this.ctx.tender.isTourist && status === 0) {
  321. const sql5 = 'SELECT count(*) AS count FROM ?? WHERE tid = ? ORDER BY in_time DESC';
  322. const sqlParam5 = [this.tableName, tenderId];
  323. const result5 = await this.db.query(sql5, sqlParam5);
  324. return result5[0].count;
  325. }
  326. switch (status) {
  327. case 0: // 包含你的所有变更令
  328. const sql =
  329. 'SELECT count(*) AS count FROM ?? AS a WHERE a.tid = ? AND ' +
  330. '(a.uid = ? OR (a.status != ? AND a.cid IN (SELECT b.cid FROM ?? AS b WHERE b.uid = ? AND a.times = b.times GROUP BY b.cid)) OR a.status = ? )';
  331. const sqlParam = [
  332. this.tableName,
  333. tenderId,
  334. this.ctx.session.sessionUser.accountId,
  335. audit.flow.status.uncheck,
  336. this.ctx.service.changeAudit.tableName,
  337. this.ctx.session.sessionUser.accountId,
  338. audit.flow.status.checked,
  339. ];
  340. const result = await this.db.query(sql, sqlParam);
  341. return result[0].count;
  342. case 1: // 待处理(你的)
  343. // return await this.ctx.service.changeAudit.count({
  344. // tid: tenderId,
  345. // uid: this.ctx.session.sessionUser.accountId,
  346. // status: 2,
  347. // });
  348. const sql6 = 'SELECT count(*) AS count FROM ?? as a WHERE cid in(SELECT b.cid FROM ?? as b WHERE tid = ? AND uid = ? AND status = ?)';
  349. const sqlParam6 = [this.tableName, this.ctx.service.changeAudit.tableName, tenderId, this.ctx.session.sessionUser.accountId, audit.flow.auditStatus.checking];
  350. const result6 = await this.db.query(sql6, sqlParam6);
  351. return result6[0].count;
  352. case 5: // 待上报(所有的)PS:取未上报,退回,修订的变更令
  353. const sql2 =
  354. 'SELECT count(*) AS count FROM ?? AS a WHERE ' +
  355. 'a.cid IN (SELECT b.cid FROM ?? AS b WHERE b.uid = ? AND a.times = b.times GROUP BY b.cid) ' +
  356. 'AND (a.status = ? OR a.status = ? OR a.status = ?) AND a.tid = ?';
  357. const sqlParam2 = [
  358. this.tableName,
  359. this.ctx.service.changeAudit.tableName,
  360. this.ctx.session.sessionUser.accountId,
  361. audit.flow.status.uncheck,
  362. audit.flow.status.back,
  363. audit.flow.status.revise,
  364. tenderId,
  365. ];
  366. const result2 = await this.db.query(sql2, sqlParam2);
  367. return result2[0].count;
  368. case 2: // 进行中(所有的)
  369. case 4: // 终止(所有的)
  370. const sql3 =
  371. 'SELECT count(*) AS count FROM ?? AS a WHERE ' +
  372. 'a.cid IN (SELECT b.cid FROM ?? AS b WHERE b.uid = ? AND a.times = b.times GROUP BY b.cid) AND a.status = ? AND a.tid = ?';
  373. const sqlParam3 = [this.tableName, this.ctx.service.changeAudit.tableName, this.ctx.session.sessionUser.accountId, status, tenderId];
  374. const result3 = await this.db.query(sql3, sqlParam3);
  375. return result3[0].count;
  376. case 3: // 已完成(所有的)
  377. const sql4 = 'SELECT count(*) AS count FROM ?? WHERE status = ? AND tid = ?';
  378. const sqlParam4 = [this.tableName, status, tenderId];
  379. const result4 = await this.db.query(sql4, sqlParam4);
  380. return result4[0].count;
  381. default:
  382. break;
  383. }
  384. }
  385. async getTp(tenderId, status) {
  386. if (this.ctx.tender.isTourist && status === 0) {
  387. const sql5 = 'SELECT SUM(cast (total_price as decimal(18,6))) AS total_price FROM ?? WHERE tid = ?';
  388. const sqlParam5 = [this.tableName, tenderId];
  389. const result5 = await this.db.query(sql5, sqlParam5);
  390. return result5[0].total_price ? result5[0].total_price : 0;
  391. }
  392. switch (status) {
  393. case 0: // 包含你的所有变更令
  394. const sql =
  395. 'SELECT SUM(cast (a.total_price as decimal(18,6))) AS total_price FROM ?? AS a WHERE a.tid = ? AND ' +
  396. '(a.uid = ? OR (a.status != ? AND a.cid IN (SELECT b.cid FROM ?? AS b WHERE b.uid = ? AND a.times = b.times GROUP BY b.cid)) OR a.status = ? )';
  397. const sqlParam = [
  398. this.tableName,
  399. tenderId,
  400. this.ctx.session.sessionUser.accountId,
  401. audit.flow.status.uncheck,
  402. this.ctx.service.changeAudit.tableName,
  403. this.ctx.session.sessionUser.accountId,
  404. audit.flow.status.checked,
  405. ];
  406. const result = await this.db.query(sql, sqlParam);
  407. return result[0].total_price ? result[0].total_price : 0;
  408. case 1: // 待处理(你的)
  409. const sql6 = 'SELECT SUM(cast (a.total_price as decimal(18,6))) AS total_price FROM ?? as a WHERE cid in(SELECT b.cid FROM ?? as b WHERE tid = ? AND uid = ? AND status = ?)';
  410. const sqlParam6 = [this.tableName, this.ctx.service.changeAudit.tableName, tenderId, this.ctx.session.sessionUser.accountId, audit.flow.auditStatus.checking];
  411. const result6 = await this.db.query(sql6, sqlParam6);
  412. return result6[0].total_price ? result6[0].total_price : 0;
  413. case 5: // 待上报(所有的)PS:取未上报,退回,修订的变更令
  414. const sql2 =
  415. 'SELECT SUM(cast (a.total_price as decimal(18,6))) AS total_price FROM ?? AS a WHERE ' +
  416. 'a.cid IN (SELECT b.cid FROM ?? AS b WHERE b.uid = ? AND a.times = b.times GROUP BY b.cid) ' +
  417. 'AND (a.status = ? OR a.status = ? OR a.status = ?) AND a.tid = ?';
  418. const sqlParam2 = [
  419. this.tableName,
  420. this.ctx.service.changeAudit.tableName,
  421. this.ctx.session.sessionUser.accountId,
  422. audit.flow.status.uncheck,
  423. audit.flow.status.back,
  424. audit.flow.status.revise,
  425. tenderId,
  426. ];
  427. const result2 = await this.db.query(sql2, sqlParam2);
  428. return result2[0].total_price ? result2[0].total_price : 0;
  429. case 2: // 进行中(所有的)
  430. case 4: // 终止(所有的)
  431. const sql3 =
  432. 'SELECT SUM(cast (a.total_price as decimal(18,6))) AS total_price FROM ?? AS a WHERE ' +
  433. 'a.cid IN (SELECT b.cid FROM ?? AS b WHERE b.uid = ? AND a.times = b.times GROUP BY b.cid) AND a.status = ? AND a.tid = ?';
  434. const sqlParam3 = [this.tableName, this.ctx.service.changeAudit.tableName, this.ctx.session.sessionUser.accountId, status, tenderId];
  435. const result3 = await this.db.query(sql3, sqlParam3);
  436. return result3[0].total_price ? result3[0].total_price : 0;
  437. case 3: // 已完成(所有的)
  438. const sql4 = 'SELECT SUM(cast (total_price as decimal(18,6))) AS total_price FROM ?? WHERE status = ? AND tid = ?';
  439. const sqlParam4 = [this.tableName, status, tenderId];
  440. const result4 = await this.db.query(sql4, sqlParam4);
  441. return result4[0].total_price ? result4[0].total_price : 0;
  442. default:
  443. break;
  444. }
  445. }
  446. /**
  447. * 获取变更令个数
  448. * @param {int} tenderId - 标段id
  449. * @param {int} quality - 变更性质
  450. * @return {void}
  451. */
  452. async getCountByQuality(tenderId, quality) {
  453. return await this.db.count(this.tableName, { tid: tenderId, quality });
  454. }
  455. /**
  456. * 获取变更令个数
  457. * @param {int} tenderId - 标段id
  458. * @param {int} status - 状态
  459. * @return {void}
  460. */
  461. async getCountByStatus2(tenderId, status) {
  462. if (status === audit.filter.status.uncheck) {
  463. const sql =
  464. 'SELECT count(*) AS count FROM ?? WHERE ' +
  465. 'tid = ? AND (status = ? OR status = ? OR status = ?)';
  466. const sqlParam = [
  467. this.tableName,
  468. tenderId,
  469. audit.flow.status.uncheck,
  470. audit.flow.status.back,
  471. audit.flow.status.revise,
  472. ];
  473. const result = await this.db.queryOne(sql, sqlParam);
  474. return result ? result.count : 0;
  475. }
  476. return await this.db.count(this.tableName, { tid: tenderId, status });
  477. }
  478. /**
  479. * 获取已批复变更令的总金额
  480. * @param {int} tenderId - 标段id
  481. * @param {int} quality - 变更性质
  482. * @return {void}
  483. */
  484. async getChangeTp(tenderId) {
  485. const sql = 'SELECT SUM(`total_price`) AS tp, SUM(`positive_tp`) AS p_tp, SUM(`negative_tp`) AS n_tp FROM ?? WHERE tid = ? AND status = ?';
  486. const sqlParam = [this.tableName, tenderId, audit.flow.status.checked];
  487. const result = await this.db.queryOne(sql, sqlParam);
  488. return result ? [result.tp, result.p_tp, result.n_tp] : [0, 0, 0];
  489. }
  490. /**
  491. * 上报或重新上报或保存修改功能
  492. * @param {int} postData - 表单提交的数据
  493. * @param {int} tenderId - 标段id
  494. * @return {void}
  495. */
  496. async save(postData, tenderId) {
  497. // 初始化事务
  498. this.transaction = await this.db.beginTransaction();
  499. let result = false;
  500. try {
  501. // 变更令信息
  502. const changeInfo = await this.getDataByCondition({ cid: postData.cid });
  503. // 该变更令原报人信息
  504. const lastUser = await this.ctx.service.changeAudit.getLastUser(changeInfo.cid, changeInfo.times, 0);
  505. // 先删除本次原有的变更审批人和清单
  506. await this.ctx.service.changeAudit.deleteAuditData(this.transaction, changeInfo.cid, changeInfo.times);
  507. await this.transaction.delete(this.ctx.service.changeAuditList.tableName, { cid: changeInfo.cid });
  508. let change_status = false;
  509. // 获取变更令提交状态
  510. if (postData.changestatus !== undefined && parseInt(postData.changestatus) === 1) {
  511. change_status = true;
  512. // 更新原报人审批状态
  513. await this.transaction.update(this.ctx.service.changeAudit.tableName, {
  514. id: lastUser.id,
  515. status: audit.flow.auditStatus.checked,
  516. sin_time: new Date(),
  517. });
  518. }
  519. // 再插入postData里的变更审批人和清单
  520. if (postData.changeaudit !== undefined && postData.changeaudit !== '') {
  521. const changeAudit = postData.changeaudit.split(',');
  522. const insertCA = [];
  523. let uSite = 1;
  524. let uSort = parseInt(lastUser.usort) + 1;
  525. for (const [index, ca] of changeAudit.entries()) {
  526. const auditInfo = ca.split('/%/');
  527. const uStatus = change_status && index === 0 ? audit.flow.auditStatus.checking : audit.flow.auditStatus.uncheck;
  528. const sin_time = change_status && index === 0 ? new Date() : null;
  529. const caArray = {
  530. tid: tenderId,
  531. cid: changeInfo.cid,
  532. uid: auditInfo[0],
  533. name: auditInfo[1],
  534. jobs: auditInfo[2],
  535. company: auditInfo[3],
  536. times: changeInfo.times,
  537. usite: uSite,
  538. usort: uSort,
  539. status: uStatus,
  540. sin_time,
  541. };
  542. uSite++;
  543. uSort++;
  544. insertCA.push(caArray);
  545. // 添加短信通知-需要审批提醒功能
  546. if (change_status && index === 0) {
  547. const sms = new SMS(this.ctx);
  548. const code = await sms.contentChange(changeInfo.code);
  549. const shenpiUrl = await this.ctx.helper.urlToShort(
  550. this.ctx.protocol + '://' + this.ctx.host + '/wap/tender/' + changeInfo.tid + '/change/' + changeInfo.cid + '/information#shenpi'
  551. );
  552. await this.ctx.helper.sendAliSms(auditInfo[0], smsTypeConst.const.BG, smsTypeConst.judge.approval.toString(), SmsAliConst.template.change_check, {
  553. biangeng: code,
  554. code: shenpiUrl,
  555. });
  556. // 微信模板通知
  557. const wechatData = {
  558. wap_url: shenpiUrl,
  559. status: wxConst.status.check,
  560. tips: wxConst.tips.check,
  561. code: this.ctx.session.sessionProject.code,
  562. c_name: changeInfo.name,
  563. };
  564. await this.ctx.helper.sendWechat(auditInfo[0], smsTypeConst.const.BG, smsTypeConst.judge.approval.toString(), wxConst.template.change, wechatData);
  565. }
  566. }
  567. await this.transaction.insert(this.ctx.service.changeAudit.tableName, insertCA);
  568. }
  569. let changeList = [];
  570. if (postData.changelist !== undefined && postData.changelist !== '') {
  571. changeList = postData.changelist.split('^_^');
  572. }
  573. let changeWhiteList = [];
  574. if (postData.changewhitelist !== undefined && postData.changewhitelist !== '') {
  575. changeWhiteList = postData.changewhitelist.split('^_^');
  576. }
  577. changeList.push.apply(changeList, changeWhiteList);
  578. const insertCL = [];
  579. let total_price = 0;
  580. if (changeList.length > 0) {
  581. for (const cl of changeList) {
  582. const clInfo = cl.split('*;*');
  583. const clArray = {
  584. tid: tenderId,
  585. cid: changeInfo.cid,
  586. lid: clInfo[8],
  587. code: clInfo[0],
  588. name: clInfo[1],
  589. bwmx: clInfo[2],
  590. unit: clInfo[3],
  591. unit_price: clInfo[4],
  592. oamount: clInfo[5],
  593. camount: clInfo[6],
  594. samount: '',
  595. detail: clInfo[7],
  596. spamount: clInfo[6],
  597. xmj_code: clInfo[9] !== '' ? clInfo[9] : null,
  598. xmj_jldy: clInfo[10] !== '' ? clInfo[10] : null,
  599. gcl_id: clInfo[11] !== '' ? clInfo[11] : '',
  600. };
  601. if (clInfo[4] === '') {
  602. delete clArray.unit_price;
  603. }
  604. insertCL.push(clArray);
  605. total_price = this.ctx.helper.accAdd(total_price, this.ctx.helper.mul(clArray.unit_price, clArray.spamount, this.ctx.tender.info.decimal.tp));
  606. }
  607. await this.transaction.insert(this.ctx.service.changeAuditList.tableName, insertCL);
  608. }
  609. // 修改变更令基本数据
  610. const cArray = {
  611. code: postData.code,
  612. name: postData.name,
  613. peg: postData.peg,
  614. org_name: postData.org_name,
  615. org_code: postData.org_code,
  616. new_name: postData.new_name,
  617. new_code: postData.new_code,
  618. content: postData.content,
  619. basis: postData.basis,
  620. expr: postData.expr,
  621. memo: postData.memo,
  622. type: postData.type.join(','),
  623. class: postData.class,
  624. quality: postData.quality,
  625. company: postData.company,
  626. charge: postData.charge,
  627. w_code: postData.w_code,
  628. total_price,
  629. // tp_decimal: this.ctx.tender.info.decimal.tp,
  630. };
  631. const options = {
  632. where: {
  633. cid: changeInfo.cid,
  634. },
  635. };
  636. if (change_status) {
  637. cArray.tp_decimal = this.ctx.tender.info.decimal.tp;
  638. cArray.up_decimal = this.ctx.tender.info.decimal.up;
  639. cArray.status = audit.flow.status.checking;
  640. cArray.cin_time = Date.parse(new Date()) / 1000;
  641. }
  642. await this.transaction.update(this.tableName, cArray, options);
  643. await this.transaction.commit();
  644. result = true;
  645. } catch (error) {
  646. await this.transaction.rollback();
  647. result = false;
  648. }
  649. return result;
  650. }
  651. /**
  652. * 保存变更信息
  653. * @param {int} postData - 表单提交的数据
  654. * @param {int} tenderId - 标段id
  655. * @return {void}
  656. */
  657. async saveInfo(postData, delimit = 100) {
  658. // 初始化事务
  659. const transaction = await this.db.beginTransaction();
  660. let result = false;
  661. try {
  662. result = {};
  663. const options = {
  664. where: {
  665. cid: this.ctx.change.cid,
  666. },
  667. };
  668. if (postData.state && parseInt(postData.state) !== this.ctx.change.state) {
  669. // 变更清单需要同步设置计量上限值
  670. // 判断是否存在已调用清单,并判断新上限值是否比它小,更新计量上限值
  671. const changeList = await this.ctx.service.changeAuditList.getList(this.ctx.change.cid);
  672. // 获取是否已存在调用变更令
  673. let changeUsedData = await this.ctx.service.stageChange.getFinalUsedData(this.ctx.tender.id, this.ctx.change.cid);
  674. changeUsedData = this._.orderBy(this._.filter(changeUsedData, function(item) {
  675. return item.qty !== null;
  676. }), ['sorder'], ['desc']);
  677. const useChangeUsedData = [];
  678. if (changeUsedData.length > 0) { // 防止未创建期时调用
  679. for (const cu of changeUsedData) {
  680. const index = this._.findIndex(useChangeUsedData, { cbid: cu.cbid });
  681. if (index !== -1) {
  682. useChangeUsedData[index].qty = this.ctx.helper.add(useChangeUsedData[index].qty, cu.qty);
  683. } else {
  684. useChangeUsedData.push(cu);
  685. }
  686. }
  687. }
  688. const updateList = [];
  689. for (const cl of changeList) {
  690. const one = {
  691. id: cl.id,
  692. };
  693. if (useChangeUsedData.length > 0 && this._.findIndex(useChangeUsedData, { cbid: cl.id }) !== -1) {
  694. // 获取比例值
  695. const uc = this._.find(useChangeUsedData, { cbid: cl.id });
  696. const minLimit = Math.ceil(this.ctx.helper.div(uc.qty, cl.camount) * 100);
  697. if (minLimit < delimit) {
  698. one.delimit = delimit;
  699. cl.delimit = delimit;
  700. }
  701. } else if (cl.delimit !== delimit) {
  702. one.delimit = delimit;
  703. cl.delimit = delimit;
  704. }
  705. if (!this._.isEqual(one, { id: cl.id })) updateList.push(one);
  706. }
  707. if (updateList.length > 0) await transaction.updateRows(this.ctx.service.changeAuditList.tableName, updateList);
  708. result.changeList = changeList;
  709. result.deLimit = delimit;
  710. if (this.ctx.change.delimit !== delimit) postData.delimit = delimit;
  711. }
  712. await transaction.update(this.tableName, postData, options);
  713. await transaction.commit();
  714. result.msg = '保存成功';
  715. } catch (error) {
  716. await transaction.rollback();
  717. result = false;
  718. }
  719. return result;
  720. }
  721. /**
  722. * 保存变更信息
  723. * @param {int} order_by - 表单提交的数据
  724. * @return {void}
  725. */
  726. async saveOrderBy(order_by, newLedgerList = []) {
  727. const transaction = await this.db.beginTransaction();
  728. let result = [];
  729. try {
  730. const postData = { order_by };
  731. let changeList = await this.ctx.service.changeAuditList.getList(this.ctx.change.cid);
  732. if (order_by) {
  733. let i = 1;
  734. const updateArray = [];
  735. for (const cl of changeList) {
  736. updateArray.push({
  737. id: cl.id,
  738. order: i,
  739. });
  740. cl.order = i;
  741. i++;
  742. }
  743. if (updateArray.length > 0) await transaction.updateRows(this.ctx.service.changeAuditList.tableName, updateArray);
  744. } else {
  745. await this.ctx.service.changeAuditList.saveLedgerListDatas(newLedgerList, null, order_by);
  746. changeList = await this.ctx.service.changeAuditList.getList(this.ctx.change.cid, order_by);
  747. }
  748. const options = {
  749. where: {
  750. cid: this.ctx.change.cid,
  751. },
  752. };
  753. await transaction.update(this.tableName, postData, options);
  754. await transaction.commit();
  755. result = changeList;
  756. } catch (error) {
  757. await transaction.rollback();
  758. result = false;
  759. }
  760. return result;
  761. }
  762. /**
  763. * 审批通过
  764. * @param {Number} pid 项目id
  765. * @param {int} postData - 表单提交的数据
  766. * @param {int} changeData - 变更令的数据
  767. * @return {void}
  768. */
  769. async approvalSuccess(pid, postData, changeData) {
  770. // 初始化事务
  771. this.transaction = await this.db.beginTransaction();
  772. let result = false;
  773. try {
  774. // 获取所有审核人列表
  775. const auditors = await this.ctx.service.changeAudit.getAllAuditors(changeData.tid);
  776. // console.log('auditors', auditors);
  777. // console.log('postData', postData);
  778. // 添加到消息推送表
  779. const noticeContent = await this.getNoticeContent(pid, changeData.tid, changeData.cid, this.ctx.session.sessionUser.accountId, postData.sdesc);
  780. const records = [];
  781. auditors.forEach(auditor => {
  782. records.push({
  783. pid,
  784. type: pushType.change,
  785. uid: auditor.uid,
  786. status: audit.flow.status.checked,
  787. content: noticeContent,
  788. });
  789. });
  790. await this.transaction.insert('zh_notice', records);
  791. // 设置审批人通过
  792. const audit_update = {
  793. id: postData.audit_id,
  794. sdesc: postData.sdesc,
  795. status: audit.flow.auditStatus.checked,
  796. sin_time: new Date(),
  797. };
  798. const change_update = {
  799. w_code: postData.w_code,
  800. status: audit.flow.status.checking,
  801. cin_time: Date.parse(new Date()) / 1000,
  802. };
  803. await this.transaction.update(this.ctx.service.changeAudit.tableName, audit_update);
  804. // 清单数据更新
  805. const bills_list = postData.bills_list.split(',');
  806. let total_price = 0;
  807. const tp_decimal = changeData.tp_decimal ? changeData.tp_decimal : this.ctx.tender.info.decimal.tp;
  808. for (const bl of bills_list) {
  809. const listInfo = bl.split('_');
  810. const lid = listInfo[0];
  811. const amount = listInfo[1] !== 'null' && listInfo[1] !== '' ? listInfo[1] : null;
  812. const changeListInfo = await this.ctx.service.changeAuditList.getDataById(lid);
  813. if (changeListInfo !== undefined) {
  814. total_price = this.ctx.helper.add(total_price, this.ctx.helper.mul(changeListInfo.unit_price, amount, tp_decimal));
  815. const audit_amount = changeListInfo.audit_amount !== null && changeListInfo.audit_amount !== '' ? changeListInfo.audit_amount.split(',') : [];
  816. audit_amount.push(amount);
  817. const list_update = {
  818. id: lid,
  819. audit_amount: audit_amount.join(','),
  820. spamount: amount !== null ? parseFloat(amount) : null,
  821. };
  822. if (postData.audit_next_id === undefined) {
  823. list_update.samount = amount !== null ? amount : '';
  824. }
  825. await this.transaction.update(this.ctx.service.changeAuditList.tableName, list_update);
  826. }
  827. }
  828. if (postData.audit_next_id === undefined) {
  829. // 变更令审批完成
  830. change_update.status = audit.flow.status.checked;
  831. change_update.p_code = postData.p_code;
  832. change_update.sin_time = Date.parse(new Date()) / 1000;
  833. change_update.is_revise = 0;
  834. await this.ctx.service.tenderTag.saveTenderTag(changeData.tid, { bgl_time: new Date() }, this.transaction);
  835. await this.ctx.service.changeAuditList.updateToLedger(this.transaction, changeData.tid, changeData.cid);
  836. // 添加短信通知-审批通过提醒功能
  837. // const mobile_array = [];
  838. const auditList = await this.ctx.service.changeAudit.getListGroupByTimes(changeData.cid, changeData.times);
  839. const users = this._.map(auditList, 'uid');
  840. const sms = new SMS(this.ctx);
  841. const code = await sms.contentChange(changeData.code);
  842. await this.ctx.helper.sendAliSms(users, smsTypeConst.const.BG, smsTypeConst.judge.result.toString(), SmsAliConst.template.change_result, {
  843. biangeng: code,
  844. status: SmsAliConst.status.success,
  845. });
  846. // 微信模板通知
  847. const shenpiUrl = await this.ctx.helper.urlToShort(
  848. this.ctx.protocol + '://' + this.ctx.host + '/wap/tender/' + changeData.tid + '/change/' + changeData.cid + '/information#shenpi'
  849. );
  850. const wechatData = {
  851. wap_url: shenpiUrl,
  852. status: wxConst.status.success,
  853. tips: wxConst.tips.success,
  854. code: this.ctx.session.sessionProject.code,
  855. c_name: changeData.name,
  856. };
  857. await this.ctx.helper.sendWechat(users, smsTypeConst.const.BG, smsTypeConst.judge.result.toString(), wxConst.template.change, wechatData);
  858. } else {
  859. // 设置下一个审批人为审批状态
  860. const nextAudit_update = {
  861. id: postData.audit_next_id,
  862. status: audit.flow.auditStatus.checking,
  863. sin_time: new Date(),
  864. };
  865. await this.transaction.update(this.ctx.service.changeAudit.tableName, nextAudit_update);
  866. // 添加短信通知-需要审批提醒功能
  867. const nextAuditData = await this.ctx.service.changeAudit.getDataById(postData.audit_next_id);
  868. const sms = new SMS(this.ctx);
  869. const code = await sms.contentChange(changeData.code);
  870. const shenpiUrl = await this.ctx.helper.urlToShort(
  871. this.ctx.protocol + '://' + this.ctx.host + '/wap/tender/' + changeData.tid + '/change/' + changeData.cid + '/information#shenpi'
  872. );
  873. await this.ctx.helper.sendAliSms(nextAuditData.uid, smsTypeConst.const.BG, smsTypeConst.judge.approval.toString(), SmsAliConst.template.change_check, {
  874. biangeng: code,
  875. code: shenpiUrl,
  876. });
  877. // 微信模板通知
  878. const wechatData = {
  879. wap_url: shenpiUrl,
  880. status: wxConst.status.check,
  881. tips: wxConst.tips.check,
  882. code: this.ctx.session.sessionProject.code,
  883. c_name: changeData.name,
  884. };
  885. await this.ctx.helper.sendWechat(nextAuditData.uid, smsTypeConst.const.BG, smsTypeConst.judge.approval.toString(), wxConst.template.change, wechatData);
  886. }
  887. change_update.total_price = total_price;
  888. const options = {
  889. where: {
  890. cid: postData.change_id,
  891. },
  892. };
  893. await this.transaction.update(this.tableName, change_update, options);
  894. await this.transaction.commit();
  895. result = true;
  896. } catch (error) {
  897. console.log(error);
  898. await this.transaction.rollback();
  899. result = false;
  900. }
  901. return result;
  902. }
  903. /**
  904. * 审批终止
  905. * @param {int} postData - 表单提交的数据
  906. * @return {void}
  907. */
  908. async approvalStop(postData) {
  909. // 初始化事务
  910. this.transaction = await this.db.beginTransaction();
  911. let result = false;
  912. try {
  913. // 设置审批人终止
  914. const audit_update = {
  915. id: postData.audit_id,
  916. sdesc: postData.sdesc,
  917. status: 4,
  918. sin_time: new Date(),
  919. };
  920. await this.transaction.update(this.ctx.service.changeAudit.tableName, audit_update);
  921. // 设置变更令终止
  922. const change_update = {
  923. w_code: postData.w_code,
  924. status: 4,
  925. cin_time: Date.parse(new Date()) / 1000,
  926. };
  927. const options = {
  928. where: {
  929. cid: postData.change_id,
  930. },
  931. };
  932. await this.transaction.update(this.tableName, change_update, options);
  933. await this.transaction.commit();
  934. result = true;
  935. } catch (error) {
  936. await this.transaction.rollback();
  937. result = false;
  938. }
  939. return result;
  940. }
  941. /**
  942. * 审批退回到原报人
  943. * @param {Number} pid 项目id
  944. * @param {int} postData - 表单提交的数据
  945. * @param {int} changeData - 变更令的数据
  946. * @return {void}
  947. */
  948. async approvalBack(pid, postData, changeData) {
  949. // 初始化事务
  950. this.transaction = await this.db.beginTransaction();
  951. let result = false;
  952. try {
  953. // 获取所有审核人列表
  954. const auditors = await this.ctx.service.changeAudit.getAllAuditors(changeData.tid);
  955. // 添加到消息推送表
  956. const noticeContent = await this.getNoticeContent(pid, changeData.tid, changeData.cid, this.ctx.session.sessionUser.accountId, postData.sdesc);
  957. const records = [];
  958. auditors.forEach(auditor => {
  959. records.push({
  960. pid,
  961. type: pushType.change,
  962. uid: auditor.uid,
  963. status: audit.flow.status.backnew,
  964. content: noticeContent,
  965. });
  966. });
  967. await this.transaction.insert('zh_notice', records);
  968. const changeInfo = await this.getDataByCondition({ cid: postData.change_id });
  969. // 设置审批人退回
  970. const audit_update = {
  971. id: postData.audit_id,
  972. sdesc: postData.sdesc,
  973. status: audit.flow.auditStatus.back,
  974. sin_time: new Date(),
  975. };
  976. await this.transaction.update(this.ctx.service.changeAudit.tableName, audit_update);
  977. // 新增新一次的审批人列表
  978. // 获取当前次数审批人列表
  979. const auditList = await this.ctx.service.changeAudit.getListGroupByTimes(changeInfo.cid, changeInfo.times);
  980. const lastauditInfo = await this.ctx.service.changeAudit.getLastUser(changeInfo.cid, changeInfo.times, 1, 0);
  981. let usort = lastauditInfo.usort + 1;
  982. const newTimes = changeInfo.times + 1;
  983. const insert_audit_array = [];
  984. for (const al of auditList) {
  985. const insert_audit = {
  986. tid: al.tid,
  987. cid: al.cid,
  988. uid: al.uid,
  989. name: al.name,
  990. jobs: al.jobs,
  991. company: al.company,
  992. times: newTimes,
  993. usite: al.usite,
  994. usort,
  995. status: al.usite !== 0 ? audit.flow.auditStatus.uncheck : audit.flow.auditStatus.checking,
  996. };
  997. insert_audit_array.push(insert_audit);
  998. usort++;
  999. }
  1000. await this.transaction.insert(this.ctx.service.changeAudit.tableName, insert_audit_array);
  1001. // 变更金额也退回
  1002. const changeList = await this.ctx.service.changeAuditList.getAllDataByCondition({
  1003. where: { cid: changeInfo.cid },
  1004. });
  1005. let total_price = 0;
  1006. const tp_decimal = changeData.tp_decimal ? changeData.tp_decimal : this.ctx.tender.info.decimal.tp;
  1007. for (const cl of changeList) {
  1008. total_price = this.ctx.helper.add(total_price, this.ctx.helper.mul(cl.unit_price, cl.camount, tp_decimal));
  1009. }
  1010. // 设置变更令退回
  1011. const change_update = {
  1012. w_code: postData.w_code,
  1013. status: audit.flow.status.back,
  1014. times: newTimes,
  1015. cin_time: Date.parse(new Date()) / 1000,
  1016. total_price,
  1017. tp_decimal: null,
  1018. up_decimal: null,
  1019. };
  1020. const options = {
  1021. where: {
  1022. cid: postData.change_id,
  1023. },
  1024. };
  1025. await this.transaction.update(this.tableName, change_update, options);
  1026. await this.transaction.commit();
  1027. result = true;
  1028. const users = this._.map(insert_audit_array, 'uid');
  1029. const sms = new SMS(this.ctx);
  1030. const code = await sms.contentChange(changeData.code);
  1031. await this.ctx.helper.sendAliSms(users, smsTypeConst.const.BG, smsTypeConst.judge.result.toString(), SmsAliConst.template.change_result, {
  1032. biangeng: code,
  1033. status: SmsAliConst.status.back,
  1034. });
  1035. // 微信模板通知
  1036. const shenpiUrl = await this.ctx.helper.urlToShort(
  1037. this.ctx.protocol + '://' + this.ctx.host + '/wap/tender/' + changeInfo.tid + '/change/' + changeInfo.cid + '/information#shenpi'
  1038. );
  1039. const wechatData = {
  1040. wap_url: shenpiUrl,
  1041. status: wxConst.status.back,
  1042. tips: wxConst.tips.back,
  1043. code: this.ctx.session.sessionProject.code,
  1044. c_name: changeInfo.name,
  1045. };
  1046. await this.ctx.helper.sendWechat(users, smsTypeConst.const.BG, smsTypeConst.judge.result.toString(), wxConst.template.change, wechatData);
  1047. } catch (error) {
  1048. await this.transaction.rollback();
  1049. result = false;
  1050. }
  1051. return result;
  1052. }
  1053. /**
  1054. * 审批退回到上一个审批人
  1055. * @param {Number} pid 项目id
  1056. * @param {int} postData - 表单提交的数据
  1057. * @param {int} changeData - 变更令的数据
  1058. * @return {void}
  1059. */
  1060. async approvalBackNew(pid, postData, changeData) {
  1061. // 初始化事务
  1062. this.transaction = await this.db.beginTransaction();
  1063. let result = false;
  1064. try {
  1065. // 获取所有审核人列表
  1066. const auditors = await this.ctx.service.changeAudit.getAllAuditors(changeData.tid);
  1067. // 添加到消息推送表
  1068. const noticeContent = await this.getNoticeContent(pid, changeData.tid, changeData.cid, this.ctx.session.sessionUser.accountId, postData.sdesc);
  1069. const records = [];
  1070. auditors.forEach(auditor => {
  1071. records.push({
  1072. pid,
  1073. type: pushType.change,
  1074. uid: auditor.uid,
  1075. status: audit.flow.status.back,
  1076. content: noticeContent,
  1077. });
  1078. });
  1079. await this.transaction.insert('zh_notice', records);
  1080. const changeInfo = await this.getDataByCondition({ cid: postData.change_id });
  1081. // 设置审批人退回
  1082. const audit_update = {
  1083. id: postData.audit_id,
  1084. sdesc: postData.sdesc,
  1085. status: audit.flow.auditStatus.backnew,
  1086. sin_time: new Date(),
  1087. };
  1088. await this.transaction.update(this.ctx.service.changeAudit.tableName, audit_update);
  1089. // 获取当前审批人信息
  1090. const auditInfo = await this.ctx.service.changeAudit.getDataById(postData.audit_id);
  1091. // 获取当前次数审批人列表
  1092. const auditList = await this.ctx.service.changeAudit.getNextAuditList(changeInfo.cid, auditInfo.usort);
  1093. let usort = auditInfo.usort + 1;
  1094. // 获取上一个审批人信息
  1095. const lastauditInfo = await this.ctx.service.changeAudit.getDataById(postData.audit_last_id);
  1096. // 新增2个审批人到审批列表中
  1097. const insert_audit1 = {
  1098. tid: lastauditInfo.tid,
  1099. cid: lastauditInfo.cid,
  1100. uid: lastauditInfo.uid,
  1101. name: lastauditInfo.name,
  1102. jobs: lastauditInfo.jobs,
  1103. company: lastauditInfo.company,
  1104. times: lastauditInfo.times,
  1105. usite: lastauditInfo.usite,
  1106. usort,
  1107. status: audit.flow.auditStatus.checking,
  1108. sin_time: new Date(),
  1109. };
  1110. await this.transaction.insert(this.ctx.service.changeAudit.tableName, insert_audit1);
  1111. usort++;
  1112. // 新增2个审批人到审批列表中
  1113. const insert_audit2 = {
  1114. tid: auditInfo.tid,
  1115. cid: auditInfo.cid,
  1116. uid: auditInfo.uid,
  1117. name: auditInfo.name,
  1118. jobs: auditInfo.jobs,
  1119. company: auditInfo.company,
  1120. times: auditInfo.times,
  1121. usite: auditInfo.usite,
  1122. usort,
  1123. status: audit.flow.auditStatus.uncheck,
  1124. };
  1125. await this.transaction.insert(this.ctx.service.changeAudit.tableName, insert_audit2);
  1126. // 把接下未审批的审批人排序都加2
  1127. for (const al of auditList) {
  1128. const audit_update = {
  1129. id: al.id,
  1130. usort: al.usort + 2,
  1131. };
  1132. await this.transaction.update(this.ctx.service.changeAudit.tableName, audit_update);
  1133. }
  1134. // 审批列表数据也要回退
  1135. const changeList = await this.ctx.service.changeAuditList.getAllDataByCondition({
  1136. where: { cid: changeInfo.cid },
  1137. });
  1138. let total_price = 0;
  1139. const tp_decimal = changeData.tp_decimal ? changeData.tp_decimal : this.ctx.tender.info.decimal.tp;
  1140. for (const cl of changeList) {
  1141. const audit_amount = cl.audit_amount.split(',');
  1142. const last_amount = audit_amount[audit_amount.length - 1];
  1143. audit_amount.splice(-1, 1);
  1144. const list_update = {
  1145. id: cl.id,
  1146. audit_amount: audit_amount.join(','),
  1147. spamount: parseFloat(last_amount),
  1148. };
  1149. total_price = this.ctx.helper.add(total_price, this.ctx.helper.mul(cl.unit_price, parseFloat(last_amount), tp_decimal));
  1150. await this.transaction.update(this.ctx.service.changeAuditList.tableName, list_update);
  1151. }
  1152. // 设置变更令退回
  1153. const change_update = {
  1154. w_code: postData.w_code,
  1155. status: audit.flow.status.backnew,
  1156. cin_time: Date.parse(new Date()) / 1000,
  1157. total_price,
  1158. };
  1159. const options = {
  1160. where: {
  1161. cid: postData.change_id,
  1162. },
  1163. };
  1164. await this.transaction.update(this.tableName, change_update, options);
  1165. await this.transaction.commit();
  1166. result = true;
  1167. const sms = new SMS(this.ctx);
  1168. const code = await sms.contentChange(changeData.code);
  1169. const shenpiUrl = await this.ctx.helper.urlToShort(
  1170. this.ctx.protocol + '://' + this.ctx.host + '/wap/tender/' + changeData.tid + '/change/' + changeData.cid + '/information#shenpi'
  1171. );
  1172. await this.ctx.helper.sendAliSms(lastauditInfo.uid, smsTypeConst.const.BG, smsTypeConst.judge.approval.toString(), SmsAliConst.template.change_check, {
  1173. biangeng: code,
  1174. code: shenpiUrl,
  1175. });
  1176. // 微信模板通知
  1177. const wechatData = {
  1178. wap_url: shenpiUrl,
  1179. status: wxConst.status.check,
  1180. tips: wxConst.tips.check,
  1181. code: this.ctx.session.sessionProject.code,
  1182. c_name: changeInfo.name,
  1183. };
  1184. await this.ctx.helper.sendWechat(lastauditInfo.uid, smsTypeConst.const.BG, smsTypeConst.judge.approval.toString(), wxConst.template.change, wechatData);
  1185. } catch (error) {
  1186. await this.transaction.rollback();
  1187. result = false;
  1188. }
  1189. return result;
  1190. }
  1191. /**
  1192. * 查询可用的变更令
  1193. * @param bills - 查询的清单
  1194. * @param pos - 查询的部位
  1195. * @return {Promise<*>} - 可用的变更令列表
  1196. */
  1197. async getValidChanges(tender, stage, data, minusNoValue) {
  1198. const bills = data.bills, pos = data.pos;
  1199. const self = this;
  1200. const getFilterPart = function(field, value) {
  1201. return value
  1202. ? field + ' = ' + self.db.escape(value)
  1203. : self.db.format("(?? = null or ?? = '')", [field, field]);
  1204. };
  1205. let filter = getFilterPart('cb.code', bills.b_code) +
  1206. ' And ' + getFilterPart('cb.name', bills.name) +
  1207. ' And ' + getFilterPart('cb.unit', bills.unit) +
  1208. ' And cb.`unit_price` = ' + this.db.escape(bills.unit_price);
  1209. // if (data.pos) filter = filter + ' And ' + getFilterPart('cb.bwmx', pos.name);
  1210. const sql =
  1211. 'SELECT c.cid, c.code, c.name, c.w_code, c.p_code, c.peg, c.org_name, c.org_code, c.new_name, c.new_code,' +
  1212. ' c.content, c.basis, c.memo, c.type, c.class, c.quality, c.company, c.charge, ' +
  1213. ' cb.id As cbid, cb.code As b_code, cb.name As b_name, cb.unit As b_unit, cb.samount As b_amount, cb.detail As b_detail, cb.bwmx As b_bwmx, cb.gcl_id, ' +
  1214. ' scb.used_amount' +
  1215. ' FROM ' + this.tableName + ' As c ' +
  1216. ' Left Join ' + this.ctx.service.changeAuditList.tableName + ' As cb On c.cid = cb.cid ' +
  1217. ' Left Join (' +
  1218. ' SELECT SUM(qty) As used_amount, cbid' +
  1219. ' FROM ' + this.ctx.service.stageChangeFinal.tableName +
  1220. ' WHERE tid = ? and sorder < ?' +
  1221. ' GROUP BY cbid' +
  1222. ' ) As scb ON cb.id = scb.cbid' +
  1223. ' WHERE c.tid = ? And c.status = ? And c.valid And ' + filter +
  1224. ' ORDER BY c.in_time';
  1225. const sqlParam = [tender.id, stage.order, tender.id, audit.flow.status.checked];
  1226. let changes = await this.db.query(sql, sqlParam);
  1227. if (minusNoValue) {
  1228. if (data.minus) {
  1229. changes = changes.filter(c => {
  1230. c.bamount = c.b_amount ? parseFloat(c.b_amount) : 0;
  1231. return c.bamount < 0;
  1232. });
  1233. } else {
  1234. changes = changes.filter(c => {
  1235. c.bamount = c.b_amount ? parseFloat(c.b_amount) : 0;
  1236. return c.bamount >= 0;
  1237. });
  1238. }
  1239. }
  1240. for (const c of changes) {
  1241. let sSql = 'SELECT * FROM ' + this.ctx.service.stageChange.tableName + ' WHERE sid = ? and cbid = ?';
  1242. const sSqlParam = [stage.id, c.cbid];
  1243. if (stage.readOnly) {
  1244. sSql = sSql + ' and (stimes < ? or (stimes = ? and sorder <= ?))';
  1245. sSqlParam.push(stage.curTimes, stage.curTimes, stage.curOrder);
  1246. }
  1247. const stageUsedData = await this.db.query(sSql, sSqlParam);
  1248. const filter = this.ctx.helper.filterLastestData(stageUsedData, ['pid', 'lid', 'no_value'], 'stimes', 'sorder');
  1249. c.stage_used_amount = this.ctx.helper.sum(filter.map(x => { return x.qty }));
  1250. const aSql = 'SELECT ca.*, pa.name As u_name, pa.role As u_role ' +
  1251. ' FROM ?? As ca ' +
  1252. ' Left Join ?? As pa ' +
  1253. ' On ca.uid = pa.id ' +
  1254. ' Where ca.cid = ?';
  1255. const aSqlParam = [this.ctx.service.changeAtt.tableName, this.ctx.service.projectAccount.tableName, c.cid];
  1256. c.attachments = await this.db.query(aSql, aSqlParam);
  1257. }
  1258. return changes;
  1259. }
  1260. /**
  1261. * 查询变更令 + 变更令执行
  1262. * @param tid
  1263. * @return {Promise<void>}
  1264. */
  1265. async getChangeAndUsedInfo(tid) {
  1266. const lastStage = await this.ctx.service.stage.getLastestStage(tid, true);
  1267. let filter;
  1268. if (lastStage.id === this.ctx.stage.id) {
  1269. filter = this.db.format(' And (s.`order` < ? OR (s.`order` = ? And (sChange.`stimes` < ? OR (sChange.`stimes` = ? And sChange.`sorder` <= ?))))', [
  1270. lastStage.order,
  1271. lastStage.order,
  1272. this.ctx.stage.curTimes,
  1273. this.ctx.stage.curTimes,
  1274. this.ctx.stage.curOrder,
  1275. ]);
  1276. } else {
  1277. if (lastStage.status === audit.stage.status.uncheck) {
  1278. filter = ' And s.order < ' + lastStage.order;
  1279. } else if (lastStage.status === audit.stage.status.checked) {
  1280. filter = '';
  1281. } else if (lastStage.status === audit.stage.status.checkNo) {
  1282. filter = this.db.format(' And (s.`order` < ? OR (s.`order` = ? And sChange.`stimes` <= ?))', [lastStage.order, lastStage.order, lastStage.times]);
  1283. } else {
  1284. const curAuditor = await this.ctx.service.stageAudit.getCurAuditor(lastStage.id, lastStage.times);
  1285. filter = this.db.format(' And (s.`order` < ? OR (s.`order` = ? And (sChange.`stimes` < ? OR (sChange.`stimes` = ? And sChange.`sorder` <= ?))))', [
  1286. lastStage.order,
  1287. lastStage.order,
  1288. lastStage.times,
  1289. lastStage.times,
  1290. curAuditor.order - 1,
  1291. ]);
  1292. }
  1293. }
  1294. const sql =
  1295. 'SELECT C.*, Sum(U.utp) As used_tp, TRUNCATE(Sum(U.utp) / C.total_price * 100 + 0.005, 2) As used_pt' +
  1296. ' FROM ' + this.tableName + ' As C' +
  1297. ' LEFT JOIN (SELECT sc.tid, sc.cid, sc.cbid, IF(SUM(sc.qty) > 0, TRUNCATE(SUM(sc.qty) * cb.unit_price + ?, ?), TRUNCATE(SUM(sc.qty) * cb.unit_price - ?, ?)) As utp,' +
  1298. ' IF(SUM(sc.qty) > 0, TRUNCATE(SUM(sc.qty) * cb.unit_price + ?, ?), 0, ?)) As utp_po, IF(SUM(sc.qty) > 0, 0, TRUNCATE(SUM(sc.qty) * cb.unit_price - ?, ?)) As utp_ne' +
  1299. ' FROM ' + this.ctx.service.stageChange.tableName + ' As sc' +
  1300. ' INNER JOIN (' +
  1301. ' SELECT MAX(`stimes`) As `stimes`, MAX(`sorder`) As `sorder`, `lid`, `pid`, `cbid`, sChange.`sid` ' +
  1302. ' FROM ' + this.ctx.service.stageChange.tableName + ' As sChange ' +
  1303. ' LEFT JOIN ' + this.ctx.service.stage.tableName + ' As s' +
  1304. ' ON sChange.sid = s.id' +
  1305. ' WHERE sChange.tid = ?' + filter +
  1306. ' GROUP By `lid`, `pid`, `cbid`, `sid`' +
  1307. ' ) As m' +
  1308. ' ON sc.stimes = m.stimes And sc.sorder = m.sorder And sc.`cbid` = m.`cbid` AND sc.`sid` = m.`sid` And sc.`lid` = m.`lid` And sc.`pid` = m.`pid`' +
  1309. ' LEFT JOIN ' + this.ctx.service.changeAuditList.tableName +
  1310. ' As cb ON sc.cbid = cb.id' +
  1311. ' GROUP By sc.`cbid`' +
  1312. ' ) As U ON C.cid = U.cid' +
  1313. ' WHERE C.tid = ? And C.status = ? And C.valid' +
  1314. ' GROUP By C.cid' +
  1315. ' ORDER By in_time';
  1316. // 舍入步长
  1317. const step = parseFloat('0.' + '0000000'.substr(0, this.ctx.tender.info.decimal.tp) + '5');
  1318. const sqlParam = [step, this.ctx.tender.info.decimal.tp, step, this.ctx.tender.info.decimal.tp, tid, tid, audit.flow.status.checked];
  1319. const data = await this.db.query(sql, sqlParam);
  1320. return data;
  1321. }
  1322. /**
  1323. * 查询可用的变更令
  1324. * @param { string } cid - 查询的清单
  1325. * @return {Promise<*>} - 可用的变更令列表
  1326. */
  1327. async delete(cid) {
  1328. // 初始化事务
  1329. this.transaction = await this.db.beginTransaction();
  1330. let result = false;
  1331. try {
  1332. const changeInfo = await this.getDataByCondition({ cid });
  1333. // 先删除清单,审批人列表
  1334. await this.transaction.delete(this.ctx.service.changeAuditList.tableName, { cid });
  1335. await this.transaction.delete(this.ctx.service.changeAudit.tableName, { cid });
  1336. // 再删除附件和附件文件ni zuo
  1337. const attList = await this.ctx.service.changeAtt.getAllDataByCondition({ where: { cid } });
  1338. await this.ctx.helper.delFiles(attList);
  1339. await this.transaction.delete(this.ctx.service.changeAtt.tableName, { cid });
  1340. // if (attList.length !== 0) {
  1341. // for (const att of attList) {
  1342. // await fs.unlinkSync(path.join(this.app.baseDir, att.filepath));
  1343. // }
  1344. // await this.transaction.delete(this.ctx.service.changeAtt.tableName, { cid });
  1345. // }
  1346. // 最后删除变更令
  1347. await this.transaction.delete(this.tableName, { cid });
  1348. // 记录删除日志
  1349. await this.ctx.service.projectLog.addProjectLog(this.transaction, projectLogConst.type.change, projectLogConst.status.delete, changeInfo.code);
  1350. await this.transaction.commit();
  1351. result = true;
  1352. } catch (e) {
  1353. await this.transaction.rollback();
  1354. result = false;
  1355. }
  1356. return result;
  1357. }
  1358. /**
  1359. * 重新审批变更令
  1360. * @param { string } cid - 查询的清单
  1361. * @return {Promise<*>} - 可用的变更令列表
  1362. */
  1363. async checkRevise(cid) {
  1364. // 初始化事务
  1365. this.transaction = await this.db.beginTransaction();
  1366. let result = false;
  1367. try {
  1368. const changeData = await this.getDataByCondition({ cid });
  1369. const pid = this.ctx.session.sessionProject.id;
  1370. // 获取所有审核人列表
  1371. const auditors = await this.ctx.service.changeAudit.getAllAuditors(changeData.tid);
  1372. // 添加到消息推送表
  1373. const noticeContent = await this.getNoticeContent(pid, changeData.tid, changeData.cid, this.ctx.session.sessionUser.accountId, '发起重新审批');
  1374. const records = [];
  1375. auditors.forEach(auditor => {
  1376. records.push({
  1377. pid,
  1378. type: pushType.change,
  1379. uid: auditor.uid,
  1380. status: audit.flow.status.revise,
  1381. content: noticeContent,
  1382. });
  1383. });
  1384. await this.transaction.insert('zh_notice', records);
  1385. // 获取当前次数审批人列表
  1386. const auditList = await this.ctx.service.changeAudit.getListGroupByTimes(changeData.cid, changeData.times);
  1387. const lastauditInfo = await this.ctx.service.changeAudit.getLastUser(changeData.cid, changeData.times, 1, 0);
  1388. let usort = lastauditInfo.usort + 1;
  1389. const newTimes = changeData.times + 1;
  1390. const insert_audit_array = [];
  1391. // 新增一个发起修订状态到审批流程中
  1392. const revise_audit = {
  1393. tid: auditList[0].tid,
  1394. cid: auditList[0].cid,
  1395. uid: auditList[0].uid,
  1396. name: auditList[0].name,
  1397. jobs: auditList[0].jobs,
  1398. company: auditList[0].company,
  1399. times: changeData.times,
  1400. usite: lastauditInfo.usite + 1,
  1401. usort,
  1402. status: audit.flow.auditStatus.revise,
  1403. sin_time: new Date(),
  1404. };
  1405. insert_audit_array.push(revise_audit);
  1406. usort++;
  1407. // 新增新一次的审批人列表
  1408. for (const al of auditList) {
  1409. const insert_audit = {
  1410. tid: al.tid,
  1411. cid: al.cid,
  1412. uid: al.uid,
  1413. name: al.name,
  1414. jobs: al.jobs,
  1415. company: al.company,
  1416. times: newTimes,
  1417. usite: al.usite,
  1418. usort,
  1419. status: al.usite !== 0 ? audit.flow.auditStatus.uncheck : audit.flow.auditStatus.checking,
  1420. };
  1421. insert_audit_array.push(insert_audit);
  1422. usort++;
  1423. }
  1424. await this.transaction.insert(this.ctx.service.changeAudit.tableName, insert_audit_array);
  1425. const changeList = await this.ctx.service.changeAuditList.getAllDataByCondition({
  1426. where: { cid: changeData.cid },
  1427. });
  1428. // 申请变更金额更新为上一次审批审批变更后数量,清空audit_amount值
  1429. const updateTpList = [];
  1430. for (const cl of changeList) {
  1431. updateTpList.push({ id: cl.id, camount: cl.spamount, audit_amount: null, samount: '' });
  1432. }
  1433. if (updateTpList.length > 0) {
  1434. await this.transaction.updateRows(this.ctx.service.changeAuditList.tableName, updateTpList);
  1435. }
  1436. // let total_price = 0;
  1437. // const tp_decimal = changeData.tp_decimal ? changeData.tp_decimal : this.ctx.tender.info.decimal.tp;
  1438. // for (const cl of changeList) {
  1439. // total_price = this.ctx.helper.add(total_price, this.ctx.helper.mul(cl.unit_price, cl.camount, tp_decimal));
  1440. // }
  1441. // 设置变更令修订状态
  1442. const change_update = {
  1443. w_code: changeData.w_code,
  1444. status: audit.flow.status.revise,
  1445. times: newTimes,
  1446. cin_time: Date.parse(new Date()) / 1000,
  1447. // total_price,
  1448. tp_decimal: null,
  1449. up_decimal: null,
  1450. is_revise: 1,
  1451. };
  1452. const options = {
  1453. where: {
  1454. cid: changeData.cid,
  1455. },
  1456. };
  1457. await this.transaction.update(this.tableName, change_update, options);
  1458. await this.transaction.commit();
  1459. result = true;
  1460. } catch (error) {
  1461. await this.transaction.rollback();
  1462. result = false;
  1463. }
  1464. return result;
  1465. }
  1466. /**
  1467. * 重新审批变更令
  1468. * @param { string } cid - 查询的清单
  1469. * @return {Promise<*>} - 可用的变更令列表
  1470. */
  1471. async checkAgain(cid) {
  1472. // 初始化事务
  1473. this.transaction = await this.db.beginTransaction();
  1474. let result = false;
  1475. try {
  1476. const changeInfo = await this.getDataByCondition({ cid });
  1477. // 获取终审
  1478. const auditInfo = (
  1479. await this.ctx.service.changeAudit.getAllDataByCondition({
  1480. where: { cid },
  1481. orders: [['usort', 'desc']],
  1482. limit: 1,
  1483. offset: 0,
  1484. })
  1485. )[0];
  1486. let usort = auditInfo.usort + 1;
  1487. // 新增2个审批状态到审批列表中
  1488. const insert_audit1 = {
  1489. tid: auditInfo.tid,
  1490. cid: auditInfo.cid,
  1491. uid: auditInfo.uid,
  1492. name: auditInfo.name,
  1493. jobs: auditInfo.jobs,
  1494. company: auditInfo.company,
  1495. times: auditInfo.times,
  1496. usite: auditInfo.usite,
  1497. usort,
  1498. sin_time: new Date(),
  1499. status: audit.flow.auditStatus.checkAgain,
  1500. };
  1501. await this.transaction.insert(this.ctx.service.changeAudit.tableName, insert_audit1);
  1502. usort++;
  1503. // 新增2个审批人到审批列表中
  1504. const insert_audit2 = {
  1505. tid: auditInfo.tid,
  1506. cid: auditInfo.cid,
  1507. uid: auditInfo.uid,
  1508. name: auditInfo.name,
  1509. jobs: auditInfo.jobs,
  1510. company: auditInfo.company,
  1511. times: auditInfo.times,
  1512. usite: auditInfo.usite,
  1513. usort,
  1514. status: audit.flow.auditStatus.checking,
  1515. sin_time: new Date(),
  1516. };
  1517. await this.transaction.insert(this.ctx.service.changeAudit.tableName, insert_audit2);
  1518. // 审批列表数据也要回退
  1519. let total_price = 0;
  1520. const tp_decimal = changeInfo.tp_decimal ? changeInfo.tp_decimal : this.ctx.tender.info.decimal.tp;
  1521. const changeList = await this.ctx.service.changeAuditList.getAllDataByCondition({
  1522. where: { cid: changeInfo.cid },
  1523. });
  1524. for (const cl of changeList) {
  1525. const audit_amount = cl.audit_amount.split(',');
  1526. const last_amount = audit_amount[audit_amount.length - 1];
  1527. audit_amount.splice(-1, 1);
  1528. const list_update = {
  1529. id: cl.id,
  1530. audit_amount: audit_amount.join(','),
  1531. samount: '',
  1532. };
  1533. total_price = this.ctx.helper.add(total_price, this.ctx.helper.mul(cl.unit_price, parseFloat(last_amount), tp_decimal));
  1534. await this.transaction.update(this.ctx.service.changeAuditList.tableName, list_update);
  1535. }
  1536. // 设置变更令审批中
  1537. const change_update = {
  1538. p_code: null,
  1539. status: audit.flow.status.checking,
  1540. cin_time: Date.parse(new Date()) / 1000,
  1541. sin_time: null,
  1542. total_price,
  1543. };
  1544. const options = {
  1545. where: {
  1546. cid: changeInfo.cid,
  1547. },
  1548. };
  1549. await this.transaction.update(this.tableName, change_update, options);
  1550. await this.transaction.commit();
  1551. result = true;
  1552. const sms = new SMS(this.ctx);
  1553. const code = await sms.contentChange(changeInfo.code);
  1554. const shenpiUrl = await this.ctx.helper.urlToShort(
  1555. this.ctx.protocol + '://' + this.ctx.host + '/wap/tender/' + changeInfo.tid + '/change/' + changeInfo.cid + '/information#shenpi'
  1556. );
  1557. await this.ctx.helper.sendAliSms(auditInfo.uid, smsTypeConst.const.BG, smsTypeConst.judge.approval.toString(), SmsAliConst.template.change_check, {
  1558. biangeng: code,
  1559. code: shenpiUrl,
  1560. });
  1561. // 微信模板通知
  1562. const wechatData = {
  1563. wap_url: shenpiUrl,
  1564. status: wxConst.status.check,
  1565. tips: wxConst.tips.check,
  1566. code: this.ctx.session.sessionProject.code,
  1567. c_name: changeInfo.name,
  1568. };
  1569. await this.ctx.helper.sendWechat(auditInfo.uid, smsTypeConst.const.BG, smsTypeConst.judge.approval.toString(), wxConst.template.change, wechatData);
  1570. } catch (error) {
  1571. await this.transaction.rollback();
  1572. result = false;
  1573. }
  1574. return result;
  1575. }
  1576. /**
  1577. * 判断是否有重名的变更令
  1578. * @param cid
  1579. * @param code
  1580. * @param tid
  1581. * @return {Promise<void>}
  1582. */
  1583. async isRepeat(cid, code, tid) {
  1584. const sql = 'SELECT COUNT(*) as count FROM ?? WHERE ((`code` = ? AND `status` != ?) OR (`p_code` = ? AND `status` = ?)) AND `cid` != ? AND `tid` = ?';
  1585. const sqlParam = [this.tableName, code, audit.flow.status.checked, code, audit.flow.status.checked, cid, tid];
  1586. const result = await this.db.queryOne(sql, sqlParam);
  1587. return result.count !== 0;
  1588. }
  1589. async getAllCheckedChanges(tid) {
  1590. return await this.getAllDataByCondition({
  1591. where: { tid, status: audit.flow.status.checked },
  1592. orders: [['in_time', 'desc']],
  1593. });
  1594. }
  1595. /**
  1596. * 用于添加推送所需的content内容
  1597. * @param {Number} pid 项目id
  1598. * @param {Number} tid 台账id
  1599. * @param {Number} cid 变更id
  1600. * @param {Number} uid 审核人id
  1601. */
  1602. async getNoticeContent(pid, tid, cid, uid, opinion = '') {
  1603. const noticeSql =
  1604. 'SELECT * FROM (SELECT ' +
  1605. ' t.`id` As `tid`, t.`name`, c.`cid`, c.`code` As `c_code`, pa.`name` As `su_name`, pa.role As `su_role`' +
  1606. ' FROM (SELECT * FROM ?? WHERE `id` = ? ) As t' +
  1607. ' LEFT JOIN ?? As c ON c.`cid` = ?' +
  1608. ' LEFT JOIN ?? As pa ON pa.`id` = ?' +
  1609. ' WHERE t.`project_id` = ? ) as new_t GROUP BY new_t.`tid`';
  1610. const noticeSqlParam = [this.ctx.service.tender.tableName, tid, this.ctx.service.change.tableName, cid, this.ctx.service.projectAccount.tableName, uid, pid];
  1611. const content = await this.db.query(noticeSql, noticeSqlParam);
  1612. if (content.length) {
  1613. content[0].opinion = opinion;
  1614. }
  1615. return content.length ? JSON.stringify(content[0]) : '';
  1616. }
  1617. /**
  1618. * 获取当前标段其他变更令
  1619. * @param {Number} tid - 标段id
  1620. * @param {Number} cid - 当前变更令
  1621. */
  1622. async getOthersChange(tid, cid) {
  1623. const sql = 'SELECT * FROM ?? WHERE tid = ? AND cid != ? ORDER By `in_time` desc ';
  1624. const sqlParam = [this.tableName, tid, cid];
  1625. const data = await this.db.query(sql, sqlParam);
  1626. const changeClassObj = {};
  1627. for (const c in changeConst.class) {
  1628. if (changeConst.class.hasOwnProperty(c)) {
  1629. const item = changeConst.class[c];
  1630. changeClassObj[item.value] = item.name;
  1631. }
  1632. }
  1633. for (let i = 0; i < data.length; i++) {
  1634. data[i].class = changeClassObj[data[i].class];
  1635. }
  1636. return data;
  1637. }
  1638. /**
  1639. * 拷贝变更令至当前变更令
  1640. * @param {String} cid - 当前变更令
  1641. * @param {String} copy_cid - 要拷贝的变更令
  1642. */
  1643. async handleCopyChange(cid, copy_cid) {
  1644. // const change = await this.getDataByCondition({ cid });
  1645. const copyChange = await this.getDataByCondition({ cid: copy_cid });
  1646. return await this.update({ peg: copyChange.peg, org_name: copyChange.org_name, org_code: copyChange.org_code, new_name: copyChange.new_name, content: copyChange.content, basis: copyChange.basis, expr: copyChange.expr, memo: copyChange.memo, type: copyChange.type,
  1647. class: copyChange.class, quality: copyChange.quality, company: copyChange.company, charge: copyChange.charge, new_code: copyChange.new_code }, {
  1648. cid,
  1649. });
  1650. }
  1651. async updateDecimalAndTp() {
  1652. // 判断是否可修改
  1653. // 判断t_type是否为费用
  1654. const transaction = await this.db.beginTransaction();
  1655. try {
  1656. await this.ctx.service.changeAuditList.calcCamountSum(transaction, true);
  1657. await transaction.commit();
  1658. return true;
  1659. } catch (err) {
  1660. await transaction.rollback();
  1661. throw err;
  1662. }
  1663. }
  1664. async updateChangeSelect(data) {
  1665. const conn = await this.db.beginTransaction();
  1666. try {
  1667. for (const d of data) {
  1668. await conn.update(this.tableName, { selected: d.selected }, { where: { cid: d.cid } });
  1669. }
  1670. await conn.commit();
  1671. } catch (err) {
  1672. await conn.rollback();
  1673. throw err;
  1674. }
  1675. }
  1676. async getAllChangeHasMinus(tenderId) {
  1677. const sql = `SELECT * FROM ${this.tableName} WHERE tid = ? AND negative_tp < 0 ORDER BY code asc`;
  1678. return this.db.query(sql, [tenderId]);
  1679. }
  1680. async getListByBudgetInfo(tenders) {
  1681. if (tenders) {
  1682. const sql = 'SELECT * FROM ?? WHERE `status` = ? AND `tid` in (' + this.ctx.helper.getInArrStrSqlFilter(tenders.split(',')) + ') ORDER BY `total_price` DESC LIMIT 0, 10';
  1683. const params = [this.tableName, audit.flow.status.checked];
  1684. return await this.db.query(sql, params);
  1685. }
  1686. return [];
  1687. }
  1688. async getTotalTpByBudgetInfo(tenders) {
  1689. if (tenders) {
  1690. const sql = 'SELECT SUM(`total_price`) AS tp FROM ?? WHERE `status` = ? AND `tid` in (' + this.ctx.helper.getInArrStrSqlFilter(tenders.split(',')) + ')';
  1691. const sqlParam = [this.tableName, audit.flow.status.checked];
  1692. const result = await this.db.queryOne(sql, sqlParam);
  1693. return result && result.tp ? result.tp : 0;
  1694. }
  1695. return 0;
  1696. }
  1697. }
  1698. return Change;
  1699. };