advance.js 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. 'use strict';
  2. const auditConst = require('../const/audit').advance;
  3. module.exports = app => {
  4. class Advance extends app.BaseService {
  5. constructor(ctx) {
  6. super(ctx);
  7. this.tableName = 'advance_pay';
  8. }
  9. /**
  10. * 获取预付款列表
  11. * @param {Number} tid 标段id
  12. * @param {Number} type 预付款类型
  13. */
  14. async getAdvanceList(tid, type) {
  15. this.initSqlBuilder();
  16. this.sqlBuilder.setAndWhere('tid', {
  17. value: tid,
  18. operate: '=',
  19. });
  20. this.sqlBuilder.setAndWhere('type', {
  21. value: type,
  22. operate: '=',
  23. });
  24. this.sqlBuilder.orderBy = [['order', 'desc']];
  25. const [sql, sqlParam] = this.sqlBuilder.build(this.tableName);
  26. const advance = await this.db.query(sql, sqlParam);
  27. for (const item of advance) {
  28. item.curAuditor = await this.ctx.service.advanceAudit.getAuditorByStatus(item.id, item.status, item.times);
  29. if (item.status === auditConst.status.checkNoPre) {
  30. item.curAuditor2 = await this.ctx.service.advanceAudit.getAuditorByStatus(item.id, auditConst.status.checking);
  31. }
  32. item.fileList = await this.ctx.service.advanceFile.getAdvanceFiles({ vid: item.id });
  33. }
  34. return advance;
  35. }
  36. /**
  37. * 获取预付款最新一期
  38. * @param {Number} tid 标段id
  39. * @param {String} type 类型: 开工预付款|材料预付款 (0|1)
  40. * @param {Boolean} includeUnCheck 包括未上报的
  41. * @return {Promise<*>} 实例结果集
  42. */
  43. async getLastestAdvance(tid, type, includeUnCheck = false) {
  44. this.initSqlBuilder();
  45. this.sqlBuilder.setAndWhere('tid', {
  46. value: tid,
  47. operate: '=',
  48. });
  49. this.sqlBuilder.setAndWhere('type', {
  50. value: type,
  51. operate: '=',
  52. });
  53. if (!includeUnCheck) {
  54. this.sqlBuilder.setAndWhere('status', {
  55. value: auditConst.status.uncheck,
  56. operate: '!=',
  57. });
  58. }
  59. this.sqlBuilder.orderBy = [['order', 'desc']];
  60. const [sql, sqlParam] = this.sqlBuilder.build(this.tableName);
  61. const advance = await this.db.queryOne(sql, sqlParam);
  62. return advance;
  63. }
  64. /**
  65. * 创建一条新的记录
  66. * @param {String} type 类型: 开工预付款|材料预付款 (start|material)
  67. * @return {Promise<*>} 插入结果集
  68. */
  69. async createRecord(type) {
  70. const { ctx } = this;
  71. const uid = ctx.session.sessionUser.accountId;
  72. const tid = ctx.tender.id;
  73. let latestOrder = await this.getLastestAdvance(tid, type);
  74. if (!latestOrder) {
  75. latestOrder = {
  76. order: 1,
  77. prev_amount: 0.00,
  78. prev_total_amount: 0.00,
  79. };
  80. }
  81. const record = await this.db.insert(this.tableName, { type, uid, tid, status: auditConst.status.uncheck, order: latestOrder.order, prev_amount: latestOrder.prev_total_amount, prev_total_amount: latestOrder.prev_total_amount });
  82. return await this.getDataById(record.insertId);
  83. }
  84. /**
  85. * 获取上一期预付款记录
  86. * @param {Number} tid 标段id
  87. * @param {Number} type 预付款类型
  88. */
  89. async getPreviousRecord(tid, type) {
  90. this.initSqlBuilder();
  91. this.sqlBuilder.setAndWhere('tid', {
  92. value: tid,
  93. operate: '=',
  94. });
  95. this.sqlBuilder.setAndWhere('type', {
  96. value: type,
  97. operate: '=',
  98. });
  99. this.sqlBuilder.setAndWhere('order', {
  100. value: this.ctx.advance.order - 1,
  101. operate: '=',
  102. });
  103. this.sqlBuilder.orderBy = [['order', 'desc']];
  104. const [sql, sqlParam] = this.sqlBuilder.build(this.tableName);
  105. return await this.db.queryOne(sql, sqlParam);
  106. }
  107. /**
  108. * 计算列表进度条所需数据
  109. * @param {Object} latest 最新期的数据
  110. * @param {Number} payTotal 预付款金额总数
  111. * @return {Object} progress所需数据
  112. */
  113. async calcProgress(latest, payTotal) {
  114. const { ctx } = this;
  115. if (!latest) {
  116. latest = { prev_total_amount: 0, prev_amount: 0, cur_amount: 0 };
  117. }
  118. const surplus = ctx.helper.sub(payTotal, latest.prev_total_amount || 0);
  119. const p_ratio = ctx.helper.mul(ctx.helper.div(latest.prev_amount || 0, payTotal), 100, 2); // 截止上期金额总数
  120. const c_ratio = ctx.helper.mul(ctx.helper.div(latest.cur_amount || 0, payTotal), 100, 0); // 截止本期金额总数
  121. const s_ratio = ctx.helper.mul(ctx.helper.div(surplus, payTotal), 100, 0); // 剩余金额总数
  122. return {
  123. p_amount: latest.prev_amount,
  124. c_amount: latest.cur_amount,
  125. s_amount: surplus,
  126. p_ratio,
  127. c_ratio,
  128. s_ratio,
  129. };
  130. }
  131. /**
  132. * 更新预付款记录
  133. * @param {Object} payload 载荷
  134. * @param {Number} id 预付款id
  135. */
  136. async updateAdvance(payload, id) {
  137. const { ctx } = this;
  138. const prevRecord = await this.getPreviousRecord(ctx.tender.id, ctx.advance.type) || { prev_total_amount: 0 };
  139. const { cur_amount } = payload;
  140. payload.prev_total_amount = ctx.helper.add(cur_amount, prevRecord.prev_total_amount);
  141. return await this.update(payload, {
  142. id,
  143. });
  144. }
  145. }
  146. return Advance;
  147. };