123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460 |
- 'use strict';
- /**
- *
- * 单价调整计算:
- * 1. 台账修订上报,保存台账修订历史时,使用当前单价调整计算一次
- * 2. 台账修订完成:计算台账、应用到未审完成期、应用到所有工程变更
- * 3. 新增期:检查是否存在未应用的单价变更
- * 4. 期审批完成:所有未应用的单价调整,记录应用到该期(记录revise_price.use_stage/use_stage_order) - 一条sql即可
- * 5. 期重现审批:上一次应用的所有单价调整,回到未应用状态(revise_price.use_stage/use_stage_order均回到0) - 一条sql即可
- *
- * @author Mai
- * @date
- * @version
- */
- const Ledger = require('./ledger');
- const audit = require('../const/audit');
- class revisePriceCalc {
- constructor(ctx) {
- this.ctx = ctx;
- }
- set price(price) {
- this._price = price;
- this.common_price_c = [];
- this.rela_price_c = [];
- price.forEach(x => {
- x.rela_lid = x.rela_lid ? x.rela_lid.split(',') : [];
- if (x.rela_cid) {
- x.rela_cid = x.rela_cid.split(',');
- this.rela_price_c.push(x);
- } else {
- x.his_rela_cid = [];
- this.common_price_c.push(x);
- }
- });
- }
- get price() {
- return this._price;
- }
- findChangeBillsPrice(b_code, name, unit, unit_price, cid) {
- const helper = this.ctx.helper;
- const p = this.rela_price_c.find(x => {
- return b_code === x.b_code && name === x.name && unit === x.unit && helper.numEqual(unit_price, x.org_price) && x.rela_cid.indexOf(cid) >= 0;
- });
- if (p) return p;
- return this.common_price_c.find(x => {
- return b_code === x.b_code && name === x.name && unit === x.unit && helper.numEqual(unit_price, x.org_price);
- });
- }
- /**
- * 新增一期计量,检查单价调整
- * @param {Object} newStage - 新计量期
- * @param {Object} preStage - 上一计量期
- * @return { inseretPosData, insertBillsData }
- */
- async newStagePriceChange(newStage, preStage, transaction) {
- const pcTp = { contract_pc_tp: 0, qc_pc_tp: 0, pc_tp: 0, positive_qc_pc_tp: 0, negative_qc_pc_tp: 0 };
- // 获取未执行的单价变更,无单价变更不执行
- this.price = await this.ctx.service.revisePrice.getAllDataByCondition({ where: { tid: newStage.tid, valid: 1, use_stage: 0 } });
- if (this.price.length === 0) return pcTp;
- // 无截止上期数据不执行
- const preBillsData = await this.ctx.service.stageBillsFinal.getAllDataByCondition({ where: { sid: preStage.id } });
- if (preBillsData.length === 0) return pcTp;
- // 加载树结构
- const bills = await this.ctx.service.ledger.getData(newStage.tid);
- this.ctx.helper.assignRelaData(bills, [
- { data: preBillsData, fields: ['id', 'contract_qty', 'contract_tp', 'qc_qty', 'qc_tp', 'unit_price', 'positive_qc_qty', 'negative_qc_qty', 'positive_qc_tp', 'negative_qc_tp'], prefix: 'pre_', relaId: 'lid' },
- ]);
- const billsTree = new Ledger.billsTree(this.ctx, { id: 'ledger_id', pid: 'ledger_pid', order: 'order', level: 'level', rootId: -1, calcFields: [] });
- billsTree.loadDatas(bills);
- // 计算
- const result = { ibData: [] };
- const helper = this.ctx.helper;
- const decimal = this.ctx.tender.info.decimal;
- billsTree.calculateAll(node => {
- if (!node.pre_id) return;
- if (!node.pre_contract_qty && !node.pre_qc_qty) return;
- if (node.children && node.children.length > 0) return;
- const priceDiff = helper.sub(node.unit_price, node.pre_unit_price);
- if (!priceDiff) return;
- node.contract_pc_tp = helper.sub(helper.mul(node.pre_contract_qty, node.unit_price, decimal.tp), node.pre_contract_tp);
- node.qc_pc_tp = helper.sub(helper.mul(node.pre_qc_qty, node.unit_price, decimal.tp), node.pre_qc_tp);
- node.pc_tp = helper.add(node.contract_pc_tp, node.qc_pc_tp);
- node.positive_qc_pc_tp = helper.sub(helper.mul(node.pre_positive_qc_qty, node.unit_price, decimal.tp), node.pre_positive_qc_tp);
- node.negative_qc_pc_tp = helper.sub(helper.mul(node.pre_negative_qc_qty, node.unit_price, decimal.tp), node.pre_negative_qc_tp);
- result.ibData.push({
- tid: newStage.tid, sid: newStage.id, sorder: newStage.order, lid: node.id, org_price: node.pre_unit_price, unit_price: node.unit_price,
- contract_pc_tp: node.contract_pc_tp, qc_pc_tp: node.qc_pc_tp, pc_tp: node.pc_tp,
- positive_qc_pc_tp: node.positive_qc_pc_tp, negative_qc_pc_tp: node.negative_qc_pc_tp,
- });
- });
- if (result.ibData.length > 0) await transaction.insert(this.ctx.service.stageBillsPc.tableName, result.ibData);
- for (const ibc of result.ibData) {
- pcTp.contract_pc_tp = helper.add(pcTp.contract_pc_tp, ibc.contract_pc_tp);
- pcTp.qc_pc_tp = helper.add(pcTp.qc_pc_tp, ibc.qc_pc_tp);
- pcTp.pc_tp = helper.add(pcTp.pc_tp, ibc.pc_tp);
- pcTp.positive_qc_pc_tp = helper.add(pcTp.positive_qc_pc_tp, ibc.positive_qc_pc_tp);
- pcTp.negative_qc_pc_tp = helper.add(pcTp.negative_qc_pc_tp, ibc.negative_qc_pc_tp);
- }
- await transaction.update(this.ctx.service.stage.tableName,
- { id: newStage.id, ...pcTp, check_calc: true, cache_time_l: new Date() });
- return pcTp;
- }
- /**
- * 期,重新审批,检查单价调整
- * @param {Object} stage - 期
- * @param {Number} auditOrder - 重新审批,最新审批人序号
- * @param {Object} transaction - 事务
- */
- async stageCheckAgainPriceChange(stage, auditOrder, transaction) {
- const pcTp = { contract_pc_tp: 0, qc_pc_tp: 0, pc_tp: 0, positive_qc_pc_tp: 0, negative_qc_pc_tp: 0 };
- // 获取未执行的单价变更,无单价变更不执行
- this.price = await this.ctx.service.revisePrice.getAllDataByCondition({ where: { tid: stage.tid, valid: 1, use_stage: 0 } });
- if (this.price.length === 0) return pcTp;
- const curBillsData = await this.ctx.service.stageBills.getLastestStageData2(stage.tid, stage.id);
- const preBillsData = await this.ctx.service.stageBillsFinal.getAllDataByCondition({ where: { tid: stage.tid, sorder: stage.order - 1 } });
- // 加载树结构
- const bills = await this.ctx.service.ledger.getData(stage.tid);
- this.ctx.helper.assignRelaData(bills, [
- { data: curBillsData, fields: ['id', 'contract_qty', 'qc_qty', 'positive_qc_qty', 'negative_qc_qty', 'postil', 'times', 'order'], prefix: 'cur_', relaId: 'lid' },
- { data: preBillsData, fields: ['id', 'contract_qty', 'contract_tp', 'qc_qty', 'qc_tp', 'unit_price', 'positive_qc_qty', 'negative_qc_qty', 'positive_qc_tp', 'negative_qc_tp'], prefix: 'pre_', relaId: 'lid' },
- ]);
- const billsTree = new Ledger.billsTree(this.ctx, { id: 'ledger_id', pid: 'ledger_pid', order: 'order', level: 'level', rootId: -1, calcFields: [] });
- billsTree.loadDatas(bills);
- const stageChange = await this.ctx.service.stageChange.getFinalStageData(stage.tid, stage.id);
- // 计算 insertBills billsPriceChange stageChange
- const result = { ibData: [], bpcData: [], scData: [] };
- const helper = this.ctx.helper;
- const decimal = this.ctx.tender.info.decimal;
- const said = this.ctx.session.sessionUser.accountId;
- billsTree.calculateAll(node => {
- if (node.children && node.children.length > 0) return;
- // const priceDiff = helper.sub(node.unit_price, node.pre_unit_price);
- // if (!priceDiff) return;
- if (node.cur_id && (node.cur_contract_qty || node.cur_qc_qty)) {
- const cur_contract_tp = helper.mul(node.cur_contract_qty, node.unit_price, decimal.tp);
- const cur_qc_tp = helper.mul(node.cur_qc_qty, node.unit_price, decimal.tp);
- const cur_positive_qc_tp = helper.mul(node.cur_positive_qc_qty, node.unit_price, decimal.tp);
- const cur_negative_qc_tp = helper.mul(node.cur_negative_qc_qty, node.unit_price, decimal.tp);
- if (cur_contract_tp !== node.cur_contract_tp || cur_qc_tp !== node.cur_qc_tp || cur_positive_qc_tp !== node.cur_positive_qc_tp || cur_negative_qc_tp !== node.cur_positive_qc_tp) {
- result.ibData.push({
- tid: stage.tid, sid: stage.id, said,
- lid: node.id,
- times: stage.times, order: auditOrder,
- contract_qty: node.cur_contract_qty, contract_tp: cur_contract_tp,
- qc_qty: node.cur_qc_qty, qc_tp: cur_qc_tp,
- positive_qc_qty: node.cur_positive_qc_qty, positive_qc_tp: cur_positive_qc_tp,
- negative_qc_qty: node.cur_negative_qc_qty, negative_qc_tp: cur_negative_qc_tp,
- postil: node.postil,
- });
- }
- }
- if (node.pre_id && (node.pre_contract_qty || node.pre_qc_qty)) {
- const contract_pc_tp = helper.sub(helper.mul(node.pre_contract_qty, node.unit_price, decimal.tp), node.pre_contract_tp);
- const qc_pc_tp = helper.sub(helper.mul(node.pre_qc_qty, node.unit_price, decimal.tp), node.pre_qc_tp);
- const pc_tp = helper.add(contract_pc_tp, qc_pc_tp);
- const positive_qc_pc_tp = helper.sub(helper.mul(node.pre_positive_qc_qty, node.unit_price, decimal.tp), node.pre_positive_qc_tp);
- const negative_qc_pc_tp = helper.sub(helper.mul(node.pre_negative_qc_qty, node.unit_price, decimal.tp), node.pre_negative_qc_tp);
- if (contract_pc_tp || qc_pc_tp || pc_tp || positive_qc_pc_tp || negative_qc_pc_tp) {
- result.bpcData.push({
- tid: stage.tid, sid: stage.id, sorder: stage.order, lid: node.id, org_price: node.pre_unit_price, unit_price: node.unit_price,
- contract_pc_tp, qc_pc_tp, pc_tp, positive_qc_pc_tp, negative_qc_pc_tp,
- });
- }
- }
- const scDetail = stageChange.filter(x => { return x.lid === node.id; });
- for (const scd of scDetail) {
- result.scData.push({ id: scd.id, unit_price: node.unit_price });
- }
- });
- if (result.ibData.length > 0) await transaction.insert(this.ctx.service.stageBills.tableName, result.ibData);
- await transaction.delete(this.ctx.service.stageBillsPc.tableName, { sid: stage.id });
- if (result.bpcData.length > 0) await transaction.insert(this.ctx.service.stageBillsPc.tableName, result.bpcData);
- if (result.scData.length > 0) await transaction.updateRows(this.ctx.service.stageChange.tableName, result.scData);
- for (const bpc of result.bpcData) {
- pcTp.contract_pc_tp = helper.add(pcTp.contract_pc_tp, bpc.contract_pc_tp);
- pcTp.qc_pc_tp = helper.add(pcTp.qc_pc_tp, bpc.qc_pc_tp);
- pcTp.pc_tp = helper.add(pcTp.pc_tp, bpc.pc_tp);
- pcTp.positive_qc_pc_tp = helper.add(pcTp.positive_qc_pc_tp, bpc.positive_qc_pc_tp);
- pcTp.negative_qc_pc_tp = helper.add(pcTp.negative_qc_pc_tp, bpc.negative_qc_pc_tp);
- }
- await transaction.update(this.ctx.service.stage.tableName,
- { id: stage.id, ...pcTp, check_calc: true, cache_time_l: new Date() });
- return pcTp;
- }
- /**
- * 重算工程变更(调整单价)
- * @param {Object} change - 工程变更
- * @param {Object} transaction - 事务 (无则非事务提交)
- */
- async calcChange(change, transaction) {
- const decimal = this.ctx.tender.info.decimal;
- const changeBills = await this.ctx.service.changeAuditList.getAllDataByCondition({ where: { cid: change.cid } });
- const updateBills = [];
- let total_price = 0, positive_tp = 0, negative_tp = 0;
- for (const b of changeBills) {
- const p = this.findChangeBillsPrice(b.code, b.name, b.unit, b.unit_price, change.cid);
- const settleGcl = b.gcl_id ? this.settleBills.find(x => { return x.lid === b.gcl_id; }) : null;
- const settlePos = b.mx_id ? this.settlePos.find(x => { return x.pid === b.mx_id; }): null;
- let bills_tp;
- if (p && !settleGcl && !settlePos) {
- bills_tp = this.ctx.helper.mul(p.new_price, b.spamount, change.tp_decimal || decimal.tp);
- updateBills.push({ id: b.id, unit_price: p.new_price, checked_price: bills_tp });
- if (!p.rela_cid) p.his_rela_cid.push(change.cid);
- } else {
- bills_tp = this.ctx.helper.mul(b.unit_price, b.spamount, change.tp_decimal || decimal.tp);
- }
- total_price = this.ctx.helper.add(total_price, bills_tp);
- if (b.spamount >= 0) {
- positive_tp = this.ctx.helper.add(positive_tp, bills_tp);
- } else {
- negative_tp = this.ctx.helper.add(negative_tp, bills_tp);
- }
- }
- if (updateBills.length > 0) {
- await transaction.updateRows(this.ctx.service.changeAuditList.tableName, updateBills);
- await transaction.update(this.ctx.service.change.tableName, { total_price, positive_tp, negative_tp }, { where: { cid: change.cid } });
- }
- }
- /**
- * 重算标段下所有工程变更(调整单价)
- * @param {Number} tid - 标段id
- * @param {Object} transaction - 事务 (无则非事务提交)
- */
- async calcAllChanges(tid, transaction) {
- const change = await this.ctx.service.change.getAllDataByCondition({ where: { tid, valid: 1 } });
- if (change.length === 0) return;
- for (const c of change) {
- await this.calcChange(c, transaction);
- }
- const revisePriceUpdate = [];
- for (const p of this.common_price_c) {
- if (p.his_rela_cid.length > 0) revisePriceUpdate.push({id: p.id, his_rela_cid: p.his_rela_cid.join(',')});
- }
- if (revisePriceUpdate.length > 0) await transaction.updateRows(this.ctx.service.revisePrice.tableName, revisePriceUpdate);
- }
- async _calcStage(stage, bills, transaction) {
- const pcTp = { contract_pc_tp: 0, qc_pc_tp: 0, pc_tp: 0, positive_qc_pc_tp: 0, negative_qc_pc_tp: 0 };
- // 无单价变更不执行
- if (this.price.length === 0) return pcTp;
- const curBillsData = await this.ctx.service.stageBills.getLastestStageData2(stage.tid, stage.id);
- const preBillsData = await this.ctx.service.stageBillsFinal.getAllDataByCondition({ where: { tid: stage.tid, sorder: stage.order - 1 } });
- // 加载树结构
- this.ctx.helper.assignRelaData(bills, [
- { data: curBillsData, fields: ['id', 'contract_qty', 'qc_qty', 'positive_qc_qty', 'negative_qc_qty', 'times', 'order', 'postil'], prefix: 'cur_', relaId: 'lid' },
- { data: preBillsData, fields: ['id', 'contract_qty', 'contract_tp', 'qc_qty', 'qc_tp', 'unit_price', 'positive_qc_qty', 'negative_qc_qty', 'positive_qc_tp', 'negative_qc_tp'], prefix: 'pre_', relaId: 'lid' },
- ]);
- const billsTree = new Ledger.billsTree(this.ctx, { id: 'ledger_id', pid: 'ledger_pid', order: 'order', level: 'level', rootId: -1, calcFields: [] });
- billsTree.loadDatas(bills);
- const stageChange = await this.ctx.service.stageChange.getFinalStageData(stage.tid, stage.id);
- // 计算 insertBills/updateBills billsPriceChange StageChange
- const result = { ibData: [], ubData: [], bpcData: [], scData: [] };
- const helper = this.ctx.helper;
- const decimal = this.ctx.tender.info.decimal;
- const said = this.ctx.session.sessionUser.accountId;
- billsTree.calculateAll(node => {
- if (node.children && node.children.length > 0) return;
- // const priceDiff = helper.sub(node.unit_price, node.pre_unit_price);
- // if (!priceDiff) return;
- if (node.cur_id && (node.cur_contract_qty || node.cur_qc_qty)) {
- const cur_contract_tp = helper.mul(node.cur_contract_qty, node.unit_price, decimal.tp);
- const cur_qc_tp = helper.mul(node.cur_qc_qty, node.unit_price, decimal.tp);
- const cur_positive_qc_tp = helper.mul(node.cur_positive_qc_qty, node.unit_price, decimal.tp);
- const cur_negative_qc_tp = helper.mul(node.cur_negative_qc_qty, node.unit_price, decimal.tp);
- if (cur_contract_tp !== node.cur_contract_tp || cur_qc_tp !== node.cur_qc_tp || cur_positive_qc_tp !== node.cur_positive_qc_tp || cur_negative_qc_tp !== node.cur_positive_qc_tp) {
- if (node.cur_times === stage.times && node.cur_order === 0) {
- result.ubData.push({
- id: node.cur_id,
- contract_tp: cur_contract_tp, qc_tp: cur_qc_tp,
- positive_qc_tp: cur_positive_qc_tp, negative_qc_tp: cur_negative_qc_tp,
- });
- } else {
- result.ibData.push({
- tid: stage.tid, sid: stage.id, said,
- lid: node.id, times: stage.times, order: 0,
- contract_qty: node.cur_contract_qty, contract_tp: cur_contract_tp,
- qc_qty: node.cur_qc_qty, qc_tp: cur_qc_tp,
- positive_qc_qty: node.cur_positive_qc_qty, positive_qc_tp: cur_positive_qc_tp,
- negative_qc_qty: node.cur_negative_qc_qty, negative_qc_tp: cur_negative_qc_tp,
- postil: node.cur_postil,
- });
- }
- }
- }
- if (node.pre_id && (node.pre_contract_qty || node.pre_qc_qty)) {
- node.contract_pc_tp = helper.sub(helper.mul(node.pre_contract_qty, node.unit_price, decimal.tp), node.pre_contract_tp);
- node.qc_pc_tp = helper.sub(helper.mul(node.pre_qc_qty, node.unit_price, decimal.tp), node.pre_qc_tp);
- node.pc_tp = helper.add(node.contract_pc_tp, node.qc_pc_tp);
- node.positive_qc_pc_tp = helper.sub(helper.mul(node.pre_positive_qc_qty, node.unit_price, decimal.tp), node.pre_positive_qc_tp);
- node.negative_qc_pc_tp = helper.sub(helper.mul(node.pre_negative_qc_qty, node.unit_price, decimal.tp), node.pre_negative_qc_tp);
- result.bpcData.push({
- tid: stage.tid, sid: stage.id, sorder: stage.order, lid: node.id, org_price: node.pre_unit_price, unit_price: node.unit_price,
- contract_pc_tp: node.contract_pc_tp, qc_pc_tp: node.qc_pc_tp, pc_tp: node.pc_tp,
- positive_qc_pc_tp: node.positive_qc_pc_tp, negative_qc_pc_tp: node.negative_qc_pc_tp,
- });
- }
- const scDetail = stageChange.filter(x => { return x.lid === node.id; });
- for (const scd of scDetail) {
- result.scData.push({ id: scd.id, unit_price: node.unit_price });
- }
- });
- if (result.ibData.length > 0) await transaction.insert(this.ctx.service.stageBills.tableName, result.ibData);
- if (result.ubData.length > 0) await transaction.updateRows(this.ctx.service.stageBills.tableName, result.ubData);
- await transaction.delete(this.ctx.service.stageBillsPc.tableName, { sid: stage.id });
- if (result.bpcData.length > 0) await transaction.insert(this.ctx.service.stageBillsPc.tableName, result.bpcData);
- if (result.scData.length > 0) await transaction.updateRows(this.ctx.service.stageChange.tableName, result.scData);
- for (const bpc of result.bpcData) {
- pcTp.contract_pc_tp = helper.add(pcTp.contract_pc_tp, bpc.contract_pc_tp);
- pcTp.qc_pc_tp = helper.add(pcTp.qc_pc_tp, bpc.qc_pc_tp);
- pcTp.pc_tp = helper.add(pcTp.pc_tp, bpc.pc_tp);
- pcTp.positive_qc_pc_tp = helper.add(pcTp.positive_qc_pc_tp, bpc.positive_qc_pc_tp);
- pcTp.negative_qc_pc_tp = helper.add(pcTp.negative_qc_pc_tp, bpc.negative_qc_pc_tp);
- }
- await transaction.update(this.ctx.service.stage.tableName,
- { id: stage.id, ...pcTp, check_calc: true, cache_time_l: new Date() });
- return pcTp;
- }
- async _calcStageWithoutPc(stage, bills, transaction) {
- // 无单价变更不执行
- if (this.price.length === 0) return;
- const curBillsData = await this.ctx.service.stageBills.getLastestStageData2(stage.tid, stage.id);
- // 加载树结构
- this.ctx.helper.assignRelaData(bills, [
- { data: curBillsData, fields: ['id', 'contract_qty', 'qc_qty', 'positive_qc_qty', 'negative_qc_qty', 'times', 'order', 'postil'], prefix: 'cur_', relaId: 'lid' },
- ]);
- const billsTree = new Ledger.billsTree(this.ctx, { id: 'ledger_id', pid: 'ledger_pid', order: 'order', level: 'level', rootId: -1, calcFields: [] });
- billsTree.loadDatas(bills);
- const stageChange = await this.ctx.service.stageChange.getFinalStageData(stage.tid, stage.id);
- // 计算 insertBills/updateBills StageChange
- const result = { ibData: [], ubData: [], scData: [] };
- const helper = this.ctx.helper;
- const decimal = this.ctx.tender.info.decimal;
- const said = this.ctx.session.sessionUser.accountId;
- billsTree.calculateAll(node => {
- if (node.children && node.children.length > 0) return;
- // const priceDiff = helper.sub(node.unit_price, node.pre_unit_price);
- // if (!priceDiff) return;
- if (node.cur_id && (node.cur_contract_qty || node.cur_qc_qty)) {
- const cur_contract_tp = helper.mul(node.cur_contract_qty, node.unit_price, decimal.tp);
- const cur_qc_tp = helper.mul(node.cur_qc_qty, node.unit_price, decimal.tp);
- const cur_positive_qc_tp = helper.mul(node.cur_positive_qc_qty, node.unit_price, decimal.tp);
- const cur_negative_qc_tp = helper.mul(node.cur_negative_qc_qty, node.unit_price, decimal.tp);
- if (cur_contract_tp !== node.cur_contract_tp || cur_qc_tp !== node.cur_qc_tp || cur_positive_qc_tp !== node.cur_positive_qc_tp || cur_negative_qc_tp !== node.cur_positive_qc_tp) {
- if (node.cur_times === stage.times && node.cur_order === 0) {
- result.ubData.push({
- id: node.cur_id,
- contract_tp: cur_contract_tp, qc_tp: cur_qc_tp,
- positive_qc_tp: cur_positive_qc_tp, negative_qc_tp: cur_negative_qc_tp,
- });
- } else {
- result.ibData.push({
- tid: stage.tid, sid: stage.id, said,
- lid: node.id, times: stage.times, order: 0,
- contract_qty: node.cur_contract_qty, contract_tp: cur_contract_tp,
- qc_qty: node.cur_qc_qty, qc_tp: cur_qc_tp,
- positive_qc_qty: node.cur_positive_qc_qty, positive_qc_tp: cur_positive_qc_tp,
- negative_qc_qty: node.cur_negative_qc_qty, negative_qc_tp: cur_negative_qc_tp,
- postil: node.cur_postil,
- });
- }
- }
- }
- const scDetail = stageChange.filter(x => { return x.lid === node.id; });
- for (const scd of scDetail) {
- result.scData.push({ id: scd.id, unit_price: node.unit_price });
- }
- });
- if (result.ibData.length > 0) await transaction.insert(this.ctx.service.stageBills.tableName, result.ibData);
- if (result.ubData.length > 0) await transaction.updateRows(this.ctx.service.stageBills.tableName, result.ubData);
- if (result.scData.length > 0) await transaction.updateRows(this.ctx.service.stageChange.tableName, result.scData);
- }
- /**
- * 计算修订台账
- * @param {Object}revise - 最新一次台账修订(此处不检查)
- * @param {Object} transaction - 事务 (无则非事务提交)
- */
- async calcReviseLedger(revise, transaction) {
- const xmj = await this.ctx.helper.loadLedgerDataFromOss(revise.curHis.bills_file);
- xmj.forEach(x => {
- delete x.is_tp;
- delete x.gxby_status;
- delete x.gxby_limit;
- delete x.gxby_ratio;
- delete x.gxby_url;
- delete x.dagl_status;
- delete x.dagl_limit;
- delete x.dagl_ratio;
- delete x.dagl_url;
- });
- const pos = await this.ctx.helper.loadLedgerDataFromOss(revise.curHis.pos_file);
- pos.forEach(p => {
- p.in_time = new Date(p.in_time);
- delete p.gxby_status;
- delete p.gxby_limit;
- delete p.gxby_ratio;
- delete p.gxby_url;
- delete p.dagl_status;
- delete p.dagl_limit;
- delete p.dagl_ratio;
- delete p.dagl_url;
- });
- await transaction.delete(this.ctx.service.ledger.tableName, { tender_id: revise.tid });
- if (xmj.length > 0) await transaction.insert(this.ctx.service.ledger.tableName, xmj);
- await transaction.delete(this.ctx.service.pos.tableName, { tid: revise.tid });
- if (pos.length > 0) await transaction.insert(this.ctx.service.pos.tableName, pos);
- // 应用到未审完成期
- const stages = await this.ctx.service.stage.getAllDataByCondition({ where: { tid: revise.tid }, order: ['order', 'asc'] });
- const latestStage = stages[stages.length - 1];
- let pcTp;
- if (latestStage && latestStage.status !== audit.stage.status.checked) {
- for (const s of stages) {
- if (s.status === audit.stage.status.checked) continue;
- if (!pcTp) {
- pcTp = await this._calcStage(latestStage, xmj, transaction);
- } else {
- await this._calcStageWithoutPc(latestStage, xmj, transaction);
- }
- }
- }
- return pcTp;
- }
- async calcRevise(revise, transaction) {
- if (revise.tid !== this.ctx.tender.id) throw '数据错误';
- this.price = await this.ctx.service.revisePrice.getAllDataByCondition({ where: { rid: revise.id } });
- this.settleStatus = this.ctx.service.settle.settleStatus;
- this.settleBills = revise.readySettle ? await this.ctx.service.settleBills.getAllDataByCondition({ where: { settle_id: revise.readySettle.id, settle_status: this.settleStatus.finish } }) : [];
- this.settlePos = revise.readySettle ? await this.ctx.service.settlePos.getAllDataByCondition({ where: { settle_id: revise.readySettle.id }}) : [];
- const pcTp = await this.calcReviseLedger(revise, transaction);
- // 引用到所有工程变更
- await this.calcAllChanges(revise.tid, transaction);
- return pcTp;
- }
- }
- module.exports = revisePriceCalc;
|