glj_view.js 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854
  1. /**
  2. * Created by CSL on 2017-05-12.
  3. */
  4. var gljOprObj = {
  5. sheet: null,
  6. libID: null,
  7. ration: null,
  8. sheetData: [],
  9. checkb: null,
  10. rationGljEditObj:null,//编辑定额工料机还没提交的缓存数据
  11. cancelUpdate:true,
  12. mainTreeSelectedChange:false,
  13. detailSheet: null,
  14. detailData: [],
  15. GLJSelection: [],
  16. pagingType: {
  17. stdGLJ: 1,
  18. complementaryGLJs: 2
  19. },
  20. // 是否正在分页
  21. loadingPagination: false,
  22. // 当前筛选条件下总数据数,用于判断是否需要继续分页
  23. curPageTotal: 0,
  24. selectedGLJClass: null,
  25. parentNodeIds: {},
  26. preActiveTab: '', //提升焦点变换性能 2019年4月12日
  27. activeTab: '#linkGLJ',
  28. rationTab:'#linkGLJ',
  29. billsTab:'#linkQDJL',
  30. setting: {},
  31. detailSetting: {
  32. header: [
  33. {headerName: "名称", headerWidth: 100, dataCode: "name", dataType: "String"},
  34. {headerName: "计算式", headerWidth: 120, dataCode: "regex", dataType: "String"},
  35. {headerName: "结果(C)", headerWidth: 120, dataCode: "result", dataType: "Number", decimalField: "quantity_detail"},
  36. {headerName: "累加", headerWidth: 120, dataCode: "isSummation", dataType: "String", cellType: "checkBox"}
  37. ],
  38. view: {
  39. lockColumns: [2, 3],
  40. rowHeaderWidth:25
  41. }
  42. },
  43. gljTreeSetting: {
  44. view: {
  45. expandSpeed: "",
  46. selectedMulti: false
  47. },
  48. edit: {
  49. enable: false,
  50. editNameSelectAll: true,
  51. showRemoveBtn: true,
  52. showRenameBtn: true,
  53. removeTitle: "删除节点",
  54. renameTitle: "更改名称"
  55. },
  56. data: {
  57. keep: {
  58. parent: true,
  59. leaf: true
  60. },
  61. key: {
  62. children: "items",
  63. name: "Name"
  64. },
  65. simpleData: {
  66. enable: false,
  67. idKey: "ID",
  68. pIdKey: "ParentID",
  69. rootPId: -1
  70. }
  71. },
  72. callback: {
  73. onClick: function (event, treeId, treeNode) {
  74. if (treeId == 'gljTree') {
  75. let me = gljOprObj, gljTypeId = treeNode.ID;
  76. if (treeNode.ID) {
  77. me.gljCurTypeId = treeNode.ID;
  78. /* me.filterLibGLJSheetData();
  79. me.showLibGLJSheetData();*/
  80. me.loadPageData(gljOprObj.gljLibSheet, true, 0);
  81. //gljOprObj.initSelection({row: me.gljLibSheet.getActiveRowIndex()});
  82. }
  83. } else {
  84. if (treeNode.isParent) {
  85. $('#class_selected_conf').attr("disabled", "disabled");
  86. $('#selected_class').val("");
  87. } else {
  88. $('#class_selected_conf').removeAttr("disabled");
  89. $('#selected_class').val(treeNode.ID);
  90. }
  91. }
  92. }
  93. }
  94. },
  95. gljLibSheetSetting: {
  96. owner: 'gljTree',
  97. header: [
  98. {headerName: "选择", headerWidth: 40, dataCode: "select", hAlign: "center", vAlign: "center", cellType: "checkBox"},
  99. {headerName: "编码", headerWidth: 80, dataCode: "code", dataType: "String", formatter: "@", hAlign: "left", vAlign: "center"},
  100. {headerName: "名称", headerWidth: 160, dataCode: "name", dataType: "String", hAlign: "left", vAlign: "center"},
  101. {headerName: "规格型号", headerWidth: 160, dataCode: "specs", dataType: "String", hAlign: "left", vAlign: "center"},
  102. {headerName: "单位", headerWidth: 40, dataCode: "unit", dataType: "String", hAlign: "center", vAlign: "center"},
  103. {headerName: "单价", headerWidth: 55, dataCode: "basePrice", dataType: "Number", formatter: "0.00", hAlign: "right", vAlign: "center"},
  104. {headerName: "类型", headerWidth: 60, dataCode: "typeName", dataType: "String", hAlign: "center", vAlign: "center"},
  105. {headerName: "新增", headerWidth: 40, dataCode: "isComplementary", dataType: "String", hAlign: "center", vAlign: "center", cellType: "checkBox", readOnly: true}
  106. ],
  107. view: {
  108. lockColumns: [0, 1, 2, 3, 4, 5, 6]
  109. }
  110. },
  111. gljLibSheet: null,
  112. scopeSetting:{},
  113. scopeSpread:null,
  114. scopeSheet:null,
  115. scopeDatas:[],
  116. scopeSelectedIDMap:{},
  117. initSheet: function (sheet) {
  118. var me = this;
  119. me.sheet = sheet;
  120. sheetCommonObj.initSheet(me.sheet, me.setting, 30);
  121. sheet.name('ration_glj');
  122. me.bindSheetEvent(sheet);
  123. sheet.bind(GC.Spread.Sheets.Events.CellDoubleClick, me.onCellDoubleClick);
  124. sheet.bind(GC.Spread.Sheets.Events.ClipboardChanged, me.onClipboardChanged);
  125. subSpread.bind(GC.Spread.Sheets.Events.ButtonClicked, me.onButtonClick);
  126. if(!projectReadOnly){
  127. gljContextMenu.loadGLJSpreadContextMenu();
  128. me.bindGLJEnterKey(subSpread,sheet);
  129. }
  130. sheet.bind(GC.Spread.Sheets.Events.SelectionChanged,me.onRationGLJSelectionChange);
  131. sheet.bind(GC.Spread.Sheets.Events.CellClick,function () {
  132. //这里主要记录是否点击了sheet以外的地方,如果点击了sheet里的单元格,则将cancelUpdate设置为true不触发提交更新操作
  133. me.cancelUpdate = true;//取消延时任务由selection change 事件处理
  134. });
  135. },
  136. onRationGLJSelectionChange:function(sender,args){
  137. let me = gljOprObj;
  138. let selected = args.newSelections[0] ? args.newSelections[0] : {row: 0, col: 0};
  139. console.log("selected changed-------");
  140. //这主要记录是否点击了sheet以外的地方,如果点击了sheet里的单元格,则将cancelUpdate设置为true不触发提交更新操作
  141. me.cancelUpdate = true;//取消延时任务由这里进行判断处理
  142. console.log("change to true");
  143. me.sheetInitSelection(selected);
  144. if(me.rationGljEditObj){
  145. if(ifNeedUpdate(selected)){
  146. me.updateGljFromCache();
  147. }
  148. }
  149. function ifNeedUpdate(selected) {
  150. let navigationRightCol = me.setting.navigationRightCol , fieldID = me.setting.header[selected.col].dataCode;
  151. if(me.rationGljEditObj.row == selected.row && navigationRightCol.indexOf(fieldID)!= -1){//如果换行或者超出了三个编辑列,则提交更新
  152. return false;
  153. }
  154. return true;
  155. }
  156. },
  157. updateGljFromCache:function () {
  158. let me = this;
  159. if(me.rationGljEditObj){
  160. projectObj.project.ration_glj.submitChange(me.rationGljEditObj.recode, me.rationGljEditObj.doc);
  161. }
  162. me.rationGljEditObj = null;
  163. },
  164. bindGLJEnterKey:function (spread,sheet) {
  165. let me = this;
  166. subSpread.commandManager().register('myEnter', enterKeyAction);
  167. subSpread.commandManager().setShortcutKey(null, GC.Spread.Commands.Key.enter, false, false, false, false);
  168. subSpread.commandManager().setShortcutKey('myEnter', GC.Spread.Commands.Key.enter, false, false, false, false);
  169. function enterKeyAction(spd,sheeName) {
  170. let editRow = sheet.getActiveRowIndex(),orgCol = sheet.getActiveColumnIndex();
  171. let fieldID = me.setting.header[orgCol].dataCode;
  172. if(sheeName=="ration_glj" && me.setting.navigationRightCol.indexOf(fieldID) != -1){
  173. if(sheet.isEditing()) sheet.endEdit();
  174. GC.Spread.Sheets.Commands.navigationRight.execute(spd,sheeName);
  175. }else {
  176. GC.Spread.Sheets.Commands.commitInputNavigationDown.execute(spd,sheeName);
  177. }
  178. }
  179. },
  180. sheetInitSelection: function (selected) {
  181. let me = gljOprObj;
  182. let style = {};
  183. if(selected.row < me.sheetData.length){
  184. if(me.setting.getStyle) style = me.setting.getStyle(me.sheetData[selected.row]);
  185. me.sheet.setStyle(selected.row, -1, me.getSelStyle(true,style));
  186. }
  187. me.sheet.repaint();
  188. if(me.preGljSelection && me.preGljSelection.row !== selected.row){
  189. if(me.setting.getStyle && me.preGljSelection.row < me.sheetData.length) style = me.setting.getStyle(me.sheetData[me.preGljSelection.row]);
  190. me.sheet.setStyle(me.preGljSelection.row, -1, me.getSelStyle(false,style));
  191. }
  192. me.preGljSelection = selected;
  193. },
  194. initDetailSheet: function (sheet) {
  195. var me = this;
  196. me.detailSheet = sheet;
  197. sheetCommonObj.initSheet(me.detailSheet, me.detailSetting, 30);
  198. // me.detailSheet.selectionUnit(0);//0 cell,1 row,2 col;
  199. sheet.name('quantity_detail');
  200. me.bindSheetEvent(sheet);
  201. },
  202. detailSheetReadonly:function () {
  203. let selected = projectObj.project.mainTree.selected;
  204. let Bills = projectObj.project.Bills;
  205. if(selected) {
  206. //清单锁定时只读
  207. if(selected.sourceType == ModuleNames.bills && projectObj.project.isBillsLocked() && projectObj.project.withinBillsLocked(selected)){
  208. return true;
  209. }
  210. //大项费用、分部节点层次时,工程量明细只读。
  211. if(indicativeInfoObj.isDXFY(selected) || indicativeInfoObj.isFB(selected)){
  212. return true;
  213. }
  214. //是主材或者是设备时只读
  215. if(selected.sourceType == ModuleNames.ration_glj){
  216. return true;
  217. }else if(gljOprObj.isInstallationNode(selected) || OVER_HEIGHT.isOverHeight(selected)){//是补项或者是安装、超高类型的定额时只读
  218. return true;
  219. }
  220. return false;
  221. }
  222. return true;
  223. },
  224. bindSheetEvent: function (sheet) {
  225. var me = this;
  226. sheet.bind(GC.Spread.Sheets.Events.ClipboardPasting, me.onClipboardPasting);
  227. sheet.bind(GC.Spread.Sheets.Events.ClipboardPasted, me.onClipboardPasted);
  228. sheet.bind(GC.Spread.Sheets.Events.EditEnded, me.onEditEnded);
  229. sheet.bind(GC.Spread.Sheets.Events.RangeChanged, me.onRangeChanged);
  230. sheet.bind(GC.Spread.Sheets.Events.EditStarting, me.startEditChecking);
  231. // sheet.bind(GC.Spread.Sheets.Events.CellClick, me.onCellClick);
  232. },
  233. onClipboardPasting: function (sender, args) {
  234. var me = gljOprObj;
  235. if(args.sheetName!="quantity_detail"&&(args.cellRange.rowCount!=1||args.cellRange.colCount!=1)){//工程量明细做特殊处理
  236. args.cancel = true;
  237. }
  238. },
  239. onClipboardPasted: function (e, info) {
  240. var me = gljOprObj;
  241. console.log('past');
  242. // if (!me.ration) {return;};
  243. // your code...
  244. },
  245. startEditChecking:function (sender,args) {
  246. let me = gljOprObj;
  247. let selected = projectObj.project.mainTree.selected;
  248. if($.bootstrapLoading.isLoading()) args.cancel = true;
  249. if(selected){
  250. if(me.isInstallationNode(selected)==true || me.isItemIncreaseNode(selected)==true|| OVER_HEIGHT.isOverHeight(selected)){
  251. args.cancel = true;
  252. }else {
  253. if(args.sheetName == 'quantity_detail'){//工程量明细表
  254. if(me.detailSheetReadonly()){
  255. args.cancel = true;
  256. }else {
  257. if(args.sheet.getValue(args.row,args.col)==null){//这里是为了解决当单元格里的值是null的时候,在单元格里输入数据,按键盘箭头移动光标的时候,会直接结束编辑,跳到另外的单元格。
  258. args.sheet.setValue(args.row,args.col,"");
  259. }
  260. }
  261. }
  262. if(args.sheetName == 'ration_glj'){//定额工料机表
  263. if(!me.rationGLJEditCheck(args)) args.cancel = true;
  264. }
  265. }
  266. }else {
  267. args.cancel = true;
  268. }
  269. },
  270. isInstallationNode:function(node){
  271. if(node.sourceType == ModuleNames.ration&&node.data.type == rationType.install){//是定额安装费类型时只读,原先是补项的时候也是控制只读的||(node.sourceType == ModuleNames.bills&&node.data.type==billType.BX)){//是定额安装费类型或者补项
  272. return true;
  273. }
  274. return false
  275. },
  276. isItemIncreaseNode:function(node){//子目增加费节点
  277. if(node.sourceType == ModuleNames.ration&&node.data.type == rationType.itemIncrease){//是定额安装费类型时只读,原先是补项的时候也是控制只读的||(node.sourceType == ModuleNames.bills&&node.data.type==billType.BX)){//是定额安装费类型或者补项
  278. return true;
  279. }
  280. return false
  281. },
  282. onEditEnded: function (sender, args) {
  283. var me = gljOprObj;
  284. if (args.sheetName == 'ration_glj') {
  285. me.onEditGLJSheet(args)
  286. }
  287. if (args.sheetName == 'quantity_detail') {
  288. me.onEditDetailSheet(args);
  289. }
  290. },
  291. onEditDetailSheet: function (args,callback) {
  292. var me = gljOprObj;
  293. if (args.row > me.detailData.length) {
  294. return;
  295. }
  296. if (args.row == me.detailData.length && args.editingText == null) {
  297. return;
  298. }
  299. var selected = projectObj.project.mainTree.selected;//因为使用了延时方法,所以要先取得选中行;
  300. var detailList = me.detailData;
  301. if(args.editingText){
  302. args.editingText = args.editingText.replace(/(/g, "(");//替换中文左右括号;
  303. args.editingText = args.editingText.replace(/)/g, ")");
  304. }
  305. if (args.row == detailList.length) {
  306. projectObj.project.quantity_detail.saveQuantityDetail(args, me.detailSetting.header[args.col].dataCode, selected,callback);
  307. }
  308. if (args.row < detailList.length) {
  309. projectObj.project.quantity_detail.updateQuantityDetail(args, me.detailSetting.header[args.col].dataCode, detailList[args.row], selected,callback);
  310. }
  311. },
  312. onEditGLJSheet: function (args) {
  313. var me = gljOprObj;
  314. if (args.row >= me.sheetData.length) {
  315. me.sheet.getCell(args.row, args.col).value(null);
  316. return;
  317. }
  318. me.updateRationGLJ(args);
  319. },
  320. onSelectionChanged: function (sender, args) {
  321. let me = gljOprObj;
  322. me.initSelection(args.newSelections.length > 0 ? {row: args.newSelections[0].row} : {row: 0});
  323. },
  324. onTopRowChanged: function (sender, args) {
  325. const me = gljOprObj;
  326. const topRow = args.newTopRow;
  327. const bottomRow = args.sheet.getViewportBottomRow(1);
  328. const radioType = $("input[name='glj']:checked").val();
  329. const curRecord = radioType === 'stdGLJ' ? me.stdGLJ : me.complementaryGLJs;
  330. // 当前表显示数据数大于等于当前筛选情况下最大数据数,不获取下一分页
  331. if (curRecord.length >= me.curPageTotal ||
  332. me.loadingPagination) {
  333. return;
  334. }
  335. if (curRecord.length -1 === bottomRow) {
  336. // 获取第curRecord.length行开始的数据
  337. me.loadPageData(args.sheet, false, curRecord.length);
  338. }
  339. },
  340. loadPageData: function (sheet, reset, index) {
  341. let condition = this.getPagingCondition(false, reset, false, index);
  342. projectObj.project.ration_glj.getGLJDataPaging(condition, function (data) {
  343. sheetCommonObj.appendData(sheet, condition.index, 0, gljOprObj.gljLibSheetSetting, data);
  344. gljOprObj.initSelection({row: gljOprObj.gljLibSheet.getActiveRowIndex()});
  345. });
  346. },
  347. getSelStyle: function (selected,settingStyle,rcolor) {
  348. let style = new GC.Spread.Sheets.Style();
  349. if(settingStyle){
  350. for(let key in settingStyle){
  351. style[key] = settingStyle[key];
  352. }
  353. }
  354. style.borderLeft = new GC.Spread.Sheets.LineBorder("#D4D4D4", GC.Spread.Sheets.LineStyle.thin);
  355. style.borderTop = new GC.Spread.Sheets.LineBorder("#D4D4D4", GC.Spread.Sheets.LineStyle.thin);
  356. style.borderRight = new GC.Spread.Sheets.LineBorder("#D4D4D4", GC.Spread.Sheets.LineStyle.thin);
  357. style.borderBottom = new GC.Spread.Sheets.LineBorder("#D4D4D4", GC.Spread.Sheets.LineStyle.thin);
  358. let colorOpts = optionsOprObj.getOption(optionsOprObj.optionsTypes.COLOROPTS);
  359. let selectedColor = colorOpts.SELECTED.backColor,
  360. recColor = rcolor?rcolor:'White';
  361. style.backColor = selected ? selectedColor : recColor;
  362. return style;
  363. },
  364. initSelection: function (sel) {
  365. let me = gljOprObj;
  366. if(sel){
  367. sel.row = !sel.row || sel.row == -1 ? 0 : sel.row;
  368. me.gljLibSheet.setStyle(sel.row, -1, me.getSelStyle(true));
  369. }
  370. if(me.preGljLibSelection && me.preGljLibSelection.row !== sel.row){
  371. me.gljLibSheet.setStyle(me.preGljLibSelection.row, -1, me.getSelStyle(false));
  372. }
  373. me.preGljLibSelection = sel;
  374. },
  375. onButtonClick: function (sender, args) {
  376. if(args.sheet.isEditing()){
  377. args.sheet.endEdit();
  378. }
  379. var me = gljOprObj;
  380. var sheet = args.sheet, row = args.row, col = args.col;
  381. var cellType = sheet.getCellType(row, col);
  382. if (cellType instanceof GC.Spread.Sheets.CellTypes.Button) {
  383. if(args.sheetName == 'rationInstallSheet'){
  384. installationFeeObj.onPositionButtonClick(sender,args);
  385. }
  386. } else {
  387. me.onCheckBoxClick(sender, args)
  388. }
  389. },
  390. onCheckBoxClick: function (sender, args) {
  391. let selected = projectObj.project.mainTree.selected;
  392. if(selected.sourceType == ModuleNames.ration_glj){//选中的是工料机时不可编辑
  393. return ;
  394. }
  395. let checkboxValue = args.sheet.getCell(args.row, args.col).value();
  396. if(args.sheetName == 'rationInstallSheet' && checkboxValue){
  397. return;
  398. }
  399. if(gljOprObj.isInstallationNode(selected)==true || OVER_HEIGHT.isOverHeight(selected)){
  400. return;
  401. }
  402. let newval = checkboxValue? 0:1;
  403. args.sheet.getCell(args.row, args.col).value(newval);
  404. if (args.sheetName == 'ration_glj') {
  405. gljOprObj.updateIsEstimate(args,newval);
  406. } else if (args.sheetName == 'quantity_detail') {
  407. projectObj.project.quantity_detail.isSummationUpdate(args, gljOprObj.detailData, newval);
  408. } else if (args.sheetName == 'glj_lib') {
  409. if (gljOprObj.gljLibSheetSetting.header[args.col].readOnly) {
  410. args.sheet.getCell(args.row, args.col).value(checkboxValue);
  411. return;
  412. }
  413. if(gljOprObj.gljLibSheetSetting.header[args.col].dataCode === 'select'){
  414. gljOprObj.setGLJSelection(args, newval);
  415. }
  416. }else if(args.sheetName == 'rationInstallSheet'){
  417. args.newValue = newval;
  418. installationFeeObj.onRationInstallValueChange(sender,args);
  419. }
  420. },
  421. onCellDoubleClick:function (sender, args) {
  422. // 含组成物的材料市场价改为只读,改为双击无反应不提示
  423. /* var me = gljOprObj;
  424. var header = me.setting.header;
  425. if (args.row >= me.sheetData.length) {
  426. return;
  427. }
  428. if (header[args.col] && header[args.col].dataCode == 'marketPrice') {
  429. if(me.hasComposition(me.sheetData[args.row])){
  430. alert("当前工料机的市场价由组成物计算得出,不可直接修改。");
  431. }
  432. }
  433. if (header[args.col] && header[args.col].dataCode == 'basePrice') {
  434. var isAdd = me.sheetData[args.row].isAdd;
  435. if(isAdd==1){//是新增但没有组成物时允许修改定额价
  436. if(me.hasComposition(me.sheetData[args.row])){//如果有组成物,不可修改
  437. alert("当前工料机的定额价由组成物计算得出,不可直接修改。");
  438. }
  439. }
  440. }*/
  441. },
  442. onClipboardChanged: function (sender, info) {
  443. let cDatas = sheetCommonObj.getTableData(info.sheet, null);
  444. sheetCommonObj.copyTextToClipboard(cDatas);
  445. return;
  446. },
  447. rationGLJEditCheck:function (args) {//true 可以编辑,false 不能编辑
  448. let me = gljOprObj,header = me.setting.header;
  449. let dataCode = header[args.col] && header[args.col].dataCode?header[args.col].dataCode:null,recode = me.sheetData[args.row];
  450. if(me.sheet.getTag(args.row,args.col)=="locked") return false;//如果是双击树节点编号里设置了锁定标记,不能编辑
  451. if (_.includes(me.setting.view.lockColumns, args.col)) return false;//如果是锁定的列,不能编辑
  452. if(recode != undefined){
  453. if(recode.isMixRatio){//对于组成物列
  454. return dataCode == 'marketPrice'//允许修改组成物市单价,其它的不可以
  455. }else {
  456. if (dataCode && dataCode == 'marketPrice') {
  457. return !me.marketPriceReadOnly({data:me.sheetData[args.row]});
  458. }
  459. if (dataCode && dataCode == 'basePrice') {
  460. var isAdd = recode.isAdd;
  461. if(isAdd==1){//是新增但没有组成物时允许修改定额价
  462. return !me.marketPriceReadOnly({data:recode});//如果有组成物,不可修改
  463. } else {
  464. return false;
  465. }
  466. }
  467. if(me.isExtraType(recode.type)&&(dataCode == 'name'||dataCode == 'specs'||dataCode == 'unit')){//人材机窗口中的“企业管理费”“利润”“一般风险费”的名称、规格、单位改为只读。
  468. return false;
  469. }
  470. return true;
  471. }
  472. }else {
  473. return false
  474. }
  475. },
  476. hasComposition:function (ration_glj,isRationType) {//判断是否有组成物,有则返回true 现在主材类型的工料机也有可能有组成物。
  477. let type = isRationType==true? ration_glj.subType:ration_glj.type;
  478. if(gljUtil.notEditType.indexOf(type)!=-1||type==gljType.MAIN_MATERIAL){
  479. let keyArray = isRationType==true? rationKeyArray:gljKeyArray;
  480. let con_key = this.getIndex(ration_glj,keyArray);
  481. var mixRatioMap = projectObj.project.projectGLJ.datas.mixRatioMap;
  482. if(mixRatioMap[con_key]&&mixRatioMap[con_key].length>0){
  483. return true;
  484. }
  485. }
  486. return false;
  487. },
  488. onRangeChanged: function (sender, args) {
  489. var me = gljOprObj;
  490. if(args.sheetName == 'quantity_detail'){
  491. me.batchUpdateQuantityDetail(args);
  492. }else {
  493. if (args.action == GC.Spread.Sheets.RangeChangedAction.clear) {
  494. args.editingText = null;
  495. }else if(args.action == GC.Spread.Sheets.RangeChangedAction.paste){
  496. args.editingText = args.sheet.getCell(args.row,args.col).value();
  497. }else {
  498. return;
  499. }
  500. if (args.sheetName == 'ration_glj') {
  501. me.onEditGLJSheet(args);
  502. }
  503. }
  504. },
  505. batchUpdateQuantityDetail:function (args) {
  506. let me = gljOprObj;
  507. let updateArray = [];
  508. for(let i =0;i<args.changedCells.length;i++){
  509. let c = args.changedCells[i];
  510. let tem = {
  511. row:c.row,
  512. col:c.col,
  513. editingText:args.sheet.getCell(c.row,c.col).text(),
  514. sheet:args.sheet,
  515. sheetName:args.sheetName,
  516. index:i
  517. };
  518. updateArray.push(tem);
  519. }
  520. if(updateArray.length>0){
  521. updateArray.length == 1?me.onEditDetailSheet(updateArray[0]):me.onEditDetailSheet(updateArray[0],updateCallback);
  522. }
  523. function updateCallback(i_args) {
  524. let index = i_args.index;
  525. if(index < updateArray.length-1){
  526. let nextIndex = index+1;
  527. updateArray[nextIndex].replace = i_args.replace;
  528. if(nextIndex == updateArray.length-1){//是最后一个,则不用调callback了
  529. me.onEditDetailSheet(updateArray[nextIndex]);
  530. }else {
  531. me.onEditDetailSheet(updateArray[nextIndex],updateCallback);
  532. }
  533. }
  534. }
  535. },
  536. showDataIfRationSelect: function (node,selectedNodeId) {
  537. var isShow = false;
  538. if(projectReadOnly && this.setting.view.lockColumns){
  539. this.setting.view.lockColumns = null;
  540. }
  541. if(selectedNodeId){
  542. this.selectedNodeId = selectedNodeId;
  543. }
  544. if (node) {
  545. if (this.selectedNodeId && this.selectedNodeId == node.getID()) {
  546. return;
  547. } else {
  548. //恢复底色
  549. this.sheet.setStyle(this.sheet.getActiveRowIndex(), -1, this.getSelStyle(false,this.setting.style));
  550. this.selectedNodeId = node.getID();
  551. }
  552. if (node.sourceType == "ration") {
  553. if(node.data.type==rationType.gljRation){
  554. if($('#linkGLJ').hasClass('active')) this.showMixRatio(node);
  555. }else {
  556. if($('#linkGLJ').hasClass('active')){
  557. this.showRationGLJData(node);
  558. subObj.showGljSubTabData();
  559. // MaterialController.showReplaceDiv(node);
  560. }
  561. if($('#linkAZZJF').hasClass('active')) installationFeeObj.showRationInstallationData(node);
  562. if($('#linkMBZM').hasClass('active')) mbzm_obj.showMBZMData(node);
  563. }
  564. isShow = true;
  565. }
  566. if(node.sourceType == ModuleNames.ration_glj){
  567. if($('#linkGLJ').hasClass('active')) this.showMixRatio(node);
  568. MaterialController.hideReplaceDiv();
  569. isShow = true;
  570. }
  571. if($('#linkGCLMX').hasClass('active')) this.showQuantityDetailData(node);
  572. } else {
  573. this.selectedNodeId = null;
  574. }
  575. if (!isShow) {
  576. this.clearSheetData();
  577. MaterialController.hideReplaceDiv();
  578. }
  579. //子目换算
  580. //zmhs_obj.showZMHSData(node);
  581. // $('#dropdown').hide();
  582. },
  583. showMixRatio:function (node) {//显示组成物到定额工料机
  584. let mixRatioMap = projectObj.project.projectGLJ.datas.mixRatioMap;
  585. let projectGljs = projectObj.project.projectGLJ.datas.gljList;
  586. let indexArray =node.sourceType==ModuleNames.ration?rationKeyArray:gljKeyArray;
  587. let connect_index = this.getIndex(node.data,indexArray);
  588. let gljList=[];
  589. if(mixRatioMap[connect_index]){ //说明是有组成物的类型
  590. gljList = this.getMixRationShowDatas(mixRatioMap[connect_index], projectGljs);
  591. }
  592. if(gljList.length>0){//计算总消耗量
  593. if(node.sourceType==ModuleNames.ration){
  594. this.calcMixRationTotalQuantity(gljList,node.data.quantity);
  595. }else {
  596. let totalQuantity = this.getTotalQuantity(node.data);
  597. this.calcMixRationTotalQuantity(gljList,totalQuantity)
  598. }
  599. }
  600. this.sheetData = gljList;
  601. this.sheet.setRowCount(0);
  602. this.sheetData = gljUtil.sortRationGLJ(this.sheetData);
  603. this.sheet.getRange(-1, 0, -1, 1).cellType(this.getTreeNodeCellType([]));
  604. sheetCommonObj.showData(this.sheet, this.setting, this.sheetData);
  605. //初始选择
  606. this.preGljSelection = null;
  607. this.sheetInitSelection({row: this.sheet.getActiveRowIndex(), col: 0});
  608. this.sheet.getRange(-1, 0, -1, this.setting.header.length).locked(true);//锁住定额工料机的所有列
  609. this.detailSheet.getRange(-1, 0, -1, this.detailSetting.header.length).locked(true);//锁住工程量明细的所有列
  610. },
  611. showRationGLJData: function (node) {
  612. let startTime = +new Date();
  613. let gljList = [];
  614. let ration_glj = projectObj.project.ration_glj;
  615. node = node ? node : projectObj.project.mainTree.selected;
  616. if (node.sourceType == ModuleNames.ration) {
  617. if(node.data.type==rationType.gljRation){
  618. this.showMixRatio(node);
  619. }else {
  620. let ration = node.data;
  621. gljList = this.filterGljByRation(ration, ration_glj.datas);
  622. this.showInSheet(gljList);
  623. }
  624. }else if(node.sourceType == ModuleNames.ration_glj){
  625. this.showMixRatio(node);
  626. }
  627. },
  628. showRationGLJSheetData: function (init) {
  629. let me = this;
  630. let selected = this.sheet.getSelections();
  631. this.combineWithProjectGlj(this.sheetData);
  632. this.sheet.setRowCount(0);
  633. this.sheetData = gljUtil.sortRationGLJ(this.sheetData);
  634. this.sumQuantity();//计算总消耗量
  635. this.addMixRatioToShow();//显示组成物信息
  636. let itreeTime = +new Date();
  637. this.initRationTree(init,this.getUnitPriceCodeMap());
  638. sheetCommonObj.showData(this.sheet, this.setting, this.sheetData,null,function () {
  639. if(me.mainTreeSelectedChange == true){
  640. me.sheet.setSelection(0,1,1,1);//默认选中第一行,第二列(名称列)
  641. me.mainTreeSelectedChange = false;
  642. }else if(selected){//定位光标到之前的位置
  643. me.sheet.setSelection(selected[0].row,selected[0].col,selected[0].rowCount,selected[0].colCount);
  644. }
  645. //初始选择
  646. me.preGljSelection = null;
  647. me.sheetInitSelection({row: me.sheet.getActiveRowIndex(), col: me.sheet.getActiveColumnIndex()});
  648. });
  649. },
  650. getSelectedRationGlj:function () {
  651. let selected = this.sheet.getSelections()[0];
  652. let ration_glj = this.sheetData[selected.row];
  653. return ration_glj;
  654. },
  655. getUnitPriceCodeMap : function () {//取单价文件中,编码前缀一样的映射表
  656. let codeMap = {};
  657. let priceMap = projectObj.project.projectGLJ.datas.unitPriceMap;
  658. if(priceMap){
  659. for(let connectKey in priceMap){
  660. let code = priceMap[connectKey].code;
  661. let name = priceMap[connectKey].name;
  662. let specs = priceMap[connectKey].specs;
  663. if(code){
  664. let displayText = code +" "+name +" "+specs;
  665. let preCode = code.split("-")[0];
  666. if(codeMap[preCode]) {
  667. codeMap[preCode].push({text:displayText,value:connectKey});
  668. }else {
  669. codeMap[preCode]=[{text:displayText ,value:connectKey}];
  670. }
  671. }
  672. }
  673. }
  674. return codeMap;
  675. },
  676. initRationTree: function (init,codeMap) {
  677. this.sheet.suspendPaint();
  678. this.sheet.suspendEvent();
  679. this.sheet.setRowCount(this.sheetData.length >30?this.sheetData.length:30);
  680. for (var i = 0; i < this.sheetData.length; i++) {
  681. let options = this.getCodeOptions(this.sheetData[i],codeMap);
  682. this.sheet.setCellType(i, 0,this.getTreeNodeCellType(this.sheetData,options),GC.Spread.Sheets.SheetArea.viewport);
  683. if (this.sheetData[i].hasOwnProperty('subList')) {
  684. var collapsed = this.sheetData[i].collapsed == undefined ? true : this.sheetData[i].collapsed;
  685. if (collapsed == true) {
  686. this.sheet.getRange(i + 1, -1, this.sheetData[i].subList.length, -1).visible(false);
  687. }
  688. }
  689. }
  690. this.sheet.resumeEvent();
  691. this.sheet.resumePaint();
  692. },
  693. getCodeOptions:function (recode,codeMap) {
  694. let options = [];
  695. if(recode.isMixRatio ===true){
  696. return null;
  697. }
  698. let code = recode.code;
  699. if(code) {
  700. let preCode = code.split("-")[0];
  701. if( codeMap[preCode]) options = codeMap[preCode];
  702. if(options.length>0) _.remove(options,{'value':gljOprObj.getIndex(recode, gljKeyArray)})//去掉本身
  703. }
  704. return _.sortBy(options,'text');
  705. },
  706. filterGljByRation: function (ration, datas) {
  707. var gljList = [];
  708. if (datas && datas.length > 0) {
  709. gljList = _.filter(datas, {'rationID': ration.ID})
  710. }
  711. return gljList;
  712. },
  713. showInSheet: function (gljList) {
  714. this.sheetData = gljList;
  715. this.showRationGLJSheetData(true);
  716. },
  717. sumQuantity: function (node) {
  718. if (this.sheetData.length > 0) {
  719. node = node ? node : projectObj.project.mainTree.selected;
  720. let ration = node.data;
  721. let quantity = ration.quantity;
  722. quantity = (quantity == 0 || quantity == undefined || quantity == null || quantity == "") ? 0 : quantity;
  723. for (let glj of this.sheetData) {
  724. glj.totalQuantity= this.getTotalQuantity(glj,ration);
  725. }
  726. }
  727. },
  728. getTotalQuantity:function(glj,ration){
  729. if (glj.isMixRatio == true) return;//如果是用于显示的组成物,则不用计算,跳过
  730. ration=ration?ration: _.find(projectObj.project.Ration.datas,{"ID":glj.rationID});
  731. glj.totalQuantity = gljUtil.getTotalQuantity(glj,ration,getDecimal("ration.quantity"),getDecimal("glj.quantity"));
  732. if (glj.hasOwnProperty('subList')) {//需要计算glj下挂的组成物的总消耗量
  733. this.calcMixRationTotalQuantity(glj.subList,glj.totalQuantity);
  734. }
  735. return glj.totalQuantity;
  736. },
  737. calcMixRationTotalQuantity(mList,pTotal){ //计算组成物的总消耗量
  738. for (let subG of mList) {
  739. subG.rationItemQuantity = scMathUtil.roundForObj(subG.rationItemQuantity, getDecimal("glj.quantity"));
  740. subG.totalQuantity = scMathUtil.roundToString(subG.rationItemQuantity * pTotal, getDecimal("glj.quantity"));
  741. }
  742. },
  743. addMixRatioToShow: function () {
  744. var newList = [];
  745. _.remove(this.sheetData, {'isMixRatio': true});
  746. for (var i = 0; i < this.sheetData.length; i++) {
  747. newList.push(this.sheetData[i]);
  748. if (this.sheetData[i].hasOwnProperty('subList')) {
  749. newList = newList.concat(this.sheetData[i].subList);
  750. }
  751. }
  752. this.sheetData = newList;
  753. },
  754. combineWithProjectGlj: function (ration_gljs,needRatio=true,ration,p_gljMap) {
  755. let projectGLJData = projectObj.project.projectGLJ.datas;
  756. let projectGljs = projectGLJData.gljList;
  757. let mixRatioMap = projectGLJData.mixRatioMap;
  758. if (ration_gljs && ration_gljs.length > 0 && projectGljs && projectGljs.length > 0) {
  759. let pgljMap = p_gljMap?p_gljMap:_.indexBy(projectGljs, 'id');
  760. for (let i = 0; i < ration_gljs.length; i++) {
  761. let glj = pgljMap[ration_gljs[i].projectGLJID];
  762. if (glj) {
  763. if(projectObj.project.projectGLJ.isEstimateType(ration_gljs[i].type )){
  764. ration_gljs[i].isEstimate = glj.is_evaluate;
  765. }
  766. ration_gljs[i].shortName =projectObj.project.projectGLJ.getShortNameByID(ration_gljs[i].type);
  767. ration_gljs[i].isAdd = glj.unit_price.is_add;
  768. ration_gljs[i]=this.setGLJPrice(ration_gljs[i],glj);//设置工料机价格
  769. let connect_index = this.getIndex(glj, gljKeyArray);
  770. if (needRatio==true&&mixRatioMap.hasOwnProperty(connect_index)) {
  771. let mixRatios = this.getMixRationShowDatas(mixRatioMap[connect_index], projectGljs);
  772. ration_gljs[i].subList = mixRatios;
  773. }
  774. if(ration) gljOprObj.getTotalQuantity(ration_gljs[i], ration);
  775. }else {
  776. console.log("没有找到工料机:"+ration_gljs[i].name)
  777. }
  778. }
  779. }
  780. return ration_gljs;
  781. },
  782. setGLJPrice:function (data,glj,isRadio = false) {//isRadio 标记是否算组成物的价格
  783. let proGLJ = projectObj.project.projectGLJ;
  784. let calcOptions=projectObj.project.projectInfo.property.calcOptions;
  785. let decimalObj = projectObj.project.projectInfo.property.decimal;
  786. let labourCoeDatas = projectObj.project.labourCoe.datas;
  787. let tenderCoe = projectObj.project.projectGLJ.getTenderPriceCoe(glj);
  788. glj = glj?glj:_.find(proGLJ.datas.gljList, {'id': data.projectGLJID});
  789. if(glj){
  790. let result = gljUtil.getGLJPrice(glj,proGLJ.datas,calcOptions,labourCoeDatas,decimalObj,isRadio,_,scMathUtil,tenderCoe);
  791. data.marketPrice = result.marketPrice;
  792. data.tenderPrice = result.tenderPrice;
  793. data.basePrice = result.basePrice;
  794. data.adjustPrice = result.adjustPrice;
  795. data.marketUnitFee = data.marketPrice;//更新树节点市场单价列的值
  796. data.taxRate = glj.unit_price.taxRate;//税率
  797. }
  798. return data;
  799. },
  800. getBasePrice:function (treeNode) {//造价书中的工料机修改的节点要用到
  801. let proGLJ = projectObj.project.projectGLJ;
  802. let glj =_.find(proGLJ.datas.gljList, {'id': treeNode.data.projectGLJID});
  803. if(this.calcPriceDiff(glj)==true){
  804. return proGLJ.getBasePrice(glj);
  805. }else {
  806. return scMathUtil.roundForObj(treeNode.data.marketUnitFee,getDecimal("glj.unitPrice"));
  807. }
  808. },
  809. calcPriceDiff:function (glj) {
  810. let calcOptions=projectObj.project.projectInfo.property.calcOptions;
  811. return gljUtil.calcPriceDiff(glj,calcOptions);
  812. },
  813. getIndex(obj, pops){
  814. return gljUtil.getIndex(obj,pops);
  815. /* let t_index = '';
  816. let k_arr = [];
  817. for (let p of pops) {
  818. let tmpK = (obj[p] == undefined || obj[p] == null || obj[p] == '') ? 'null' : obj[p];
  819. k_arr.push(tmpK);
  820. }
  821. t_index = k_arr.join("|-|");
  822. return t_index;*/
  823. },
  824. getConditionByKey(conKey){//将连接字符串转换成对象
  825. let valueArray = conKey.split("|-|");
  826. let obj ={};
  827. for(let i = 0;i<valueArray.length;i++){
  828. if(valueArray[i]!='null'){
  829. if(gljKeyArray[i]=='type'){
  830. valueArray[i] = parseInt(valueArray[i]);
  831. }
  832. obj[gljKeyArray[i]]=valueArray[i];
  833. }
  834. }
  835. return obj;
  836. },
  837. getMixRationShowDatas: function (mixRatioList, projectGljs) {
  838. var temRationGLJs = [];
  839. for (var i = 0; i < mixRatioList.length; i++) {
  840. let mIndex = gljOprObj.getIndex(mixRatioList[i],gljKeyArray);
  841. var pg = _.find(projectGljs, function (item) {
  842. return gljOprObj.getIndex(item,gljKeyArray) == mIndex
  843. });//改关联关系
  844. if(pg){
  845. let tem = {
  846. projectGLJID: pg.id,
  847. code: pg.code,
  848. name: pg.name,
  849. specs: pg.specs,
  850. unit: pg.unit,
  851. type:mixRatioList[i].type,
  852. shortName: projectObj.project.projectGLJ.getShortNameByID(mixRatioList[i].type),
  853. consumption:mixRatioList[i].consumption,
  854. rationItemQuantity: mixRatioList[i].consumption,
  855. // quantity:mixRatioList[i].consumption,
  856. /* basePrice: pg.unit_price.base_price,
  857. marketPrice: pg.unit_price.market_price,
  858. adjustPrice: pg.adjust_price,*/
  859. //isEstimate: pg.is_evaluate,
  860. isMixRatio: true,
  861. isAdd: pg.unit_price.is_add,
  862. GLJID: pg.glj_id
  863. };
  864. if(projectObj.project.projectGLJ.isEstimateType(pg.type)){
  865. tem.isEstimate = pg.is_evaluate;
  866. }
  867. this.setGLJPrice(tem,pg);
  868. temRationGLJs.push(tem);
  869. }else {
  870. console.log("没有找到工料机:"+mIndex)
  871. }
  872. }
  873. temRationGLJs = gljUtil.sortRationGLJ(temRationGLJs);
  874. return temRationGLJs;
  875. },
  876. showQuantityDetailData: function (node) {
  877. node = node ? node : projectObj.project.mainTree.selected;
  878. var quantity_detail = projectObj.project.quantity_detail;
  879. let field = node.sourceType == ModuleNames.ration?'rationID':'billID';
  880. let details = quantity_detail.getListByID(node.data.ID,field);
  881. sheetCommonObj.showData(this.detailSheet, this.detailSetting, details);
  882. this.detailData = details;
  883. if (MainTreeCol.readOnly.forQuantifyDetail(node)) {
  884. this.detailSheet.getRange(-1, 0, -1, this.detailSetting.header.length).locked(true);
  885. }
  886. },
  887. clearSheetData: function () {
  888. if($('#linkGLJ').hasClass('active')){
  889. sheetCommonObj.showData(this.sheet, this.setting, []);
  890. }
  891. if($('#linkAZZJF').hasClass('active')){
  892. installationFeeObj.rationInstallSheet.setRowCount(0);//清除combobox cell
  893. sheetCommonObj.showData(installationFeeObj.rationInstallSheet, installationFeeObj.rationInstallSetting, []);
  894. }
  895. // sheetCommonObj.showData(this.detailSheet,this.detailSetting,[]);
  896. this.sheetData = [];
  897. installationFeeObj.rationInstallData = [];
  898. //this.detailData=[];
  899. },
  900. updateRationGLJ: function (args) {
  901. var me = this;
  902. var updateField = me.setting.header[args.col].dataCode;
  903. var recode = me.sheetData[args.row];
  904. var newval;
  905. if(!me.rationGLJEditCheck(args)){
  906. recode? me.sheet.getCell(args.row, args.col).value(recode[updateField]): me.sheet.getCell(args.row, args.col).value(null);
  907. return;
  908. }
  909. if(args.editingText){
  910. args.editingText = args.editingText.replace(/[\r\n]/g, "");//去掉回车换行等字符;
  911. me.sheet.getCell(args.row, args.col).value(args.editingText);
  912. }
  913. if (updateField == 'marketPrice' || updateField == 'customQuantity' || updateField == 'basePrice') {
  914. if (args.editingText == null) {
  915. updateField == 'marketPrice' ? newval = 0 : newval = "";
  916. } else {
  917. var decimal = updateField == 'customQuantity' ? getDecimal("glj.quantity") : 6;//对于市场价和定额价,这里只是中间的小数位数,后面更新前会根据有没有组成物再取值
  918. newval = number_util.checkNumberValue(args.editingText, decimal);
  919. if (newval == null) {
  920. me.sheet.getCell(args.row, args.col).value(recode[updateField]);
  921. return;
  922. }
  923. }
  924. } else {
  925. if (updateField == 'name' || updateField == 'unit') {
  926. if (args.editingText === null) {
  927. alert(me.setting.header[args.col].headerName + '不能为空!');
  928. me.sheet.getCell(args.row, args.col).value(recode[updateField]);
  929. return;
  930. }
  931. }
  932. if(updateField == 'code'){
  933. if (!gljUtil.isDef(args.editingText)||args.editingText==''||args.editingText.indexOf('|-|') === -1||this.isRationGLJExit(args.editingText)) {//说明是选中自已,或者是已存在的工料机
  934. me.sheet.getCell(args.row, args.col).value(recode[updateField]);
  935. return;
  936. }
  937. }
  938. newval = args.editingText == null ? "" : args.editingText;
  939. }
  940. if (newval === recode[updateField]) {//如果值完全相等,则不需要更新
  941. return
  942. }
  943. if (updateField == 'marketPrice' || updateField == 'basePrice') {
  944. projectObj.project.projectGLJ.updatePriceFromRG(recode, updateField, newval);
  945. }else if(updateField == 'code'){//替换单价文件中已经有的工料机
  946. projectObj.project.ration_glj.updateRationGLJByChangeCode(recode, updateField, newval);
  947. }else if(me.setting.navigationRightCol.indexOf(updateField) != -1){//对于名称、规格、单位先跳到下一列,保存至缓存
  948. me.setToEditCache(recode,updateField, newval,args);
  949. } else {
  950. projectObj.project.ration_glj.updateRationGLJByEdit(recode, updateField, newval);
  951. }
  952. },
  953. setToEditCache:function(recode,updateField,value,args){
  954. let me = this;
  955. if(me.rationGljEditObj == null){
  956. me.rationGljEditObj = {
  957. recode:recode,
  958. doc:{},
  959. row:args.row
  960. }
  961. me.rationGljEditObj.doc[updateField] = value;
  962. }else {
  963. if(me.rationGljEditObj.recode.ID == recode.ID){//确保编辑的是同一条数据
  964. me.rationGljEditObj.doc[updateField] = value;
  965. }
  966. }
  967. },
  968. isRationGLJExit:function (connectKey) {
  969. for(let rg of gljOprObj.sheetData){
  970. if(rg.isMixRatio == true){
  971. continue;
  972. }
  973. if(gljOprObj.getIndex(rg, gljKeyArray) == connectKey){//存在一样的工料机
  974. return true;
  975. }
  976. }
  977. return false;
  978. },
  979. updateRationTypeGLJ: function (value, node, fieldName,editingText) {
  980. let newval;
  981. let updatePrice = false;
  982. if (fieldName == "marketUnitFee") {
  983. updatePrice = true;
  984. if (value == null) {
  985. newval = 0;
  986. } else {
  987. var decimal = getDecimal("glj.unitPrice");
  988. newval = number_util.checkNumberValue(value, decimal);
  989. }
  990. } else {
  991. if (value != null) {
  992. projectObj.project.projectGLJ.updatePropertyFromMainSpread(node, fieldName, value,editingText);
  993. return;
  994. }
  995. }
  996. if (newval && updatePrice == true) {
  997. projectObj.project.projectGLJ.updatePriceFromRG(node.data, "marketPrice", newval);
  998. return
  999. }
  1000. projectObj.mainController.refreshTreeNode([node]);
  1001. },
  1002. updateIsEstimate:function (args, newval) {
  1003. var me = gljOprObj;
  1004. if(me.setting.header[args.col].dataCode=="isEstimate"){
  1005. var pspread= new ProjectGLJSpread();
  1006. var recode = me.sheetData[args.row];
  1007. let projectGljs = projectObj.project.projectGLJ.datas.gljList;
  1008. let glj = _.find(projectGljs, {'id': recode.projectGLJID});
  1009. if(glj){
  1010. glj["is_evaluate"]=newval;
  1011. args.fromRG=true;
  1012. pspread.postUpdate(recode.projectGLJID,"is_evaluate",newval,args,null,successTrigger);
  1013. }
  1014. }
  1015. },
  1016. showLibGLJSheetData: function () {
  1017. this.gljLibSheetData = _.sortBy(this.gljLibSheetData, 'code');
  1018. sheetCommonObj.showData(this.gljLibSheet, this.gljLibSheetSetting, this.gljLibSheetData, gljOprObj.distTypeTree);
  1019. this.gljLibSheet.setRowCount(this.gljLibSheetData.length);
  1020. },
  1021. // 根据人材机类型,设置人材机类型显示名称
  1022. setTypeName: function (distTypeData, data) {
  1023. data.forEach(item => {
  1024. let typeData = distTypeData.find(typeItem => typeItem.value === item.gljType);
  1025. if (typeData) {
  1026. item.typeName = typeData.text;
  1027. }
  1028. });
  1029. },
  1030. /*
  1031. * 获取分页查询所需要的条件数据
  1032. * @param {Boolean}init 是否是初始化
  1033. * {Boolean}reset 是否重置数据 (点击分类树等)
  1034. * {Boolean}location 是否定位(替换初始化)
  1035. * {Number}index 下一页数据开始索引,根据这个值获取上次分页最大的编码数据(不用skip进行分页,skip跳过大量数据会降低性能,用$gt: data.code)
  1036. * @return {Object}
  1037. * */
  1038. getPagingCondition: function (init, reset, location, index) {
  1039. // 上一次分页的最末人材机编码,index为0时,code为空
  1040. const code = gljOprObj.AllRecode && gljOprObj.AllRecode[index - 1] ? gljOprObj.AllRecode[index - 1].code : '';
  1041. // 初始化情况下的条件
  1042. let condition = {
  1043. code,
  1044. // 是否重置数据
  1045. reset,
  1046. // 是否定位
  1047. location,
  1048. index,
  1049. // 限制条数
  1050. limit: 50,
  1051. // 初始化
  1052. init: init,
  1053. // 所在部分(标准、补充)
  1054. type: this.pagingType.stdGLJ,
  1055. // 替换数据,替换操作下有数据:编码、名称、规格、单位、类型
  1056. replace: null,
  1057. // 添加组成物的查询扩展
  1058. queryExtend: {},
  1059. // 所在分类节点
  1060. classList: [],
  1061. // 搜索文本
  1062. search: ''
  1063. };
  1064. // 触发入口(添加、替换、批量替换)
  1065. const actionType = $('#actionType').val();
  1066. const replaceActions = ['replace', 'm_replace'];
  1067. // 替换相关
  1068. if (replaceActions.includes(actionType)) {
  1069. // 定额人材机界面选中的人材机
  1070. const selected = gljOprObj.sheetData[gljContextMenu.selectedRow];
  1071. condition.replace = {
  1072. code: selected.code,
  1073. name: selected.name,
  1074. specs: selected.specs,
  1075. unit: selected.unit,
  1076. gljType: selected.type
  1077. };
  1078. } else if (actionType === 'addMix') {
  1079. condition.queryExtend = projectGljObject.getQueryExtForMixRatio();
  1080. }
  1081. if (init) {
  1082. return condition;
  1083. }
  1084. condition.init = false;
  1085. // 标准、补充的选择
  1086. if ($('#glj_tree_div').is(':visible')) {
  1087. let radioType = $("input[name='glj']:checked").val();
  1088. condition.type = this.pagingType[radioType];
  1089. }
  1090. // 选中的分类
  1091. if (this.treeObj) {
  1092. let selNode = this.treeObj.getNodeByParam('ID', this.gljCurTypeId);
  1093. // 不为最顶层节点时,才赋值给withinClass
  1094. if (selNode && selNode.ParentID !== -1) {
  1095. const classList = this.parentNodeIds['_pNodeId_' + this.gljCurTypeId];
  1096. condition.classList = classList ? classList : [this.gljCurTypeId];
  1097. }
  1098. }
  1099. // 搜索文本
  1100. let searchStr = $('#gljSearchKeyword').val().trim();
  1101. if(searchStr){
  1102. condition.search = searchStr;
  1103. }
  1104. return condition;
  1105. },
  1106. filterLibGLJSheetData: function () {
  1107. let me = this;
  1108. let val = $("input[name='glj']:checked").val();
  1109. if (val == 'allGljs') {
  1110. me.gljLibSheetData = me.stdGLJ.concat(me.complementaryGLJs);
  1111. } else {
  1112. me.gljLibSheetData = me[val];
  1113. }
  1114. if ($('#actionType').val() == 'replace' || $('#actionType').val() == 'm_replace') {
  1115. me.filterLibGLJByType();
  1116. }else if($('#actionType').val() == 'addMix'){
  1117. projectGljObject.filterLibGLJForMixRatio();
  1118. }
  1119. //文本筛选
  1120. let searchStr = $('#gljSearchKeyword').val();
  1121. if(searchStr && searchStr.trim() != ''){
  1122. let reg = new RegExp(searchStr);
  1123. me.gljLibSheetData = _.filter(me.gljLibSheetData, function (data) {
  1124. return reg.test(data.code) || reg.test(data.name);
  1125. });
  1126. }
  1127. if (me.gljCurTypeId == undefined) {
  1128. return;
  1129. }
  1130. if (me.parentNodeIds["_pNodeId_" + me.gljCurTypeId]) {
  1131. me.gljLibSheetData = _.filter(me.gljLibSheetData, function (n) {
  1132. return _.includes(me.parentNodeIds["_pNodeId_" + me.gljCurTypeId], n.gljClass);
  1133. });
  1134. } else {
  1135. me.gljLibSheetData = _.filter(me.gljLibSheetData, {'gljClass': me.gljCurTypeId});
  1136. }
  1137. },
  1138. setGLJSelection: function (args, newVal) {
  1139. if ($('#actionType').val() == 'add' || $('#actionType').val() == 'insert'|| $('#actionType').val() == 'addMix') {
  1140. this.addGLJsSelection(args, newVal);
  1141. } else {
  1142. this.replaceGLJSelection(args, newVal);
  1143. }
  1144. },
  1145. addGLJsSelection: function (args, newVal) {
  1146. const curGLJ = this.AllRecode[args.row];
  1147. const con_key = this.getIndex(curGLJ, gljLibKeyArray);
  1148. if (newVal == 1) {
  1149. this.GLJSelection.push(con_key);
  1150. } else if (newVal == 0) {
  1151. _.pull(this.GLJSelection, con_key);
  1152. }
  1153. },
  1154. replaceGLJSelection: function (args, newVal) {
  1155. var me = this;
  1156. var oldSelection = this.GLJSelection[0];
  1157. if (newVal == 0) {
  1158. args.sheet.getCell(args.row, args.col).value(1);
  1159. return;
  1160. }
  1161. const curGLJ = this.AllRecode[args.row];
  1162. const connectKey = this.getIndex(curGLJ, gljLibKeyArray);
  1163. this.GLJSelection = [connectKey];
  1164. var oindex = _.findIndex(this.AllRecode, function (item) {
  1165. var i_key = me.getIndex(item, gljLibKeyArray);
  1166. return oldSelection == i_key;
  1167. });
  1168. if (oindex != -1) {
  1169. args.sheet.getCell(oindex, args.col).value(0);
  1170. } else {
  1171. var oldData = _.find(gljOprObj.AllRecode, function (item) {
  1172. var i_key = me.getIndex(item, gljLibKeyArray);
  1173. return oldSelection == i_key;
  1174. });
  1175. }
  1176. },
  1177. filterLibGLJByType: function () {
  1178. var me = this;
  1179. var selected = me.sheetData[gljContextMenu.selectedRow];
  1180. //当前人材机类型是“混凝土、砂浆、配合比、商品混凝土、商品砂浆”时,筛选的可替换的人材机类型应是“混凝土、或砂浆、或配合比、或商品混凝土、或商品砂浆”。
  1181. let materialTypes = [202, 203, 204, 205, 206];//除了普通材料
  1182. let filterTypes = materialTypes.includes(selected.type) ? materialTypes : [selected.type];
  1183. me.gljLibSheetData = _.filter(me.gljLibSheetData, function (data) {
  1184. return filterTypes.includes(data.gljType);
  1185. });
  1186. },
  1187. getComboData: function (gljDistType) {
  1188. let me = this;
  1189. let distType;
  1190. let distTypeTree = {
  1191. prefix: 'gljType',
  1192. distTypes: {},
  1193. comboDatas: [],
  1194. distTypesArr: []
  1195. };
  1196. gljDistType.forEach(function (typeData) {
  1197. let typeObj = {
  1198. data: typeData,
  1199. children: [],
  1200. parent: null
  1201. }
  1202. distTypeTree.distTypes[distTypeTree.prefix + typeData.ID] = typeObj;
  1203. distTypeTree.distTypesArr.push(typeObj);
  1204. });
  1205. gljDistType.forEach(function (typeData) {
  1206. distType = distTypeTree.distTypes[distTypeTree.prefix + typeData.ID];
  1207. let parent = distTypeTree.distTypes[distTypeTree.prefix + typeData.ParentID];
  1208. if (parent) {
  1209. distType.parent = parent;
  1210. parent.children.push(distType);
  1211. }
  1212. });
  1213. distTypeTree.distTypesArr.forEach(function (distTypeObj) {
  1214. if (distTypeObj.data.fullName !== '材料' && distTypeObj.data.fullName !== '机械') {
  1215. distTypeTree.comboDatas.push({text: distTypeObj.data.fullName, value: distTypeObj.data.ID});
  1216. }
  1217. });
  1218. return distTypeTree;
  1219. },
  1220. doInsertGLJ: function () {
  1221. var me = this;
  1222. var selected = projectObj.project.mainTree.selected;
  1223. var project = projectObj.project;
  1224. if (me.GLJSelection.length <= 0) {
  1225. return;
  1226. }
  1227. $.bootstrapLoading.start();
  1228. project.ration_glj.insertGLJAsRation(me.GLJSelection, selected, function (parentNodeID,nextNodeID,data) {
  1229. let newNode=null;
  1230. for (let r_glj of data) {
  1231. r_glj.quantity = r_glj.quantity + "";
  1232. project.Ration.datas.push(r_glj);
  1233. }//要先更新树节点工程量,加载项目工料机并计算消耗量才有值
  1234. project.projectGLJ.loadData(function () {
  1235. for(let r_glj of data){
  1236. r_glj = me.setGLJPrice(r_glj);//设置工料机价格
  1237. newNode = project.mainTree.insert(parentNodeID, nextNodeID, r_glj.ID);
  1238. newNode.source = r_glj;
  1239. newNode.sourceType = project.Ration.getSourceType();
  1240. newNode.data = r_glj;
  1241. ProjectController.syncDisplayNewNode(projectObj.mainController, newNode);
  1242. }
  1243. project.calcProgram.calcLeafAndSave(newNode.parent);//计算父级清单的所有子节点
  1244. projectObj.mainController.refreshTreeNode([newNode]);
  1245. if(me.hasComposition(newNode.data,true)){
  1246. me.showMixRatio(newNode);
  1247. }else {
  1248. me.showRationGLJSheetData();
  1249. }
  1250. $.bootstrapLoading.end();
  1251. });
  1252. })
  1253. },
  1254. doAddGLJ: function () {
  1255. var selected = projectObj.project.mainTree.selected;
  1256. var project = projectObj.project;
  1257. gljOprObj.GLJSelection = _.filter(gljOprObj.GLJSelection, function (n) {
  1258. var rg = _.find(gljOprObj.sheetData, function (item) {
  1259. if(item.isMixRatio == true){
  1260. return false;
  1261. }
  1262. var i_key = gljOprObj.getIndex(item, gljKeyArray);
  1263. return n == i_key
  1264. });
  1265. return rg ? false : true;
  1266. })
  1267. if (gljOprObj.GLJSelection.length > 0 && selected && selected.sourceType == ModuleNames.ration) {
  1268. project.ration_glj.addGLJByLib(gljOprObj.GLJSelection, selected.data, function (result) {
  1269. if (result) {
  1270. selected.data.adjustState = result.adjustState;
  1271. //project.ration_glj.datas = project.ration_glj.datas.concat(result.newRecodes);//显示和缓存统一,这样的话就不用更新两个位置了
  1272. project.ration_glj.datas = project.ration_glj.datas.concat(result.showData);
  1273. gljOprObj.sheetData = gljOprObj.sheetData.concat(result.showData);
  1274. project.projectGLJ.loadNewProjectGLJToCaches(result.projectGLJList,true);
  1275. project.ration_glj.addToMainTree(result.showData);
  1276. gljOprObj.showRationGLJSheetData();
  1277. project.calcProgram.calcAndSave(selected);
  1278. projectObj.mainController.refreshTreeNode([selected]);
  1279. $.bootstrapLoading.end();
  1280. }
  1281. });//doc.rationID=selected.data.ID;
  1282. }
  1283. },
  1284. doReplaceGLJ: function () {
  1285. let me = this;
  1286. let oldData = me.sheetData[gljContextMenu.selectedRow];
  1287. let project = projectObj.project;
  1288. let selectCode = gljOprObj.GLJSelection[0];
  1289. let selected = projectObj.project.mainTree.selected;
  1290. project.ration_glj.replaceGLJ(selectCode, oldData, function (result) {
  1291. if (result) {
  1292. //result.adjustState;
  1293. let glj_list = projectObj.project.ration_glj.datas;
  1294. let data = result.data;
  1295. let index = _.findIndex(gljOprObj.sheetData, {'ID': data.ID});
  1296. let list_index = _.findIndex(glj_list, {'ID': data.ID});
  1297. let nodes = [selected];
  1298. gljOprObj.sheetData[index] = data;
  1299. glj_list[list_index] = data;
  1300. project.projectGLJ.loadNewProjectGLJToCaches([result.projectGLJ],true);
  1301. gljOprObj.showRationGLJSheetData();
  1302. let node = project.ration_glj.updateGLJNodeAfterReplace(data);
  1303. if(node) nodes.push(node);
  1304. /*if (project.ration_glj.needShowToTree(data)) {//当替换的是主材或设备时,刷新对应的树节点
  1305. var node = project.ration_glj.findGLJNodeByID(data.ID);
  1306. if (node) {
  1307. project.ration_glj.transferToNodeData(data);
  1308. node.source = data;
  1309. node.data = data;
  1310. }
  1311. node ? nodes.push(node) : "";
  1312. }*/
  1313. //project.ration_glj.addToMainTree(data);
  1314. selected.data.adjustState = result.adjustState;
  1315. selected.data.name = result.name;
  1316. projectObj.mainController.refreshTreeNode(nodes);
  1317. project.calcProgram.calcAndSave(selected, async function () {
  1318. await OVER_HEIGHT.reCalcOverHeightFee();
  1319. await itemIncreaseFeeObj.calcItemIncreaseFeeByNodes([selected]);
  1320. });
  1321. $.bootstrapLoading.end();
  1322. }
  1323. })
  1324. },
  1325. doMReplaceGLJ: function () {
  1326. let me = this;
  1327. let oldData = me.sheetData[gljContextMenu.selectedRow];
  1328. let project = projectObj.project;
  1329. let selectCode = me.GLJSelection[0];
  1330. project.ration_glj.mReplaceGLJ(selectCode, oldData, function (result,updateMap) {
  1331. if(result == null){
  1332. return;
  1333. }
  1334. let data = result.data;
  1335. let stateList = result.stateList;
  1336. //let n_index = me.getIndex(data.query, gljKeyArray);
  1337. let nodes = [];
  1338. _.forEach(project.ration_glj.datas, function (t) {
  1339. // let t_index = me.getIndex(t, gljKeyArray);
  1340. if (updateMap[t.ID]) {
  1341. me.updateProperty(t, data.doc);
  1342. me.updateProperty(t, updateMap[t.ID]);
  1343. if (project.ration_glj.needShowToTree(t)) {//如果是造价书中的树节点,则也须刷新
  1344. project.ration_glj.transferToNodeData(t);
  1345. var node = project.ration_glj.findGLJNodeByID(t.ID);
  1346. node ? nodes.push(node):'';
  1347. }
  1348. }
  1349. })
  1350. project.projectGLJ.loadNewProjectGLJToCaches([result.projectGLJ],true);
  1351. me.showRationGLJSheetData();
  1352. var rationNodes = me.refreshStateAfterMreplace(stateList, nodes);
  1353. project.calcProgram.calcNodesAndSave(rationNodes, async function () {
  1354. await OVER_HEIGHT.reCalcOverHeightFee();
  1355. await await itemIncreaseFeeObj.calcItemIncreaseFeeByNodes(rationNodes);
  1356. });
  1357. $.bootstrapLoading.end();
  1358. })
  1359. },
  1360. updateProperty: function (obj, doc) {
  1361. _.forEach(doc, function (n, key) {
  1362. obj[key] = n;
  1363. });
  1364. },
  1365. refreshStateAfterMreplace: function (stateList, gljNodes) {
  1366. let nodes = [];
  1367. let rationNodes = [];
  1368. _.forEach(stateList, function (s) {
  1369. let node = _.find(projectObj.project.mainTree.items, function (n) {
  1370. return n.sourceType == ModuleNames.ration && n.data.ID == s.rationID;
  1371. })
  1372. if (node) {
  1373. node.data.adjustState = s.adjustState;
  1374. node.data.name = s.name;
  1375. nodes.push(node);
  1376. rationNodes.push(node);
  1377. }
  1378. });
  1379. gljNodes.length > 0 ? nodes = nodes.concat(gljNodes) : "";
  1380. projectObj.mainController.refreshTreeNode(nodes);
  1381. return rationNodes;
  1382. },
  1383. refreshView: function () {
  1384. let node = projectObj.project.mainTree.selected;
  1385. this.showDataIfRationSelect(node,"111111");
  1386. },
  1387. refreshTreeNode: function (obj) {
  1388. if (!obj) {
  1389. return;
  1390. }
  1391. let objectArray = [];
  1392. let nodes = [];
  1393. if (obj instanceof Array) {
  1394. objectArray.concat(obj);
  1395. } else {
  1396. objectArray.push(obj);
  1397. }
  1398. for (let o of objectArray) {
  1399. let node = this.updateDataNodeProperty(o.ID,o.data);
  1400. if (node) {
  1401. nodes.push(node);
  1402. }
  1403. }
  1404. projectObj.mainController.refreshTreeNode(nodes);
  1405. return nodes;
  1406. },
  1407. updateDataNodeProperty:function(nodeID,data){
  1408. let node = projectObj.project.mainTree.findNode(nodeID);
  1409. if (node) {
  1410. for (let k in data) {
  1411. node.data[k] = data[k];
  1412. }
  1413. }
  1414. return node;
  1415. },
  1416. getTreeNodeCellType: function (data,comboboxOptions) {
  1417. let ns = GC.Spread.Sheets;
  1418. let rectW = 10;
  1419. let rectH = 10;
  1420. let margin = 3;
  1421. function TreeNodeCellType() {
  1422. this.ctx = null;
  1423. }
  1424. TreeNodeCellType.prototype = comboboxOptions?sheetCommonObj.getDynamicCombo():new ns.CellTypes.Text();
  1425. TreeNodeCellType.prototype.paint = function (ctx, value, x, y, w, h, style, options) {
  1426. this.ctx= ctx;
  1427. if (style.backColor) {//先画背景色
  1428. ctx.save();
  1429. ctx.fillStyle = style.backColor;
  1430. ctx.fillRect(x, y, w, h);
  1431. ctx.restore();
  1432. } else {
  1433. ctx.clearRect(x, y, w, h);
  1434. }
  1435. if (value != null) {
  1436. let offset = margin + rectW + 6;
  1437. let recode = data[options.row];
  1438. if (recode && recode.hasOwnProperty('subList')) {
  1439. sheetCommonObj.drowRect(ctx, x, y, w, h,rectW,rectH,margin);
  1440. let collapsed = recode.collapsed == undefined ? true : recode.collapsed;//options.sheet.getTag(options.row,options.col);
  1441. sheetCommonObj.drowSymbol(ctx, x, y, w, h,rectW,rectH,margin, collapsed);
  1442. } else if (recode && recode.isMixRatio) {
  1443. let hasNext = data[options.row + 1] && data[options.row + 1].isMixRatio;
  1444. offset = sheetCommonObj.drowSubItem(ctx, x, y, w, h, offset,hasNext);
  1445. offset += 1;
  1446. }
  1447. arguments[2] = x + offset;
  1448. arguments[4] = w - offset;
  1449. //x = x + offset;
  1450. //w = w - offset;
  1451. GC.Spread.Sheets.CellTypes.Text.prototype.paint.apply(this, arguments);
  1452. }
  1453. };
  1454. TreeNodeCellType.prototype.getHitInfo = function (x, y, cellStyle, cellRect, context) {
  1455. if(x < cellRect.x+cellRect.width -15){//这里要判断点击的位置来决定return的内容,不能直接用combobox的方法
  1456. return {
  1457. x: x,
  1458. y: y,
  1459. row: context.row,
  1460. col: context.col,
  1461. cellStyle: cellStyle,
  1462. cellRect: cellRect,
  1463. sheetArea: context.sheetArea
  1464. };
  1465. }else {
  1466. return GC.Spread.Sheets.CellTypes.ComboBox.prototype.getHitInfo.apply(this, arguments);
  1467. }
  1468. };
  1469. TreeNodeCellType.prototype.processMouseDown = function (hitinfo) {
  1470. let recode = data[hitinfo.row];
  1471. if(hitinfo.x < hitinfo.cellRect.x+hitinfo.cellRect.width -15){
  1472. hitinfo.sheet.setTag(hitinfo.row,hitinfo.col,"locked")//通过这个来控制除了点击下拉框的三角形,点击其它地方不充许进入编辑状态,不然不好控制下拉框超出页面后调整滚动条
  1473. }
  1474. if (recode && recode.hasOwnProperty('subList')) {
  1475. let hoffset = hitinfo.cellRect.x + 3;
  1476. if (hitinfo.x > hoffset && hitinfo.x < hoffset + 10) {
  1477. let collapsed = recode.collapsed == undefined ? true : recode.collapsed;
  1478. collapsed = !collapsed
  1479. recode.collapsed = collapsed;
  1480. //hitinfo.sheet.setTag(hitinfo.row,hitinfo.col,collapsed);
  1481. hitinfo.sheet.getRange(hitinfo.row + 1, -1, recode.subList.length, -1).visible(!collapsed);
  1482. hitinfo.sheet.invalidateLayout();
  1483. hitinfo.sheet.repaint();
  1484. return;
  1485. }
  1486. }
  1487. if(comboboxOptions&&hitinfo.x > hitinfo.cellRect.x+hitinfo.cellRect.width -15){//点击了下拉框按钮,这里要判断下拉框是否会被挡住,从而决定是否自动调整滚动条
  1488. hitinfo.sheet.setTag(hitinfo.row,hitinfo.col,"");
  1489. sheetCommonObj.scrollSheetForOption(hitinfo.sheet,this.ctx,hitinfo.cellRect,hitinfo.row,comboboxOptions);//下拉框超出显示后自动调整滚动条
  1490. GC.Spread.Sheets.CellTypes.ComboBox.prototype.processMouseDown.apply(this, arguments);
  1491. }
  1492. };
  1493. let cellType = new TreeNodeCellType();
  1494. if(comboboxOptions){
  1495. cellType.editorValueType(GC.Spread.Sheets.CellTypes.EditorValueType.value);
  1496. cellType.itemHeight(comboboxOptions.length).items(comboboxOptions);
  1497. }
  1498. return cellType;
  1499. },
  1500. marketPriceReadOnly: function (node) {
  1501. let hasCom = false;
  1502. if(node.sourceType==ModuleNames.ration&&node.data.type==rationType.gljRation){
  1503. hasCom = this.hasComposition(node.data,true);
  1504. }else {
  1505. hasCom = this.hasComposition(node.data);
  1506. }
  1507. return hasCom;//2018-9-14 需求变更暂估工料机也能修改市场价原语句:return hasCom|| node.data.isEstimate == 1
  1508. },
  1509. locateZTree: function(ID) {
  1510. let zTree = $.fn.zTree.getZTreeObj("gljTree");
  1511. let node = null;
  1512. if (ID) node = zTree.getNodesByParam('ID', ID, null)[0];
  1513. if (!node) node = zTree.getNodeByTId('gljTree_1');
  1514. zTree.selectNode(node);
  1515. gljOprObj.gljCurTypeId = ID;
  1516. //--gljOprObj.filterLibGLJSheetData();
  1517. //--gljOprObj.showLibGLJSheetData();
  1518. },
  1519. isExtraType:function (type) {
  1520. return _.includes(gljUtil.extraType,type)
  1521. },
  1522. setNodeShowTab:function () {
  1523. let node = projectObj.project.mainTree.selected;
  1524. if(node && node.sourceType==ModuleNames.ration){
  1525. gljOprObj.rationTab = gljOprObj.activeTab;
  1526. }else {
  1527. gljOprObj.billsTab = gljOprObj.activeTab;
  1528. }
  1529. },
  1530. //初始化分类树
  1531. //@param {String}type(标准或补充) {Array}treeData(树数据)
  1532. initClassTree: function (type, treeData, initSel = false) {
  1533. let me = this;
  1534. if (me.treeObj) {
  1535. me.treeObj.destroy();
  1536. me.parentNodeIds = {};
  1537. }
  1538. zTreeHelper.createTree(treeData, me.gljTreeSetting, "gljTree", me);
  1539. if (initSel) {
  1540. let rootNode = me.treeObj.getNodes()[0];
  1541. if(rootNode && rootNode.isParent && rootNode.isFirstNode){
  1542. me.rootNode = rootNode;
  1543. }
  1544. if(me.rootNode){
  1545. me.treeObj.selectNode(me.rootNode);
  1546. me.gljTreeSetting.callback.onClick(null, 'gljTree', me.rootNode);
  1547. }
  1548. }
  1549. },
  1550. initScopeSpread:function() {
  1551. if (this.scopeSpread) return this.scopeSpread.repaint();
  1552. this.scopeSpread = SheetDataHelper.createNewSpread($('#scopeSpread')[0]);
  1553. sheetCommonObj.spreadDefaultStyle(this.scopeSpread);
  1554. this.scopeTree = idTree.createNew({id: 'ID', pid: 'ParentID', nid: 'NextSiblingID', rootId: -1, autoUpdate: false});
  1555. this.scopeTreeController = TREE_SHEET_CONTROLLER.createNew(this.scopeTree, this.scopeSpread.getActiveSheet(), this.scopeSetting);
  1556. this.scopeSheet = this.scopeSpread.getActiveSheet();
  1557. this.scopeSpread.bind(GC.Spread.Sheets.Events.ButtonClicked, this.onScopeChecked);
  1558. },
  1559. showScopeDatas:function () {
  1560. this.initScopeSpread();
  1561. this.scopeDatas =this.getScopeDatas();
  1562. this.scopeTree.loadDatas(this.scopeDatas);
  1563. this.scopeTreeController.showTreeData();
  1564. },
  1565. getScopeDatas:function () {
  1566. let controller = projectObj.mainController, project = projectObj.project;
  1567. let allNodes = [],datas = []
  1568. for(let rootNode of controller.tree.roots){
  1569. allNodes.push(rootNode);
  1570. controller.tree.getAllSubNode(rootNode.source,allNodes);
  1571. }
  1572. for(let n of allNodes){
  1573. let temData = {
  1574. ID:n.data.ID,
  1575. NextSiblingID:n.data.NextSiblingID,
  1576. ParentID:n.data.ParentID,
  1577. unit : n.data.unit,
  1578. code : n.data.code,
  1579. selected:0,
  1580. name : n.data.name,
  1581. quantity:calcTools.uiNodeQty(n)?calcTools.uiNodeQty(n):"",
  1582. };
  1583. if(n.data.feesIndex && n.data.feesIndex.common){
  1584. temData.unitPrice = n.data.feesIndex.common.unitFee;
  1585. temData.totalPrice = n.data.feesIndex.common.totalFee;
  1586. }
  1587. datas.push(temData);
  1588. }
  1589. return datas;
  1590. },
  1591. onScopeChecked:function (e,args) {
  1592. let me = gljOprObj,nodes = [];
  1593. var checkboxValue = args.sheet.getCell(args.row, args.col).value();
  1594. var newval = checkboxValue?0:1;
  1595. let node = me.scopeTree.items[args.row];
  1596. setNodeAndChildreSelected(node,newval,nodes);
  1597. me.scopeTreeController.refreshTreeNode(nodes);
  1598. function setNodeAndChildreSelected(n,val,arr){
  1599. n.data.selected = val;
  1600. nodes.push(n);
  1601. for(let c of n.children){
  1602. setNodeAndChildreSelected(c,val,arr)
  1603. }
  1604. }
  1605. },
  1606. setScopeSelection:function () {
  1607. for(let node of this.scopeTree.items){
  1608. //挑出选中数,过滤父节点
  1609. if(node.data.selected == 1 && node.children.length == 0) this.scopeSelectedIDMap[node.data.ID] = true
  1610. }
  1611. }
  1612. }
  1613. // 人材机选择界面的功能进行了适合分页的重构
  1614. // 重构时,只有添加、替换、批量替换的入口。因此只对这三个入口相关的地方进行重构,其他入口的代码没有变更
  1615. // 若以后放开其他入口,需要将其他入口的相应方法进行重构
  1616. $(function () {
  1617. $('#glj_tree_div').on('hidden.bs.modal', function () {
  1618. // 清空搜索框
  1619. $('#gljSearchKeyword').val('');
  1620. });
  1621. $('#glj_tree_div').on('shown.bs.modal', function (e) {
  1622. if (gljOprObj.gljLibSpresd == undefined) {
  1623. gljOprObj.gljLibSpresd = sheetCommonObj.buildSheet($('#gljLibSheet')[0], gljOprObj.gljLibSheetSetting, gljOprObj.stdGLJ.length + gljOprObj.complementaryGLJs.length);
  1624. sheetCommonObj.spreadDefaultStyle(gljOprObj.gljLibSpresd);
  1625. gljOprObj.gljLibSpresd.bind(GC.Spread.Sheets.Events.ButtonClicked, gljOprObj.onButtonClick);
  1626. gljOprObj.gljLibSheet = gljOprObj.gljLibSpresd.getSheet(0);
  1627. gljOprObj.gljLibSheet.bind(GC.Spread.Sheets.Events.SelectionChanged, gljOprObj.onSelectionChanged);
  1628. gljOprObj.gljLibSheet.bind(GC.Spread.Sheets.Events.TopRowChanged, _.debounce(gljOprObj.onTopRowChanged, 100));
  1629. gljOprObj.gljLibSheet.setColumnWidth(0, 20, GC.Spread.Sheets.SheetArea.rowHeader);
  1630. gljOprObj.gljLibSheet.options.isProtected = true;
  1631. gljOprObj.gljLibSheet.name('glj_lib');
  1632. sheetCommonObj.setSheetBySetting(gljOprObj.gljLibSheet, gljOprObj.gljLibSheetSetting);
  1633. }
  1634. let gljClass = 0,
  1635. selected,
  1636. connect_key;
  1637. const actionType = $('#actionType').val();
  1638. const addActions = ['add', 'insert', 'addMix'];
  1639. const replaceActions = ['m_replace', 'replace'];
  1640. if (addActions.includes(actionType)) {//插入,添加,添加组成物(项目人材机页面)
  1641. gljOprObj.GLJSelection = [];
  1642. } else if(replaceActions.includes(actionType)){//替换、批量替换
  1643. selected = gljOprObj.sheetData[gljContextMenu.selectedRow];
  1644. connect_key = gljOprObj.getIndex(selected, gljKeyArray);
  1645. gljOprObj.GLJSelection = [connect_key];
  1646. // 找到定位的分类树
  1647. const locatedItem = gljOprObj.AllRecode.find(item => gljOprObj.getIndex(item, gljLibKeyArray) === connect_key);
  1648. if (locatedItem) {
  1649. gljClass = locatedItem.gljClass;
  1650. locatedItem.select = 1;
  1651. }
  1652. }
  1653. //替换,焦点定位至当前选中人材机
  1654. if (replaceActions.includes(actionType)) {
  1655. gljOprObj.locateZTree(gljClass);
  1656. sheetCommonObj.appendData(gljOprObj.gljLibSheet, 0, 0, gljOprObj.gljLibSheetSetting, gljOprObj.AllRecode);
  1657. const index = gljOprObj.AllRecode.findIndex(item => gljOprObj.getIndex(item, gljLibKeyArray) === connect_key);
  1658. gljOprObj.gljLibSheet.showRow(index, GC.Spread.Sheets.VerticalPosition.center);
  1659. gljOprObj.gljLibSheet.setActiveCell(index, 0);
  1660. gljOprObj.initSelection({row: index});
  1661. gljOprObj.gljLibSpresd.focus(true);
  1662. } else if (actionType === 'add' || actionType === 'addMix') {
  1663. gljOprObj.locateZTree(null);
  1664. sheetCommonObj.appendData(gljOprObj.gljLibSheet, 0, 0, gljOprObj.gljLibSheetSetting, gljOprObj.AllRecode);
  1665. gljOprObj.gljLibSheet.showRow(0, GC.Spread.Sheets.VerticalPosition.top);
  1666. gljOprObj.gljLibSheet.setActiveCell(0, 0);
  1667. gljOprObj.initSelection({row: 0});
  1668. } else {
  1669. gljOprObj.showLibGLJSheetData();
  1670. }
  1671. console.timeEnd('getGLJData');
  1672. });
  1673. $('#mreplace_next_div').on('shown.bs.modal', function (e) {
  1674. gljOprObj.scopeSelectedIDMap = {};
  1675. gljOprObj.showScopeDatas();
  1676. });
  1677. // 人材机选择界面标准、补充单选
  1678. $('.glj-radio').change(function () {
  1679. const val = $("input[name='glj']:checked").val();
  1680. if (val === 'stdGLJ') {
  1681. gljOprObj.initClassTree('std', gljOprObj.treeData.std, true);
  1682. } else {
  1683. gljOprObj.initClassTree('comple', gljOprObj.treeData.comple, true);
  1684. }
  1685. gljOprObj.initSelection({row: 0});
  1686. });
  1687. // 人材机选择页面搜索框
  1688. $('#gljSearchKeyword').bind('keyup', _.debounce(function() {
  1689. gljOprObj.loadPageData(gljOprObj.gljLibSheet, true, 0);
  1690. }, 500));
  1691. $('#glj_selected_conf').click(function () {
  1692. if (gljOprObj.GLJSelection.length < 1) {
  1693. return;
  1694. }
  1695. if ($('#actionType').val() == 'insert') { //造价书页面中插入定额类型的工料机
  1696. gljOprObj.doInsertGLJ();
  1697. } else if ($('#actionType').val() == 'add') { //添加工料机
  1698. gljOprObj.doAddGLJ();
  1699. } else if ($('#actionType').val() == 'replace') {//替换工料机
  1700. gljOprObj.doReplaceGLJ();
  1701. } else if ($('#actionType').val() == 'm_replace') {//批量替换工料机
  1702. gljOprObj.doMReplaceGLJ();
  1703. }else if($('#actionType').val() == 'addMix'){
  1704. projectGljObject.addMixRatio();
  1705. }
  1706. $("#glj_tree_div").modal('hide');
  1707. })
  1708. $('#scope_position_confirm').click(function () {
  1709. gljOprObj.setScopeSelection();
  1710. gljOprObj.doMReplaceGLJ();
  1711. });
  1712. $('#replace_next_btn').click(function () {
  1713. $("#glj_tree_div").modal('hide');
  1714. $("#mreplace_next_div").modal('show');
  1715. });
  1716. $('#class_selected_conf').click(function () {
  1717. var gljClass = $('#selected_class').val();
  1718. var glj = gljOprObj.selectedGLJClass;
  1719. if (glj && gljClass && gljClass != "") {
  1720. //保存到我的工料机库
  1721. /*1 检查是否有组成物
  1722. * 2 如果有,则检查组成物中是否有新增的记录,如果有,查看是否已经保存了,没有的话,要先添加组成物到补充工料机库
  1723. * 3 保存
  1724. * */
  1725. var newItem = {
  1726. code: glj.code,
  1727. name: glj.name,
  1728. specs: glj.specs,
  1729. unit: glj.unit,
  1730. basePrice: glj.basePrice,
  1731. gljType: glj.type,
  1732. shortName: glj.shortName,
  1733. component: [],
  1734. gljClass: gljClass
  1735. };
  1736. if (glj.hasOwnProperty("subList") && glj.subList.length > 0) {//有组成物,检查组成物信息,目前组成物不允许修改,所以暂时不用考虑组成物是新增的情况
  1737. for (var i = 0; i < glj.subList.length; i++) {
  1738. let tem = {
  1739. ID: glj.subList[i].GLJID,
  1740. consumeAmt: glj.rationItemQuantity,
  1741. isStd: true
  1742. }
  1743. newItem.component.push(tem);
  1744. }
  1745. }
  1746. var data = getcmpUpdateData([newItem]);
  1747. $.bootstrapLoading.start();
  1748. var callback = function (data) {
  1749. $("#glj_class_div").modal('hide');
  1750. $.bootstrapLoading.end();
  1751. }
  1752. CommonAjax.post("complementartGlj/api/mixUpdateGljItems", data, callback, function () {
  1753. $.bootstrapLoading.end();
  1754. });
  1755. }
  1756. })
  1757. $('#glj_class_div').on('hidden.bs.modal', function (e) {
  1758. gljOprObj.selectedGLJClass = null;
  1759. $('#class_selected_conf').attr("disabled", "disabled");
  1760. $('#selected_class').val("");
  1761. })
  1762. $("#subSpread").focusout(function(e){//当本身或子元素失去焦点时这个事件都会发生,而且不好判断点击的是哪里。
  1763. if(gljOprObj.rationGljEditObj){
  1764. gljOprObj.cancelUpdate = false;
  1765. gljOprObj.timeStamp = e.timeStamp;//设置时间戳,有可能用户在表格上乱点,这个事件被触发多次
  1766. setTimeout(function () {//延时执行提交操作,如果点击的是spread里的地方,会把cancelUpdate改成true,这样的话就不执行提交操作
  1767. if(gljOprObj.timeStamp == e.timeStamp && gljOprObj.cancelUpdate !== true){//时间戳要相同
  1768. gljOprObj.updateGljFromCache();
  1769. }
  1770. },200)
  1771. }
  1772. });
  1773. function getcmpUpdateData(items) {
  1774. var data = {
  1775. "updateItems": [],
  1776. "removeIds": []
  1777. }
  1778. data.addItems = items;
  1779. return data;
  1780. }
  1781. })
  1782. function operationWithRound(value1,value2,field,symble) {
  1783. let decimal = getDecimal(field);
  1784. value1 = scMathUtil.roundForObj(value1,decimal);
  1785. value2 = scMathUtil.roundForObj(value2,decimal);
  1786. let result;
  1787. switch (symble){
  1788. case "+" :
  1789. result=scMathUtil.roundForObj(value1 + value2,decimal);
  1790. break;
  1791. case "-":
  1792. result=scMathUtil.roundForObj(value1 - value2,decimal);
  1793. break;
  1794. case "*":
  1795. result=scMathUtil.roundForObj(value1 * value2,decimal);
  1796. break;
  1797. case "/":
  1798. result=scMathUtil.roundForObj(value1 / value2,decimal);
  1799. break
  1800. }
  1801. return result;
  1802. }
  1803. function getDecimal(fieldID, node) {
  1804. if (node) {
  1805. return decimalObj.decimal(fieldID, node);
  1806. } else if (fieldID.indexOf(".") != -1) {
  1807. var keyArray = fieldID.split(".");
  1808. return decimalObj[keyArray[0]][keyArray[1]];
  1809. } else {
  1810. return decimalObj.decimal(fieldID);
  1811. }
  1812. }
  1813. function compareRationGLJ(a, b) {
  1814. if ((a.type + "") < (b.type + "")) {
  1815. return true
  1816. }
  1817. if ((a.type + "") == (b.type + "")) {
  1818. if (a.code < b.code) {
  1819. return true
  1820. }
  1821. }
  1822. return false;
  1823. }