ration.js 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885
  1. /**
  2. * Created by Mai on 2017/4/1.
  3. */
  4. var Ration = {
  5. createNew: function (project) {
  6. // 用户定义private方法
  7. var tools = {
  8. formatRationUpdateData: function (data) {
  9. let uData = JSON.parse(JSON.stringify(data));
  10. delete uData.feesIndex;
  11. delete uData.flagsIndex;
  12. // if (uData.fees) {
  13. // for (let fee of uData.fees) {
  14. // fee.unitFee = fee.unitFee.toFixed(2);
  15. // fee.totalFee = fee.totalFee.toFixed(2);
  16. // fee.tenderUnitFee = fee.tenderUnitFee.toFixed(2);
  17. // fee.tenderTotalFee = fee.tenderTotalFee.toFixed(2);
  18. // }
  19. // }
  20. return uData;
  21. }
  22. };
  23. // 所有通过this访问的属性,都不应在此单元外部进行写入操作
  24. var ration = function (proj) {
  25. this.project = proj;
  26. this.datas = null;
  27. var sourceType = ModuleNames.ration;
  28. this.getSourceType = function () {
  29. return sourceType;
  30. }
  31. proj.registerModule(ModuleNames.ration, this);
  32. var maxRationID = 0;
  33. this.getNewRationID = function () {
  34. return uuid.v1();
  35. //return maxRationID += 1;
  36. };
  37. this.maxRationID = function (maxID) {
  38. if (arguments.length === 0) {
  39. return maxRationID;
  40. } else {
  41. maxRationID = Math.max(maxID, maxRationID);
  42. }
  43. };
  44. };
  45. // prototype用于定义public方法
  46. ration.prototype.loadData = function (datas) {
  47. var that = this;
  48. this.datas = datas;
  49. // generate Fees & Flags Index,For View & Calculate
  50. this.datas.forEach(function (data) {
  51. data.feesIndex = getFeeIndex(data.fees);
  52. data.flagsIndex = {};
  53. data.flags.forEach(function (flag) {
  54. data.flagsIndex[flag.fieldName] = flag;
  55. });
  56. that.maxRationID(data.ID);
  57. });
  58. };
  59. ration.prototype.setMaxID = function (ID) {
  60. this.maxRationID(ID);
  61. }
  62. ration.prototype.addDatasToList = function (new_datas) {
  63. let me = this;
  64. if(me.datas && Array.isArray(me.datas)){
  65. for(let d of new_datas){
  66. me.datas.push(d);
  67. }
  68. }else {
  69. me.datas = new_datas;
  70. }
  71. };
  72. // refresh after update
  73. ration.prototype.doAfterUpdate = function(err, data){
  74. if(data.stateRefresh){
  75. this.refreshAdjustState(data);
  76. }
  77. if(data.quantityRefresh){
  78. this.refreshQuantity(data);
  79. }
  80. };
  81. ration.prototype.refreshAdjustState = function(data){
  82. this.refreshDatas(data,'adjustState');
  83. if(data.hasOwnProperty('name')){
  84. this.refreshDatas(data,'name')
  85. }
  86. };
  87. ration.prototype.refreshQuantity = function(data){
  88. this.refreshDatas(data,'quantity');
  89. };
  90. ration.prototype.refreshDatas = function(data,fieldName){
  91. var dataIndex = _.findIndex(this.datas,function(item) {
  92. return item.ID ==data.rationID;
  93. });
  94. this.datas[dataIndex][fieldName] = data[fieldName];
  95. if(fieldName=='quantity'){
  96. this.datas[dataIndex]['isFromDetail']=1
  97. }
  98. var controller = projectObj.mainController;
  99. var selected = controller.sheet.getSelections();
  100. var col = _.findIndex(project.projSetting.main_tree_col.cols,function (col) {
  101. return col.data.field ==fieldName;
  102. });
  103. controller.sheet.getCell(selected[0].row,col).value(data[fieldName]);
  104. };
  105. ration.prototype.getContain = function (billNode,quantity) {
  106. if(billNode && billNode.data.quantity&&billNode.data.quantity!=0&&billNode.data.quantity!=""){
  107. let billQuantity = scMathUtil.roundForObj(billNode.data.quantity,getDecimal("quantity",billNode));
  108. return scMathUtil.roundForObj(parseFloat(quantity)/billQuantity,getDecimal("process"));
  109. }
  110. return 0
  111. };
  112. ration.prototype.getTempRationData = function (id, billsID, serialNo, rType,priceType) {
  113. let newData = {'ID': id, 'serialNo': serialNo, projectID: this.project.ID()};
  114. let pEngineer = projectInfoObj.projectInfo.property.projectEngineering;//量价默认使用后台设置的单位工程取费专业
  115. newData[project.masterField.ration] = billsID;
  116. newData['type'] = rType;
  117. if (rType == rationType.volumePrice){
  118. newData['subType'] = priceType?priceType:gljType.GENERAL_MATERIAL; // 如果priceType 没传,默认的量价类型为材料
  119. };
  120. if(rType == rationType.ration){//空定额暂时不输入取费专业
  121. // newData['programID'] = projectInfoObj.projectInfo.property.engineering;
  122. }else {
  123. if(pEngineer) newData['programID'] = pEngineer;
  124. }
  125. return newData;
  126. };
  127. ration.prototype.getBillsSortRation = function (billsID) { // 该方法只适用于叶子清单
  128. var rations = this.datas.filter(function (data) {
  129. return data[project.masterField.ration] === billsID;
  130. });
  131. rations.sort(function (x, y) {
  132. return x.serialNo - y.serialNo;
  133. });
  134. return rations;
  135. };
  136. // CSL, 2017-11-13 取任何清单(父清单、叶子清单)下的所有定额
  137. ration.prototype.getRationNodes = function (billNode) {
  138. if (billNode.sourceType != ModuleNames.bills) return [];
  139. let rations = [], IDs = [];
  140. function getSubBillsIDs(node) {
  141. if (!node) return;
  142. if (node.sourceType != ModuleNames.bills) return;
  143. if (!node.children || node.children.length == 0 || node.children[0].sourceType != ModuleNames.bills)
  144. IDs.push(node.data.ID)
  145. else
  146. getSubBillsIDs(node.children[0]);
  147. getSubBillsIDs(node.nextSibling);
  148. };
  149. if (billNode.source.children.length == 0)
  150. IDs.push(billNode.data.ID)
  151. else
  152. getSubBillsIDs(billNode.children[0]);
  153. for (let id of IDs){
  154. let subRations = this.datas.filter(function (data) {
  155. return data[project.masterField.ration] === id;
  156. });
  157. rations.push(...subRations);
  158. };
  159. rations.sort(function (x, y) {
  160. return x.serialNo - y.serialNo;
  161. });
  162. let rationNodes = [];
  163. for (let ration of rations){
  164. rationNodes.push(projectObj.project.mainTree.nodes['id_' + ration.ID]);
  165. }
  166. return rationNodes;
  167. };
  168. ration.prototype.getInsertRationData = function (billsID, preRation, rationType) {
  169. var br = this.getBillsSortRation(billsID);
  170. var updateData = [];
  171. if (preRation) {
  172. var preIndex = br.indexOf(preRation), i;
  173. updateData.push({updateType: 'ut_create', updateData: this.getTempRationData(this.getNewRationID(), billsID, preIndex < br.length - 1 ? br[preIndex + 1].serialNo : br[preIndex].serialNo + 1, rationType)});
  174. for (i = preIndex + 1; i < br.length; i++) {
  175. updateData.push({updateType: 'ut_update', updateData: this.getTempRationData(br[i].ID, billsID, i < br.length - 1 ? br[i+1].serialNo : br[i].serialNo + 1, br[i].type)});
  176. }
  177. } else {
  178. updateData.push({updateType: 'ut_create', updateData: this.getTempRationData(this.getNewRationID(), billsID, br.length > 0 ? br[br.length - 1].serialNo + 1 : 1, rationType)});
  179. }
  180. return updateData;
  181. };
  182. ration.prototype.getCounterData = function (count) {
  183. var updateData = {'projectID': this.project.ID()};
  184. if (count) {
  185. updateData[this.getSourceType()] = this.maxRationID() + count;
  186. } else {
  187. updateData[this.getSourceType()] = this.maxRationID() + 1;
  188. }
  189. return updateData;
  190. };
  191. ration.prototype.insertRation = function (billsID, preRation, rationType) {
  192. var br = this.getBillsSortRation(billsID);
  193. let insertData = this.getInsertRationData(billsID, preRation, rationType);
  194. this.project.pushNow('insertRation', [this.getSourceType(), this.project.projCounter()],
  195. [insertData, this.getCounterData()]);
  196. var newRation = null;
  197. let newID = -1;
  198. for(let data of insertData){
  199. if(data.updateType === 'ut_create'){
  200. newID = data.updateData.ID;
  201. }
  202. }
  203. if (preRation) {
  204. var preIndex = br.indexOf(preRation), i;
  205. newRation = this.getTempRationData(newID, billsID, preIndex < br.length - 1 ? br[preIndex + 1].serialNo : br[preIndex].serialNo + 1, rationType);
  206. this.datas.push(newRation);
  207. for (i = preIndex + 1; i < br.length; i++) {
  208. br[i].serialNo = i < br.length - 1 ? br [i + 1].serialNo : br[i].serialNo + 1;
  209. }
  210. } else {
  211. newRation = this.getTempRationData(newID, billsID, br.length > 0 ? br[br.length - 1].serialNo + 1 : 1, rationType);
  212. this.datas.push(newRation);
  213. }
  214. return newRation;
  215. };
  216. ration.prototype.insertStdRation = function (billsID, preRation, std) {
  217. var br = this.getBillsSortRation(billsID), updateData = this.getInsertRationData(billsID, preRation, rationType.ration), newRation = null, that = this;
  218. updateData.forEach(function (data) {
  219. if (data.updateType === 'ut_create') {
  220. data.updateData.code = std.code;
  221. data.updateData.name = std.name;
  222. data.updateData.caption = std.caption;
  223. data.updateData.unit = std.unit;
  224. data.updateData.libID = std.rationRepId;
  225. data.updateData.content = std.jobContent;
  226. if (std.chapter) {
  227. data.updateData.comments = std.chapter.explanation;
  228. data.updateData.ruleText = std.chapter.ruleText;
  229. }
  230. data.updateData.from = std.type === 'complementary' ? 'cpt' : 'std';
  231. data.updateData.programID = std.feeType;
  232. data.updateData.rationAssList = projectObj.project.ration_ass.CreateNewAss(std);
  233. // calculate ration Quantity
  234. that.CalculateQuantity(data.updateData);
  235. newRation = data.updateData;
  236. }
  237. });
  238. this.project.pushNow('insertRation', [this.getSourceType(), this.project.projCounter()], [updateData, this.getCounterData()]);
  239. //newRation.ID = this.getNewRationID();
  240. if (preRation) {
  241. var preIndex = br.indexOf(preRation), i;
  242. this.datas.push(newRation);
  243. for (i = preIndex + 1; i < br.length; i++) {
  244. br[i].serialNo = i < br.length - 1 ? br [i + 1].serialNo : br[i].serialNo + 1;
  245. }
  246. } else {
  247. this.datas.push(newRation);
  248. }
  249. return newRation;
  250. };
  251. ration.prototype.getDeleteData = function (rationData) {
  252. var updateData = [];
  253. updateData.push({'updateType': 'ut_delete', 'updateData': {'ID': rationData.ID, 'projectID': this.project.ID()}});
  254. return updateData;
  255. };
  256. ration.prototype.delete = function (ration) {
  257. var ration_glj =projectObj.project.ration_glj;
  258. this.project.pushNow('deleteRation', [this.getSourceType(),ration_glj.getSourceType()], [this.getDeleteData(ration),ration_glj.getDeleteDataByRation(ration)]);
  259. this.deleteSubListOfRation(ration);
  260. this.datas.splice(this.datas.indexOf(ration), 1);
  261. };
  262. ration.prototype.removeByID = function(ID){
  263. _.remove(this.datas,{'ID':ID});
  264. };
  265. ration.prototype.getDeleteDataByBill = function (nodes) {
  266. let updateData = [];
  267. for (let node of nodes) {
  268. if (node.children.length > 0) {
  269. updateData = updateData.concat(this.getDeleteDataByBill(node.children));
  270. } else {
  271. let rations = this.getBillsSortRation(node.getID());
  272. for (let r of rations) {
  273. updateData.push({'updateType': 'ut_delete', 'updateData': {'ID': r.ID, 'projectID': this.project.ID()}});
  274. }
  275. }
  276. }
  277. return updateData;
  278. };
  279. ration.prototype.deleteByBills = function (nodes) {
  280. for (let node of nodes) {
  281. if (node.children.length > 0) {
  282. this.deleteByBills(node.children);
  283. } else {
  284. let rations = this.getBillsSortRation(node.getID());
  285. for (let r of rations) {
  286. this.datas.splice(this.datas.indexOf(r), 1);
  287. }
  288. }
  289. }
  290. }
  291. ration.prototype.getChangePosUpdateData = function (ration1, ration2) {
  292. var updateData = [];
  293. updateData.push({updateType: 'ut_update', updateData: this.getTempRationData(ration1.ID, ration1.billsItemID, ration2.serialNo)});
  294. updateData.push({updateType: 'ut_update', updateData: this.getTempRationData(ration2.ID, ration2.billsItemID, ration1.serialNo)});
  295. return updateData;
  296. };
  297. ration.prototype.changePos = function (ration1, ration2) {
  298. var updateData = this.getChangePosUpdateData(ration1, ration2);
  299. this.project.pushNow('insertRation', [this.getSourceType()], [updateData]);
  300. var preSerialNo = ration1.serialNo;
  301. ration1.serialNo = ration2.serialNo;
  302. ration2.serialNo = preSerialNo;
  303. };
  304. ration.prototype.updateField = function (ration, field, newValue) {
  305. calcFees.setFee(ration, field, newValue);
  306. let updateData = [];
  307. let data = {'ID': ration.ID, 'projectID': this.project.ID()};
  308. if (field === 'quantity') {
  309. data[field] = newValue;
  310. data.isFromDetail=0;
  311. // to do Calculate
  312. if (ration.fees) {
  313. data.fees = ration.fees;
  314. }
  315. } else if (field === 'feesIndex.common.unitFee') {
  316. // to do Calculate
  317. if (ration.fees) {
  318. data.fees = ration.fees;
  319. }
  320. } else {
  321. data[field] = newValue;
  322. }
  323. updateBillsOprRation();
  324. updateData.push({'updateType': 'ut_update', 'updateData': data});
  325. this.project.pushNow('updateBills', this.getSourceType(), updateData);
  326. };
  327. ration.prototype.updateRation = function (ration, updateNow) {
  328. let updateData = [];
  329. updateData.push({'updateType': 'ut_update', 'updateData': tools.formatRationUpdateData(ration)});
  330. if (updateNow) {
  331. this.project.pushNow('updateRations', this.getSourceType(), updateData);
  332. } else {
  333. this.project.push(this.getSourceType(), updateData);
  334. }
  335. };
  336. ration.prototype.FilterNumberFromUnit = function (unit) {
  337. let reg = new RegExp('^[0-9]+');
  338. if (reg.test(unit)) {
  339. return parseInt(unit.match(reg)[0]);
  340. } else {
  341. return 1;
  342. }
  343. };
  344. ration.prototype.CalculateQuantity = function (ration) {
  345. // calculate ration Quantity
  346. let quantity_decimal = getDecimal("ration.quantity");
  347. let process_decimal = getDecimal("process");
  348. if (optionsOprObj.getOption(optionsOprObj.optionsTypes.GENERALOPTS, 'rationQuanACToBillsQuan')) {
  349. let billsNode = this.project.Bills.tree.findNode(ration[this.project.masterField.ration]);
  350. let billsQuantity = billsNode.data.quantity ? billsNode.data.quantity : 0;
  351. billsQuantity=scMathUtil.roundForObj(billsQuantity,quantity_decimal);
  352. ration.quantityEXP="QDL";
  353. /* if (optionsOprObj.getOption(optionsOprObj.optionsTypes.GENERALOPTS, 'rationQuanACToRationUnit')) {
  354. ration.quantity = (billsQuantity / this.FilterNumberFromUnit(ration.unit)).toDecimal(quantity_decimal);
  355. } else {
  356. ration.quantity = billsQuantity.toDecimal(quantity_decimal);
  357. }*/
  358. ration.quantity = (billsQuantity / this.FilterNumberFromUnit(ration.unit)).toDecimal(quantity_decimal);//改成不管是否打勾都做转换
  359. ration.contain = scMathUtil.roundForObj(ration.quantity/billsQuantity,process_decimal);
  360. }
  361. };
  362. ration.prototype.updateRationCodes = function (recodes,cleanzmhs = false) {
  363. let libID = rationLibObj.getCurrentStdRationLibID();
  364. let libIDs = rationLibObj.getStdRationLibIDs();
  365. let defaultLibID = rationLibObj.getDefaultStdRationLibID();
  366. let engineering = projectInfoObj.projectInfo.property.engineering;
  367. let projectID = projectInfoObj.projectInfo.ID;
  368. let project = projectObj.project;
  369. let mainTree = project.mainTree;
  370. let nodeInfo =[];
  371. let refershNodes = [];
  372. if(libIDs == null){
  373. return;
  374. }
  375. for(let r of recodes){
  376. let needInstall = false;
  377. if(projectObj.project.isInstall()) {//如果是安装工程,要看需不需要生成安装增加费
  378. needInstall = project.Bills.isFBFX(r.node);
  379. }
  380. r.value===null||r.value===undefined?"":r.value = r.value.replace(/[\s\r\n]/g, "");//去掉空格回车换行等字符
  381. if(cleanzmhs == true||r.value != r.node.data.code){
  382. nodeInfo.push({ID:r.node.data.ID,billsItemID:r.node.data.billsItemID,newCode:r.value,needInstall:needInstall});
  383. refershNodes.push(r.node);
  384. }
  385. }
  386. let calQuantity = optionsOprObj.getOption(optionsOprObj.optionsTypes.GENERALOPTS, 'rationQuanACToBillsQuan');
  387. $.bootstrapLoading.start();
  388. CommonAjax.post("/ration/replaceRations",{nodeInfo:nodeInfo,libIDs:libIDs,defaultLibID: defaultLibID,projectID:projectID,calQuantity:calQuantity,cleanzmhs:cleanzmhs},function (data) {
  389. for(let recode of data){
  390. let node = mainTree.getNodeByID(recode.ration.ID);
  391. if(node) {
  392. for(let temkey in recode.ration){//更新缓存
  393. node.data[temkey] = recode.ration[temkey];
  394. }
  395. node.data.feesIndex = {};
  396. //删除定额节点下的主材和设备节点
  397. project.ration_glj.removeNodeByRation(recode.ration,projectObj.mainController);
  398. project.Ration.deleteSubListOfRation(recode.ration);//删除旧定额下的相关记录
  399. //添加新的记录
  400. project.Ration.addSubListOfRation(recode);
  401. project.ration_glj.addToMainTree(recode.ration_gljs);
  402. }
  403. }
  404. project.projectGLJ.loadData(function () {
  405. mbzm_obj.nodeChanged = true;//子目模板关联刷新
  406. gljOprObj.showDataIfRationSelect(projectObj.project.mainTree.selected,"-111111111");//这里第二个参数是为了使改前和改后selectedID不一样,删除了的话下方的定额工料机不会刷新
  407. project.calcProgram.calcNodesAndSave(refershNodes);
  408. projectObj.mainController.refreshTreeNode(refershNodes, true);
  409. $.bootstrapLoading.end();
  410. });
  411. if(data.length < nodeInfo.length && nodeInfo[data.length].newCode!=null){//说明有部分定额编号没找到记录
  412. alert('当前库中找不到定额"' + nodeInfo[data.length].newCode + '"');
  413. }
  414. updateBillsOprRation();
  415. })
  416. };
  417. ration.prototype.addMultiRation = function (items, callback) {
  418. let me = this;
  419. let project = projectObj.project, sheetController = projectObj.mainController;
  420. let engineering = projectInfoObj.projectInfo.property.engineering;
  421. let selected = project.mainTree.selected, newSource = null, newNode = null,pre = null,br = null;
  422. let billItemID = null,serialNo=1,nextID=null;
  423. let needInstall = false;
  424. let newDatas = [];
  425. if (selected === null) { return; }
  426. if (selected.sourceType === project.Bills.getSourceType() && selected.depth() > 0) {
  427. if (selected.source.children.length > 0) {
  428. alert('当前清单已有清单子项,不能套用定额。');
  429. } else if (selected.data.calcBase&&selected.data.calcBase!="") {
  430. alert('当前有基数计算,不能插入定额/量价/人材机。');
  431. } else {
  432. if(selected.data.type === billType.FB){
  433. return;
  434. }
  435. billItemID = selected.source.getID();
  436. nextID = selected.tree.rootID();
  437. br = this.getBillsSortRation(billItemID);
  438. serialNo = br.length > 0 ? br[br.length - 1].serialNo + 1 : 1
  439. }
  440. } else if (selected.sourceType === project.Ration.getSourceType()) {
  441. billItemID = selected.getParentID();
  442. br = this.getBillsSortRation(billItemID);
  443. serialNo = selected.data.serialNo+1;
  444. nextID = selected.getNextSiblingID();
  445. pre = selected.source;
  446. };
  447. if(billItemID){
  448. let calQuantity = optionsOprObj.getOption(optionsOprObj.optionsTypes.GENERALOPTS, 'rationQuanACToBillsQuan');
  449. if(projectObj.project.isInstall()) {//如果是安装工程,要看需不需要生成安装增加费
  450. let billsNode = project.mainTree.getNodeByID(billItemID);
  451. needInstall = project.Bills.isFBFX(billsNode);//在分部分项插入的定额才需要定额安装增加费
  452. }
  453. for(let i = 0; i < items.length; i++){
  454. let newData = me.getTempRationData(me.getNewRationID(), billItemID, serialNo, items[i].rationType);
  455. serialNo++;
  456. let brUpdate = [];
  457. //更新兄弟节点的序列号
  458. if (i ===0 && pre) {
  459. let preIndex = br.indexOf(pre), i;
  460. for (i = preIndex + 1; i < br.length; i++) {
  461. br[i].serialNo = i < br.length - 1 ? br [i + 1].serialNo + items.length - 1 : br[i].serialNo + items.length;
  462. brUpdate.push({projectID:newData.projectID,ID:br[i].ID,serialNo:br[i].serialNo});
  463. }
  464. }
  465. newDatas.push({itemQuery: items[i].itemQuery, newData: newData, defaultLibID: rationLibObj.getDefaultStdRationLibID(), calQuantity: calQuantity, brUpdate: brUpdate, needInstall: needInstall})
  466. }
  467. let showLoding = true;
  468. $.bootstrapLoading.start();
  469. //保证由于异步的关系loading界面被隐藏,比如清单指引插入清单定额时,endUpdate中提前隐藏了loading
  470. let interval =setInterval(function () {
  471. if(!$.bootstrapLoading.isLoading()&& showLoding){
  472. $.bootstrapLoading.start();
  473. clearInterval(interval);
  474. }
  475. else{
  476. clearInterval(interval);
  477. }
  478. }, 100);
  479. CommonAjax.post("/ration/addMultiRation",{newDatas: newDatas},function (rstData) {
  480. let newNodes = [];
  481. //更新缓存
  482. for(let data of rstData){
  483. me.datas.push(data.ration);
  484. me.addSubListOfRation(data);
  485. //插入树节点
  486. newSource = data.ration;
  487. newNode = project.mainTree.insert(billItemID, nextID, newSource.ID);
  488. newNodes.push(newNode);
  489. nextID = project.mainTree.selected.getNextSiblingID();
  490. newNode.source = newSource;
  491. newNode.sourceType = project.Ration.getSourceType();
  492. newNode.data = newSource;
  493. ProjectController.syncDisplayNewNode(sheetController, newNode);
  494. }
  495. project.projectGLJ.loadData(function () {
  496. for(let data of rstData){
  497. project.ration_glj.addToMainTree(data.ration_gljs);
  498. }
  499. projectObj.mainController.refreshTreeNode(newNodes, false);
  500. if(project.Bills.isFBFX(newNodes[0])) { //判断是否属于分部分项工程 ,是的话才需要做计取安装费计算
  501. project.installation_fee.calcInstallationFee(function (isChange,rations) {
  502. if(isChange){
  503. rations = rations.concat(newNodes);
  504. project.calcProgram.calcNodesAndSave(rations);
  505. }else {
  506. project.calcProgram.calcNodesAndSave(newNodes);
  507. }
  508. });
  509. }else {
  510. project.calcProgram.calcNodesAndSave(newNodes);
  511. }
  512. updateBillsOprRation();
  513. if(callback){
  514. callback();
  515. }
  516. showLoding = false;
  517. $.bootstrapLoading.end();
  518. });
  519. })
  520. }
  521. };
  522. ration.prototype.insertVolumePrice = function(type){
  523. this.addNewRation(null,rationType.volumePrice,function (newNode) {//插入人工不需要自动定位到编号列
  524. projectObj.selectColAndFocus(newNode,null);
  525. },true,type);
  526. };
  527. ration.prototype.addNewRation = function (itemQuery,rationType,callback=null,isEmpty=false,priceType,needCalcAndSave=true) {//priceType 是量价类型
  528. let me = this;
  529. let project = projectObj.project, sheetController = projectObj.mainController;
  530. let engineering = projectInfoObj.projectInfo.property.engineering;
  531. let selected = project.mainTree.selected, newSource = null, newNode = null,pre=null,br=null;
  532. let billItemID = null,serialNo=1,nextID=null;
  533. let needInstall = false;
  534. if (selected === null) { return null; }
  535. if (selected.sourceType === project.Bills.getSourceType() && selected.depth() > 0) {
  536. if(selected.data.type === billType.FB){
  537. return null;
  538. }
  539. else if (selected.source.children.length > 0) {
  540. alert('当前清单已有清单子项,不能套用定额。');
  541. } else if (selected.data.calcBase&&selected.data.calcBase!="") {
  542. alert('当前有基数计算,不能插入定额/量价/人材机。');
  543. } else {
  544. billItemID = selected.source.getID();
  545. nextID = selected.tree.rootID();
  546. br = this.getBillsSortRation(billItemID);
  547. serialNo = br.length > 0 ? br[br.length - 1].serialNo + 1 : 1
  548. }
  549. } else if (selected.sourceType === project.Ration.getSourceType()) {
  550. billItemID = selected.getParentID();
  551. br = this.getBillsSortRation(billItemID);
  552. serialNo = selected.data.serialNo+1;
  553. nextID = selected.getNextSiblingID();
  554. pre = selected.source;
  555. };
  556. if(billItemID){
  557. let newID = me.getNewRationID();
  558. let newData = me.getTempRationData(newID, billItemID, serialNo, rationType,priceType);
  559. let calQuantity = isEmpty===true?false:optionsOprObj.getOption(optionsOprObj.optionsTypes.GENERALOPTS, 'rationQuanACToBillsQuan');
  560. let brUpdate = [];
  561. //更新兄弟节点的序列号
  562. if (pre) {
  563. let preIndex = br.indexOf(pre), i;
  564. for (i = preIndex + 1; i < br.length; i++) {
  565. br[i].serialNo = i < br.length - 1 ? br [i + 1].serialNo : br[i].serialNo + 1;
  566. brUpdate.push({projectID:newData.projectID,ID:br[i].ID,serialNo:br[i].serialNo});
  567. }
  568. }
  569. if(projectObj.project.isInstall()) {//如果是安装工程,要看需不需要生成安装增加费
  570. let billsNode = project.mainTree.getNodeByID(billItemID);
  571. needInstall = project.Bills.isFBFX(billsNode);//在分部分项插入的定额才需要定额安装增加费
  572. }
  573. $.bootstrapLoading.start();
  574. CommonAjax.post("/ration/addNewRation",{itemQuery:itemQuery,newData:newData,defaultLibID: rationLibObj.getDefaultStdRationLibID(),calQuantity:calQuantity,brUpdate:brUpdate,needInstall:needInstall},function (data) {
  575. //更新缓存
  576. me.datas.push(data.ration);
  577. me.addSubListOfRation(data);
  578. //插入树节点
  579. newSource = data.ration;
  580. if(needCalcAndSave == false){
  581. syncNodeOper(data);
  582. if(callback) callback(newNode);
  583. }else {
  584. project.projectGLJ.loadData(function () {
  585. syncNodeOper(data);
  586. project.calcProgram.calcAndSave(newNode,function () {
  587. if(project.Bills.isFBFX(newNode)) { //判断是否属于分部分项工程 ,是的话才需要做计取安装费计算
  588. installationFeeObj.calcInstallationFee();
  589. }
  590. });
  591. //如果添加规则中,添加内容为定额子目,则更新相关清单
  592. updateBillsOprRation();
  593. if(callback) callback(newNode);
  594. });
  595. }
  596. $.bootstrapLoading.end();
  597. })
  598. return newNode;
  599. }
  600. else return null;
  601. function syncNodeOper(data) {//插入后刷新节点操作
  602. newNode = project.mainTree.insert(billItemID, nextID, newSource.ID);
  603. newNode.source = newSource;
  604. newNode.sourceType = project.Ration.getSourceType();
  605. newNode.data = newSource;
  606. ProjectController.syncDisplayNewNode(sheetController, newNode);
  607. project.ration_glj.addToMainTree(data.ration_gljs);
  608. projectObj.mainController.refreshTreeNode([newNode], false);
  609. }
  610. };
  611. ration.prototype.addNewRationFast = function (rationType,callback) {
  612. let me = this;
  613. let project = projectObj.project, sheetController = projectObj.mainController;
  614. let engineering = projectInfoObj.projectInfo.property.engineering;
  615. let selected = project.mainTree.selected, newSource = null, newNode = null,pre=null,br=null;
  616. let billItemID = null,serialNo=1,nextID=null;
  617. if (selected === null) { return null; }
  618. if (selected.sourceType === project.Bills.getSourceType() && selected.depth() > 0) {
  619. if(selected.data.type === billType.FB){
  620. return null;
  621. }
  622. else if (selected.source.children.length > 0) {
  623. alert('当前清单已有清单子项,不能套用定额。');
  624. } else if (selected.data.calcBase&&selected.data.calcBase!="") {
  625. alert('当前有基数计算,不能插入定额/量价/人材机。');
  626. } else {
  627. billItemID = selected.source.getID();
  628. nextID = selected.tree.rootID();
  629. br = this.getBillsSortRation(billItemID);
  630. serialNo = br.length > 0 ? br[br.length - 1].serialNo + 1 : 1
  631. }
  632. } else if (selected.sourceType === project.Ration.getSourceType()) {
  633. billItemID = selected.getParentID();
  634. br = this.getBillsSortRation(billItemID);
  635. serialNo = selected.data.serialNo+1;
  636. nextID = selected.getNextSiblingID();
  637. pre = selected.source;
  638. };
  639. if(billItemID){
  640. let newID = me.getNewRationID();
  641. let newData = me.getTempRationData(newID, billItemID, serialNo, rationType);
  642. let brUpdate = [];
  643. //更新兄弟节点的序列号
  644. if (pre) {
  645. let preIndex = br.indexOf(pre), i;
  646. for (i = preIndex + 1; i < br.length; i++) {
  647. br[i].serialNo = i < br.length - 1 ? br [i + 1].serialNo : br[i].serialNo + 1;
  648. brUpdate.push({projectID:newData.projectID,ID:br[i].ID,serialNo:br[i].serialNo});
  649. }
  650. }
  651. if(projectObj.project.isInstall()) {//如果是安装工程,要看需不需要生成安装增加费
  652. let billsNode = project.mainTree.getNodeByID(billItemID);
  653. }
  654. $.bootstrapLoading.start();
  655. newNode = project.mainTree.insert(billItemID, nextID, newID);
  656. newNode.sourceType = project.Ration.getSourceType();
  657. newNode.data = newData;
  658. CommonAjax.post("/ration/addNewRation",{itemQuery:null,newData:newData,defaultLibID: rationLibObj.getDefaultStdRationLibID(),calQuantity:false,brUpdate:brUpdate,needInstall:false},function (data) {
  659. //更新缓存
  660. me.datas.push(data.ration);
  661. me.addSubListOfRation(data);
  662. //插入树节点
  663. newSource = data.ration;
  664. newNode.source = newSource;
  665. newNode.data = newSource;
  666. })
  667. ProjectController.syncDisplayNewNode(sheetController, newNode);
  668. if(callback){
  669. callback(newNode);
  670. }
  671. $.bootstrapLoading.end();
  672. return newNode;
  673. }
  674. else return null;
  675. };
  676. ration.prototype.deleteSubListOfRation = function(ration){
  677. projectObj.project.ration_glj.deleteByRation(ration);
  678. projectObj.project.ration_coe.deleteByRation(ration);
  679. projectObj.project.quantity_detail.deleteByRation(ration);
  680. projectObj.project.ration_installation.deleteByRation(ration);
  681. projectObj.project.ration_template.deleteByRation(ration);
  682. };
  683. ration.prototype.addSubListOfRation = function (data) {
  684. project.ration_glj.addDatasToList(data.ration_gljs);
  685. project.ration_coe.addDatasToList(data.ration_coes);
  686. project.ration_installation.addDatasToList(data.ration_installations);
  687. project.ration_template.addDatasToList(data.ration_templates);
  688. project.quantity_detail.addDatasToList(data.quantity_details);
  689. };
  690. ration.prototype.replaceRation = function (ration, std) {
  691. this.project.beginUpdate('replaceRation');
  692. // delete
  693. let ration_glj =projectObj.project.ration_glj;
  694. this.project.push(this.project.ration_glj.getSourceType(), this.project.ration_glj.getDeleteDataByRation(ration));
  695. this.deleteSubListOfRation(ration);
  696. // insertNewRation
  697. let updateData = [];
  698. ration.code = std.code;
  699. ration.name = std.name;
  700. ration.caption = std.caption;
  701. ration.unit = std.unit;
  702. ration.libID = std.rationRepId;
  703. ration.content = std.jobContent;
  704. ration.adjustState = '';
  705. if (std.chapter) {
  706. ration.comments = std.chapter.explanation;
  707. ration.ruleText = std.chapter.ruleText;
  708. }
  709. ration.from = std.type === 'complementary' ? 'cpt' : 'std';
  710. ration.programID = std.feeType;
  711. ration.rationAssList = projectObj.project.ration_ass.CreateNewAss(std);
  712. // calculate ration Quantity
  713. this.CalculateQuantity(ration);
  714. updateData.push({updateType: 'ut_update', updateData: ration});
  715. this.project.push(this.getSourceType(), updateData);
  716. this.project.endUpdate();
  717. };
  718. ration.prototype.updateContain=function (value,node) {
  719. let me = this;
  720. if(isNaN(value)){
  721. alert("当前输入的数据类型不正确,请重新输入");
  722. projectObj.mainController.refreshTreeNode([node]);
  723. return;
  724. }
  725. if(node.data.quantityEXP=="GCLMXHJ"){//如果定额工程量是来自工程量明细
  726. hintBox.infoBox('操作确认', '已有工程量明细,是否清空明细表?', 2, function () {
  727. node.data.isFromDetail=0;
  728. project.quantity_detail.cleanQuantityDetail(node,true);
  729. me.doContainUpdate(value,node);
  730. }, function () {
  731. projectObj.mainController.refreshTreeNode([node]);
  732. },['确定','取消'],false);
  733. }else {
  734. me.doContainUpdate(value,node);
  735. }
  736. };
  737. ration.prototype.getNearRations = function (ration,callback) {
  738. if(ration&&ration.code && ration.code !=""){
  739. CommonAjax.post("/ration/getSameSectionRations",{from:ration.from,code:ration.code,libID:ration.libID},function(rations){
  740. callback(rations);
  741. })
  742. }else {
  743. callback([]);
  744. }
  745. };
  746. ration.prototype.doContainUpdate = function (value,node) {
  747. let billNode = node.parent;
  748. let contain = scMathUtil.roundForObj(value,getDecimal("process"));
  749. let billQuantity = billNode.data.quantity||billNode.data.quantity!=""?billNode.data.quantity:0;
  750. billQuantity = parseFloat(billQuantity);
  751. node.data.contain = contain;
  752. node.data.quantityEXP="QDL*"+contain;
  753. node.data.quantity=scMathUtil.roundForObj(billQuantity*contain,getDecimal("quantity",node));
  754. let times = parseInt(node.data.unit);
  755. if (!isNaN(times)) {
  756. node.data.quantityEXP+='*'+times;
  757. }
  758. // node.data.quantity = projectObj.project.quantity_detail.autoTransformQuantity(node.data.quantity,node);//按单位做转换
  759. node.changed = true;
  760. project.calcProgram.calcAndSave(node, function () {
  761. project.projectGLJ.calcQuantity();
  762. });
  763. projectObj.mainController.refreshTreeNode(node.children);//刷新子工料机树节点总消耗量
  764. };
  765. ration.prototype.addRationChecking=function(selected){
  766. if (selected) {// Vincent, 2018-01-02
  767. if(selected.sourceType === project.Ration.getSourceType()){ // 焦点行是定额/量价/工料机,有效显示。
  768. return false;
  769. }else if(selected.sourceType === project.Bills.getSourceType()){
  770. if(selected.data.type == billType.FX||selected.data.type == billType.BX){//焦点行是分项,有效显示。
  771. return false
  772. }
  773. if(selected.data.type == billType.BILL && selected.source.children.length === 0){//焦点行是清单,且没有子项,有效显示。
  774. return false
  775. }
  776. }
  777. }
  778. return true;
  779. };
  780. ration.prototype.canAdd = function (node) { // CSL.2018.07.23
  781. if (!node) return false;
  782. if (calcTools.isRationCategory(node)) return true;
  783. if (calcTools.isBill(node)){
  784. if (node.data.type == billType.FX || node.data.type == billType.BX) return true; // 分项、补项
  785. if (calcTools.isLeafBill(node)
  786. && (node.data.type != billType.DXFY)
  787. && (node.data.type != billType.FB)
  788. && project.Bills.isMeasure(node)) return true; // 叶子清单项
  789. };
  790. return false;
  791. }
  792. ration.prototype.getAllInstallTypeRation = function () {//取所有计取安装增加费生成的定额
  793. return _.filter(this.datas,{'type':rationType.install});
  794. };
  795. ration.prototype.getLabourTotalFee=function(ration){//feesIndex.labour.totalFee 取定额的人工费合价
  796. if(ration.feesIndex&&ration.feesIndex.labour&&ration.feesIndex.labour.totalFee){
  797. return ration.feesIndex.labour.totalFee;
  798. }else {
  799. return 0;
  800. }
  801. };
  802. ration.prototype.getMaterialTotalFee=function(ration){//feesIndex.material.totalFee 取定额的材料费合价
  803. if(ration.feesIndex&&ration.feesIndex.material&&ration.feesIndex.material.totalFee){
  804. return ration.feesIndex.material.totalFee;
  805. }else {
  806. return 0;
  807. }
  808. } ;
  809. ration.prototype.getMachineTotalFee=function(ration){//feesIndex.machine.totalFee 取定额的机械费合价
  810. if(ration.feesIndex&&ration.feesIndex.machine&&ration.feesIndex.machine.totalFee){
  811. return ration.feesIndex.machine.totalFee;
  812. }else {
  813. return 0;
  814. }
  815. } ;
  816. //获取定额前缀
  817. ration.prototype.getRationPrefix = function(defaultLibID, ration){
  818. if(defaultLibID !== ration.libID){
  819. return rationPrefix.borrow;
  820. }
  821. if(ration.from && ration.from === rationFrom.cpt){
  822. return rationPrefix.complementary;
  823. }
  824. return rationPrefix.none;
  825. };
  826. return new ration(project);
  827. }
  828. };
  829. function FilterNumberFromUnit (unit) {
  830. let reg = new RegExp('^[0-9]+');
  831. if (reg.test(unit)) {
  832. return parseInt(unit.match(reg)[0]);
  833. } else {
  834. return 1;
  835. }
  836. };