123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045 |
- /**
- * Created by zhang on 2018/4/17.
- */
- const projectType = {
- folder: 'Folder',
- tender: 'Tender',
- project: 'Project',
- engineering: 'Engineering',
- };
- //先导出后require可以解决循环引用问题
- module.exports={
- prepareShareList,
- getShareList,
- addShareList,
- updateShareList,
- deleteShareList,
- getShareInfoMap,
- getRecentShareList,
- getProjectShareList,
- getUnreadShareListByCompilation,
- getShareTip,
- getShareState,
- markShareItemsRead,
- getShareInfoAfterChangePermission,
- moveProject:moveProject,
- accessToCopyProject,
- copyProject:copyProject,
- copyExample: copyExample,
- setupSummaryFields: setupSummaryFields,
- getSummaryInfo: getSummaryInfo,
- getSummaryInfoByTender: getSummaryInfoByTender,
- getIndexReportData: getIndexReportData,
- getTendersFeeInfo: getTendersFeeInfo,
- getConstructionProject: getConstructionProject,
- getFullPath: getFullPath,
- projectType: projectType,
- getPosterityProjects: getPosterityProjects,
- isShare: isShare,
- isFirst: isFirst,
- getShareInfo: getShareInfo,
- prepareInitialData: prepareInitialData,
- changeFile:changeFile,
- getBasicInfo: getBasicInfo,
- getProjectFeature: getProjectFeature,
- getProjectByGranularity: getProjectByGranularity,
- importProject: importProject,
- getProjectPlaceholder: getProjectPlaceholder,
- exportProject:exportProject,
- importProjects:importProjects,//建筑这里重名了,这比养护加多了个s
- initOverHeightItems: initOverHeightItems,
- uploadToken:uploadToken,
- downLoadProjectFile:downLoadProjectFile,
- importChongqingProject:importChongqingProject,
- importProcessChecking:importProcessChecking,
- copyConstructionProject,
- importInterface,
- isTenderOverrun,
- getWelcomeInfo:getWelcomeInfo
- };
- let mongoose = require('mongoose');
- let _ = require("lodash");
- let feeRate_facade = require('../../fee_rates/facade/fee_rates_facade');
- let glj_facade = require('../../glj/facade/glj_facade');
- let project_facade = require('../../main/facade/project_facade');
- let logger = require("../../../logs/log_helper").logger;
- const uuidV1 = require('uuid/v1');
- let projectModel = mongoose.model('projects');
- let projectSettingModel = mongoose.model('proj_setting');
- let billsModel = mongoose.model('bills');
- let rationModel = mongoose.model('ration');
- let gljListModel = mongoose.model("glj_list");
- let calcProgramsModel = mongoose.model('calc_programs');
- let labourCoesModel = mongoose.model('labour_coes');
- let feeRateModel = mongoose.model('fee_rates');
- let feeRateFileModel = mongoose.model('fee_rate_file');
- let unitPriceFileModel = mongoose.model("unit_price_file");
- let mixRatioModel = mongoose.model("mix_ratio");
- let unitPriceModel = mongoose.model("unit_price");
- let installationFeeModel = mongoose.model("installation_fee");
- let rationGLJModel = mongoose.model('ration_glj');
- let rationCoeModel = mongoose.model('ration_coe');
- let rationInstallationModel = mongoose.model('ration_installation');
- let quantityDetailModel = mongoose.model('quantity_detail');
- let rationTemplateModel = mongoose.model('ration_template');
- let userModel = mongoose.model('user');
- let compleGljSectionModel = mongoose.model('complementary_glj_section');
- let compleGljSectionTModel = mongoose.model('complementary_glj_section_templates');
- let compilationModel = mongoose.model('compilation');
- let engineeringModel = mongoose.model('engineering_lib');
- let basicInfoModel = mongoose.model('std_basic_info_lib');
- let projectFeatureModel = mongoose.model('std_project_feature_lib');
- let stdRationItemModel = mongoose.model('std_ration_lib_ration_items');
- let stdGljItemModel = mongoose.model('std_glj_lib_gljList');
- let evaluateListModel = mongoose.model("evaluate_list");
- let bidListModel = mongoose.model("bid_evaluation_list");
- let contractorListModel = mongoose.model("contractor_list");
- let featureLibModel = mongoose.model("std_project_feature_lib");
- let importLogsModel = mongoose.model("import_logs");
- const overHeightLibModel = mongoose.model('std_over_height_lib');
- const shareListModel = mongoose.model('share_list');
- let welcomeModel = mongoose.model("welcome_setting");
- let scMathUtil = require('../../../public/scMathUtil').getUtil();
- let counter = require('../../../public/counter/counter');
- const SectionTreeDao = require('../../complementary_ration_lib/models/sectionTreeModel');
- let sectionTreeDao = new SectionTreeDao();
- const CounterModel = require("../../glj/models/counter_model");
- const moment = require('moment-timezone');
- const { fixedFlag, SharePermissionChangeType } = require('../../../public/common_constants');
- const notDeleted = [{deleteInfo: null}, {'deleteInfo.deleted': false}];
- const {
- defaultDecimal,
- billsQuantityDecimal,
- displaySetting,
- calcOptions,
- tenderSetting
- } = require('../models/project_property_template');
- let labourCoeFacade = require('../../main/facade/labour_coe_facade');
- let calcProgramFacade = require('../../main/facade/calc_program_facade');
- let mainColLibModel = mongoose.model('std_main_col_lib');
- const EngineeringLibModel = require("../../users/models/engineering_lib_model");
- let installationFacade = require('../../main/facade/installation_facade');
- let cipher = require('../../../public/cipher');
- let index = require("../../system_setting/model/index");
- let qiniu = require("qiniu");
- let fs = require("fs");
- let path = require("path");
- let request = require("request");
- const systemSettingModel = mongoose.model('system_setting');
- let qiniu_config = {
- "AccessKey": "_gR1ed4vi1vT2G2YITGSf4_H0fJu_nRS9Tzk3T4z",
- "SecretKey": "ty4zd0FHqgEDaiVzSLC8DfHlai99aS7bspLkw6s6",
- "Bucket": "yun-update",
- "Domain": "http://serverupdate.smartcost.com.cn"
- };
- let mac = new qiniu.auth.digest.Mac(qiniu_config.AccessKey, qiniu_config.SecretKey);
- // 重构了分享的数据结构,原本存在projects表的shareInfo数组中
- // 为了更好地适应新功能及以后拓展功能,现将分享信息存放在单独的share_list表中
- // 为了适应旧数据,需要在share_list没有数据的时候,将原本的分享信息复制到share_list中,同时生成联系人
- // TODO: 上线后这个方法执行过后,应该删除此方法
- async function prepareShareList() {
- const shareListCount = await shareListModel.count({});
- console.log(shareListCount);
- if (shareListCount) {
- return;
- }
- logger.info('================================enterPrepareShareList================================================');
- // 将项目的shareInfo数据复制到share_list表中
- const projects = await projectModel.find({'shareInfo.0': {$exists: true}}, '-_id ID userID shareInfo').lean();
- if (!projects.length) {
- return;
- }
- const shareList = [];
- const userMap = {}; // 给生成联系人做准备
- projects.forEach(project => {
- const ownerContacts = userMap[project.userID] || (userMap[project.userID] = []);
- project.shareInfo.forEach(shareItem => {
- if (!shareItem.shareDate) {
- return;
- }
- const receiverContacts = userMap[shareItem.userID] || (userMap[shareItem.userID] = []);
- receiverContacts.push(project.userID);
- const newItem = {
- ID: uuidV1(),
- projectID: project.ID,
- owner: project.userID,
- receiver: shareItem.userID,
- allowCopy: shareItem.allowCopy,
- allowCooperate: shareItem.allowCooperate,
- shareDate: shareItem.shareDate,
- updateDate: shareItem.shareDate
- };
- ownerContacts.push(shareItem.userID);
- shareList.push(newItem);
- });
- });
- // 插入分享信息
- const shareListPromise = shareListModel.insertMany(shareList);
- const tasks = [shareListPromise];
- // 更新用户信息
- const userTasks = [];
- Object.entries(userMap).forEach(([userID, contacts]) => {
- contacts = [...new Set(contacts)]
- .map(user => ({ userID: user }));
- const task = {
- updateOne: {
- filter: {
- _id: mongoose.Types.ObjectId(userID)
- },
- update: {
- contacts
- }
- }
- };
- userTasks.push(task);
- });
- if (userTasks.length) {
- tasks.push(userModel.bulkWrite(userTasks));
- }
- await Promise.all(tasks);
- }
- // 获取分享列表
- async function getShareList(query) {
- return await shareListModel.find(query, '-_id').lean();
- }
- async function addShareList(docs) {
- await shareListModel.insertMany(docs);
- }
- async function deleteShareList(query) {
- await shareListModel.deleteMany(query);
- }
- async function updateShareList(updateData) {
- const bulks = updateData.map(item => (
- {
- updateOne: {
- filter: item.query,
- update: item.update
- }
- }
- ));
- if (bulks.length) {
- await shareListModel.bulkWrite(bulks);
- }
- }
- // 根据项目ID获取项目shareInfo字段的数据映射(前端旧逻辑依赖项目本身的shareInfo字段)
- async function getShareInfoMap(projectIDs, shareList = null) {
- if (!shareList) {
- shareList = await getShareList({projectID: {$in: projectIDs}});
- }
- // 将相同项目的分享信息进行映射
- const map = {};
- shareList.forEach(item => {
- const shareInfo = map[item.projectID] || (map[item.projectID] = []);
- shareInfo.push({
- userID: item.receiver,
- shareDate: item.shareDate,
- updateDate: item.updateDate,
- allowCopy: item.allowCopy,
- allowCooperate: item.allowCooperate
- });
- });
- return map;
- }
- // 获取最近分享(只算分享出去的记录)
- async function getRecentShareList(userID, count) {
- const shareList = await getShareList({owner: userID});
- shareList.sort((a, b) => Date.parse(b.shareDate) - Date.parse(a.shareDate));
- const set = new Set();
- for(const item of shareList) {
- if (set.size === count) {
- break;
- }
- set.add(item.receiver);
- }
- const sortedIDList = [...set];
- const userIDList = sortedIDList.map(userID => mongoose.Types.ObjectId(userID));
- const users = await userModel.find({_id: {$in: userIDList}}, 'real_name mobile company').lean();
- users.sort((a, b) => sortedIDList.indexOf(a._id.toString()) - sortedIDList.indexOf(b._id.toString()));
- return users;
- }
- // 获取某项目的分享记录
- async function getProjectShareList(projectID, limit = null) {
- const sharedList = limit
- ? await shareListModel.find({ projectID }).lean().sort({ shareDate: -1 }).limit(limit)
- : await shareListModel.find({ projectID }).lean().sort({ shareDate: -1 });
- const userIDs = [];
- const userMap = {};
- sharedList.forEach((item, index) => {
- userIDs.push(item.receiver);
- userMap[item.receiver] = item;
- userMap[item.receiver].index = index;
- });
- const userObjectIDs = userIDs.map(userID => mongoose.Types.ObjectId(userID));
- const users = await userModel.find({_id: {$in: userObjectIDs}}, 'real_name mobile company').lean();
- users.forEach(user => {
- const matched = userMap[user._id];
- if (matched) {
- user.index = matched.index;
- user.allowCopy = matched.allowCopy;
- user.allowCooperate = matched.allowCooperate;
- }
- });
- users.sort((a, b) => a.index - b.index);
- return users;
- }
- // 获取某用户某费用定额的未读的被分享记录
- async function getUnreadShareListByCompilation(userID, compilationID, isGetCount) {
- const fields = isGetCount ? '-_id projectID ' : '-_id';
- const list = await shareListModel.find({ receiver: userID, isRead: false }, fields);
- const idList = list.reduce((acc, cur) => {
- acc.push(cur.projectID);
- return acc;
- }, []);
- const notDeleted = [{ deleteInfo: null }, { 'deleteInfo.deleted': false }];
- const query = { ID: { $in: idList }, compilation: compilationID, $or: notDeleted };
- if (isGetCount) {
- return await projectModel.count(query)
- }
- const items = await projectModel.find(query, '-_id ID').lean();
- return items.map(item => item.ID);
- }
- // 获取分享的提示(造价书分享按钮tooltip使用)
- async function getShareTip(projectID, limit) {
- const task = [
- getProjectShareList(projectID, limit),
- shareListModel.count({ projectID })
- ];
- const [users, count] = await Promise.all(task);
- return users.reduce((acc, user, index) => {
- if (index === 0) {
- acc += '已分享给';
- acc += user.real_name;
- } else {
- acc += ` ${user.real_name}`;
- }
- if (index === users.length - 1 && count > limit) {
- acc += `等${count}人`;
- }
- return acc;
- }, '');
- }
- // 获取项目的分享状态
- // 分享项目的拷贝和编辑性,需要参考父项
- // 以项目链上最新更新的分享数据为准
- async function getShareState(projectID, receiver) {
- const projectIDs = await getUpChainIDs(projectID);
- const shareList = await shareListModel.find({ projectID: { $in: projectIDs }, receiver }).lean();
- shareList.sort((a, b) => Date.parse(b.updateDate) - Date.parse(a.updateDate));
- return {
- allowCopy: shareList[0] && shareList[0].allowCopy || false,
- allowCooperate: shareList[0] && shareList[0].allowCooperate || false
- };
- }
- // 自身及父链上的分享数据(链距离最近的一个)
- async function getUpChainShareData(projectID, receiver) {
- while (projectID != -1) {
- const shareData = await shareListModel.findOne({ projectID, receiver }).lean();
- if (shareData) {
- return shareData;
- }
- const project = await projectModel.findOne({ ID: projectID }, '-_id ParentID').lean();
- projectID = project ? project.ParentID : -1;
- }
- return null;
- }
- // 标记已读分享条目
- // 打开任意的单位工程,都会将其父分享条目标记和自身为已读
- // eg:被分享了一个建设项目,和其下一个单位工程,打开该一个单位工程,建设项目标记为已读、该单位工程也标记为已读
- async function markShareItemsRead(projectID, userID) {
- const upChainIDs = await getUpChainIDs(projectID);
- const unreadList = await shareListModel.find({ projectID: { $in: upChainIDs }, receiver: userID, isRead: false }, '-_id ID projectID').lean();
- const markReadProjectIDs = [];
- const bulks = [];
- unreadList.forEach(item => {
- markReadProjectIDs.push(item.projectID);
- bulks.push({
- updateOne: {
- filter: { ID: item.ID },
- update: { isRead: true }
- }
- });
- });
- if (bulks.length) {
- await shareListModel.bulkWrite(bulks);
- }
- return markReadProjectIDs;
- }
- /**
- * 分享权限变更后,根据变更操作,获取相关项目的分享权限信息
- * 不能简单根据某个项目的分享信息获得其权限,因为目前的分享可以重复分享(分享单位工程A、分享包含单位工程A的父项)
- * 最新的分享权限是由项目链上(所有子项、自身、父项...)最新的分享信息决定的
- * @param {Number} permissionType - 分享权限变更类型
- * @param {String} receiver - 用户ID
- * @param {Number} projectID - 项目ID
- */
- async function getShareInfoAfterChangePermission(permissionType, receiver, projectID) {
- const project = await projectModel.findOne({ ID: projectID }, '-_id ID projType').lean();
- if (!project) {
- return [];
- }
- // UPDATE_COPY不触发推送给主页面的消息
- const propChange = [SharePermissionChangeType.UPDATE_COOPERATE].includes(permissionType);
- const cancelShare = permissionType === SharePermissionChangeType.CANCEL;
- // 需要处理的单位工程
- if (propChange && project.projType === projectType.tender) {
- const shareData = await shareListModel.findOne({ projectID, receiver }, '-_id allowCooperate allowCopy updateDate').lean();
- const tender = { ID: projectID };
- if (shareData) {
- Object.assign(tender, shareData);
- }
- return [tender];
- }
- if (propChange && project.projType !== projectType.tender) {
- const projects = await getPosterityProjects([projectID], false, '-_id ID projType');
- const tenders = projects.filter(p => p.projType === projectType.tender);
- const shareData = await shareListModel.findOne({ projectID, receiver }, '-_id allowCooperate allowCopy updateDate').lean();
- if (shareData) {
- tenders.forEach(tender => Object.assign(tender, shareData));
- }
- return tenders
- }
- if (cancelShare && project.projType === projectType.tender) {
- const shareData = await getUpChainShareData(projectID, receiver);
- return shareData ? [] : [{ ID: projectID }];
- }
- if (cancelShare && project.projType !== projectType.tender) {
- const projects = await getPosterityProjects([projectID], false, '-_id ID projType');
- const tenders = [];
- for (const p of projects) {
- if (p.projType === projectType.tender) {
- const shareData = await getUpChainShareData(p.ID, receiver);
- if (!shareData) {
- tenders.push({ ID: p.ID });
- }
- }
- }
- return tenders;
- }
- return [];
- }
- //拷贝例题项目
- //@param {String}userID {Array}projIDs拷贝的例题项目ID(建设项目、文件夹)@return {Boolean}
- async function copyExample(userID, compilation, projIDs,nameMap){
- let allProjs = [],
- IDMapping = {},
- projMapping = {};
- //例题项目不可为单项工程、单位工程、只能是建设项目、文件夹,否则不自动新建例题项目(这里不报错,让用户没有感觉)
- let parentExample = await projectModel.find({ID: {$in: projIDs}, $or: notDeleted}).lean();
- if (parentExample.length === 0) {
- return false;
- }
- allProjs = allProjs.concat(parentExample);
- for (let i = 0; i < parentExample.length; i++) {
- let data = parentExample[i];
- if (data.projType === projectType.tender || data.projType === projectType.engineering) {
- return false;
- }
- //设置成顶节点,最后一个节点设置成末节
- data.ParentID = -1;
- if (i === parentExample.length - 1) {
- data.NextSiblingID = -1;
- }
- if(nameMap && nameMap[data.ID]) data.name = nameMap[data.ID];
- }
- //获取所有的子项目
- let posterityProjs = await getPosterityProjects(projIDs);
- allProjs = allProjs.concat(posterityProjs);
- let projCounter = await counter.counterDAO.getIDAfterCountSync(counter.moduleName.project, allProjs.length);
- //旧ID与新ID映射
- for (let i = 0; i < allProjs.length; i++) {
- let data = allProjs[i];
- let newID = projCounter.sequence_value - (allProjs.length - 1) + i;
- IDMapping[data.ID] = newID;
- projMapping[newID] = data;
- }
- //return;
- //设置新的树结构数据
- let newDate = new Date(),
- parentBulks = [];
- const projectMaps = [];
- // 传入项目ID的新ID
- const newProjIDs = [];
- for (let data of allProjs) {
- let orgID = data.ID;
- data.ID = IDMapping[data.ID];
- if (projIDs.indexOf(orgID) >= 0) {
- newProjIDs.push(data.ID);
- }
- data.ParentID = IDMapping[data.ParentID] ? IDMapping[data.ParentID] : -1;
- data.NextSiblingID = IDMapping[data.NextSiblingID] ? IDMapping[data.NextSiblingID] : -1;
- data.createDateTime = newDate;
- data.userID = userID;
- data.compilation = compilation;
- data.shareInfo = [];
- if (data.projType !== projectType.tender) {
- let newData = _.cloneDeep(data);
- delete newData._id;
- // await projectModel.create(newData);
- parentBulks.push({insertOne: {document: newData}});
- } else {
- //拷贝单位工程
- let rootProjectID = projMapping[data.ParentID].ParentID;
- let projectMap = {
- copy: {
- document: {userID: userID, ID: orgID, NextSiblingID: data.NextSiblingID, ParentID: data.ParentID, name: data.name, shareInfo: [],
- compilation: compilation, fileVer: data.fileVer, projType: data.projType, property: {rootProjectID: rootProjectID}}
- }
- };
- await copyProject(userID, compilation, {projectMap}, data.ID, true);
- projectMaps.push(projectMap);
- }
- }
- //最末顶层项目(兼容测试时已存在有项目,正常用户第一次进费用定额,该费用定额不存在项目)
- let lastProj = await projectModel.findOne({userID: userID, compilation: compilation, ParentID: -1, NextSiblingID: -1, $or: notDeleted});
- if (lastProj) {
- parentBulks.push({updateOne: {filter: {ID: lastProj.ID}, update: {$set: {NextSiblingID: parentExample[0].ID}}}});
- }
- // 处理项目数据
- const projectTasks = [projectModel.bulkWrite(parentBulks), createProject(projectMaps)];
- await Promise.all(projectTasks);
- return newProjIDs;
- }
- async function accessToCopyProject(userID, compilationID, data, newProjectID) {
- const logData = {
- key: uuidV1(),
- content: '正在拷贝项目,请稍候……',
- userID,
- compilationID,
- status: 'start',
- create_time: +new Date()
- };
- await importLogsModel.create(logData);
- handleCopyProject(logData.key, userID, compilationID,data,newProjectID);
- return 'copying project';
- }
- async function handleCopyProject(key, userID, compilationID, data, newProjectID) {
- const doc = { status: 'finish' };
- try {
- const projectMap = await copyProject(userID, compilationID, data, newProjectID);
- doc.projectID = [projectMap.copy.document.ID];
- } catch (err) {
- doc.status = 'error';
- doc.errorMsg = String(err);
- } finally {
- await importLogsModel.update({ key }, doc);
- }
- }
- async function copyProject(userID, compilationID,data,newProjectID = null, delayProjectTask = false) {
- let projectMap = data.projectMap;
- let originalID = projectMap['copy'].document.ID;
-
- if (!newProjectID) {
- newProjectID = await getCounterID("projects");
- }
- let newFeeName = null,newUnitName = null;
- let calcProgramFileID = uuidV1();//新的计算程序文件ID
- let labourCoeFileID = uuidV1();//新的人工调整系数文件ID
- let feeRateFileID = uuidV1();//新的费率文件ID
- let unitPriceFileID = await getCounterID("unit_price_file");//新的单价文件ID
- let originalProject = await projectModel.findOne({'ID':originalID});//查找最新的那项目信息,前端缓存的数据有可能不是最新的
- if(!originalProject){
- throw new Error('没有找到对应的项目,复制失败!');
- }
- let property = originalProject.property;
- if(projectMap['copy'].document.property){//更新项目属性信息
- setProperty(property,projectMap['copy'].document.property);
- }
- let originalProperty = _.cloneDeep(property);
- projectMap['copy'].document.property = property;
- logger.info("复制项目: 旧项目ID: "+originalID+ " ------- 新项目ID: "+newProjectID);
- //费率文件、单价文件重名检查
- let feeRate = await feeRateFileModel.findOne({rootProjectID:originalProperty.rootProjectID,name:originalProperty.feeFile.name,deleteInfo:null});
- if(feeRate){//存在重名的文件
- newFeeName = originalProperty.feeFile.name + '(' + moment(Date.now()).tz("Asia/Shanghai").format('MM-DD HH:mm:ss') + '复制)';
- projectMap['copy'].document.property.feeFile.name = newFeeName;
- }
- let unitPriceFile = await unitPriceFileModel.findOne({root_project_id: originalProperty.rootProjectID,name:originalProperty.unitPriceFile.name,deleteInfo: null});
- if(unitPriceFile){//存在重名的文件
- newUnitName = originalProperty.unitPriceFile.name + '(' + moment(Date.now()).tz("Asia/Shanghai").format('MM-DD HH:mm:ss') + '复制)';
- projectMap['copy'].document.property.unitPriceFile.name = newUnitName;
- }
- //更新项目的属性;
- projectMap['copy'].document.ID = newProjectID;
- if(projectMap['copy'].document.property.calcProgramFile){
- projectMap['copy'].document.property.calcProgramFile.ID = calcProgramFileID;
- }
- if(projectMap['copy'].document.property.labourCoeFile){
- projectMap['copy'].document.property.labourCoeFile.ID = labourCoeFileID;
- }
- if(projectMap['copy'].document.property.feeFile){
- projectMap['copy'].document.property.feeFile.id = feeRateFileID;
- }
- if(projectMap['copy'].document.property.unitPriceFile){
- projectMap['copy'].document.property.unitPriceFile.id = unitPriceFileID;
- }
- projectMap['copy'].document.userID = userID;
- projectMap['copy'].document.compilation = compilationID;
- projectMap['copy'].document.createDateTime = new Date();
- //清单、定额ID生成任务
- let IDtasks = [
- createIDsAndReturn(originalID,billsModel),
- createIDsAndReturn(originalID,rationModel),
- getProjectGLJIDAndReturn(originalID,newProjectID)
- ];
- let [billMap,rationMap,projectGLJMap] = await Promise.all(IDtasks);
- //所有复制任务异步处理,提升效率 复制清单,定额,4个文件,项目工料机, 定额工料机,人工系数,工程量明细,定额安装增加费,安装增加费
- let copyTasks = [
- copyProjectSetting(originalID,newProjectID),
- copyBills(newProjectID,billMap),
- copyRations(newProjectID,billMap.uuidMaping,rationMap,projectGLJMap.IDMap),
- copyProjectGLJ(projectGLJMap.datas),
- copyInstallFee(originalID,newProjectID),
- copyRationSubList(originalID,newProjectID,billMap.uuidMaping,rationMap.uuidMaping,projectGLJMap.IDMap,rationGLJModel),
- copyRationSubList(originalID,newProjectID,billMap.uuidMaping,rationMap.uuidMaping,projectGLJMap.IDMap,rationCoeModel),
- copyRationSubList(originalID,newProjectID,billMap.uuidMaping,rationMap.uuidMaping,projectGLJMap.IDMap,quantityDetailModel),
- copyRationSubList(originalID,newProjectID,billMap.uuidMaping,rationMap.uuidMaping,projectGLJMap.IDMap,rationInstallationModel),
- copyRationSubList(originalID,newProjectID,billMap.uuidMaping,rationMap.uuidMaping,projectGLJMap.IDMap,rationTemplateModel),
- copyMaterialList(originalID,newProjectID,projectGLJMap.IDMap,evaluateListModel),
- copyMaterialList(originalID,newProjectID,projectGLJMap.IDMap,bidListModel),
- copyMaterialList(originalID,newProjectID,projectGLJMap.IDMap,contractorListModel),
- ];
- if(originalProperty.calcProgramFile){
- copyTasks.push(commonCopy(newProjectID,originalProperty.calcProgramFile.ID,calcProgramFileID,calcProgramsModel));
- }
- if(originalProperty.labourCoeFile){
- copyTasks.push(commonCopy(newProjectID,originalProperty.labourCoeFile.ID,labourCoeFileID,labourCoesModel));
- }
- if(originalProperty.feeFile){
- copyTasks.push(copyFeeRate(originalProperty.rootProjectID,userID,originalProperty.feeFile.id,feeRateFileID,newFeeName));
- }
- if(originalProperty.unitPriceFile){
- copyTasks.push(copyUnitPriceFile(newProjectID,originalProperty.rootProjectID,userID,originalProperty.unitPriceFile.id,unitPriceFileID,newUnitName));
- }
- await Promise.all(copyTasks);
- // 最后再处理项目数据
- // 可能会有最后再在外层方法插入项目数据的需求,如拷贝例题,暂时先不在这里插入项目数据
- if (delayProjectTask) {
- return [projectMap];
- } else {
- const projectMaps = await createProject([projectMap]);
- return projectMaps[0];
- }
- }
- async function createIDsAndReturn(originalID,model) {
- let uuidMaping = {};//做ID映射
- let datas = [];
- let result = await model.find({"projectID": originalID}, '-_id').lean();
- uuidMaping['-1'] = -1;
- //建立uuid-ID映射
- for(let d of result){
- uuidMaping[d.ID] = uuidV1();
- datas.push(d);
- }
- return{uuidMaping:uuidMaping,datas:datas};
- }
- async function getProjectGLJIDAndReturn(originalID,newProjectID) {
- let IDMap = {};
- let datas = [];
- let result = await gljListModel.find({project_id:originalID}, '-_id').lean();
- let gljCount = await counter.counterDAO.getIDAfterCountSync(counter.moduleName.glj_list, result.length);
- for(let i = 0; i < result.length; i++){
- let d = result[i];
- let newID = gljCount.sequence_value - (result.length - 1) + i;
- //let newID = await getCounterID("glj_list");
- IDMap[d.id] = newID;
- d.project_id = newProjectID;
- d.id = newID;
- datas.push(d);
- }
- return{IDMap:IDMap,datas:datas};
- }
- async function createProject(projectMaps) {//复制项目
- let tasks = [];
- for (const projectMap of projectMaps) {
- if(projectMap['update']){//如果复制后存在前一个节点,则更新其NextSiblingID
- tasks.push({updateOne:{filter : projectMap['update'].query, update : {NextSiblingID:projectMap['copy'].document.ID}}});
- }
- tasks.push({insertOne: {document: projectMap['copy'].document}});//复制任务
- }
- await projectModel.bulkWrite(tasks);
- return projectMaps;
- }
- async function copyProjectSetting(originalID,newProjectID) {
- let result = null;
- let setting = await projectSettingModel.findOne({"projectID": originalID}, '-_id');
- if(setting){
- setting._doc.projectID =newProjectID;
- result = await projectSettingModel.create(setting._doc);
- }
- return result;
- }
- async function copyBills(newProjectID,billMap) {
- let uuidMaping = billMap.uuidMaping;//做ID映射
- for(let doc of billMap.datas){
- doc = getCopyBillDatas(doc,newProjectID,uuidMaping);
- }
- await insertMany(billMap.datas,billsModel);
- return billMap.datas;
- }
- function getCopyBillDatas(doc,newProjectID,uuidMaping) {
- doc.projectID = newProjectID;
- doc.ID = uuidMaping[doc.ID] ? uuidMaping[doc.ID] : -1;
- doc.ParentID = uuidMaping[doc.ParentID] ? uuidMaping[doc.ParentID] : -1;
- doc.NextSiblingID = uuidMaping[doc.NextSiblingID] ? uuidMaping[doc.NextSiblingID] : -1;
- //对于有基数计算的节点,需要替换计算基数中引用的ID为新的ID
- if(doc.calcBase && doc.calcBase != ""){
- let idArr = scMathUtil.getFIDArr(doc.calcBase);
- for(let re of idArr){
- let oID = re.substr(1);//去掉开头的@字符
- if(!uuidMaping[oID]) continue;
- doc.calcBase = doc.calcBase.replace(new RegExp(oID, "g"),uuidMaping[oID]);
- }
- }
- return doc;
- }
- async function copyRations(newProjectID,billsIDMap,rationMap,projectGLJIDMap) {
- let uuidMaping = rationMap.uuidMaping;
- for(let doc of rationMap.datas){
- doc = getCopyRationData(doc,newProjectID,billsIDMap,uuidMaping,projectGLJIDMap);
- }
- if(rationMap.datas.length > 0){
- await insertMany(rationMap.datas,rationModel);
- }
- return rationMap.datas;
- }
- function getCopyRationData(doc,newProjectID,billsIDMap,uuidMaping,projectGLJIDMap){
- doc.projectID = newProjectID;
- doc.ID = uuidMaping[doc.ID] ? uuidMaping[doc.ID] : -1;
- if(doc.billsItemID){
- doc.billsItemID = billsIDMap[doc.billsItemID]?billsIDMap[doc.billsItemID]:-1;
- }
- if(doc.referenceRationID) doc.referenceRationID = uuidMaping[doc.referenceRationID]?uuidMaping[doc.referenceRationID]:undefined;
- //绑定定类型的工料机 项目工料机ID
- doc.type==3&&doc.projectGLJID&&projectGLJIDMap[doc.projectGLJID]?doc.projectGLJID = projectGLJIDMap[doc.projectGLJID]:'';
- return doc;
- }
- async function copyProjectGLJ(gljList) {
- await insertMany(gljList,gljListModel);
- }
- async function commonCopy(newProjectID,oldID,newID,model) { //对于只需更新ID和projectID的文件的复制
- let result = null;
- let file = await model.findOne({"ID": oldID}, '-_id');
- if(file){
- file._doc.ID = newID;
- file._doc.projectID =newProjectID;
- result = await model.create(file._doc);
- }
- return result;
- }
- async function copyFeeRate(rootProjectID,userID,originalFeeRateFileID,feeRateFileID,newName) {//复制费率和费率文件
- let [feeRateFile,feeRate] =await feeRate_facade.getFeeRateByID(originalFeeRateFileID);
- let newFeeRateID = uuidV1();
- if(feeRate){
- feeRate._doc.ID = newFeeRateID;
- await feeRateModel.create(feeRate._doc);
- }
- if(feeRateFile){
- feeRateFile._doc.ID = feeRateFileID;
- newName?feeRateFile._doc.name = newName:'';
- feeRateFile._doc.userID = userID;
- feeRateFile._doc.rootProjectID = rootProjectID;
- feeRateFile._doc.feeRateID = newFeeRateID;
- await feeRateFileModel.create(feeRateFile._doc);
- }
- }
- async function copyUnitPriceFile(newProjectID,rootProjectID,userID,originaluUnitPriceFileID,unitPriceFileID,newName) {//复制单价文件、组成物
- let taskList = [
- copyFile(newProjectID,rootProjectID,userID,originaluUnitPriceFileID,unitPriceFileID,newName),
- copySubList(originaluUnitPriceFileID,unitPriceFileID,mixRatioModel),
- copySubList(originaluUnitPriceFileID,unitPriceFileID,unitPriceModel)
- ];
- return await Promise.all(taskList);
- async function copyFile(newProjectID,rootProjectID,userID,originaluUnitPriceFileID,unitPriceFileID,newName){
- let unitPriceFile = await unitPriceFileModel.findOne({id:originaluUnitPriceFileID}, '-_id');
- if(unitPriceFile){
- unitPriceFile._doc.id = unitPriceFileID;
- newName?unitPriceFile._doc.name = newName:'';
- unitPriceFile._doc.project_id = newProjectID;
- unitPriceFile._doc.user_id = userID;
- unitPriceFile._doc.root_project_id = rootProjectID
- }
- await unitPriceFileModel.create(unitPriceFile._doc);
- }
- async function copySubList(srcFID,newFID,model) {
- let mList = await model.find({unit_price_file_id: srcFID}, '-_id').lean();
- let rList = [];
- let IDcounter = await counter.counterDAO.getIDAfterCountSync(model.modelName, mList.length);
- let firstID = IDcounter.sequence_value - (mList.length - 1);
- for(let m of mList){
- m.unit_price_file_id = newFID;
- m.id = firstID;
- firstID+=1
- rList.push(m);
- }
- await insertMany(rList,model)
- }
- }
- async function copyInstallFee(originalPID,newProjectID) {
- let result = null;
- let installationFee = await installationFeeModel.find({projectID:originalPID}, '-_id');
- let newList = [];
- for(let i of installationFee ){
- i._doc.ID = uuidV1();
- i._doc.projectID = newProjectID;
- newList.push(i._doc);
- }
- if(newList.length >0){
- result = await installationFeeModel.insertMany(newList);
- }
- return result;
- }
- async function copyRationSubList(originalPID,newProjectID,billIDMap,rationIDMap,projectGLJIDMap,model) {// 定额工料机,附注条件,工程量明细,定额安装增加费,模板子目
- let first = +new Date();
- let subList = await model.find({projectID:originalPID}, '-_id').lean();
- let newList =[];
- for(let s of subList){
- s = getCopyRationSubData(s,newProjectID,billIDMap,rationIDMap,projectGLJIDMap);
- newList.push(s);
- }
- if(newList.length > 0) await insertMany(newList,model);
- let last = +new Date();
- console.log(model.modelName+"-------"+newList.length+"--copyRationSubList - insert时间为-------------------------------"+(last-first));
- }
- async function copyMaterialList(originalPID,newProjectID,projectGLJIDMap,model) {//暂估材料等信息
- let materialList = await model.find({projectID:originalPID}, '-_id').lean();
- let newList = [];
- for(let m of materialList){
- newList.push(getNewMaterial(m,newProjectID,projectGLJIDMap))
- }
- await insertMany(newList,model);
- }
- function getNewMaterial(m,newProjectID,projectGLJIDMap) {
- m.ID = uuidV1();
- m.projectID = newProjectID;
- if(projectGLJIDMap[m.projectGLJID]) m.projectGLJID = projectGLJIDMap[m.projectGLJID];
- return m;
- }
- function getCopyRationSubData(doc,newProjectID,billIDMap,rationIDMap,projectGLJIDMap){
- doc.ID = uuidV1();
- doc.projectID = newProjectID;
- doc.rationID&&rationIDMap[doc.rationID]?doc.rationID = rationIDMap[doc.rationID]:'';
- doc.billID&&billIDMap[doc.billID]?doc.billID = billIDMap[doc.billID]:'';
- doc.billsItemID&&billIDMap[doc.billsItemID]?doc.billsItemID = billIDMap[doc.billsItemID]:'';
- doc.projectGLJID&&projectGLJIDMap[doc.projectGLJID]?doc.projectGLJID = projectGLJIDMap[doc.projectGLJID]:'';
- if(doc.templateList && doc.templateList.length > 0 ){
- for(let t of doc.templateList){
- if(t.billID && billIDMap[t.billID]) t.billID = billIDMap[t.billID];
- if(t.fxID && billIDMap[t.fxID]) t.fxID = billIDMap[t.fxID];
- }
- }
- return doc;
- }
- async function moveProject(data) {
- data = JSON.parse(data);
- let projectMap = data.projectMap,feeRateMap = data.feeRateMap,unitPriceMap = data.unitPriceMap;
- let projectTasks = [],feeRateTask=[],feeRateFileTask=[],unitPriceTask=[],unitPriceFileTask=[],mixRatioTask=[];
- let feeUniqMap=[],priceUniqMap={};//费率、单价文件唯一映射表当移动多个项目时,任务有可能出现重复的情况
- if(!_.isEmpty(feeRateMap)&&data.rootProjectID){//如果费率有修改
- let feeRates =await feeRate_facade.getFeeRatesByProject(data.rootProjectID);//取目标建设项目的所有费率文件,重名检查
- for(let projectID in feeRateMap){
- let rename = feeRateMap[projectID].name;
- let feeRateID = feeRateMap[projectID].query.ID;
- let checkFee = _.find(feeRates,{'name':rename});
- let newID = feeRateID;
- if(checkFee){//说明费率名字已存在,需要重命名
- rename = feeUniqMap[feeRateID]?feeUniqMap[feeRateID].name:rename + '(' + new Date().Format('MM-dd hh:mm:ss') + '移动)';
- projectMap[projectID]['update']['property.feeFile.name'] = rename;
- if(feeRateMap[projectID].action == 'move'){
- feeRateMap[projectID].update.name = rename;
- }
- }
- if(feeRateMap[projectID].action == 'copy'){
- newID = feeUniqMap[feeRateID]?feeUniqMap[feeRateID].ID:uuidV1();
- feeRateMap[projectID].name = rename;
- feeRateMap[projectID].ID = newID;
- projectMap[projectID]['update']['property.feeFile.id'] = newID;
- }
- if(!feeUniqMap[feeRateID]){
- await generateFeeRateTask(feeRateMap[projectID],feeRateTask,feeRateFileTask);
- feeUniqMap[feeRateID] = {name:rename,ID:newID};
- }
- }
- }
- if(!_.isEmpty(unitPriceMap)&&data.rootProjectID) {//如果单价文件有修改
- let unitPriceFiles = await unitPriceFileModel.find({root_project_id: data.rootProjectID, deleteInfo: null});
- for(let projectID in unitPriceMap){
- let checkUn = _.find(unitPriceFiles,{'name':unitPriceMap[projectID].name});
- let rename = unitPriceMap[projectID].name;
- let unitPriceID = unitPriceMap[projectID].query.id;
- let newID = unitPriceID;
- if(checkUn){//重名检查
- rename = priceUniqMap[unitPriceID]?priceUniqMap[unitPriceID].name:rename + '(' + new Date().Format('MM-dd hh:mm:ss') + '移动)';
- projectMap[projectID]['update']['property.unitPriceFile.name'] = rename;
- if(unitPriceMap[projectID].action =='move'){
- unitPriceMap[projectID].update.name = rename;
- }
- }
- if(unitPriceMap[projectID].action =='copy'){
- newID = priceUniqMap[unitPriceID]?priceUniqMap[unitPriceID].id: await getCounterID("unit_price_file");
- unitPriceMap[projectID].name = rename;
- unitPriceMap[projectID].id = newID;
- projectMap[projectID]['update']['property.unitPriceFile.id'] = newID;
- }
- if(!priceUniqMap[unitPriceID]){
- await generateUnitPriceTask(unitPriceMap[projectID],projectID,data.user_id,unitPriceTask,unitPriceFileTask,mixRatioTask);
- priceUniqMap[unitPriceID] = {name:rename,id:newID};
- }
- }
- }
- if(!_.isEmpty(projectMap)){
- for(let projectID in projectMap){
- projectTasks.push({updateOne:{filter : projectMap[projectID].query, update : projectMap[projectID].update}});
- }
- }
- projectTasks.length>0?await projectModel.bulkWrite(projectTasks):'';
- feeRateTask.length>0?await feeRateModel.bulkWrite(feeRateTask):'';
- feeRateFileTask.length>0?await feeRateFileModel.bulkWrite(feeRateFileTask):'';
- unitPriceFileTask.length>0?await unitPriceFileModel.bulkWrite(unitPriceFileTask):'';
- unitPriceTask.length>0?await insertMany(unitPriceTask,unitPriceModel):'';
- mixRatioTask.length>0?await insertMany(mixRatioTask,mixRatioModel):'';
- return projectMap;
- }
- async function generateFeeRateTask(data,feeRateTask,feeRateFileTask) {
- if(data.action == 'move'){
- let task = {
- updateOne:{
- filter : data.query,
- update : data.update
- }
- };
- feeRateFileTask.push(task);
- }
- if(data.action == 'copy'){//copy 费率的时候用insertOne方法
- let [feeRateFile,feeRate] =await feeRate_facade.getFeeRateByID(data.query.ID);
- let newFeeRateID = uuidV1();
- let newFeeRate = {
- ID:newFeeRateID,
- rates:feeRate.rates
- };
- let newFeeRateFile = {
- ID:data.ID,
- rootProjectID:data.rootProjectID,
- userID:feeRateFile.userID,
- name:data.name,
- libID:feeRateFile.libID,
- libName:feeRateFile.libName,
- feeRateID:newFeeRateID
- };
- feeRateTask.push({insertOne :{document:newFeeRate}});
- feeRateFileTask.push({insertOne :{document:newFeeRateFile}});
- }
- }
- async function generateUnitPriceTask(data,projectID,user_id,unitPriceTask,unitPriceFileTask,mixRatioTask){
- if(data.action == 'move'){
- let task = {
- updateOne:{
- filter : data.query,
- update : data.update
- }
- };
- unitPriceFileTask.push(task);
- }
- if(data.action == 'copy'){
- let newUnitFile = {
- id:data.id,
- name: data.name,
- project_id:projectID,
- user_id:user_id,
- root_project_id: data.rootProjectID
- };
- unitPriceFileTask.push({insertOne :{document:newUnitFile}});
- let mixRatios = await mixRatioModel.find({unit_price_file_id: data.query.id});
- mixRatios = JSON.stringify(mixRatios);
- mixRatios = JSON.parse(mixRatios);
- for(let m of mixRatios){
- delete m._id; // 删除原有id信息
- delete m.id;
- m.unit_price_file_id = data.id;
- m.id = await getCounterID('mix_ratio');
- mixRatioTask.push(m);
- }
- let unitPrices = await unitPriceModel.find({unit_price_file_id: data.query.id});//unit_price_file_id
- unitPrices = JSON.stringify(unitPrices);
- unitPrices = JSON.parse(unitPrices);
- for(let u of unitPrices){
- delete u._id; // 删除原有id信息
- delete u.id;
- u.unit_price_file_id = data.id;
- u.id = await getCounterID('unit_price');
- unitPriceTask.push(u);
- }
- }
- }
- async function getCounterID(collectionName){
- let counterModel = new CounterModel();
- return await counterModel.getId(collectionName);
- }
- async function insertMany(datas,model) {
- /* while (datas.length>1000){//因为mongoose限制了批量插入的条数为1000.所以超出限制后需要分批插入 2020-05-28 测试后发现没有限制,暂时先保留代码
- let newList = datas.splice(0,1000);//一次插入1000条
- await model.insertMany(newList);
- } */
- await model.insertMany(datas);
- }
- function setProperty(Obj,updateData) {
- for(let ukey in updateData){
- if(_.isObject(updateData[ukey]) && _.isObject(Obj[ukey])){
- setProperty(Obj[ukey],updateData[ukey]);
- }else {
- Obj[ukey] = updateData[ukey];
- }
- }
- }
- function isDef(v){
- return typeof v !== 'undefined' && v !== null;
- }
- function getTotalFee(bills, feeName) {
- if(!isDef(bills)){
- return 0;
- }
- if(!isDef(bills.fees) || bills.fees.length <= 0){
- return 0;
- }
- for(let fee of bills.fees){
- if(isDef(fee.fieldName) && fee.fieldName === feeName){
- return isDef(fee.tenderTotalFee)
- ? fee.tenderTotalFee
- : isDef(fee.totalFee)
- ? fee.totalFee
- : 0;
- }
- }
- return 0;
- }
- function summarizeToParent(parent, child, fields = null) {
- const decimal = -2;
- if (!fields) {
- fields = ['engineeringCost', 'subEngineering', 'measure', 'safetyConstruction', 'other', 'charge', 'tax', 'estimate'];
- }
- for (let field of fields) {
- parent[field] = scMathUtil.roundTo(parseFloat(parent[field]) + parseFloat(child[field]), decimal);
- }
- }
- function getBuildingArea(projFeature){
- if(!projFeature || projFeature.length === 0){
- return null;
- }
- for(let f of projFeature){
- if(f.key === 'buildingArea'){
- return f.value;
- }
- }
- return null;
- }
- //根据单位工程ID获取经济指标信息
- //@param {Number}prj_id @return {Object}
- async function getIndexReportData(prj_id, filters) {
- return await project_facade.getIndexReportData(prj_id, filters);
- }
- // 根据树结构数据排序
- function getSortedDataByTree(data) {
- // NextSiblingID-数据映射
- const mapping = {};
- data.forEach(item => {
- // 错误数据兼容处理
- // 由于之前的导入建设项目,会导致最后的一个项目的NextSiblingID为空,为非正确的-1
- // 因此把项目中NextSibling为空的数据设置为NextSiblingID为-1
- if (!item.NextSiblingID) {
- item.NextSiblingID = -1;
- }
- mapping[item.NextSiblingID] = item;
- });
- let lastItem = data.find(item => +item.NextSiblingID === -1);
- if (!lastItem) {
- return data;
- }
- const rst = [lastItem];
- let preItem = mapping[lastItem.ID];
- while (preItem) {
- rst.unshift(preItem);
- preItem = mapping[preItem.ID];
- }
- // 根据树结构排序形成的新数组与旧数组项数不同,说明树结构数据有问题(断链),则返回原本数据。
- return rst.length === data.length ? rst : data;
- }
- //根据单位工程ID获取汇总信息
- //@param {Number}tenderID {String}summaryType @return {Object}
- async function getSummaryInfoByTender(tenderID, summaryType) {
- const notDeleted = [{deleteInfo: null}, {'deleteInfo.deleted': false}];
- let tender = await projectModel.findOne({ID: tenderID, $or: notDeleted});
- let parent,
- parentName,
- compilationIllustration;
- let summaryList = [];
- if(!tender){
- return null;
- }
- let engineering = await projectModel.findOne({ID: tender.ParentID, $or: notDeleted});
- if(!engineering){
- return null;
- }
- let project = await projectModel.findOne({ID: engineering.ParentID, $or: notDeleted});
- if(!project){
- return null;
- }
- let summaryInfo = await getSummaryInfo([project.ID]);
- if(summaryType === projectType.engineering){ // 汇总到单项工程级别
- parent = engineering;
- let tenders = await projectModel.find({ParentID: engineering.ID, $or: notDeleted}).lean();
- tenders = getSortedDataByTree(tenders);
- for(let t of tenders){
- if(summaryInfo[t.ID]){
- summaryInfo[t.ID]['name'] = t.name ? t.name : '';
- summaryList.push(summaryInfo[t.ID]);
- }
- }
- } else { // 汇总到建设项目级别
- parent = project;
- let engs = await projectModel.find({ParentID: project.ID, $or: notDeleted}).lean();
- engs = getSortedDataByTree(engs);
- for(let e of engs){
- if(summaryInfo[e.ID]){
- summaryInfo[e.ID]['name'] = e.name ? e.name : '';
- summaryList.push(summaryInfo[e.ID]);
- }
- }
- }
- // 项目名称
- parentName = parent && parent.name
- ? parent.name
- : '';
- // 编制说明
- compilationIllustration = parent && parent.property && parent.property.compilationIllustration
- ? parent.property.compilationIllustration
- : '';
- return {
- parent: {
- name: parentName,
- compilationIllustration: compilationIllustration},
- subList: summaryList
- };
- }
- //获取单位工程的各标段费用信息(不进行汇总)
- async function getTendersFeeInfo(tenders) {
- let IDMapping = {};
- //固定清单类别与汇总金额字段映射
- let flagFieldMapping = {};
- flagFieldMapping[fixedFlag.ENGINEERINGCOST] = 'engineeringCost';
- flagFieldMapping[fixedFlag.SUB_ENGINERRING] = 'subEngineering';
- flagFieldMapping[fixedFlag.MEASURE] = 'measure';
- flagFieldMapping[fixedFlag.SAFETY_CONSTRUCTION] = 'safetyConstruction';
- flagFieldMapping[fixedFlag.OTHER] = 'other';
- flagFieldMapping[fixedFlag.CHARGE] = 'charge';
- flagFieldMapping[fixedFlag.TAX] = 'tax';
- let tenderIDs = [];
- if(tenders.length > 0){
- for(let tender of tenders){
- tenderIDs.push(tender.ID);
- IDMapping[tender.ID] = {engineeringCost: 0, subEngineering: 0, measure: 0, safetyConstruction: 0, other: 0, charge: 0, tax: 0, estimate: 0, rate: 0, buildingArea: '', perCost: ''};
- IDMapping[tender.ID]['buildingArea'] = '';
- }
- //需要获取的清单固定类别综合合价:工程造价、分部分项、措施项目、安全文明施工专项、规费、其他项目、税金
- let needFlags = [fixedFlag.ENGINEERINGCOST, fixedFlag.SUB_ENGINERRING, fixedFlag.MEASURE,
- fixedFlag.SAFETY_CONSTRUCTION, fixedFlag.CHARGE, fixedFlag.OTHER, fixedFlag.TAX];
- //获取单位工程汇总金额需要用到的所有清单
- let allBills = await billsModel.find({projectID: {$in: tenderIDs}, 'flags.flag': {$in: needFlags}, $or: notDeleted},
- '-_id projectID fees flags');
- //进行单位工程级别的汇总
- for(let bills of allBills){
- let billsFlag = bills.flags[0]['flag'];
- let costField = flagFieldMapping[billsFlag];
- IDMapping[bills.projectID][costField] = getTotalFee(bills, 'common');
- //暂估合价(工程造价暂估合价)
- if (billsFlag === fixedFlag.ENGINEERINGCOST){
- IDMapping[bills.projectID]['estimate'] = getTotalFee(bills, 'estimate');
- }
- }
- //占造价比例、单方造价
- for(let tender of tenders){
- let tenderInfo = IDMapping[tender.ID];
- tenderInfo.rate = '';
- //单方造价
- tenderInfo.perCost = '';
- }
- }
- return IDMapping;
- }
- const defaultSummaryField = {
- [fixedFlag.ENGINEERINGCOST]: {
- items: [
- { name: 'engineeringCost', feeName: 'common' },
- { name: 'estimate', feeName: 'estimate' }
- ]
- },
- [fixedFlag.SUB_ENGINERRING]: {
- items: [{ name: 'subEngineering', feeName: 'common' }]
- },
- [fixedFlag.MEASURE]: {
- items: [{ name: 'measure', feeName: 'common' }]
- },
- [fixedFlag.SAFETY_CONSTRUCTION]: {
- items: [{ name: 'safetyConstruction', feeName: 'common' }]
- },
- [fixedFlag.OTHER]: {
- items: [{ name: 'other', feeName: 'common' }]
- },
- [fixedFlag.CHARGE]: {
- items: [{ name: 'charge', feeName: 'common' }]
- },
- [fixedFlag.TAX]: {
- items: [{ name: 'tax', feeName: 'common' }]
- }
- };
- // 项目管理界面需要显示的汇总字段
- function setupSummaryFields(summaryInfo, projects, fields = null) {
- if (!fields) {
- fields = [
- 'engineeringCost',
- 'subEngineering',
- 'measure',
- 'safetyConstruction',
- 'other',
- 'charge',
- 'tax',
- 'rate',
- 'buildingArea',
- 'perCost'
- ];
- }
- for(const proj of projects){
- const summaryProj = summaryInfo[proj.ID];
- if(summaryProj){
- for (const field of fields) {
- proj[field] = summaryProj[field];
- }
- }
- }
- }
- async function getSummaryInfo(projectIDs, summaryField = defaultSummaryField){
- function initFees(target, summaryField) {
- for (const flag in summaryField) {
- const summaryItem = summaryField[flag];
- summaryItem.items.forEach(item => {
- target[item.name] = 0;
- });
- }
- }
- //ID与汇总信息映射
- let IDMapping = {};
- let projects = await projectModel.find({ID: {$in : projectIDs}, projType: projectType.project, $or: [{deleteInfo: null}, {'deleteInfo.deleted': false}]});
- //设置建设项目的总建筑面积
- for(let project of projects){
- let grossArea = '';
- if(project.property && project.property.basicInformation){
- for(let basicInfo of project.property.basicInformation){
- if(basicInfo.key === 'basicInfo'){
- for(let k of basicInfo.items){
- if(k.key === 'grossArea'){
- grossArea = k.value;
- }
- }
- }
- }
- }
- IDMapping[project.ID] = {rate: 0, buildingArea: grossArea, perCost: ''};
- initFees(IDMapping[project.ID], summaryField);
- }
- //单项工程
- let engineerings = await projectModel.find({ParentID: {$in : projectIDs}, projType: projectType.engineering, $or: [{deleteInfo: null}, {'deleteInfo.deleted': false}]});
- let tenders = [];
- let engIDs = [];
-
- for(let eng of engineerings){
- engIDs.push(eng.ID);
- IDMapping[eng.ID] = {rate: 0, buildingArea: '', perCost: ''};
- initFees(IDMapping[eng.ID], summaryField);
- }
- //单位工程
- if(engIDs.length > 0){
- tenders = await projectModel.find({ParentID: {$in : engIDs}, projType: projectType.tender, $or: [{deleteInfo: null}, {'deleteInfo.deleted': false}]});
- }
- let tenderIDs = [];
- if(tenders.length > 0){
- for(let tender of tenders){
- tenderIDs.push(tender.ID);
- IDMapping[tender.ID] = {rate: 0, buildingArea: '', perCost: '', changeMark:tender.changeMark,property:tender.property};
- initFees(IDMapping[tender.ID], summaryField);
- let buildingArea = getBuildingArea(tender.property.projectFeature);
- if(buildingArea){
- IDMapping[tender.ID]['buildingArea'] = buildingArea;
- }
- }
- //需要获取的清单固定类别综合合价:工程造价、分部分项、措施项目、安全文明施工专项、规费、其他项目、税金...
- let needFlags = Object.getOwnPropertyNames(summaryField);
- //获取单位工程汇总金额需要用到的所有清单
- let allBills = await billsModel.find({projectID: {$in: tenderIDs}, 'flags.flag': {$in: needFlags}, $or: [{deleteInfo: null}, {'deleteInfo.deleted': false}]},
- '-_id projectID fees flags');
- //进行单位工程级别的汇总
- for(let bills of allBills){
- let billsFlag = bills.flags[0]['flag'];
- // 设置上单位工程需要汇总的字段金额
- const summaryItem = summaryField[billsFlag];
- summaryItem.items.forEach(costItem => {
- IDMapping[bills.projectID][costItem.name] = getTotalFee(bills, costItem.feeName);
- });
- }
- const summaryNames = [];
- for (const flag in summaryField) {
- summaryField[flag].items.forEach(item => summaryNames.push(item.name));
- }
- //进行单项工程级别的汇总
- for(let tender of tenders){
- summarizeToParent(IDMapping[tender.ParentID], IDMapping[tender.ID], summaryNames);
- }
- //进行建设项目级别的汇总
- for(let eng of engineerings){
- summarizeToParent(IDMapping[eng.ParentID], IDMapping[eng.ID], summaryNames);
- }
- //占造价比例、单方造价
- const rateDecimal = -2;
- const perCostDecimal = -2;
- for(let tender of tenders){
- let tenderInfo = IDMapping[tender.ID];
- let engInfo = IDMapping[tender.ParentID];
- tenderInfo.rate = engInfo.engineeringCost == 0 ? 0 : scMathUtil.roundTo(tenderInfo.engineeringCost * 100 / engInfo.engineeringCost, rateDecimal);
- //单方造价
- tenderInfo.perCost = tenderInfo.buildingArea.toString().trim() === '' || tenderInfo.buildingArea == 0
- ? tenderInfo.buildingArea.toString().trim()
- : scMathUtil.roundTo(tenderInfo.engineeringCost / tenderInfo.buildingArea, perCostDecimal);
- }
- for(let eng of engineerings){
- let engInfo = IDMapping[eng.ID];
- let projInfo = IDMapping[eng.ParentID];
- engInfo.rate = !isDef(projInfo) || projInfo.engineeringCost == 0 ? 0 : scMathUtil.roundTo(engInfo.engineeringCost * 100 / projInfo.engineeringCost, rateDecimal);
- }
- //建设项目占造价比例及单方造价
- for(let project of projects){
- let projectInfo = IDMapping[project.ID];
- projectInfo.rate = 100;
- projectInfo.perCost = projectInfo.buildingArea.toString().trim() === '' || projectInfo.buildingArea == 0
- ? projectInfo.buildingArea.toString().trim()
- : scMathUtil.roundTo(projectInfo.engineeringCost / projectInfo.buildingArea, perCostDecimal);
- }
- }
- return IDMapping;
- }
- /* async function getSummaryInfo(projectIDs, feeFields = null, engineeringCostFields = null){
- function initFees(obj, feeFields, engineeringCostFields) {
- for (let data of feeFields) {
- obj[data.v] = 0;
- }
- for (let data of engineeringCostFields) {
- obj[data.k] = 0;
- }
- }
- if (!feeFields) {
- feeFields = [
- {k: fixedFlag.ENGINEERINGCOST, v: 'engineeringCost'},
- {k: fixedFlag.SUB_ENGINERRING, v: 'subEngineering'},
- {k: fixedFlag.MEASURE, v: 'measure'},
- {k: fixedFlag.SAFETY_CONSTRUCTION, v: 'safetyConstruction'},
- {k: fixedFlag.OTHER, v: 'other'},
- {k: fixedFlag.CHARGE, v: 'charge'},
- {k: fixedFlag.TAX, v: 'tax'}
- ];
- }
- // 项目总造价的各个费用,k为汇总的字段,v为工程造价的费用字段
- if (!engineeringCostFields) {
- engineeringCostFields = [{ k: 'estimate', v: 'estimate' }];
- }
- //ID与汇总信息映射
- let IDMapping = {};
- //固定清单类别与汇总金额字段映射
- let flagFieldMapping = {};
- for (let data of feeFields) {
- flagFieldMapping[data.k] = data.v;
- }
- let projects = await projectModel.find({ID: {$in : projectIDs}, projType: projectType.project, $or: [{deleteInfo: null}, {'deleteInfo.deleted': false}]});
- //设置建设项目的总建筑面积
- for(let project of projects){
- let grossArea = '';
- if(project.property && project.property.basicInformation){
- for(let basicInfo of project.property.basicInformation){
- if(basicInfo.key === 'basicInfo'){
- for(let k of basicInfo.items){
- if(k.key === 'grossArea'){
- grossArea = k.value;
- }
- }
- }
- }
- }
- IDMapping[project.ID] = {rate: 0, buildingArea: grossArea, perCost: ''};
- initFees(IDMapping[project.ID], feeFields, engineeringCostFields);
- console.log(IDMapping[project.ID]);
- }
- //单项工程
- let engineerings = await projectModel.find({ParentID: {$in : projectIDs}, projType: projectType.engineering, $or: [{deleteInfo: null}, {'deleteInfo.deleted': false}]});
- let tenders = [];
- let engIDs = [];
-
- for(let eng of engineerings){
- engIDs.push(eng.ID);
- IDMapping[eng.ID] = {rate: 0, buildingArea: '', perCost: ''};
- initFees(IDMapping[eng.ID], feeFields, engineeringCostFields);
- }
- //单位工程
- if(engIDs.length > 0){
- tenders = await projectModel.find({ParentID: {$in : engIDs}, projType: projectType.tender, $or: [{deleteInfo: null}, {'deleteInfo.deleted': false}]});
- }
- let tenderIDs = [];
- if(tenders.length > 0){
- for(let tender of tenders){
- tenderIDs.push(tender.ID);
- IDMapping[tender.ID] = {rate: 0, buildingArea: '', perCost: '', changeMark:tender.changeMark,property:tender.property};
- initFees(IDMapping[tender.ID], feeFields, engineeringCostFields);
- let buildingArea = getBuildingArea(tender.property.projectFeature);
- if(buildingArea){
- IDMapping[tender.ID]['buildingArea'] = buildingArea;
- }
- }
- //需要获取的清单固定类别综合合价:工程造价、分部分项、措施项目、安全文明施工专项、规费、其他项目、税金...
- let needFlags = feeFields.map(data => data.k);
- //获取单位工程汇总金额需要用到的所有清单
- let allBills = await billsModel.find({projectID: {$in: tenderIDs}, 'flags.flag': {$in: needFlags}, $or: [{deleteInfo: null}, {'deleteInfo.deleted': false}]},
- '-_id projectID fees flags');
- //进行单位工程级别的汇总
- for(let bills of allBills){
- let billsFlag = bills.flags[0]['flag'];
- let costField = flagFieldMapping[billsFlag];
- IDMapping[bills.projectID][costField] = getTotalFee(bills, 'common');
- // 工程造价各费用
- if (billsFlag === fixedFlag.ENGINEERINGCOST){
- engineeringCostFields.forEach(({k, v}) => {
- IDMapping[bills.projectID][k] = getTotalFee(bills, v);
- });
- }
- }
- let summaryFields = [...feeFields, ...engineeringCostFields].map(data => data.v);
- //进行单项工程级别的汇总
- for(let tender of tenders){
- summarizeToParent(IDMapping[tender.ParentID], IDMapping[tender.ID], summaryFields);
- }
- //进行建设项目级别的汇总
- for(let eng of engineerings){
- summarizeToParent(IDMapping[eng.ParentID], IDMapping[eng.ID], summaryFields);
- }
- //占造价比例、单方造价
- const rateDecimal = -2;
- const perCostDecimal = -2;
- for(let tender of tenders){
- let tenderInfo = IDMapping[tender.ID];
- let engInfo = IDMapping[tender.ParentID];
- tenderInfo.rate = engInfo.engineeringCost == 0 ? 0 : scMathUtil.roundTo(tenderInfo.engineeringCost * 100 / engInfo.engineeringCost, rateDecimal);
- //单方造价
- tenderInfo.perCost = tenderInfo.buildingArea.toString().trim() === '' || tenderInfo.buildingArea == 0
- ? tenderInfo.buildingArea.toString().trim()
- : scMathUtil.roundTo(tenderInfo.engineeringCost / tenderInfo.buildingArea, perCostDecimal);
- }
- for(let eng of engineerings){
- let engInfo = IDMapping[eng.ID];
- let projInfo = IDMapping[eng.ParentID];
- engInfo.rate = !isDef(projInfo) || projInfo.engineeringCost == 0 ? 0 : scMathUtil.roundTo(engInfo.engineeringCost * 100 / projInfo.engineeringCost, rateDecimal);
- }
- //建设项目占造价比例及单方造价
- for(let project of projects){
- let projectInfo = IDMapping[project.ID];
- projectInfo.rate = 100;
- projectInfo.perCost = projectInfo.buildingArea.toString().trim() === '' || projectInfo.buildingArea == 0
- ? projectInfo.buildingArea.toString().trim()
- : scMathUtil.roundTo(projectInfo.engineeringCost / projectInfo.buildingArea, perCostDecimal);
- }
- }
- return IDMapping;
- } */
- //根据项目ID获取所属建设项目
- //@param {Number}projectID @return {Object}
- async function getConstructionProject(projectID){
- function returnProject(project){
- if(!project || project.projType === projectType.folder){
- return null;
- }
- if(project.projType === projectType.project){
- return project;
- }
- }
- let project = await projectModel.findOne({ID: projectID, $or: notDeleted});
- let returnV = returnProject(project);
- if(returnV !== undefined){
- return returnV;
- }
- let parent = await projectModel.findOne({ID: project.ParentID, $or: notDeleted});
- returnV = returnProject(parent);
- if(returnV !== undefined){
- return returnV;
- }
- let grandParent = await projectModel.findOne({ID: parent.ParentID, $or: notDeleted});
- returnV = returnProject(grandParent);
- return returnV !== undefined ? returnV : null;
- }
- //获取单位工程完整目录结构
- //@param {Number}projectID @return {Arry}
- async function getFullPath(projectID) {
- let fullPath = [];
- let project = await projectModel.findOne({ID: projectID, $or: notDeleted}, '-_id ParentID name');
- if(project){
- fullPath.push(project.name);
- await getParent(project.ParentID);
- }
- fullPath = fullPath.reverse();
- return fullPath;
- async function getParent(ParentID) {
- if(ParentID != -1){
- let parent = await projectModel.findOne({ID: ParentID, $or: notDeleted}, '-_id ParentID name');
- if(parent){
- fullPath.push(parent.name);
- await getParent(parent.ParentID);
- }
- }
- }
- }
- // 获取项目链上,自身、父项、爷爷项...的ID
- async function getUpChainIDs(projectID) {
- const rst = [];
- while (projectID != -1) {
- rst.push(projectID);
- const project = await projectModel.findOne({ ID: projectID }, '-_id ParentID').lean();
- projectID = project ? project.ParentID : -1;
- }
- return rst;
- }
- //获取projectIDs文件下所有子项目(默认不包括projectIDs本身)
- async function getPosterityProjects(projectIDs, includeSelf = false, fields = '-_id') {
- let rst = [];
- if (includeSelf) {
- const projects = await projectModel.find({ID: {$in: projectIDs}, $or: notDeleted}, fields).lean();
- if (projects) {
- rst.push(...projects);
- }
- }
- async function getProjects(parentIDs) {
- if (parentIDs.length > 0) {
- let newIDs = [];
- let projs = await projectModel.find({ParentID: {$in: parentIDs}, $or: notDeleted}, fields).lean();
- for (let proj of projs) {
- // 兼容旧的错误数据,可能ParentID和ID相同
- if (parentIDs.includes(proj.ID)) {
- continue;
- }
- rst.push(proj);
- newIDs.push(proj.ID);
- }
- await getProjects(newIDs);
- }
- }
- await getProjects(projectIDs);
- return rst;
- }
- //根据项目获得分享信息(分享层级不一定在项目级)(以最新为准)
- async function getShareInfo(userID, projectID) {
- // 接受到的分享项目
- const upChainIDs = await getUpChainIDs(projectID);
- const shareList = await getShareList({receiver: userID, projectID: {$in: upChainIDs}});
- // 返回最新的分享
- //return shareList.sort((a, b) => Date.parse(b.shareDate) - Date.parse(a.shareDate))[0];
- return shareList.sort((a, b) => Date.parse(b.updateDate) - Date.parse(a.updateDate))[0];
- }
- //打开的单位工程是否是被分享的.
- async function isShare(userId, project){
- //判断是否是打开分享的项目,属于分享文件的子项也算
- while (project) {
- for(let shareData of project.shareInfo){
- if(shareData.userID === userId){
- return true;
- }
- }
- project = await projectModel.findOne({ID: project.ParentID}, '-_id shareInfo ID ParentID');
- }
- return false;
- }
- //用户是否第一次进入费用定额
- async function isFirst(userId, compilationId) {
- let userData = await userModel.findOne({_id: mongoose.Types.ObjectId(userId)}, '-_id used_list');
- let first = false;
- if (userData) {
- first = !_.find(userData.used_list, function (o) {
- return o.compilationId === compilationId;
- });;
- }
- return first;
- }
- async function copyConstructionProject(data){
- let log_data = {
- key:data.key,
- content: '正在复制建设项目,请稍候……',
- userID:data.user_id,
- compilationID: data.session.sessionCompilation._id,
- status:"start",
- create_time:+new Date()
- };
- await importLogsModel.create(log_data);
- doCopy(data.user_id,data.session.sessionCompilation._id,data.projectID,data.newName,data.key);
- return "start copy";
- async function doCopy(user_id,compilationId,projectID,newName,key) {
- let doc = {status:"finish"};
- try {
- let nameMap={};
- nameMap[projectID] = newName
- let r = await copyExample(user_id,compilationId,[projectID],nameMap);
- if(r == false){
- doc.errorMsg = "复制失败,请检查项目是否存在!";
- doc.status = "error";
- }
- }catch (error){
- console.log(error);
- doc.errorMsg = "复制失败,请检查项目是否存在!";
- doc.status = "error";
- }finally {
- await importLogsModel.update({key:key},doc);
- }
- }
- }
- async function importChongqingProject(data) {
- let log_data = {
- key:data.key,
- content: '正在导入例题,请稍候……',
- userID:data.user_id,
- compilationID: data.session.sessionCompilation._id,
- status:"start",
- create_time:+new Date()
- };
- await importLogsModel.create(log_data);
- doImport(data.user_id,data.session.sessionCompilation._id,data.session.sessionCompilation.adProjects,data.key);
- return "start importing";
- async function doImport(user_id,compilationId,projectIDs,key) {
- let doc = {status:"finish"};
- try {
- let r = await copyExample(user_id,compilationId,projectIDs);
- if(r == false){
- doc.errorMsg = "导入失败,请检查项目是否存在!";
- doc.status = "error";
- } else {
- doc.projectID = r;
- }
- }catch (error){
- console.log(error);
- doc.errorMsg = "导入失败,请检查项目是否存在!";
- doc.status = "error";
- }finally {
- await importLogsModel.update({key:key},doc);
- }
- }
- }
- function testTimeout(time) {
- return new Promise(resolve => setTimeout(resolve, time));
- }
- //用户第一次进入费用定额的数据准备
- async function prepareInitialData(userId, compilation, example) {
- let first = await isFirst(userId, compilation);
- if (first) {
- await updateUsedList(userId, compilation);
- const logData = {
- key: uuidV1(),
- content: '正在加载例题,请稍候……',
- userID: userId,
- compilationID: compilation,
- status: 'start',
- create_time: +new Date()
- };
- await importLogsModel.create(logData);
- initData(logData.key, userId, compilation, example);
- return 'start prepareInitialData';
- }
- async function initData(key, userId, compilation, example) {
- const doc = { status: 'finish' };
- try {
- let prepareTask = [
- copyCompleRationSection(userId, compilation),
- copyCompleGljSection(userId, compilation)
- ];
- if (example && example.length > 0) {
- prepareTask.push(copyExample(userId, compilation, example));
- }
- await Promise.all(prepareTask);
- } catch (error) {
- doc.errorMsg = '加载例题失败,请检查例题项目是否存在!';
- doc.status = 'error';
- } finally {
- await importLogsModel.update({ key }, doc);
- }
- }
- }
- async function updateUsedList(userId, compilation) {
- await userModel.update({_id: mongoose.Types.ObjectId(userId)}, {$push: {used_list: {compilationId: compilation}}});
- }
- //拷贝补充定额章节树
- async function copyCompleRationSection(userId, compilationId) {
- await sectionTreeDao.copyDataFromTemplate(userId, compilationId);
- }
- //拷贝补充人材机分类树
- async function copyCompleGljSection(userId, compilationId) {
- // 如果已有数据则不再生成
- const count = await compleGljSectionModel.count({userId, compilationId});
- if (count) {
- return;
- }
- let templateData = await compleGljSectionTModel.find({compilationId: compilationId});
- if (templateData.length > 0) {
- let insertDatas = [],
- uuidMapping = {};
- //将ID替换成UUID
- for (let temData of templateData) {
- uuidMapping[temData.ID] = uuidV1();
- }
- for(let temData of templateData) {
- let insertD = {
- userId: userId,
- compilationId: compilationId,
- Name: temData.Name,
- ID: uuidMapping[temData.ID],
- ParentID: uuidMapping[temData.ParentID] || -1,
- NextSiblingID: uuidMapping[temData.NextSiblingID] || -1,
- };
- insertDatas.push(insertD);
- }
- //插入数据
- await compleGljSectionModel.insertMany(insertDatas);
- }
- }
- async function changeFile(datas,userID,fileID,name,from,type){//from 费率或单价文件,type从单前建设项目还是从其它建设项目中复制
- let projectIDs = [],newFile = {id:fileID,name:name};//计录从其它项目中复制的文件,选中多个的时候只需复制一次
- let projectUpdateType = from == "feeRateFile"?"feeRate":"unitFile";
- for(let d of datas){
- let tem_file = from == "feeRateFile"? await feeRate_facade.changeFeeRateFile(d, newFile,type,userID):await glj_facade.changeUnitFile(d, newFile,type,userID);
- if(type == 1 && tem_file){//从建设项目复制时,只有第一次需要复制,剩下的就相当于使用同个建设项目的情况了
- let newID = from == "feeRateFile"?tem_file.ID:tem_file.id;
- newFile = {id:newID,name:tem_file.name};
- type = 0;
- }
- projectIDs.push({ID:d.projectID})
- }
- await project_facade.markProjectsToChange(projectIDs,projectUpdateType)//项目标记为待刷新状态
- }
- //获取费用定额绑定的基本信息库数据
- async function getBasicInfo(compilationID, fileKind = null) {
- let compilation = await compilationModel.findOne({_id: mongoose.Types.ObjectId(compilationID)});
- if (!compilation) {
- return null;
- }
- let billValuation = compilation.bill_valuation.find(function (data) {
- return data.enable;
- });
- if (!billValuation) {
- return null;
- }
- let engineerings = await engineeringModel.find({valuationID: billValuation.id});
- let engineering = engineerings.find(function (data) {
- return data.info_lib && data.info_lib.length > 0;
- });
- if (!engineering || !engineering.info_lib || !engineering.info_lib[0]) {
- return null;
- }
- let infoLib = await basicInfoModel.findOne({ID: engineering.info_lib[0].id});
- //提取文件类型中需要的数据 (投标项目可能不需要招标的一些信息)
- if (fileKind && infoLib && infoLib.info && infoLib.info.length) {
- let strMap = {
- 1: '投标', //投标
- 2: '招标', //招标
- 3: '控制价' //控制价
- };
- let needfulData = infoLib.info.filter(data => !data.fileKind || data.fileKind === strMap[fileKind]);
- needfulData.forEach(nData => {
- let needfulSub = nData.items.filter(sData => !sData.fileKind || sData.fileKind === strMap[fileKind]);
- nData.items = needfulSub;
- });
- infoLib.info = needfulData;
- }
- return infoLib;
- }
- async function getProjectFeature(valuationID, engineeringName, feeName) {
- let engineering = await engineeringModel.findOne({valuationID: valuationID, name: engineeringName, feeName: feeName});
- if (!engineering || !engineering.feature_lib || !engineering.feature_lib[0]) {
- return null;
- }
- let featureLib = await projectFeatureModel.findOne({ID: engineering.feature_lib[0].id});
- return featureLib;
- }
- //根据单位工程,获取建设项目-单项工程-单位工程,不包含无单位工程的单项工程
- //@param {Number}tenderID(单位工程ID) {Number}granularity(颗粒度 1:建设项目 2:单项工程 3:单位工程)
- async function getProjectByGranularity(tenderID, granularity, summaryField, userID, versionName) {
- const GRANULARITY = {
- PROJECT: 1,
- ENGINEERING: 2,
- TENDER: 3
- };
- let theTender = await projectModel.findOne({userID: userID, ID: tenderID}).lean(); //加上session的userID,防止tenderID被篡改过
- if (!theTender) {
- return null;
- }
- let theEngineering = await projectModel.findOne({ID: theTender.ParentID}).lean();
- if (!theEngineering) {
- return null;
- }
- let constructionProject = await projectModel.findOne({ID: theEngineering.ParentID}).lean();
- if (!constructionProject) {
- return null;
- }
- let engineerings;
- if (granularity === GRANULARITY.PROJECT) {
- engineerings = await projectModel.find({ParentID: constructionProject.ID, $or: notDeleted}).lean();
- for (let eng of engineerings) {
- eng.children = await projectModel.find({ParentID: eng.ID, $or: notDeleted}).lean();
- }
- } else {
- engineerings = [theEngineering];
- if (granularity === GRANULARITY.ENGINEERING) {
- theEngineering.children = await projectModel.find({ParentID: theEngineering.ID, $or: notDeleted}).lean();
- } else {
- theEngineering.children = [theTender];
- }
- }
- constructionProject.children = engineerings;
- //获取汇总信息
- constructionProject.summaryInfo = await getSummaryInfo([constructionProject.ID], summaryField);
- //获取编制软件信息: 软件公司;软件名;版本号;授权信息; base64
- const systemSetting = await systemSettingModel.findOne({});
- let company = systemSetting.company || '珠海纵横创新软件有限公司',
- version = systemSetting.version || '';
- constructionProject.softInfo = `${company};${versionName};${version};${userID}`;
- return constructionProject;
- }
- //获取项目数据占位ID
- async function getProjectPlaceholder(data) {
- let rst = {};
- //项目本身数据
- if (data.projectCount) {
- let projectCount = await counter.counterDAO.getIDAfterCountSync(counter.moduleName.project, data.projectCount);
- rst.project = projectCount.sequence_value - data.projectCount + 1;
- }
- //项目人材机数据
- if (data.projectGLJCount) {
- let projectGLJCount = await counter.counterDAO.getIDAfterCountSync(counter.moduleName.glj_list, data.projectGLJCount);
- rst.projectGLJ = projectGLJCount.sequence_value - data.projectGLJCount + 1;
- }
- //组成物数据
- if (data.ratioCount) {
- let ratioCount = await counter.counterDAO.getIDAfterCountSync(counter.moduleName.mix_ratio, data.ratioCount);
- rst.ratio = ratioCount.sequence_value - data.ratioCount + 1;
- }
- //单价文件数据
- if (data.unitPriceFileCount) {
- let unitPriceFileCount = await counter.counterDAO.getIDAfterCountSync(counter.moduleName.unit_price_file, data.unitPriceFileCount);
- rst.unitPriceFile = unitPriceFileCount.sequence_value - data.unitPriceFileCount + 1;
- }
- //单价数据
- if (data.unitPriceCount) {
- let unitPriceCount = await counter.counterDAO.getIDAfterCountSync(counter.moduleName.unit_price, data.unitPriceCount);
- rst.unitPrice = unitPriceCount.sequence_value - data.unitPriceCount + 1;
- }
- return rst;
- }
- /*
- * 接口导入 项目详细数据都导入完成了,再生成项目数据(项目管理界面数据)
- * */
- async function importProject(importObj, userID, compilationID, overWriteUrl) {
- let toInsertProjects = [importObj]; //待新增项目数据
- let billsCalcMode = 0;
- if (overWriteUrl) {
- const overWrite = require('../../..' + overWriteUrl);
- if(overWrite.getBillsCalcMode) { // 重写清单计费取费方式
- billsCalcMode = overWrite.getBillsCalcMode();
- }
- }
- await setupProject(importObj);
- //设置项目ID及相关数据
- for (let curEng of importObj.engs) {
- await setupProject(curEng);
- toInsertProjects.push(curEng);
- for (let curTender of curEng.tenders) {
- await setupProject(curTender.tender);
- //插入单位工程的详细数据
- await importTenderDetail(curTender);
- toInsertProjects.push(curTender.tender);
- }
- delete curEng.tenders;
- }
- delete importObj.engs;
- //项目内部数据设置、新增完毕后,插入项目本身的数据,更新前节点数据
- let bulks = [];
- //如果有前节点,更新前节点
- if (importObj.preID !== -1) {
- bulks.push({
- updateOne: {filter: {ID: importObj.preID}, update: {$set: {NextSiblingID: importObj.ID}}}
- });
- }
- for (let insertP of toInsertProjects) {
- bulks.push({
- insertOne: {document: insertP}
- });
- }
- if (bulks.length > 0) {
- await projectModel.bulkWrite(bulks);
- }
- return importObj.ID; // 返回建设项目ID
- // TODO 删除
- let summaryInfo = await getSummaryInfo([importObj.ID]);
- //设置汇总字段
- for(let proj of toInsertProjects){
- let summaryProj = summaryInfo[proj.ID];
- if(summaryProj){
- proj.engineeringCost = summaryProj.engineeringCost;
- proj.subEngineering = summaryProj.subEngineering;
- proj.measure = summaryProj.measure;
- proj.safetyConstruction = summaryProj.safetyConstruction;
- proj.other = summaryProj.other;
- proj.charge = summaryProj.charge;
- proj.tax = summaryProj.tax;
- proj.rate = summaryProj.rate;
- proj.buildingArea = summaryProj.buildingArea;
- proj.perCost = summaryProj.perCost;
- }
- }
- return toInsertProjects;
- //给项目数据设置一些需要的数据
- async function setupProject(data) {
- data.userID = userID;
- data.compilation = compilationID;
- data.fileVer = await index.getVersion();
- data.createDateTime = new Date();
- if (data.projType === 'Project') {
- await setupConstruct(data);
- } else if (data.projType === 'Tender') {
- await setupTender(data);
- }
- }
- //给建设项目设置一些数据
- async function setupConstruct(data) {
- //更新基本信息, 按照key匹配
- let infoLib = await getBasicInfo(data.compilation, data.property.fileKind);
- if (infoLib) {
- //标准基本信息库的数据打平
- let flatDatas = [];
- infoLib.info.forEach(ifData => flatDatas.push(...ifData.items));
- data.basicInformation.forEach(importI => {
- flatDatas.forEach(item => {
- if (item.key === 'engineeringName') {
- item.value = data.name;
- } else if (item.key === 'fileKind') {
- item.value = {'1': '投标', '2': '招标'}[data.property.fileKind]
- } else if (item.key === 'taxModel') {
- item.value = {'1': '一般计税法', '2': '简易计税法'}[data.property.taxType]
- }
- if (item.key === importI.key) {
- item.value = importI.value;
- }
- });
- });
- }
- data.property.basicInformation = infoLib ? infoLib.info : [];
- }
- //给单位工程设置一些数据
- async function setupTender(data) {
- if (!data.property.decimal) {
- //小数位数 需要修改,所以深拷贝
- data.property.decimal = JSON.parse(JSON.stringify(defaultDecimal));
- // 定额工程量、人材机消耗量精度设为最大6
- data.property.decimal.ration.quantity = 6;
- data.property.decimal.glj.quantity = 6;
- }
- //清单工程量精度 需要修改,所以深拷贝
- data.property.billsQuantityDecimal = JSON.parse(JSON.stringify(billsQuantityDecimal));
- // 清单工程量精度默认为4
- const billsQuantityDecimalValue = data.property.billsQuantityDecimalValue || 4;
- data.property.billsQuantityDecimal.forEach(data => data.decimal = billsQuantityDecimalValue);
- //呈现选项
- data.property.displaySetting = displaySetting;
- data.property.billsCalcMode = billsCalcMode;
- data.property.zanguCalcMode = 0;
- //计算选项
- data.property.calcOptions = calcOptions;
- //安装增加费
- if(data.property.isInstall === true || data.property.isInstall === 'true'){//判断是否安装工程
- await installationFacade.copyInstallationFeeFromLib(data.ID, data.property.engineering_id);
- }
- //锁定清单
- data.property.lockBills = true;
- //工料机单价调整系数
- data.property.tenderSetting = tenderSetting;
- //工程特征相关更新 (配对更新+追加)
- let featureLib = await getProjectFeature(data.property.valuation, data.property.engineeringName, data.property.feeStandardName);
- if (featureLib) {
- //把导入的数据设置到默认生成的数据中,按名称匹配 (导入项不确定,因此无法确定获取项的key)
- // 只匹配第一层
- const unmatched = [];
- data.projectFeature.forEach(importF => {
- let matchData = featureLib.feature.find(f => f.dispName === importF.dispName);
- if (matchData) {
- matchData.value = importF.value;
- if (importF.items) {
- matchData.items = importF.items;
- }
- } else {
- unmatched.push(importF);
- }
- });
- featureLib.feature.push(...unmatched);
- featureLib.feature.forEach(f => {
- //设置工程专业的值为费用标准的值..
- if (f.key === 'engineering') {
- f.value = data.property.feeStandardName;
- } else if (f.key === 'projType' && !f.value) {
- const options = f.options && f.options.split('@') || [];
- f.value = options[0] || '';
- }
- });
- }
- data.property.projectFeature = featureLib ? featureLib.feature : [];
- // 指标信息相关设置
- await project_facade.setSEILibData(data.property);
- }
- }
- //插入单位工程内部详细数据
- async function importTenderDetail(tenderData) {
- //单价文件
- let upFile = {
- id: tenderData.tender.property.unitPriceFile.id,
- name: tenderData.tender.name,
- project_id: tenderData.tender.ID,
- user_id: tenderData.tender.userID,
- root_project_id: tenderData.tender.property.rootProjectID
- };
- await unitPriceFileModel.create(upFile);
- //费率文件
- let feeRateFileID = await feeRate_facade.newFeeRateFile(tenderData.tender.userID, tenderData.tender);
- tenderData.tender.property.feeFile = feeRateFileID ? feeRateFileID : -1;
- //人工系数文件
- let lcFile = await labourCoeFacade.newProjectLabourCoe(tenderData.tender);
- tenderData.tender.property.labourCoeFile = lcFile ? lcFile : null;
- let cpFile = await calcProgramFacade.newProjectCalcProgramFile(tenderData.tender);
- tenderData.tender.property.calcProgramFile = cpFile ? cpFile : null;
- //列设置
- let engineeringModel = new EngineeringLibModel();
- let engineering = await engineeringModel.getEngineering(tenderData.tender.property.engineering_id);
- let mainTreeCol = await mainColLibModel.findOne({ID: tenderData.tender.property.colLibID});
- await projectSettingModel.create({projectID: tenderData.tender.ID, main_tree_col: mainTreeCol.main_tree_col, glj_col: engineering.glj_col});
- //清单
- if (tenderData.bills.length) {
- await billsModel.insertMany(tenderData.bills);
- }
- // 工程量明细
- if (tenderData.quantityDetails && tenderData.quantityDetails.length) {
- await quantityDetailModel.insertMany(tenderData.quantityDetails);
- }
- if (enterDetail(tenderData)) {
- //匹配标准数据,更新一些标准数据
- await setupStdData(tenderData);
- }
- let task = [];
- //定额
- if (tenderData.ration.length) {
- task.push(rationModel.insertMany(tenderData.ration))
- }
- //定额人材机
- if (tenderData.rationGLJ.length) {
- task.push(rationGLJModel.insertMany(tenderData.rationGLJ));
- }
- //定额调整系数
- if (tenderData.rationCoe.length) {
- task.push(rationCoeModel.insertMany(tenderData.rationCoe));
- }
- //项目人材机
- if (tenderData.projectGLJ.length) {
- task.push(gljListModel.insertMany(tenderData.projectGLJ));
- }
- // 承包人材料
- if (tenderData.contractorList.length) {
- task.push(contractorListModel.insertMany(tenderData.contractorList));
- }
- // 评标材料表
- if (tenderData.bidEvaluationList.length) {
- task.push(bidListModel.insertMany(tenderData.bidEvaluationList));
- }
- // 暂估价材料表
- if (tenderData.evaluationList.length) {
- task.push(evaluateListModel.insertMany(tenderData.evaluationList));
- }
- //组成物
- if (tenderData.mixRatio.length) {
- task.push(mixRatioModel.insertMany(tenderData.mixRatio));
- }
- //单价文件
- if (tenderData.unitPrice.length) {
- task.push(unitPriceModel.insertMany(tenderData.unitPrice));
- }
- if (task.length) {
- await Promise.all(task);
- }
- //继续处理定额等数据
- function enterDetail(tenderData) {
- return tenderData.ration.length ||
- tenderData.rationGLJ.length ||
- tenderData.projectGLJ.length ||
- tenderData.mixRatio.length ||
- tenderData.unitPrice.length;
- }
- }
- //匹配标准数据,需要匹配标准定额,更新导入的定额人材机的定额消耗量等数据
- async function setupStdData(tenderData) {
- //获取标准定额数据 (定额子目的编码查找)
- let matchRationCodes = [...new Set(tenderData.ration.map(ration => ration.code))];
- if (!matchRationCodes.length) {
- return;
- }
- //限制在当前费用定额可用的定额库里查找
- let stdRations = await stdRationItemModel.find({code: {$in: matchRationCodes}, rationRepId: {$in: tenderData.tender.rationLibIDs}},
- '-_id -rationAssList -rationCoeList -rationInstList');
- //标准定额code - 映射
- let stdRationCodeMap = {};
- stdRations.forEach(stdRation => stdRationCodeMap[stdRation.code] = stdRation);
- //获取标准人材机数据 (人材机汇总的编码查找)
- let matchGLJCodes = [...new Set(tenderData.projectGLJ.map(pGLJ => pGLJ.original_code))];
- if (!matchGLJCodes.length) {
- return;
- }
- //限制在当前费用定额可用的人材机库里查找
- let stdGLJs = await stdGljItemModel.find({code: {$in: matchGLJCodes}, repositoryId: {$in: tenderData.tender.gljLibIDs}},
- '-_id -component -priceProperty');
- //标准人材机code - 映射
- let stdGLJCodeMap = {};
- stdGLJs.forEach(stdGLJ => stdGLJCodeMap[stdGLJ.code] = stdGLJ);
- // 取费ID-计算程序子目映射
- const programIDCalculationMap = {};
- //更新定额数据
- const toSetFakeProgramIDData = [];
- tenderData.ration.forEach(r => {
- if (r.setFakeProgramID) {
- toSetFakeProgramIDData.push(r);
- delete r.setFakeProgramID;
- }
- let stdRation = stdRationCodeMap[r.code];
- if (stdRation) {
- r.caption = stdRation.caption;
- r.from = 'std';
- r.libID = stdRation.rationRepId;
- r.stdID = stdRation.ID;
- r.prefix = stdRation.rationRepId == tenderData.tender.defaultRationLib ? '' : '借';
- r.content = stdRation.jobContent;
- r.manageFeeRate = stdRation.manageFeeRate;
- if (stdRation.feeType) {
- r.programID = stdRation.feeType;
- } else {
- // 是标准定额,但是该标准定额取费专业为空,取定额取费专业(后台配置项)
- r.programID = tenderData.tender.property.engineering;
- }
- } else {
- r.from = 'cpt';
- r.prefix = '补';
- }
- if (r.calculationItems && r.calculationItems.length > 0 && !programIDCalculationMap[r.programID]) {
- programIDCalculationMap[r.programID] = r.calculationItems;
- }
- delete r.calculationItems;
- });
- // 更新计算程序
- const newTemplates = [];
- const calcFileID = tenderData.tender.property.calcProgramFile.ID;
- let calcProgramFile = null;
- if (Object.keys(programIDCalculationMap).length > 0) {
- calcProgramFile = await calcProgramsModel.findOne({ ID: calcFileID }).lean();
- if (calcProgramFile) {
- for (const template of calcProgramFile.templates) {
- const matched = programIDCalculationMap[template.ID];
- if (!matched) {
- newTemplates.push(template);
- continue;
- }
- for (const newCalcItem of matched) {
- for (const oldCalcItem of template.calcItems) {
- if (newCalcItem.fieldName === oldCalcItem.fieldName &&
- !(newCalcItem.feeRate === 100 && !oldCalcItem.feeRateID && !oldCalcItem.feeRate)) {
- oldCalcItem.feeRate = newCalcItem.feeRate;
- oldCalcItem.feeRateID = null; // feeRateID优先级比较高,不赋为空的话为被覆盖
- }
- }
- }
- newTemplates.push(template);
- }
- }
- }
- // 增加假的计算程序
- if (toSetFakeProgramIDData.length) {
- if (!calcProgramFile) {
- calcProgramFile = await calcProgramsModel.findOne({ ID: calcFileID }).lean();
- }
- if (calcProgramFile) {
- const programIDTemplateMap = {};
- const programIDNewTemplateMap = {};
- calcProgramFile.templates.forEach(template => programIDTemplateMap[template.ID] = template);
- let curID = calcProgramFile.templates.length + 1;
- toSetFakeProgramIDData.forEach(r => {
- const matchedNewTempate = programIDNewTemplateMap[r.programID];
- if (matchedNewTempate) {
- r.programID = matchedNewTempate.ID;
- return;
- }
- const matched = programIDTemplateMap[r.programID];
- if (matched) {
- const newData = {
- ID: curID++,
- name: `${matched.name}_1`,
- calcItems: []
- };
- newTemplates.push(newData);
- programIDNewTemplateMap[r.programID] = newData;
- r.programID = newData.ID;
- }
- });
- }
- }
- if (newTemplates.length) {
- await calcProgramsModel.update({ ID: calcFileID }, { $set: { templates: newTemplates } });
- }
- //更新定额人材机数据
- tenderData.rationGLJ.forEach(rGLJ => {
- rGLJ.from = 'cpt';
- //匹配定额
- let stdRation = stdRationCodeMap[rGLJ.rationCode];
- if (stdRation) {
- //根据导入数据的定额人材机编码匹配人材机
- let stdGLJ = stdGLJCodeMap[rGLJ.original_code];
- if (stdGLJ) {
- rGLJ.from = 'std';
- rGLJ.GLJID = stdGLJ.ID;
- rGLJ.type = stdGLJ.gljType;
- rGLJ.shortName = stdGLJ.shortName;
- rGLJ.repositoryId = stdGLJ.repositoryId;
- rGLJ.model = stdGLJ.model;
- rGLJ.adjCoe = stdGLJ.adjCoe;
- //找匹配到的标准定额中定额人材机的相应人材机,更新定额消耗
- let stdRationGLJ = stdRation.rationGljList.find(data => data.gljId === stdGLJ.ID);
- if (stdRationGLJ) {
- rGLJ.rationItemQuantity = stdRationGLJ.consumeAmt;
- }
- }
- }
- });
- //更新人材机汇总数据
- tenderData.projectGLJ.forEach(pGLJ => {
- if (!pGLJ.specs) {
- pGLJ.specs = null;
- }
- let stdGLJ = stdGLJCodeMap[pGLJ.original_code];
- if (stdGLJ) {
- pGLJ.glj_id = stdGLJ.ID;
- pGLJ.model = stdGLJ.model;
- if (pGLJ.type !== stdGLJ.gljType) { //更新组成物connect_key
- let keyStr = [pGLJ.code || 'null', pGLJ.name || 'null', pGLJ.specs || 'null', pGLJ.unit || 'null', pGLJ.type].join('|-|');
- let ratios = tenderData.mixRatio.filter(ratio =>
- ratio.connect_key === keyStr);
- let newKeyStr = [pGLJ.code || 'null', pGLJ.name || 'null', pGLJ.specs || 'null', pGLJ.unit || 'null', stdGLJ.gljType || 'null'].join('|-|');
- ratios.forEach(ratio => ratio.connect_key = newKeyStr);
- }
- pGLJ.type = stdGLJ.gljType; //更新类型,标准的数据类型更准确,导入的类型数据有细分识别不了
- }
- });
- //更新单价文件数据
- tenderData.unitPrice.forEach(up => {
- let stdGLJ = stdGLJCodeMap[up.original_code];
- if (stdGLJ) {
- up.glj_id = stdGLJ.ID;
- up.type = stdGLJ.gljType;
- up.short_name = stdGLJ.shortName;
- if (stdGLJ.taxRate) {
- up.taxRate = stdGLJ.taxRate;
- }
- }
- });
- //更新组成物数据
- tenderData.mixRatio.forEach(ratio => {
- let stdGLJ = stdGLJCodeMap[ratio.code] || stdGLJCodeMap[ratio.original_code];
- if (stdGLJ) {
- ratio.glj_id = stdGLJ.ID;
- ratio.type = stdGLJ.gljType;
- }
- });
- }
- async function exportProject(userID,data){//导出建设项目
- if(data.type == 'main'){
- return await exportMainData(userID,data.projectID);
- }else {
- return await exportTenderData(data);
- }
- }
- async function exportMainData(userID,projectID) {
- let result = {userID:userID,projects:[],type:'Project'};//type 备用属性,表示导出的类型,目前导出的都是整个建设项目
- let tenderIDs = [];
- let project = await projectModel.findOne({ID:projectID});
- if(!project) throw new Error("没有找到该建设项目:"+projectID);
- result['compilationID'] = project.compilation;
- result['from'] = "construction";
- result.projects.push(project);
- let subProjects = await projectModel.find({"$or": [{'ParentID':projectID}, {"property.rootProjectID": projectID}]});
- for(let s of subProjects){
- if(!s.deleteInfo || !s.deleteInfo.deleted){
- result.projects.push(s);
- if(s.projType =="Tender") tenderIDs.push(s.ID);
- }
- }
- let files = {unitFiles:await exportUnitFiles(projectID),feeRateFiles:await exportFeeRateFiles(projectID)};
- result.files = files;
- result = cipher.aesEncrypt(JSON.stringify(result));
- result +="|----|" +JSON.stringify(tenderIDs);
- return result;
- }
- async function exportUnitFiles(rootProjectID){
- let unitFiles = [];
- let files = await unitPriceFileModel.find({root_project_id:rootProjectID});
- for(let f of files){
- if(f.deleteInfo && f.deleteInfo.deleted == true) continue;
- let tem = {unitFile:f};
- tem.unitPrices = await unitPriceModel.find({unit_price_file_id:f.id});
- tem.mixRatios = await mixRatioModel.find({unit_price_file_id:f.id});
- unitFiles.push(tem);
- }
- return unitFiles;
- }
- async function exportFeeRateFiles(rootProjectID) {
- let feeRateFiles = [];
- let files = await feeRateFileModel.find({rootProjectID:rootProjectID});
- for(let f of files){
- if(f.deleteInfo && f.deleteInfo.deleted == true) continue;
- let tem = {feeRateFile:f};
- tem.feeRate = await feeRateModel.findOne({ID:f.feeRateID});
- feeRateFiles.push(tem);
- }
- return feeRateFiles;
- }
- async function exportTenderData(data){
- let result = {};
- let projectSetting = await projectSettingModel.findOne({"projectID": data.projectID}, '-_id');
- if(projectSetting) result['projSetting'] = projectSetting;
- result.bills = await billsModel.find({"projectID": data.projectID});
- result.rations = await rationModel.find({'$or': [{projectID: data.projectID, deleteInfo: null}, {projectID: data.projectID, 'deleteInfo.deleted': {$in: [null, false]}}]});
- result.projectGLJs = await gljListModel.find({'project_id':data.projectID});
- result.installationFees = await installationFeeModel.find({projectID:data.projectID});
- result.rationGLJs = await rationGLJModel.find({projectID:data.projectID});
- result.rationCoes = await rationCoeModel.find({projectID:data.projectID});
- result.quantityDetails = await quantityDetailModel.find({projectID:data.projectID});
- result.rationInstallations = await rationInstallationModel.find({projectID:data.projectID});
- result.rationTemplates = await rationTemplateModel.find({projectID:data.projectID});
- result.calcProgramsFile = await calcProgramsModel.findOne({projectID:data.projectID});
- result.labourCoes = await labourCoesModel.findOne({projectID:data.projectID});
- result.evaluateList = await evaluateListModel.find({projectID:data.projectID}, '-_id').lean();
- result.bidList = await bidListModel.find({projectID:data.projectID}, '-_id').lean();
- result.contractorList = await contractorListModel.find({projectID:data.projectID}, '-_id').lean();
- return cipher.aesEncrypt(JSON.stringify(result));
- }
- async function downLoadProjectFile(info) {
- let result = {error:0};
- let bucketManager2 = new qiniu.rs.BucketManager(mac, null);
- let publicBucketDomain = qiniu_config.Domain;// "http://serverupdate.smartcost.com.cn";//这里不支持https
- let deadline = parseInt(Date.now() / 1000) + 3600; // 1小时过期
- let privateDownloadUrl = bucketManager2.privateDownloadUrl(publicBucketDomain, info.key, deadline);
- console.log(privateDownloadUrl);
- let data = {
- key:info.key,
- content: '正在导入建设项目,请稍候……',
- userID:info.session.sessionUser.id,
- compilationID: info.session.sessionCompilation._id,
- status:"start",
- create_time:+new Date()
- };
- await importLogsModel.create(data);
- doDownLoadAndImport(privateDownloadUrl,info);
- return result;
- }
- async function doDownLoadAndImport(privateDownloadUrl, info) {
- let stream = fs.createWriteStream(path.join(__dirname, "../../../tmp/" + info.key));//
- request(privateDownloadUrl)
- .on('error', async function(err) {
- await importLogsModel.update({ key: info.key }, { status: 'error', errorMsg: err.toString() });
- })
- .pipe(stream)
- .on("close", async function () {
- console.log("文件[" + info.key + "]下载完毕");
- let doc = { status: "finish" };
- try {
- let data = fs.readFileSync(stream.path, 'utf-8');
- let result = await importProjects(data, { session: info.session }, info.updateData);
- if (result.error == 1) {
- doc.errorMsg = result.msg;
- doc.status = "error";
- } else {
- doc.projectID = [result.constructionProjectID];
- }
- } catch (error) {
- console.log(error.message);
- doc.errorMsg = "导入失败,请检查文件!";
- doc.status = "error";
- } finally {
- await importLogsModel.update({ key: info.key }, doc);
- fs.unlinkSync(stream.path);
- }
- })
- .on('error', async function () {
- await importLogsModel.update({ key: info.key }, { status: 'error', errorMsg: `文件[${info.key}]下载失败,请稍后再试。` });
- });
- }
- async function importProcessChecking(data){
- let result = {error:0};
- const query = data.key ? { key: data.key } : { userID: data.userID, compilationID: data.compilationID };
- let log = await importLogsModel.findOne(query);
- if(log){
- if(log.status == "finish"){
- result.status = "complete";
- await importLogsModel.remove(query);
- // 获取导入的项目数据
- if (log.projectID && log.projectID.length > 0) {
- const projects = await getPosterityProjects(log.projectID, true);
- if (!(projects.length === 1 && projects[0].projType === projectType.tender)) { // 处理的是建设项目数据
- const summaryInfo = await getSummaryInfo(log.projectID);
- setupSummaryFields(summaryInfo, projects);
- }
- result.data = projects;
- }
- /* if (log.projectID && log.projectID.length > 0) {
- const projects = await getPosterityProjects([log.projectID], true);
- if (!(projects.length === 1 && projects[0].projType === projectType.tender)) { // 处理的是建设项目数据
- const summaryInfo = await getSummaryInfo([log.projectID]);
- setupSummaryFields(summaryInfo, projects);
- }
- result.data = projects;
- } */
- }else if(log.status == "start"){
- result.status = "processing";
- result.content = log.content;
- }else if(log.status == "error"){
- result.error = 1;
- result.msg = log.errorMsg;
- await importLogsModel.remove(query);
- }
- }else {
- result.status = "complete";
- }
- return result;
- }
- // 从cdn服务器下载文件,key就是文件名
- async function downloadFileSync(key) {
- const filePath = path.join(__dirname, '../../../tmp/', key);
- const bucketManager2 = new qiniu.rs.BucketManager(mac, null);
- const publicBucketDomain = qiniu_config.Domain; // "http://serverupdate.smartcost.com.cn";//这里不支持https
- const deadline = parseInt(Date.now() / 1000) + 3600; // 1小时过期
- const privateDownloadUrl = bucketManager2.privateDownloadUrl(publicBucketDomain, key, deadline);
- const stream = fs.createWriteStream(filePath);
- return new Promise((resolve, reject) => {
- request(privateDownloadUrl)
- .on('error', reject)
- .pipe(stream)
- .on('close', () => {
- // 读取文件返回字符串
- const srcData = fs.readFileSync(stream.path,'utf-8');
- resolve({
- path: stream.path,
- srcData: srcData
- });
- })
- .on('error', reject);
- });
- }
- // 导入接口
- async function importInterface(key, session) {
- const logData = {
- key: key,
- content: '正在导入接口文件,请稍候……',
- userID: session.sessionUser.id,
- compilationID: session.sessionCompilation._id,
- status: 'start',
- create_time: +new Date()
- };
- await importLogsModel.create(logData);
- handleImportInterface(key, session);
- return 'importing interface';
- }
- async function handleImportInterface(key, session) {
- const doc = { status: 'finish' };
- // 源文件内容文本
- let downloadFilePath = '';
- try {
- const { path, srcData } = await downloadFileSync(key);
- downloadFilePath = path;
- if (!srcData) {
- throw '无有效数据';
- }
- const userID = session.sessionUser.id;
- const compilationID = session.sessionCompilation._id;
- const importData = JSON.parse(srcData);
- let tenderCount = 0;
- importData.engs.forEach(eng => {
- eng.tenders.forEach(() => {
- tenderCount += 1;
- });
- });
- if (await isTenderOverrun(tenderCount, session)) {
- throw '您创建的项目个数超限,请联系我们的客服人员,或者导出建设项目保存到本地备份,删除云上数据。';
- }
- const overWriteUrl = session.sessionCompilation.overWriteUrl;
- const projectID = await importProject(importData, userID, compilationID, overWriteUrl);
- doc.projectID = [projectID];
- } catch (err) {
- doc.errorMsg = typeof err === 'string' ? err : err.toString();
- doc.status = 'error';
- } finally {
- await importLogsModel.update({ key }, doc);
- fs.unlinkSync(downloadFilePath);
- }
- }
- /* async function importInterface(key, session) {
- // 源文件内容文本
- let downloadFilePath = '';
- try {
- const { path, srcData } = await downloadFileSync(key);
- downloadFilePath = path;
- if (!srcData) {
- throw '无有效数据';
- }
- const userID = session.sessionUser.id;
- const compilationID = session.sessionCompilation._id;
- const importData = JSON.parse(srcData);
- let tenderCount = 0;
- importData.engs.forEach(eng => {
- eng.tenders.forEach(tender => {
- tenderCount += 1;
- });
- });
- if (await isTenderOverrun(tenderCount, session)) {
- throw '您创建的项目个数超限,请联系我们的客服人员,或者导出建设项目保存到本地备份,删除云上数据。';
- }
- const projectData = await importProject(importData, userID, compilationID);
- return projectData;
- } catch (err) {
- throw err;
- } finally {
- fs.unlinkSync(downloadFilePath);
- }
- } */
- async function importProjects(data,req,updateData) {
- let result = {error:0};
- let stringArr = data.split("|----|");
- let datas = [];
- let first = +new Date();
- for(let s of stringArr){
- datas.push(JSON.parse(cipher.aesDecrypt(s)));
- }
- let mainData = datas.length > 0 ?datas[0]:null;
- if(mainData){
- if(mainData.from && mainData.from != "construction"){
- result.error = 1;
- result.msg = "导入失败:您要导入的文件是由“纵横公路养护云版”导出,当前软件是“大司空云计价”,请选择正确的软件再进行操作!";
- }else if(mainData.compilationID != req.session.sessionCompilation._id){
- const fileCompilation = await compilationModel.findOne({_id: mongoose.Types.ObjectId(mainData.compilationID)}, 'name');
- const fileCompilationName = fileCompilation ? fileCompilation.name : '未知的费用定额';
- const curCompilationName = req.session.sessionCompilation.name;
- result.error = 1;
- result.msg = `导入失败:您要导入的文件是由“${fileCompilationName}”导出,当前软件是“${curCompilationName}”,请选择正确的费用定额再进行操作!`;
- }else {
- const tenders = mainData.projects.filter(item => item.projType === projectType.tender);
- const tenderOverrun = await isTenderOverrun(tenders.length, req.session);
- if (tenderOverrun) {
- result.error = 1;
- result.msg = `您创建的项目个数超限,请联系我们的客服人员,或者导出建设项目保存到本地备份,删除云上数据。`;
- return result;
- }
- let [constructionProjectID,projectIDMap,labourCoeFileIDMap,calcProgramFileIDMap] = await handleMainProjectDatas(mainData,updateData,req.session.sessionUser.id);
- result.constructionProjectID = constructionProjectID;
- if(datas.length > 1 ){
- let newProjectSettings=[],bills=[],rations=[],installationFees=[],projectGLJs=[],rationGLJs=[],rationCoes=[],quantityDetails=[],rationInstallations=[],rationTemplates=[],evaluateList=[],bidList=[],contractorList=[],newCalcProgramsFiles=[],newLabourCoes=[]
- for(let i = 1;i<datas.length;i++){
- let [tnewProjectSetting,tbills,trations,tinstallationFees,tprojectGLJs,trationGLJs,trationCoes,tquantityDetails,trationInstallations,trationTemplates,tevaluateList,tbidList,tcontractorList,tnewCalcProgramsFile,tnewLabourCoe] = await handleEachProject(datas[i],projectIDMap,labourCoeFileIDMap,calcProgramFileIDMap)
- if(tnewProjectSetting) newProjectSettings.push(tnewProjectSetting);
- if(tbills.length > 0) bills = bills.concat(tbills);
- if(trations.length > 0) rations = rations.concat(trations);
- if(tinstallationFees.length > 0) installationFees = installationFees.concat(tinstallationFees);
- if(tprojectGLJs.length > 0) projectGLJs = projectGLJs.concat(tprojectGLJs);
- if(trationGLJs.length > 0) rationGLJs = rationGLJs.concat(trationGLJs);
- if(trationCoes.length > 0) rationCoes = rationCoes.concat(trationCoes);
- if(tquantityDetails.length > 0) quantityDetails = quantityDetails.concat(tquantityDetails);
- if(trationInstallations.length > 0) rationInstallations = rationInstallations.concat(trationInstallations);
- if(trationTemplates.length > 0) rationTemplates = rationTemplates.concat(trationTemplates);
- if(tevaluateList.length > 0) evaluateList = evaluateList.concat(tevaluateList);
- if(tbidList.length > 0) bidList = bidList.concat(tbidList);
- if(tcontractorList.length > 0) contractorList = contractorList.concat(tcontractorList);
- if(tnewCalcProgramsFile) newCalcProgramsFiles.push(tnewCalcProgramsFile);
- if(tnewLabourCoe) newLabourCoes.push(tnewLabourCoe);
- }
- if(newProjectSettings.length > 0) await insertMany(newProjectSettings,projectSettingModel)
- if(bills.length > 0) await insertMany(bills,billsModel);
- if(rations.length > 0) await insertMany(rations,rationModel);
- if(installationFees.length > 0) await insertMany(installationFees,installationFeeModel);
- if(projectGLJs.length > 0) await insertMany(projectGLJs,gljListModel);
- if(rationGLJs.length > 0) await insertMany(rationGLJs,rationGLJModel);
- if(rationCoes.length > 0) await insertMany(rationCoes,rationCoeModel);
- if(quantityDetails.length > 0) await insertMany(quantityDetails,quantityDetailModel);
- if(rationInstallations.length > 0) await insertMany(rationInstallations,rationInstallationModel);
- if(rationTemplates.length > 0) await insertMany(rationTemplates,rationTemplateModel);
- if(evaluateList.length > 0) await insertMany(evaluateList,evaluateListModel);
- if(bidList.length > 0) await insertMany(bidList,bidListModel);
- if(contractorList.length > 0) await insertMany(contractorList,contractorListModel);
- if(newCalcProgramsFiles.length > 0) await insertMany(newCalcProgramsFiles,calcProgramsModel);
- if(newLabourCoes.length > 0) await insertMany(newLabourCoes,labourCoesModel);
- }
- }
- }
- let finish = +new Date();
- console.log("导入操作总时间为-------------------------------"+(finish-first));
- return result;
- }
- async function handleEachProject(data,projectIDMap,labourCoeFileIDMap,calcProgramFileIDMap){
- let bills = [],rations = [],projectGLJs = [],installationFees=[],rationGLJs=[],rationCoes=[],quantityDetails=[],rationInstallations=[],rationTemplates=[],evaluateList=[],bidList=[],contractorList=[];
- let newProjectSetting =null,newCalcProgramsFile = null,newLabourCoe = null;
- let billsIDMap = {},projectGLJIDMap={},rationIDMap = {};
- let newProjectID = projectIDMap[data.projSetting.projectID];
- //生成安装增加费设置
- if(data.installationFees && data.installationFees.length > 0){
- for(let ins of data.installationFees){
- delete ins._id;
- ins.ID = uuidV1();
- ins.projectID = newProjectID;
- installationFees.push(ins);
- }
- }
- //生成新的清单;
- if(data.bills && data.bills.length > 0){
- for(let b of data.bills){
- billsIDMap[b.ID] = uuidV1();
- }
- for(let b of data.bills){
- delete b._id;
- b = getCopyBillDatas(b,newProjectID,billsIDMap);
- bills.push(b);
- }
- }
- //生成项目工料机数据
- if(data.projectGLJs && data.projectGLJs.length > 0){
- let gljCount = await counter.counterDAO.getIDAfterCountSync(counter.moduleName.glj_list, data.projectGLJs.length);
- for(let i = 0; i < data.projectGLJs.length; i++){
- let d = data.projectGLJs[i];
- delete d._id;
- let newID = gljCount.sequence_value - (data.projectGLJs.length - 1) + i;
- projectGLJIDMap[d.id] = newID;
- d.project_id = newProjectID;
- d.id = newID;
- projectGLJs.push(d);
- }
- }
- //生成新的定额
- if(data.rations && data.rations.length > 0){
- for(let r of data.rations){
- rationIDMap[r.ID] = uuidV1();
- }
- for(let r of data.rations){
- delete r._id;
- r = getCopyRationData(r,newProjectID,billsIDMap,rationIDMap,projectGLJIDMap);
- rations.push(r);
- }
- }
- //生成定额下挂的定额工料机等等数据
- if(data.rationGLJs && data.rationGLJs.length > 0) rationGLJs = setRationSubList(data.rationGLJs,newProjectID,billsIDMap,rationIDMap,projectGLJIDMap);
- if(data.rationCoes && data.rationCoes.length > 0) rationCoes = setRationSubList(data.rationCoes,newProjectID,billsIDMap,rationIDMap,projectGLJIDMap);
- if(data.quantityDetails && data.quantityDetails.length > 0) quantityDetails = setRationSubList(data.quantityDetails,newProjectID,billsIDMap,rationIDMap,projectGLJIDMap);
- if(data.rationInstallations && data.rationInstallations.length > 0) rationInstallations = setRationSubList(data.rationInstallations,newProjectID,billsIDMap,rationIDMap,projectGLJIDMap);
- if(data.rationTemplates && data.rationTemplates.length > 0) rationTemplates = setRationSubList(data.rationTemplates,newProjectID,billsIDMap,rationIDMap,projectGLJIDMap);
- if(data.evaluateList && data.evaluateList.length > 0) evaluateList = setMaterialList(data.evaluateList,newProjectID,projectGLJIDMap);
- if(data.bidList && data.bidList.length > 0) bidList = setMaterialList(data.bidList,newProjectID,projectGLJIDMap);
- if(data.contractorList && data.contractorList.length > 0) contractorList = setMaterialList(data.contractorList,newProjectID,projectGLJIDMap);
- //生成projectSetting 文件
- if(data.projSetting){
- data.projSetting.projectID =newProjectID;
- newProjectSetting = data.projSetting;
- delete newProjectSetting._id;
- }
- //生成计算程序文件,系数文件
- if(data.calcProgramsFile && calcProgramFileIDMap[data.calcProgramsFile.ID]){
- data.calcProgramsFile.ID = calcProgramFileIDMap[data.calcProgramsFile.ID];
- data.calcProgramsFile.projectID = newProjectID;
- newCalcProgramsFile = data.calcProgramsFile;
- delete newCalcProgramsFile._id;
- }
- if(data.labourCoes && labourCoeFileIDMap[data.labourCoes.ID]){
- data.labourCoes.ID = labourCoeFileIDMap[data.labourCoes.ID];
- data.labourCoes.projectID = newProjectID;
- newLabourCoe = data.labourCoes;
- delete newLabourCoe._id;
- }
- return [newProjectSetting,bills,rations,installationFees,projectGLJs,rationGLJs,rationCoes,quantityDetails,rationInstallations,rationTemplates,evaluateList,bidList,contractorList,newCalcProgramsFile,newLabourCoe]
- }
- function setMaterialList(datas,newProjectID,projectGLJIDMap){
- let arrs = [];
- for(let d of datas){
- arrs.push(getNewMaterial(d,newProjectID,projectGLJIDMap))
- }
- return arrs
- }
- function setRationSubList(datas,newProjectID,billIDMap,rationIDMap,projectGLJIDMap) {
- let arrs = [];
- for(let d of datas){
- delete d._id;
- d = getCopyRationSubData(d,newProjectID,billIDMap,rationIDMap,projectGLJIDMap);
- arrs.push(d);
- }
- return arrs;
- }
- async function handleMainProjectDatas(mainData,updateData,userID) {
- let mainProjectID = -1;
- let projectIDMap = {},feeRateFileIDMap={},unitPriceFileIDMap={},labourCoeFileIDMap={},calcProgramFileIDMap={};
- let tasks = [];
- projectIDMap[-1] = -1;//最后一个项目的nextID为-1的情况
- let constructionProjectID;
- //生成新的projectID
- for(let p of mainData.projects){
- let newProjectID = await getCounterID("projects");
- projectIDMap[p.ID] = newProjectID;
- if(p.projType == "Project") {
- mainProjectID = newProjectID;
- constructionProjectID = newProjectID;
- }
- if(p.projType == "Tender"){
- if(p.property.calcProgramFile) calcProgramFileIDMap[p.property.calcProgramFile.ID] = uuidV1();//新的计算程序文件ID
- if(p.property.labourCoeFile) labourCoeFileIDMap[p.property.labourCoeFile.ID] = uuidV1();//新的人工调整系数文件ID
- if(p.property.feeFile) feeRateFileIDMap[p.property.feeFile.id] = uuidV1();//新的费率文件ID
- if(p.property.unitPriceFile) unitPriceFileIDMap[p.property.unitPriceFile.id] = await getCounterID("unit_price_file");//新的单价文件ID
- }
- }
- if(mainProjectID == -1) throw new Error("文件里面没包含建设项目信息!");
- //处理项目信息 ----- 费率文件,单价文件ID信息要重新生成----to do
- for(let p of mainData.projects){
- delete p._id;
- delete p.__v;
- p.ID = projectIDMap[p.ID];
- if(p.ID == mainProjectID){//对于建设项目,要父和下一节点ID要使用前端传入的位置ID
- p.ParentID = updateData.self.ParentID;
- p.NextSiblingID = updateData.self.NextSiblingID;
- if(updateData.update){//树节构中的上一节点的下一节点设置为本建设项目ID;
- tasks.push({updateOne:{filter : updateData.update.query, update : {NextSiblingID:mainProjectID}}});
- }
- //查看是否重名;
- let temp = await projectModel.findOne({userID:userID,ParentID:p.ParentID,name:p.name});
- if(temp) p.name = p.name + '(' + moment(Date.now()).tz("Asia/Shanghai").format('MM-DD HH:mm:ss') + '导入)';
- }else {
- p.ParentID = projectIDMap[p.ParentID];
- p.NextSiblingID = projectIDMap[p.NextSiblingID];
- }
- p.userID =userID;
- p.shareInfo=[];
- if(p.projType == "Tender"){
- if(p.property.calcProgramFile) p.property.calcProgramFile.ID = calcProgramFileIDMap[p.property.calcProgramFile.ID];
- if(p.property.labourCoeFile) p.property.labourCoeFile.ID = labourCoeFileIDMap[p.property.labourCoeFile.ID];
- if(p.property.feeFile) p.property.feeFile.id = feeRateFileIDMap[p.property.feeFile.id];
- if(p.property.unitPriceFile) p.property.unitPriceFile.id = unitPriceFileIDMap[p.property.unitPriceFile.id];
- p.property.rootProjectID = mainProjectID
- }
- tasks.push({insertOne: {document: p}})
- }
- //项目树节构数据生成:
- await projectModel.bulkWrite(tasks);
- //生成所有的费率文件
- await importFeeRateFiles(mainData,projectIDMap,feeRateFileIDMap,userID);
- //生成所有的单价文件
- await importUnitPriceFiles(mainData,projectIDMap,unitPriceFileIDMap,userID);
- return [constructionProjectID,projectIDMap,labourCoeFileIDMap,calcProgramFileIDMap]
- }
- async function importUnitPriceFiles(mainData,projectIDMap,unitPriceFileIDMap,userID) {
-
-
- if(!mainData.files.unitFiles) return;
- let unitFiles = [],unitPrices =[],mixRatios=[],freights=[],originals=[];
- for(let f of mainData.files.unitFiles){
- let file = f.unitFile,prices = f.unitPrices,mixs = f.mixRatios,fres = f.freights,ors = f.originals;
- //生成单价文件
- delete file._id;
- file.id = unitPriceFileIDMap[file.id]?unitPriceFileIDMap[file.id]:await getCounterID("unit_price_file");
- file.project_id = projectIDMap[file.project_id];
- file.root_project_id = projectIDMap[file.root_project_id];
- file.user_id = userID;
- unitFiles.push(file);
- //生成子数据
- if(prices) await setSubList(prices,unitPrices,file.id,unitPriceModel);
- if(mixs) await setSubList(mixs,mixRatios,file.id,mixRatioModel);
- }
- if(unitFiles.length > 0) await insertMany(unitFiles,unitPriceFileModel);
- if(unitPrices.length > 0) await insertMany(unitPrices,unitPriceModel);
- if(mixRatios.length > 0) await insertMany(mixRatios,mixRatioModel);
- async function setSubList(oList,nList,fileID,model) {
- let IDcounter = await counter.counterDAO.getIDAfterCountSync(model.modelName, oList.length);
- let firstID = IDcounter.sequence_value - (oList.length - 1);
- for(let o of oList){
- delete o._id;
- o.unit_price_file_id = fileID;
- o.id = firstID;
- firstID+=1
- nList.push(o)
- }
- }
- }
- async function importFeeRateFiles(mainData,projectIDMap,feeRateFileIDMap,userID) {
- let feeRateFiles = [], feeRates = [];
- if(!mainData.files.feeRateFiles) return;
- for(let f of mainData.files.feeRateFiles){
- //生成费率记录
- let rate = f.feeRate;
- delete rate._id;
- rate.ID = uuidV1();
- feeRates.push(rate);
- //生成费率文件记录
- let file = f.feeRateFile;
- delete file._id;
- file.ID = feeRateFileIDMap[file.ID]?feeRateFileIDMap[file.ID]:uuidV1();
- file.userID = userID;
- file.rootProjectID = projectIDMap[file.rootProjectID];
- file.feeRateID = rate.ID;
- feeRateFiles.push(file);
- }
- if(feeRateFiles.length > 0) await insertMany(feeRateFiles,feeRateFileModel);
- if(feeRates.length > 0) await insertMany(feeRates,feeRateModel);
- }
- // 初始化
- async function initOverHeightItems(engineeringID) {
- const defaultData = [];
- const engineering = await engineeringModel.findById(engineeringID);
- const overHeightLibs = engineering.over_height_lib;
- if (!overHeightLibs || !overHeightLibs.length) {
- return defaultData;
- }
- const overHeightLibID = overHeightLibs[0].id;
- const overHeightLib = await overHeightLibModel.findOne({ID: overHeightLibID});
- return overHeightLib ? overHeightLib.list : defaultData;
- }
- function uploadToken() {
- let options = {
- scope: qiniu_config.Bucket,
- deleteAfterDays: 1,
- returnBody:
- '{"key":"$(key)","hash":"$(etag)","fsize":$(fsize),"bucket":"$(bucket)","name":"$(x:name)"}'
- };
- let putPolicy = new qiniu.rs.PutPolicy(options);
- let token = putPolicy.uploadToken(mac);
- let result = {
- uptoken: token,
- domain: qiniu_config.Domain
- }
- return result
- }
- // 获取系统设置,这个系统设置正常情况下有存在session中
- async function getSystemSetting() {
- return await systemSettingModel.findOne({}).lean();
- }
- // 有些方法无法通过中间件就检查单位工程数量是否超限
- // 需要到具体的业务代码中进行判断
- // 这个方法就是具体业务代码中,需要检查单位工程数量是否超限用
- async function isTenderOverrun(tenderCount, session) {
- const userID = session.sessionUser.id;
- const compilation = session.sessionCompilation._id;
- const compilationVersion = session.compilationVersion || '免费';
- let systemSetting = session.systemSetting || (session.systemSetting = await getSystemSetting());
- // 这种情况只有在刚上线此功能时会出现,不考虑时间差
- if (!systemSetting) {
- return false;
- }
- const type = compilationVersion.includes('免费') ? 'normal' : 'professional';
- const limit = systemSetting[type].project;
- const curTenderCount = await projectModel.count({userID, compilation, projType: 'Tender', '$or':[{deleteInfo: null}, {'deleteInfo.completeDeleted': false}]});
- return tenderCount + curTenderCount > limit;
- }
- async function getWelcomeInfo(compilationId,sessionUser,isFree=true) {
- let welcom_setting = await welcomeModel.findOne({compilationId:compilationId});
- let isShow = false;
- let context = "";
- let setting = null
- if(welcom_setting){
- setting = isFree? welcom_setting.normal:welcom_setting.professional;//区分专业版和免费版
- }
- if(setting){
- if(setting.showType == 0) return [false,""];//关闭
- context = setting.context;
- if(setting.showType == 1){//每天一次
- let dataString =moment(Date.now()).tz("Asia/Shanghai").format('YYYY-MM-DD');//今天的日期字符串
- let userInfo =await userModel.findOne({_id: mongoose.Types.ObjectId(sessionUser.id)});
- if (dataString != userInfo.welcomeShowTime){//今天没登录过
- isShow = true;
- await userModel.update({_id: mongoose.Types.ObjectId(sessionUser.id)},{welcomeShowTime:dataString})
- }
- }else if(setting.showType == 2){//每次登录显示
- isShow = sessionUser.newLogin?true:false;
- sessionUser.newLogin = false
- }
- }
- return [isShow,context]
- }
|