ledger_audit.js 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  1. 'use strict';
  2. /**
  3. * 台账审批流程表
  4. *
  5. * @author Mai
  6. * @date 2018/5/25
  7. * @version
  8. */
  9. const auditConst = require('../const/audit').ledger;
  10. const smsTypeConst = require('../const/sms_type');
  11. const SMS = require('../lib/sms');
  12. module.exports = app => {
  13. class LedgerAudit extends app.BaseService {
  14. /**
  15. * 构造函数
  16. *
  17. * @param {Object} ctx - egg全局变量
  18. * @return {void}
  19. */
  20. constructor(ctx) {
  21. super(ctx);
  22. this.tableName = 'ledger_audit';
  23. }
  24. /**
  25. * 获取标段审核人信息
  26. *
  27. * @param {Number} tenderId - 标段id
  28. * @param {Number} auditorId - 审核人id
  29. * @param {Number} times - 第几次审批
  30. * @returns {Promise<*>}
  31. */
  32. async getAuditor(tenderId, auditorId, times = 1) {
  33. const sql = 'SELECT la.`audit_id`, pa.`name`, pa.`company`, pa.`role`, pa.`mobile`, pa.`telephone`, la.`times`, la.`audit_order`, la.`status`, la.`opinion`, la.`begin_time`, la.`end_time` ' +
  34. 'FROM ?? AS la, ?? AS pa ' +
  35. 'WHERE la.`tender_id` = ? and la.`audit_id` = ? and la.`times` = ?' +
  36. ' and la.`audit_id` = pa.`id`';
  37. const sqlParam = [this.tableName, this.ctx.service.projectAccount.tableName, tenderId, auditorId, times];
  38. return await this.db.queryOne(sql, sqlParam);
  39. }
  40. /**
  41. * 获取标段审核列表信息
  42. *
  43. * @param {Number} tenderId - 标段id
  44. * @param {Number} times - 第几次审批
  45. * @returns {Promise<*>}
  46. */
  47. async getAuditors(tenderId, times = 1) {
  48. const sql = 'SELECT la.`audit_id`, pa.`name`, pa.`company`, pa.`role`, pa.`mobile`, pa.`telephone`, la.`times`, la.`audit_order`, la.`status`, la.`opinion`, la.`begin_time`, la.`end_time`, g.`sort` ' +
  49. 'FROM ?? AS la, ?? AS pa, (SELECT `audit_id`,(@i:=@i+1) as `sort` FROM ??, (select @i:=0) as it WHERE `tender_id` = ? AND `times` = ? GROUP BY `audit_id`) as g ' +
  50. 'WHERE la.`tender_id` = ? and la.`times` = ? and la.`audit_id` = pa.`id` and g.`audit_id` = la.`audit_id` order by la.`audit_order`';
  51. const sqlParam = [this.tableName, this.ctx.service.projectAccount.tableName, this.tableName, tenderId, times, tenderId, times];
  52. const result = await this.db.query(sql, sqlParam);
  53. const sql2 = 'SELECT COUNT(a.`audit_id`) as num FROM (SELECT `audit_id` FROM ?? WHERE `tender_id` = ? AND `times` = ? GROUP BY `audit_id`) as a';
  54. const sqlParam2 = [this.tableName, tenderId, times];
  55. const count = await this.db.queryOne(sql2, sqlParam2);
  56. for (const i in result) {
  57. result[i].max_sort = count.num;
  58. }
  59. return result;
  60. }
  61. /**
  62. * 获取标段当前审核人
  63. *
  64. * @param {Number} tenderId - 标段id
  65. * @param {Number} times - 第几次审批
  66. * @returns {Promise<*>}
  67. */
  68. async getCurAuditor(tenderId, times = 1) {
  69. const sql = 'SELECT la.`audit_id`, pa.`name`, pa.`company`, pa.`role`, pa.`mobile`, pa.`telephone`, la.`times`, la.`audit_order`, la.`status`, la.`opinion`, la.`begin_time`, la.`end_time` ' +
  70. 'FROM ?? AS la, ?? AS pa ' +
  71. 'WHERE la.`tender_id` = ? and la.`status` = ? and la.`times` = ?' +
  72. ' and la.`audit_id` = pa.`id`';
  73. const sqlParam = [this.tableName, this.ctx.service.projectAccount.tableName, tenderId, auditConst.status.checking, times];
  74. return await this.db.queryOne(sql, sqlParam);
  75. }
  76. /**
  77. * 获取最新审核顺序
  78. *
  79. * @param {Number} tenderId - 标段id
  80. * @param {Number} times - 第几次审批
  81. * @returns {Promise<number>}
  82. */
  83. async getNewOrder(tenderId, times = 1) {
  84. const sql = 'SELECT Max(??) As max_order FROM ?? Where `tender_id` = ? and `times` = ?';
  85. const sqlParam = ['audit_order', this.tableName, tenderId, times];
  86. const result = await this.db.queryOne(sql, sqlParam);
  87. return result && result.max_order ? result.max_order + 1 : 1;
  88. }
  89. /**
  90. * 新增审核人
  91. *
  92. * @param {Number} tenderId - 标段id
  93. * @param {Number} auditorId - 审核人id
  94. * @param {Number} times - 第几次审批
  95. * @returns {Promise<number>}
  96. */
  97. async addAuditor(tenderId, auditorId, times = 1) {
  98. const newOrder = await this.getNewOrder(tenderId, times);
  99. const data = {
  100. tender_id: tenderId,
  101. audit_id: auditorId,
  102. times: times,
  103. audit_order: newOrder,
  104. status: auditConst.status.uncheck,
  105. };
  106. const result = await this.db.insert(this.tableName, data);
  107. return result.effectRows = 1;
  108. }
  109. /**
  110. * 移除审核人时,同步其后审核人order
  111. * @param transaction - 事务
  112. * @param {Number} tenderId - 标段id
  113. * @param {Number} auditorId - 审核人id
  114. * @param {Number} times - 第几次审批
  115. * @returns {Promise<*>}
  116. * @private
  117. */
  118. async _syncOrderByDelete(transaction, tenderId, order, times) {
  119. this.initSqlBuilder();
  120. this.sqlBuilder.setAndWhere('tender_id', {
  121. value: tenderId,
  122. operate: '='
  123. });
  124. this.sqlBuilder.setAndWhere('audit_order', {
  125. value: order,
  126. operate: '>=',
  127. });
  128. this.sqlBuilder.setAndWhere('times', {
  129. value: times,
  130. operate: '=',
  131. });
  132. this.sqlBuilder.setUpdateData('audit_order', {
  133. value: 1,
  134. selfOperate: '-',
  135. });
  136. const [sql, sqlParam] = this.sqlBuilder.build(this.tableName, 'update');
  137. const data = await transaction.query(sql, sqlParam);
  138. return data;
  139. }
  140. /**
  141. * 移除审核人
  142. *
  143. * @param {Number} tenderId - 标段id
  144. * @param {Number} auditorId - 审核人id
  145. * @param {Number} times - 第几次审批
  146. * @returns {Promise<boolean>}
  147. */
  148. async deleteAuditor(tenderId, auditorId, times = 1) {
  149. const transaction = await this.db.beginTransaction();
  150. try {
  151. const condition = {tender_id: tenderId, audit_id: auditorId, times: times};
  152. const auditor = await this.getDataByCondition(condition);
  153. if (!auditor) {
  154. throw '该审核人不存在';
  155. }
  156. await this._syncOrderByDelete(transaction, tenderId, auditor.audit_order, times);
  157. await transaction.delete(this.tableName, condition);
  158. await transaction.commit();
  159. } catch(err) {
  160. await transaction.rollback();
  161. throw err;
  162. }
  163. return true;
  164. }
  165. /**
  166. * 开始审批
  167. *
  168. * @param {Number} tenderId - 标段id
  169. * @param {Number} times - 第几次审批
  170. * @returns {Promise<boolean>}
  171. */
  172. async start(tenderId, times = 1) {
  173. const audit = await this.getDataByCondition({tender_id: tenderId, times: times, audit_order: 1});
  174. if (!audit) {
  175. throw '审核人信息错误';
  176. }
  177. const sum = await this.ctx.service.ledger.addUp({tender_id: tenderId, is_leaf: true});
  178. const transaction = await this.db.beginTransaction();
  179. try {
  180. await transaction.update(this.tableName, {id: audit.id, status: auditConst.status.checking, begin_time: new Date()});
  181. await transaction.update(this.ctx.service.tender.tableName, {
  182. id: tenderId, ledger_status: auditConst.status.checking,
  183. total_price: sum.total_price, deal_tp: sum.deal_tp,
  184. });
  185. // 添加短信通知-需要审批提醒功能
  186. const smsUser = await this.ctx.service.projectAccount.getDataById(audit.audit_id);
  187. if (smsUser.auth_mobile !== '' && smsUser.auth_mobile !== undefined && smsUser.sms_type !== '' && smsUser.sms_type !== null) {
  188. const smsType = JSON.parse(smsUser.sms_type);
  189. if (smsType[smsTypeConst.const.TZ] !== undefined && smsType[smsTypeConst.const.TZ].indexOf(smsTypeConst.judge.approval.toString()) !== -1) {
  190. const tenderInfo = await this.ctx.service.tender.getDataById(tenderId);
  191. const sms = new SMS(this.ctx);
  192. const tenderName = await sms.contentChange(tenderInfo.name);
  193. const content = '【纵横计量支付】' + tenderName + '台帐需要您审批。';
  194. sms.send(smsUser.auth_mobile, content);
  195. }
  196. }
  197. await transaction.commit();
  198. } catch (err) {
  199. await transaction.rollback();
  200. throw err;
  201. }
  202. return true;
  203. }
  204. /**
  205. * 审批
  206. * @param {Number} tenderId - 标段id
  207. * @param {auditConst.status.checked|auditConst.status.checkNo} checkType - 审批结果
  208. * @param {Number} times - 第几次审批
  209. * @returns {Promise<void>}
  210. */
  211. async check(tenderId, checkType, opinion, times = 1) {
  212. if (checkType !== auditConst.status.checked && checkType !== auditConst.status.checkNo) {
  213. throw '提交数据错误';
  214. }
  215. const transaction = await this.db.beginTransaction();
  216. try {
  217. // 整理当前流程审核人状态更新
  218. const time = new Date();
  219. const audit = await this.getDataByCondition({tender_id: tenderId, times: times, status: auditConst.status.checking});
  220. if (!audit) {
  221. throw '审核数据错误';
  222. }
  223. // 更新当前审核流程
  224. await transaction.update(this.tableName, {id: audit.id, status: checkType, opinion: opinion, end_time: time});
  225. if (checkType === auditConst.status.checked) {
  226. const nextAudit = await this.getDataByCondition({tender_id: tenderId, times: times, audit_order: audit.audit_order + 1});
  227. // 无下一审核人表示,审核结束
  228. if (nextAudit) {
  229. await transaction.update(this.tableName, {id: nextAudit.id, status: auditConst.status.checking, begin_time: time});
  230. // 添加短信通知-需要审批提醒功能
  231. const smsUser = await this.ctx.service.projectAccount.getDataById(nextAudit.audit_id);
  232. if (smsUser.auth_mobile !== '' && smsUser.auth_mobile !== undefined && smsUser.sms_type !== '' && smsUser.sms_type !== null) {
  233. const smsType = JSON.parse(smsUser.sms_type);
  234. if (smsType[smsTypeConst.const.TZ] !== undefined && smsType[smsTypeConst.const.TZ].indexOf(smsTypeConst.judge.approval.toString()) !== -1) {
  235. const tenderInfo = await this.ctx.service.tender.getDataById(tenderId);
  236. const sms = new SMS(this.ctx);
  237. const tenderName = await sms.contentChange(tenderInfo.name);
  238. const content = '【纵横计量支付】' + tenderName + '台帐需要您审批。';
  239. sms.send(smsUser.auth_mobile, content);
  240. }
  241. }
  242. } else {
  243. // 同步标段信息
  244. await transaction.update(this.ctx.service.tender.tableName, {id: tenderId, ledger_status: checkType});
  245. // 添加短信通知-审批通过提醒功能
  246. const mobile_array = [];
  247. const tenderInfo = await this.ctx.service.tender.getDataById(tenderId);
  248. const smsUser1 = await this.ctx.service.projectAccount.getDataById(tenderInfo.user_id);
  249. if (smsUser1.auth_mobile !== '' && smsUser1.auth_mobile !== undefined && smsUser1.sms_type !== '' && smsUser1.sms_type !== null) {
  250. const smsType = JSON.parse(smsUser1.sms_type);
  251. if (smsType[smsTypeConst.const.TZ] !== undefined && smsType[smsTypeConst.const.TZ].indexOf(smsTypeConst.judge.result.toString()) !== -1) {
  252. mobile_array.push(smsUser1.auth_mobile);
  253. }
  254. }
  255. const auditList = await this.getAuditors(tenderId, times);
  256. for (const user of auditList) {
  257. const smsUser = await this.ctx.service.projectAccount.getDataById(user.audit_id);
  258. if (smsUser.auth_mobile !== '' && smsUser.auth_mobile !== undefined && smsUser.sms_type !== '' && smsUser.sms_type !== null) {
  259. const smsType = JSON.parse(smsUser.sms_type);
  260. if (mobile_array.indexOf(smsUser.auth_mobile) === -1 && smsType[smsTypeConst.const.TZ] !== undefined && smsType[smsTypeConst.const.TZ].indexOf(smsTypeConst.judge.result.toString()) !== -1) {
  261. mobile_array.push(smsUser.auth_mobile);
  262. }
  263. }
  264. }
  265. if (mobile_array.length > 0) {
  266. const sms = new SMS(this.ctx);
  267. const tenderName = await sms.contentChange(tenderInfo.name);
  268. const content = '【纵横计量支付】' + tenderName + '台账审批通过,请登录系统处理。';
  269. sms.send(mobile_array, content);
  270. }
  271. }
  272. } else {
  273. // 同步标段信息
  274. await transaction.update(this.ctx.service.tender.tableName, {id: tenderId, ledger_times: times+1, ledger_status: checkType});
  275. // 拷贝新一次审核流程列表
  276. const auditors = await this.getAllDataByCondition({
  277. where: {tender_id: tenderId, times: times},
  278. columns: ['tender_id', 'audit_order', 'audit_id']
  279. });
  280. for (const a of auditors) {
  281. a.times = times + 1;
  282. a.status = auditConst.status.uncheck;
  283. }
  284. await transaction.insert(this.tableName, auditors);
  285. // 添加短信通知-审批退回提醒功能
  286. const mobile_array = [];
  287. const tenderInfo = await this.ctx.service.tender.getDataById(tenderId);
  288. const smsUser1 = await this.ctx.service.projectAccount.getDataById(tenderInfo.user_id);
  289. if (smsUser1.auth_mobile !== '' && smsUser1.auth_mobile !== undefined && smsUser1.sms_type !== '' && smsUser1.sms_type !== null) {
  290. const smsType = JSON.parse(smsUser1.sms_type);
  291. if (smsType[smsTypeConst.const.TZ] !== undefined && smsType[smsTypeConst.const.TZ].indexOf(smsTypeConst.judge.result.toString()) !== -1) {
  292. mobile_array.push(smsUser1.auth_mobile);
  293. }
  294. }
  295. for (const user of auditors) {
  296. const smsUser = await this.ctx.service.projectAccount.getDataById(user.audit_id);
  297. if (smsUser.auth_mobile !== '' && smsUser.auth_mobile !== undefined && smsUser.sms_type !== '' && smsUser.sms_type !== null) {
  298. const smsType = JSON.parse(smsUser.sms_type);
  299. if (mobile_array.indexOf(smsUser.auth_mobile) === -1 && smsType[smsTypeConst.const.TZ] !== undefined && smsType[smsTypeConst.const.TZ].indexOf(smsTypeConst.judge.result.toString()) !== -1) {
  300. mobile_array.push(smsUser.auth_mobile);
  301. }
  302. }
  303. }
  304. if (mobile_array.length > 0) {
  305. const sms = new SMS(this.ctx);
  306. const tenderName = await sms.contentChange(tenderInfo.name);
  307. const content = '【纵横计量支付】' + tenderName + '台账审批退回,请登录系统处理。';
  308. sms.send(mobile_array, content);
  309. }
  310. }
  311. await transaction.commit();
  312. } catch (err) {
  313. await transaction.rollback();
  314. throw err;
  315. }
  316. }
  317. /**
  318. * 获取审核人需要审核的标段列表
  319. *
  320. * @param auditorId
  321. * @returns {Promise<*>}
  322. */
  323. async getAuditTender(auditorId) {
  324. const sql = 'SELECT la.`audit_id`, la.`times`, la.`audit_order`, la.`begin_time`, la.`end_time`, t.`id`, t.`name`, t.`project_id`, t.`type`, t.`user_id`, t.`ledger_status` ' +
  325. 'FROM ?? AS la, ?? AS t ' +
  326. 'WHERE ((la.`audit_id` = ? and la.`status` = ?) OR (t.`user_id` = ? and t.`ledger_status` = ? and la.`status` = ? and la.`times` = (t.`ledger_times`-1)))' +
  327. ' and la.`tender_id` = t.`id`';
  328. const sqlParam = [this.tableName, this.ctx.service.tender.tableName, auditorId, auditConst.status.checking, auditorId, auditConst.status.checkNo, auditConst.status.checkNo];
  329. return await this.db.query(sql, sqlParam);
  330. }
  331. /**
  332. * 获取 某时间后 审批进度 更新的台账
  333. * @param {Integer} projectId - 项目id
  334. * @param {Integer} auditorId - 查询人id
  335. * @param {Date} noticeTime - 查询事件
  336. * @returns {Promise<*>}
  337. */
  338. async getNoticeTender(projectId, auditorId, noticeTime) {
  339. const sql = 'SELECT la.`audit_id`, la.`times`, la.`audit_order`, la.`end_time`, la.`status`, t.`id`, t.`name`, t.`project_id`, t.`type`, t.`user_id`, ' +
  340. ' pa.name As `lu_name`, pa.role As `lu_role`, pa.company As `lu_company`' +
  341. ' FROM ?? As t ' +
  342. ' LEFT JOIN ?? As la ON la.`tender_id` = t.`id`' +
  343. ' LEFT JOIN ?? As pa ON la.`audit_id` = pa.`id`' +
  344. ' WHERE la.`audit_id` <> ? and la.`end_time` > ? and t.`project_id` = ?' +
  345. ' GROUP By t.`id`' +
  346. ' ORDER By la.`end_time`';
  347. const sqlParam = [this.ctx.service.tender.tableName, this.tableName, this.ctx.service.projectAccount.tableName,
  348. auditorId, noticeTime, projectId];
  349. return await this.db.query(sql, sqlParam);
  350. }
  351. }
  352. return LedgerAudit;
  353. };