project.js 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  1. /**
  2. * Created by Mai on 2017/4/1.
  3. */
  4. var PROJECT = {
  5. createNew: function (projectID, userID) {
  6. // 定义private方法
  7. var tools = {
  8. _project: null,
  9. _ID: parseInt(projectID),
  10. _userID: userID,
  11. updateLock: 0,
  12. updateData: [],
  13. operation: '',
  14. modules: {},
  15. projCounter: 'projCounter',
  16. projSetting: 'proj_setting'
  17. };
  18. var me = tools;
  19. tools.doAfterUpdate = function(result){
  20. if (!result) { return }
  21. result.forEach(function(item){
  22. if(_.isArray(item)){
  23. item.forEach(function (e) {
  24. me.eachItem(e);
  25. })
  26. }else {
  27. me.eachItem(item)
  28. }
  29. });
  30. };
  31. tools.doAfterLoad = function(result, showProjectInfo, callback){
  32. var counter;
  33. //必须要先load ProjectInfo的信息
  34. let projectInfoModule = result.find(data => data.moduleName === ModuleNames.projectInfo);
  35. if (projectInfoModule) {
  36. me._project.projectInfo = projectInfoModule.data;
  37. }
  38. result.forEach(function(item){
  39. if (item.moduleName !== ModuleNames.projectInfo) {
  40. if (me.modules[item.moduleName]){
  41. me.modules[item.moduleName].loadData(item.data);
  42. } else if (item.moduleName === me.projCounter) {
  43. counter = item.data;
  44. } else if (item.moduleName === me.projSetting) {
  45. me._project.projSetting = item.data;
  46. me._project.projSetting.moduleName = me.projSetting;
  47. } else if(item.moduleName === ModuleNames.projectGLJ){
  48. me._project.projectGLJ.loadToCache(item.data);
  49. }
  50. }
  51. });
  52. for (module in counter) {
  53. if (me.modules[module]) {
  54. me.modules[module].setMaxID(counter[module]);
  55. }
  56. }
  57. if (showProjectInfo) {
  58. projectInfoObj.showProjectInfo(me._project.projectInfo);
  59. }
  60. me._project.loadMainTree();
  61. //me.test(result[0].data[0]);
  62. if (callback) {
  63. callback(0);
  64. }
  65. };
  66. tools.eachItem=function(item){
  67. if (me.modules[item.moduleName]){
  68. me.modules[item.moduleName].doAfterUpdate(item.err, item.data);
  69. }
  70. };
  71. /*tools.test = function(data){
  72. me._project.beginUpdate('修改名称');
  73. data.name = 'test';
  74. data['updateType'] = 'ut_update';
  75. me._project.push(ModuleNames.bills, [data]);
  76. me._project.endUpdate();
  77. };*/
  78. // 所有通过this访问的属性,都不应在此单元外部进行写入操作
  79. var project = function () {
  80. tools._project = this;
  81. this.mainTree = cacheTree.createNew(this);
  82. this.Bills = Bills.createNew(this);
  83. this.Ration = Ration.createNew(this);
  84. this.GLJ = GLJ.createNew(this);
  85. this.ration_glj = ration_glj.createNew(this);
  86. this.ration_coe = ration_coe.createNew(this);
  87. this.ration_ass = ration_ass.createNew(this);
  88. this.ration_installation = ration_installation.createNew(this);
  89. this.ration_template = ration_template.createNew(this);
  90. this.quantity_detail = quantity_detail.createNew(this);
  91. this.installation_fee = installation_fee.createNew(this);
  92. this.FeeRate = FeeRate.createNew(this);
  93. // this.VolumePrice = VolumePrice.createNew(this);
  94. this.projectGLJ = new ProjectGLJ();
  95. // this.projectGLJ.loadData();
  96. this.composition = new Composition();
  97. this.composition.loadData();
  98. this.labourCoe = new LabourCoe(this);
  99. this.calcProgram = new CalcProgram(this);
  100. this.calcBase = calcBase;
  101. // this.masterField = {ration: 'billsItemID', volumePrice: 'billsItemID'};
  102. this.masterField = {ration: 'billsItemID'};
  103. };
  104. // prototype用于定义public方法
  105. project.prototype.modify = function (modifyDatas, callback) {
  106. // To Do
  107. };
  108. // prototype用于定义public方法
  109. project.prototype.ID = function () {
  110. return tools._ID;
  111. };
  112. project.prototype.projCounter = function () {
  113. return tools.projCounter;
  114. };
  115. project.prototype.getDecimal = function (fullName) {
  116. let names = fullName.split('.'), decimal = this.Decimal;
  117. for (let name of names) {
  118. if (decimal[name]) {
  119. decimal = decimal[name];
  120. } else {
  121. return null;
  122. }
  123. }
  124. if (Object.prototype.toString.apply(decimal) === '[object Number]') {
  125. return decimal;
  126. } else {
  127. return null;
  128. }
  129. };
  130. project.prototype.loadMainTree = function () {
  131. var that = this;
  132. let loadRationGLJNode = function (cacheNode) {
  133. var newNode, bj = that.ration_glj.getMainAndEquGLJ(cacheNode.source.ID), i;
  134. for(i=0;i<bj.length;i++){
  135. that.ration_glj.transferToNodeData(bj[i]);
  136. newNode = that.mainTree.addNode(cacheNode, null, bj[i].ID);
  137. newNode.source = bj[i];
  138. newNode.sourceType = that.ration_glj.getSourceType();
  139. newNode.data = bj[i];
  140. }
  141. };
  142. var loadRationNode = function (rations, cacheNode) {
  143. var newNode, br = that.Ration.getBillsSortRation(cacheNode.source.getID()), i;
  144. for (i = 0; i < br.length; i++) {
  145. newNode = that.mainTree.addNode(cacheNode, null, br[i].ID);
  146. if(br[i].type==rationType.gljRation){
  147. br[i]= that.ration_glj.combineRationAndGLJ(br[i]);
  148. }
  149. newNode.source = br[i];
  150. newNode.sourceType = that.Ration.getSourceType();
  151. newNode.data = br[i];
  152. if(projectObj.project.projectInfo.property.displaySetting !== undefined &&
  153. projectObj.project.projectInfo.property.displaySetting.disPlayMainMaterial==true){
  154. loadRationGLJNode(newNode);
  155. }
  156. }
  157. };
  158. /* let loadVolumePriceNode = function (cacheNode) {
  159. let newNode = null, bv = that.VolumePrice.getBillsSortVolumePrice(cacheNode.source.getID());
  160. for (let v of bv) {
  161. newNode = that.mainTree.addNode(cacheNode);
  162. newNode.source = v;
  163. newNode.sourceType = that.VolumePrice.getSourceType();
  164. newNode.data = v;
  165. }
  166. };*/
  167. var loadIdTreeNode = function (nodes, parent) {
  168. var newNode, i;
  169. for (i = 0; i < nodes.length; i++) {
  170. newNode = that.mainTree.addNode(parent, null, nodes[i].data.ID);
  171. newNode.source = nodes[i];
  172. newNode.sourceType = that.Bills.getSourceType();
  173. newNode.data = nodes[i].data;
  174. that.FeeRate.loadFeeRateToBill(newNode);
  175. if (nodes[i].children.length === 0) {
  176. loadRationNode(that.Ration.datas, newNode);
  177. // loadVolumePriceNode(newNode);
  178. } else {
  179. loadIdTreeNode(nodes[i].children, newNode);
  180. }
  181. }
  182. };
  183. loadIdTreeNode(this.Bills.tree.roots, null);
  184. this.mainTree.sortTreeItems();
  185. this.mainTree.selected = this.mainTree.firstNode();
  186. };
  187. project.prototype.getParentTarget = function (node, targetField, targetValue) {
  188. var parent = node;
  189. while (parent && parent[targetField] !== targetValue) {
  190. parent = parent.parent;
  191. }
  192. return parent;
  193. };
  194. // 提供给各模块调用的统一从后台获取数据的方法
  195. /*project.prototype.pullData = function (url, data, successCallback, errorCallback) {
  196. $.ajax({
  197. type:"POST",
  198. url: url,
  199. data: {'data': JSON.stringify(data)},
  200. dataType: 'json',
  201. cache: false,
  202. timeout: 50000,
  203. success: function(result){
  204. successCallback(result);
  205. },
  206. error: function(jqXHR, textStatus, errorThrown){
  207. alert('error ' + textStatus + " " + errorThrown);
  208. errorCallback();
  209. }
  210. });
  211. };*/
  212. // 所有模块在此从后台获取数据
  213. project.prototype.loadDatas = function (callback){
  214. $.ajax({
  215. type: "POST",
  216. url: '/project/getData',
  217. data: {'data': JSON.stringify({
  218. "project_id": tools._ID,
  219. "user_id": tools._userID
  220. })},
  221. dataType: 'json',
  222. cache: false,
  223. timeout: 50000,
  224. success: function (result) {
  225. if (!result.error) {
  226. let showProjectInfo = true;
  227. tools.doAfterLoad(result.data, showProjectInfo, callback);
  228. // for test calc
  229. //tools.doAfterLoad([{moduleName: 'bills', data: BillsData}, {'moduleName': 'ration', data: DrawingData}], callback);
  230. } else {
  231. alert('error: ' + result.message);
  232. callback(result.error);
  233. }
  234. },
  235. error: function(jqXHR, textStatus, errorThrown){
  236. alert('error ' + textStatus + " " + errorThrown);
  237. }
  238. });
  239. };
  240. project.prototype.loadDataSync = async function () {
  241. let data = await ajaxPost('/project/getData', {user_id: tools._userID, project_id: tools._ID});
  242. if (data) {
  243. let showProjectInfo = false;
  244. tools.doAfterLoad(data, showProjectInfo);
  245. }
  246. };
  247. project.prototype.beginUpdate = function(operation){
  248. if (tools.updateLock === 0){
  249. tools.operation = operation
  250. }
  251. tools.updateLock += 1;
  252. };
  253. project.prototype.endUpdate = function(){
  254. if (tools.updateLock === 0){
  255. throw "project can not endUpdate before beginUpdate";
  256. }
  257. tools.updateLock -= 1;
  258. if (tools.updateLock === 0) {
  259. $.ajax({
  260. type: "POST",
  261. url: '/project/save',
  262. data: {'data': JSON.stringify({
  263. "project_id": tools._ID,
  264. "user_id": tools._userID,
  265. "date": new Date,
  266. "operation": tools.operation,
  267. "update_data": tools.updateData
  268. })},
  269. dataType: 'json',
  270. cache: false,
  271. timeout: 50000,
  272. success: function (result) {
  273. if (!result.error) {
  274. tools.doAfterUpdate(result.data);
  275. } else {
  276. alert('error: ' + result.message);
  277. }
  278. $.bootstrapLoading.end();
  279. },
  280. error: function(jqXHR, textStatus, errorThrown){
  281. alert('error ' + textStatus + " " + errorThrown);
  282. $.bootstrapLoading.end();
  283. }
  284. });
  285. tools.updateData = [];
  286. tools.operation = "";
  287. }
  288. };
  289. project.prototype.push = function(moduleName, data){
  290. if (tools.updateLock === 0){
  291. throw "project can not push data before beginUpdate";
  292. }
  293. var moduleData = {
  294. moduleName: moduleName,
  295. data: data
  296. };
  297. tools.updateData.push(moduleData);
  298. };
  299. project.prototype.pushNow = function (operation, moduleName, data) {
  300. var that = this;
  301. this.beginUpdate(operation);
  302. if (Object.prototype.toString.apply(moduleName) === "[object Array]" && Object.prototype.toString.apply(data) === "[object Array]") {
  303. moduleName.forEach(function (name, index) {
  304. if(name != 'projCounter'){
  305. that.push(moduleName[index], data[index]);
  306. }
  307. });
  308. } else {
  309. this.push(moduleName, data);
  310. }
  311. this.endUpdate();
  312. };
  313. project.prototype.registerModule = function(moduleName, obj){
  314. if (!tools.modules.hasOwnProperty(moduleName)){
  315. tools.modules[moduleName] = obj;
  316. }
  317. };
  318. project.prototype.markUpdateProject = function (data,type,callback) {
  319. CommonAjax.post("/project/markUpdateProject",{updateInfo:data,type:type},callback);
  320. };
  321. project.prototype.saveProperty = function (propertyName, propertyValue) {
  322. CommonAjax.post("/project/saveProperty", {projectID: this.ID(), propertyName: propertyName, propertyValue: propertyValue});
  323. };
  324. project.prototype.projectMarkChecking = function () {
  325. let me = this;
  326. let changeMark = projectObj.project.projectInfo.changeMark;
  327. if(changeMark&&changeMark!=''){
  328. this.Bills.getEngineeringCostNode(projectObj.mainController).changed = true;
  329. this.calcProgram.calcAllNodesAndSave();
  330. CommonAjax.post("/project/removeProjectMark",{projectID:me.ID()},function (data) {
  331. delete projectObj.project.projectInfo.changeMark;
  332. if(socket.connected == true){//如果这时候socket已经连接成功,则发送删除标记广播
  333. socket.emit('removeProjectMark',{projectID:me.ID(),userID:userID});
  334. }else {//如果还没连接成功,则放入消息对象缓存,等socket连接成功后发送
  335. socketObject.messages.push({message:'removeProjectMark',data:{projectID:me.ID(),userID:userID}});
  336. }
  337. });
  338. }
  339. };
  340. project.prototype.updateLockBills = function (value,callback) {
  341. let mixDatas = {
  342. projectID: projectObj.project.ID(),
  343. updateType: 'update',
  344. properties: {
  345. "property.lockBills":value
  346. },
  347. labourCoes: {},
  348. rations: [],
  349. bills: []
  350. };
  351. $.bootstrapLoading.start();
  352. CommonAjax.post('/pm/api/updateMixDatas', {user_id: userID, mixDataArr: mixDatas}, function (rstData) {
  353. projectObj.project.projectInfo.property.lockBills = value;
  354. if(callback){
  355. callback();
  356. }
  357. $.bootstrapLoading.end();
  358. });
  359. };
  360. //返回清单是否被锁定
  361. project.prototype.isBillsLocked =function(){
  362. if(projectObj.project.projectInfo.property.lockBills == true){
  363. return true;
  364. }
  365. return false;
  366. };
  367. //清单是否属于锁定范围(分部分项、措施项目)
  368. project.prototype.withinBillsLocked = function (node) {
  369. const lockedFixFlag = [fixedFlag.SUB_ENGINERRING, fixedFlag.MEASURE];
  370. while(node){
  371. if(!node.parent){
  372. if(node.data.flagsIndex && node.data.flagsIndex.fixed && lockedFixFlag.includes(node.data.flagsIndex.fixed.flag)){
  373. return true;
  374. }
  375. else {
  376. return false;
  377. }
  378. }
  379. node = node.parent;
  380. }
  381. return true;
  382. };
  383. project.prototype.updateCasCadeBills = function(node,newval,fieldName){
  384. let datas = [];
  385. let data = {
  386. type:node.sourceType,
  387. data:{ID:node.data.ID}
  388. };
  389. setData(data.data,newval,fieldName);
  390. datas.push(data);
  391. setChildren(node,newval,datas);//同步设置所有子项
  392. setParent(node,newval,datas);//设置父节点
  393. $.bootstrapLoading.start();
  394. this.updateNodes(datas,function () {
  395. let nodes = [];
  396. for(let d of datas){
  397. let node = projectObj.project.mainTree.findNode(d.data.ID);
  398. if(node){
  399. for(let key in d.data){
  400. if(key == 'ID') continue;
  401. node.data[key] = d.data[key];
  402. }
  403. nodes.push(node)
  404. }
  405. }
  406. projectObj.mainController.refreshTreeNode(nodes);
  407. $.bootstrapLoading.end();
  408. });
  409. function setChildren(pnode,newValue,datas) {//同步设置所有子项
  410. if(pnode.children.length > 0 && pnode.children[0].sourceType == ModuleNames.bills){//设置子项不包括定额
  411. for(let c of pnode.children){
  412. let data = {
  413. type:c.sourceType,
  414. data:{ID:c.data.ID}
  415. };
  416. setData(data.data,newval,fieldName);
  417. datas.push(data);
  418. setChildren(c,newValue,datas)
  419. }
  420. }
  421. }
  422. function setParent(cnode,newValue,datas) {
  423. let diferrent = false;
  424. if(cnode.parent && !projectObj.project.Bills.isMeasureNode(cnode.parent)){//排除措施项目节点
  425. for(b of cnode.parent.children){
  426. if(b == cnode) continue
  427. if(b.data[fieldName]!== newValue){//有兄弟节点的值和本节点不一样,则父节点设置为null
  428. diferrent = true;
  429. break;
  430. }
  431. }
  432. let pvalue = diferrent === true?null:newValue;
  433. let data = {
  434. type:cnode.parent.sourceType,
  435. data:{ID:cnode.parent.data.ID}
  436. };
  437. setData(data.data,pvalue,fieldName);
  438. datas.push(data);
  439. setParent(cnode.parent,pvalue,datas);
  440. }
  441. }
  442. function setData(data,avalue,fieldName) {
  443. data[fieldName] = avalue;
  444. if(fieldName == "outPutMaxPrice") data.maxPrice = null;
  445. }
  446. };
  447. project.prototype.updateNodesAndRefresh=function (datas,callback) {
  448. let me = this;
  449. this.updateNodes(datas,function () {
  450. let nodes = me.updateNodesCache(datas);
  451. if(callback) callback(nodes);
  452. })
  453. };
  454. project.prototype.updateNodes = function (datas,callback) {
  455. /* let datas = [
  456. {
  457. type:'ration',
  458. data:{
  459. projectID:1605,
  460. ID:"7b962fb0-1131-11e8-b3da-af725dadd7ae",
  461. name:'testRation'
  462. }
  463. },
  464. {
  465. type:'bills',
  466. data:{
  467. projectID:1605,
  468. ID:"af9f0081-1127-11e8-99a8-2fc02230b6e7",
  469. name:'安全文明施工专项费用123'
  470. }
  471. }
  472. ]*/
  473. $.bootstrapLoading.start();
  474. CommonAjax.post("/project/updateNodes",datas,function (data) {
  475. if(callback){
  476. callback(data);
  477. $.bootstrapLoading.end();
  478. }
  479. })
  480. };
  481. project.prototype.updateNodesCache =function (datas) {
  482. let refreshNode = [];
  483. for(let d of datas){
  484. let temObj = null;
  485. if(d.type == ModuleNames.bills || d.type == ModuleNames.ration){//如果是树节点类型,直接取树节点更新
  486. let temNode = this.mainTree.getNodeByID(d.data.ID);
  487. if(temNode){
  488. temObj = temNode.data;
  489. refreshNode.push(temNode);
  490. }
  491. }else {//其它类型,更新datas
  492. temObj = _.find(this[d.type].datas,{"ID":d.data.ID});
  493. }
  494. if(temObj){
  495. for(let key in d.data){
  496. if(key == 'ID' || key == 'id'){
  497. continue;
  498. }
  499. this.setValue(temObj,key,d.data[key])
  500. }
  501. }
  502. }
  503. return refreshNode;
  504. };
  505. project.prototype.setValue=function (obj,key,value) {
  506. let keyArray = key.split('.');
  507. t_set(obj,value,keyArray,0);
  508. function t_set(obj,value,arr,index) {
  509. let nextIndex = index + 1;
  510. let tkey = arr[index];
  511. if(nextIndex < arr.length){
  512. if(obj[tkey]==undefined){
  513. obj[tkey] = {};
  514. }
  515. t_set(obj[tkey],value,arr,nextIndex)
  516. }else if(nextIndex == arr.length){
  517. obj[tkey] = value;
  518. }
  519. }
  520. }
  521. project.prototype.updateEvalproject = function (evalProject,data,callback){
  522. let programID = null;
  523. if(evalProject ==1){//当打勾估价项目选项后,该定额取费专业读取计算程序名称为“估价项目”的计算程序,且为只读状态
  524. programID = this.calcProgram.compiledTemplateMaps["估价项目"];
  525. if(callback) callback(programID);
  526. }else {//如果evalProject==0,则是去掉勾选估价项目选项,需要获取定额默认的取费专业。
  527. let libID = data.from == 'cpt'?"compleRationLib":data.libID;
  528. let query = {code:data.code,projectID:data.projectID,libID:libID};
  529. CommonAjax.post("/ration/getDefaultProgramID",query,function (result) {
  530. if(callback) callback(result);
  531. })
  532. }
  533. };
  534. //判断项目是否安装工程
  535. project.prototype.isInstall = function () {
  536. return projectObj.project.projectInfo.property.isInstall?true:false;//如果是undefinded 就也返回false
  537. };
  538. /* project.prototype.setBillsCalcMode = function (calcMode) {
  539. this.property.billsCalcMode = calcMode;
  540. this.initCalcFields();
  541. };*/
  542. /*project.prototype.initCalcFields = function () {
  543. // let settingConst = this.projSetting.settingConst;
  544. if (this.calcFields) {
  545. for (let field of this.calcFields) {
  546. // unitFeeCalcFlag
  547. if (field.type === 'zangu') {
  548. field.unitFeeFlag = converseUnitFeeFlag;
  549. } else {
  550. // if (this.projSetting.billsCalcMode === settingConst.billsCalcMode.rationContent) {
  551. if (this.property.billsCalcMode === leafBillGetFeeType.rationContent) {
  552. field.unitFeeFlag = rationContentUnitFeeFlag;
  553. // } else if ( this.projSetting.billsCalcMode === settingConst.billsCalcMode.billsPrice) {
  554. } else if ( this.property.billsCalcMode === leafBillGetFeeType.billsPrice) {
  555. field.unitFeeFlag = billsPriceUnitFeeFlag;
  556. } else {
  557. field.unitFeeFlag = averageQtyUnitFeeFlag;
  558. }
  559. }
  560. // totalFeeCalcFlag
  561. if (field.type === 'common') {
  562. // if (this.projSetting.billsCalcMode === settingConst.billsCalcMode.rationPriceConverse) {
  563. if (this.property.billsCalcMode === leafBillGetFeeType.rationPriceConverse) {
  564. field.totalFeeFlag = sumTotalFeeFlag;
  565. } else {
  566. field.totalFeeFlag = totalFeeFlag;
  567. }
  568. } else {
  569. field.totalFeeFlag = sumTotalFeeFlag;
  570. }
  571. }
  572. }
  573. }*/
  574. return new project();
  575. }
  576. };