|
@@ -0,0 +1,296 @@
|
|
|
+'use strict';
|
|
|
+
|
|
|
+/**
|
|
|
+ *
|
|
|
+ *
|
|
|
+ * @author Mai
|
|
|
+ * @date
|
|
|
+ * @version
|
|
|
+ */
|
|
|
+
|
|
|
+const materialConst = require('../../const/material');
|
|
|
+
|
|
|
+const Ledger = require('../../lib/ledger');
|
|
|
+
|
|
|
+const billsFields = (function () {
|
|
|
+ const cur = ['contract_qty', 'contract_tp', 'contract_expr', 'qc_qty', 'qc_tp', 'gather_qty', 'gather_tp', 'postil'];
|
|
|
+ const pre = ['pre_contract_qty', 'pre_contract_tp', 'pre_qc_qty', 'pre_qc_tp', 'pre_gather_qty', 'pre_gather_tp'];
|
|
|
+ const end = ['end_contract_qty', 'end_contract_tp', 'end_qc_qty', 'end_qc_tp', 'end_gather_qty', 'end_gather_tp'];
|
|
|
+ const final = ['final_tp', 'final_ratio'];
|
|
|
+ const stageDgn = ['deal_dgn_qty1', 'deal_dgn_qty2', 'c_dgn_qty1', 'c_dgn_qty2'];
|
|
|
+
|
|
|
+ const stage = cur.concat(pre, end, final);
|
|
|
+ const stageEnd = pre.concat(end, final);
|
|
|
+ const bgl = ['qc_bgl_code'];
|
|
|
+ const leafXmj = ['leaf_xmj_id'];
|
|
|
+
|
|
|
+ return {cur, pre, end, final, stageDgn, stage, stageEnd, bgl, leafXmj};
|
|
|
+})();
|
|
|
+const posFields = (function () {
|
|
|
+ const cur = ['contract_qty', 'qc_qty', 'gather_qty', 'postil'];
|
|
|
+ const pre = ['pre_contract_qty', 'pre_qc_qty', 'pre_gather_qty'];
|
|
|
+ const end = ['end_contract_qty', 'end_qc_qty', 'end_gather_qty'];
|
|
|
+ const final = ['final_ratio'];
|
|
|
+
|
|
|
+ const stage = cur.concat(pre, end, final);
|
|
|
+ const stageEnd = pre.concat(end, final);
|
|
|
+ const bgl = ['qc_bgl_code'];
|
|
|
+
|
|
|
+ return {cur, pre, end, final, stage, stageEnd, bgl};
|
|
|
+})();
|
|
|
+
|
|
|
+class ReportMemoryMaterial {
|
|
|
+ constructor(ctx) {
|
|
|
+ this.ctx = ctx;
|
|
|
+ }
|
|
|
+
|
|
|
+ _getNewPos(updateFields) {
|
|
|
+ const helper = this.ctx.helper;
|
|
|
+ return new Ledger.pos({
|
|
|
+ id: 'id', ledgerId: 'lid',
|
|
|
+ updateFields: ['contract_qty', 'qc_qty', 'postil'],
|
|
|
+ calc: function (p) {
|
|
|
+ p.pre_gather_qty = helper.add(p.pre_contract_qty, p.pre_qc_qty);
|
|
|
+ p.gather_qty = helper.add(p.contract_qty, p.qc_qty);
|
|
|
+ p.end_contract_qty = helper.add(p.pre_contract_qty, p.contract_qty);
|
|
|
+ p.end_qc_qty = helper.add(p.pre_qc_qty, p.qc_qty);
|
|
|
+ p.end_gather_qty = helper.add(p.pre_gather_qty, p.gather_qty);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ _getNewBillsTree(calcFields) {
|
|
|
+ return new Ledger.billsTree(this.ctx, {
|
|
|
+ id: 'ledger_id',
|
|
|
+ pid: 'ledger_pid',
|
|
|
+ order: 'order',
|
|
|
+ level: 'level',
|
|
|
+ rootId: -1,
|
|
|
+ keys: ['id', 'tender_id', 'ledger_id'],
|
|
|
+ stageId: 'id',
|
|
|
+ calcFields: calcFields || ['deal_tp', 'total_price', 'contract_tp', 'qc_tp', 'gather_tp', 'pre_contract_tp', 'pre_qc_tp', 'pre_gather_tp'],
|
|
|
+ calc: function (node, helper) {
|
|
|
+ if (node.children && node.children.length === 0) {
|
|
|
+ node.pre_gather_qty = helper.add(node.pre_contract_qty, node.pre_qc_qty);
|
|
|
+ node.gather_qty = helper.add(node.contract_qty, node.qc_qty);
|
|
|
+ node.end_contract_qty = helper.add(node.pre_contract_qty, node.contract_qty);
|
|
|
+ node.end_qc_qty = helper.add(node.pre_qc_qty, node.qc_qty);
|
|
|
+ node.end_gather_qty = helper.add(node.pre_gather_qty, node.gather_qty);
|
|
|
+ }
|
|
|
+ node.pre_gather_tp = helper.add(node.pre_contract_tp, node.pre_qc_tp);
|
|
|
+ node.gather_tp = helper.add(node.contract_tp, node.qc_tp);
|
|
|
+ node.end_contract_tp = helper.add(node.pre_contract_tp, node.contract_tp);
|
|
|
+ node.end_qc_tp = helper.add(node.pre_qc_tp, node.qc_tp);
|
|
|
+ node.end_gather_tp = helper.add(node.pre_gather_tp, node.gather_tp);
|
|
|
+
|
|
|
+ node.final_tp = helper.add(node.total_price, node.end_qc_tp);
|
|
|
+ node.final_ratio = helper.mul(helper.div(node.end_gather_tp, node.final_tp, 4), 100);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ _checkFieldsExist(source, check) {
|
|
|
+ for (const s of source) {
|
|
|
+ if (check.indexOf(s) >= 0) {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ async getSelectMaterialAuditors(tid, material_order, fields) {
|
|
|
+ await this.ctx.service.material.checkMaterial(tid, material_order);
|
|
|
+ const auditors = await this.ctx.service.materialAudit.getFinalAuditGroup(this.ctx.material.id, this.ctx.material.curTimes);
|
|
|
+ const user = await this.ctx.service.projectAccount.getDataById(this.ctx.material.user_id);
|
|
|
+ const result = [{
|
|
|
+ aid: user.id,
|
|
|
+ name: user.name,
|
|
|
+ company: user.company,
|
|
|
+ role: user.role,
|
|
|
+ mobile: user.mobile,
|
|
|
+ telephone: user.telephone,
|
|
|
+ sign_path: user.sign_path,
|
|
|
+ opinion: user.opinion,
|
|
|
+ end_time: auditors && auditors.length > 0 ? auditors[0].begin_time : null,
|
|
|
+ sort: 0,
|
|
|
+ }, ...auditors];
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ async getMaterial(tender_id, material_order, fields) {
|
|
|
+ const result = await this.ctx.service.material.getValidMaterials(tender_id);
|
|
|
+ if (this._checkFieldsExist(fields, ['checked_time'])) {
|
|
|
+ for (const r of result) {
|
|
|
+ const auditors = await this.ctx.service.materialAudit.getFinalAuditGroup(r.id, r.curTimes || r.times);
|
|
|
+ r.checked_time = !r.curTimes ? auditors[auditors.length - 1].end_time : null;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ _completeMaterialGl(materialGl) {
|
|
|
+ const tTypeStr = [], mTypeStr = [];
|
|
|
+ for (const t of materialConst.t_type) {
|
|
|
+ tTypeStr[t.value] = t.text;
|
|
|
+ }
|
|
|
+ for (const m of materialConst.m_type) {
|
|
|
+ mTypeStr[m.value] = m.text;
|
|
|
+ }
|
|
|
+ for (const gl of materialGl) {
|
|
|
+ gl.tp = this.ctx.helper.mul(gl.quantity, gl.m_spread, 2);
|
|
|
+ gl.t_type_str = tTypeStr[gl.t_type];
|
|
|
+ gl.m_type_str = mTypeStr[gl.m_type];
|
|
|
+ gl.end_tp = this.ctx.helper.add(gl.tp, gl.pre_tp);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ async getMaterialGl(tender_id, material_order, fields) {
|
|
|
+ const materials = await this.ctx.service.material.getAllDataByCondition({
|
|
|
+ where: {tid: tender_id},
|
|
|
+ orders: [['order', 'desc']],
|
|
|
+ });
|
|
|
+ if (materials.length > 0) {
|
|
|
+ let result;
|
|
|
+ if (materials[0].order === material_order) {
|
|
|
+ result = await this.ctx.service.materialBills.getAllDataByCondition({
|
|
|
+ where: {tid: tender_id}
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ const material = this.ctx.helper._.find(materials, {order: material_order});
|
|
|
+ if (!material) return [];
|
|
|
+
|
|
|
+ const sql = 'SELECT mb.id, mb.tid, mb.mid, mb.order, mb.order, mb.t_type, mb.code, mb.name, mb.unit, mb.spec, mb.m_type,' +
|
|
|
+ ' mbh.quantity, mbh.expr,' +
|
|
|
+ ' mb.basic_price, mb.basic_times, ' +
|
|
|
+ ' mbh.msg_tp, mbh.msg_times, mbh.msg_spread, mbh.m_up_risk, mbh.m_down_risk, mbh.m_spread, mbh.m_tp, mbh.pre_tp, mbh.m_tax_tp, mbh.tax_pre_tp, mbh.origin, ' +
|
|
|
+ ' mb.remark, mb.is_summary, mbh.m_tax, mb.in_time' +
|
|
|
+ ' FROM ' + this.ctx.service.materialBillsHistory.tableName + ' mbh ' +
|
|
|
+ ' LEFT JOIN ' + this.ctx.service.materialBills.tableName + ' mb ON mbh.mb_id = mb.id ' +
|
|
|
+ ' WHERE mbh.tid = ? And mbh.mid = ?';
|
|
|
+ result = await this.ctx.app.mysql.query(sql, [tender_id, material.id]);
|
|
|
+ }
|
|
|
+ this._completeMaterialGl(result);
|
|
|
+ return result;
|
|
|
+ } else {
|
|
|
+ return [];
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ async getMaterialGlDetail(tender_id, material_order, fields) {
|
|
|
+ const material = await this.ctx.service.material.getDataByCondition({tid: tender_id, order: material_order});
|
|
|
+ return material ? await this.ctx.service.materialList.getMaterialData(tender_id, material.id) : [];
|
|
|
+ }
|
|
|
+
|
|
|
+ async getMaterialBills(tender_id, material_order, fields) {
|
|
|
+ const material = await this.ctx.service.material.getDataByCondition({tid: tender_id, order: material_order});
|
|
|
+ try {
|
|
|
+ const billsData = await this.ctx.service.ledger.getData(tender_id);
|
|
|
+ if (this._checkFieldsExist(fields, billsFields.stage)) {
|
|
|
+ const curStage = await this.ctx.service.stageBills.getStagesData(tender_id, material.stage_id);
|
|
|
+ this.ctx.helper.assignRelaData(billsData, [
|
|
|
+ {data: curStage, fields: ['contract_qty', 'contract_tp', 'contract_expr', 'qc_qty', 'qc_tp', 'postil'], prefix: '', relaId: 'lid'}
|
|
|
+ ]);
|
|
|
+ }
|
|
|
+
|
|
|
+ const billsTree = this._getNewBillsTree();
|
|
|
+ billsTree.loadDatas(billsData);
|
|
|
+ billsTree.calculateAll();
|
|
|
+
|
|
|
+ return billsTree.getDatas([
|
|
|
+ 'id', 'tender_id', 'ledger_id', 'ledger_pid', 'level', 'order', 'full_path', 'is_leaf',
|
|
|
+ 'code', 'b_code', 'name', 'unit', 'unit_price',
|
|
|
+ 'deal_qty', 'deal_tp',
|
|
|
+ 'sgfh_qty', 'sgfh_tp', 'sjcl_qty', 'sjcl_tp', 'qtcl_qty', 'qtcl_tp', 'quantity', 'total_price',
|
|
|
+ 'dgn_qty1', 'dgn_qty2',
|
|
|
+ 'drawing_code', 'memo', 'node_type', 'is_tp',
|
|
|
+ 'contract_qty', 'contract_tp', 'qc_qty', 'qc_tp', 'gather_qty', 'gather_tp', 'postil',
|
|
|
+ 'sgfh_expr', 'sjcl_expr', 'qtcl_expr', 'contract_expr',
|
|
|
+ ]);
|
|
|
+ } catch(err) {
|
|
|
+ this.ctx.helper.log(err);
|
|
|
+ return [];
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ async getMaterialPos(tender_id, material_order, fields) {
|
|
|
+ const material = await this.ctx.service.material.getDataByCondition({tid: tender_id, order: material_order});
|
|
|
+ try {
|
|
|
+ const posData = await this.ctx.service.pos.getAllDataByCondition({ where: {tid: tender_id }});
|
|
|
+ if (this._checkFieldsExist(fields, posFields.stage)) {
|
|
|
+ const curPosStage = await this.ctx.service.stagePos.getStagesData(tender_id, material.stage_id);
|
|
|
+ this.ctx.helper.assignRelaData(posData, [
|
|
|
+ {data: curPosStage, fields: ['contract_qty', 'qc_qty', 'contract_expr', 'postil'], prefix: '', relaId: 'pid'}
|
|
|
+ ]);
|
|
|
+ }
|
|
|
+ const pos = this._getNewPos();
|
|
|
+ pos.loadDatas(posData);
|
|
|
+ pos.calculateAll();
|
|
|
+
|
|
|
+ return pos.getDatas();
|
|
|
+ } catch (err) {
|
|
|
+ this.ctx.helper.log(err);
|
|
|
+ return [];
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ async getMaterialGatherBills(tender_id, material_order) {
|
|
|
+ const materials = await this.ctx.service.material.getAllDataByCondition({
|
|
|
+ where: { tid: tender_id },
|
|
|
+ orders: [['order', 'desc']],
|
|
|
+ });
|
|
|
+ if (materials.length === 0) return {};
|
|
|
+
|
|
|
+ const material = await this.ctx.service.material.getDataByCondition({ tid: tender_id, order: material_order });
|
|
|
+ const decimal = material.decimal ? JSON.parse(material.decimal) : materialConst.decimal;
|
|
|
+ try {
|
|
|
+
|
|
|
+ const billsData = await this.ctx.service.ledger.getData(tender_id);
|
|
|
+ const billsTree = this._getNewBillsTree();
|
|
|
+ billsTree.loadDatas(billsData);
|
|
|
+ billsTree.calculateAll();
|
|
|
+
|
|
|
+ const posData = await this.ctx.service.pos.getPosData({ tid: tender_id });
|
|
|
+ const curStage = await this.ctx.service.stagePos.getStagesData(tender_id, material.stage_id);
|
|
|
+ this.ctx.helper.assignRelaData(posData, [
|
|
|
+ { data: curStage, fields: ['contract_qty', 'contract_tp', 'contract_expr', 'qc_qty', 'qc_tp', 'postil'], prefix: '', relaId: 'pid' },
|
|
|
+ ]);
|
|
|
+ const pos = this._getNewPos();
|
|
|
+ pos.loadDatas(posData);
|
|
|
+ pos.calculateAll();
|
|
|
+
|
|
|
+ const gclGatherModel = require('../gcl_gather').gclGather;
|
|
|
+ const gatherUtil = new gclGatherModel(this.ctx);
|
|
|
+ gatherUtil.gatherObj(billsTree, pos);
|
|
|
+ const materialGl = material_order === materials[0].order
|
|
|
+ ? await this.ctx.service.materialList.getMaterialData(tender_id, material.id)
|
|
|
+ : await this.ctx.service.materialList.getPreMaterialData(tender_id, material.id);
|
|
|
+ const materialNotJoin = await this.ctx.service.materialListNotjoin.getAllDataByCondition({ where: { mid: material.id } });
|
|
|
+
|
|
|
+ const helper = this.ctx.helper;
|
|
|
+ for (const g of gatherUtil.gclList) {
|
|
|
+ g.jiacha = 0;
|
|
|
+ for (const x of g.leafXmjs) {
|
|
|
+ x.jiacha = 0;
|
|
|
+ const mnj = materialNotJoin.find(m => {
|
|
|
+ return m.gcl_id === x.org_gcl_id && m.xmj_id === x.id && (x.mx_id ? x.mx_id === m.mx_id : true);
|
|
|
+ });
|
|
|
+ if (mnj) continue;
|
|
|
+ const list = materialGl.filter(g => {
|
|
|
+ return g.gcl_id === x.org_gcl_id && g.xmj_id === x.id && (x.mx_id ? x.mx_id === g.mx_id : true);
|
|
|
+ });
|
|
|
+ for (const l of list) {
|
|
|
+ x.jiacha = helper.add(x.jiacha, helper.mul(helper.mul(x.gather_qty, l.quantity), l.m_spread));
|
|
|
+ }
|
|
|
+ x.jiacha = helper.round(x.jiacha, decimal.tp);
|
|
|
+ g.jiacha = helper.add(g.jiacha, x.jiacha);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return { mem_material_gather_bills: gatherUtil.gclList, mem_material_gather_xmj: gatherUtil.leafXmjs, mem_material_gather_gl: materialGl };
|
|
|
+ } catch (err) {
|
|
|
+ this.ctx.log(err);
|
|
|
+ return {};
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+module.exports = ReportMemoryMaterial;
|