| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- $(document).off('click', '[data-formaction]').on('click', '[data-formaction]', function()
- {
- const $this = $(this);
- if($this.attr('class').indexOf('disabled') !== -1) return;
- const dtable = zui.DTable.query($('#stories'));
- const checkedList = dtable.$.getChecks();
- if(!checkedList.length) return;
- const postData = new FormData();
- checkedList.forEach((id) => postData.append('storyIdList[]', id));
- if($this.data('account')) postData.append('assignedTo', $this.data('account'));
- if($this.data('page') == 'batch')
- {
- postAndLoadPage($this.data('formaction'), postData);
- }
- else
- {
- $.ajaxSubmit({"url": $this.data('formaction'), "data": postData});
- }
- });
- $(document).off('click', '.batchImportToLibBtn').on('click', '.batchImportToLibBtn', function()
- {
- const dtable = zui.DTable.query($('#stories'));
- const checkedList = dtable.$.getChecks();
- if(!checkedList.length) return;
- $("[name='storyIdList'").val(checkedList.join(','));
- });
- $(document).off('click', '.batchChangeParentBtn').on('click', '.batchChangeParentBtn', function(e)
- {
- const dtable = zui.DTable.query($('#stories'));
- const checkedList = dtable.$.getChecks();
- $.cookie.set('checkedItem', checkedList.join(','), {expires:config.cookieLife, path:config.webRoot});
- });
- $(document).off('click', '.switchButton').on('click', '.switchButton', function()
- {
- var storyViewType = $(this).attr('data-type');
- $.cookie.set('storyViewType', storyViewType, {expires:config.cookieLife, path:config.webRoot});
- loadCurrentPage();
- });
- $(document).off('click','#linkStoryByPlan button[type="submit"]').on('click', '#linkStoryByPlan button[type="submit"]', function()
- {
- var planID = $('[name=plan]').val();
- if(planID)
- {
- $.ajaxSubmit({url: $.createLink('execution', 'importPlanStories', 'projectID=' + projectID + '&planID=' + planID)});
- }
- return false;
- });
- $(document).off('click', '.batchUnlinkStory').on('click', '.batchUnlinkStory', function(e)
- {
- const dtable = zui.DTable.query($('#stories'));
- const checkedList = dtable.$.getChecks();
- if(!checkedList.length) return;
- /* 处理选中的子需求的ID,截取-后的子需求ID。*/
- /* Process selected child story ID. */
- for(i in checkedList)
- {
- const storyID = checkedList[i];
- if(storyID.includes('-')) checkedList[i] = storyID.slice(storyID.indexOf('-') + 1);
- }
- let batchUnlinkStoryURL = $.createLink('projectstory', 'batchUnlinkStory', 'projectID=' + projectID + '&stories=' + encodeURIComponent(checkedList.join(',')));
- $.get(batchUnlinkStoryURL, function(data)
- {
- try
- {
- data = JSON.parse(data);
- if(typeof data.result != 'undefined') return loadCurrentPage();
- }
- catch(error){}
- zui.Modal.open({id: 'batchUnlinkStoryBox'});
- $('#batchUnlinkStoryBox').html(data);
- $('#batchUnlinkStoryBox').off('mousedown', '.confirmBtn').on('mousedown', '.confirmBtn', function()
- {
- loadCurrentPage();
- });
- });
- });
- window.renderCell = function(result, info)
- {
- if(info.col.name == 'title' && result)
- {
- const story = info.row.data;
- let html = '';
- if(story.parentName != undefined && story.parent > 0 && $.cookie.get('tab') == 'project' && projectHasProduct && vision != 'lite') html += story.parentName + ' / ';
- if(typeof modulePairs[story.rawModule] != 'undefined') html += "<span class='label gray-pale rounded-xl clip'>" + modulePairs[story.rawModule] + "</span> ";
- let gradeLabel = '';
- let showGrade = false;
- const gradeMap = gradeGroup[story.type] || {};
- if(story.type != storyType) showGrade = true;
- if((story.type == 'epic' || story.type == 'requirement') && Object.keys(gradeMap).length >= 2) showGrade = true;
- if(story.type == 'story' && Object.keys(gradeMap).length >= 3) showGrade = true;
- if(story.grade > 1) showGrade = true;
- if(tab != 'product') showGrade = true;
- if(showGrade) gradeLabel = gradeMap[story.grade];
- if(gradeLabel) html += "<span class='label gray-pale rounded-xl clip'>" + gradeLabel + "</span> ";
- if(story.color)
- {
- if(result[0].props !== undefined)
- {
- result[0].props.style = 'color: ' + story.color;
- }
- else
- {
- result[2]['style']['color'] = story.color;
- }
- }
- if(result[0].props && ((story.type == 'story' && !storyViewPriv) || (story.type == 'requirement' && !requirementViewPriv) || (story.type == 'epic' && !epicViewPriv))) result[0] = result[0].props.children;
- if(html) result.unshift({html});
- }
- if(info.col.name == 'status' && result)
- {
- result[0] = {html: `<span class='status-${info.row.data.rawStatus}'>` + info.row.data.status + "</span>"};
- }
- if(info.col.name == 'assignedTo')
- {
- if(info.row.data.rawStatus == 'closed' && result[0]['props'])
- {
- delete result[0]['props']['data-toggle'];
- delete result[0]['props']['href'];
- result[0]['props']['className'] += ' disabled';
- }
- else
- {
- let assignToClass = info.row.data.assignedTo == userAccount ? 'is-me' : '';
- if(!info.row.data.assignedTo) assignToClass = 'is-unassigned';
- if(storyAssignedToPriv && requirementAssignedToPriv && info.row.data.type == 'requirement')
- {
- result[0]['props']['href'] = $.createLink('requirement', 'assignTo', 'storyID=' + info.row.data.id);
- }
- else if(!storyAssignedToPriv && requirementAssignedToPriv && info.row.data.type == 'requirement')
- {
- result[0] = {html : '<a href=' + $.createLink('requirement', 'assignTo', 'storyID=' + info.row.data.id) + ' data-toggle="modal" class="dtable-assign-btn ' + assignToClass + '"><i class="icon icon-hand-right"></i><span>' + result[0] + '</span></a>'};
- }
- if(storyAssignedToPriv && epicAssignedToPriv && info.row.data.type == 'epic')
- {
- result[0]['props']['href'] = $.createLink('epic', 'assignTo', 'storyID=' + info.row.data.id);
- }
- else if(!storyAssignedToPriv && epicAssignedToPriv && info.row.data.type == 'epic')
- {
- result[0] = {html : '<a href=' + $.createLink('epic', 'assignTo', 'storyID=' + info.row.data.id) + ' data-toggle="modal" class="dtable-assign-btn ' + assignToClass + '"><i class="icon icon-hand-right"></i><span>' + result[0] + '</span></a>'};
- }
- if((!requirementAssignedToPriv && info.row.data.type == 'requirement') || (!epicAssignedToPriv && info.row.data.type == 'epic'))
- {
- delete result[0]['props']['data-toggle'];
- delete result[0]['props']['href'];
- result[0]['props']['className'] += ' disabled';
- }
- }
- }
- if(info.col.name == 'childItem')
- {
- result[1]['attrs']['title'] = info.row.data?.childItemTitle;
- }
- if(info.col.name == 'taskCount' && !info.row.data.taskCount)
- {
- if(result[0]['type']) result[0]['type'] = 'text';
- if(result[0]['props'])
- {
- delete result[0]['props']['data-toggle'];
- delete result[0]['props']['href'];
- }
- }
- if(info.col.name == 'bugCount' && !info.row.data.bugCount)
- {
- if(result[0]['type']) result[0]['type'] = 'text';
- if(result[0]['props'])
- {
- delete result[0]['props']['data-toggle'];
- delete result[0]['props']['href'];
- }
- }
- if(info.col.name == 'caseCount' && !info.row.data.caseCount)
- {
- if(result[0]['type']) result[0]['type'] = 'text';
- if(result[0]['props'])
- {
- delete result[0]['props']['data-toggle'];
- delete result[0]['props']['href'];
- }
- }
- return result;
- };
- window.setStatistics = function(element, checkedIdList, pageSummary)
- {
- if(checkedIdList == undefined || checkedIdList.length == 0) return {html: pageSummary};
- let total = 0;
- let estimate = 0;
- let rate = '0%';
- let hasCase = 0;
- let rateCount = checkedIdList.length;
- const rows = element.layout.allRows;
- rows.forEach((row) => {
- if(checkedIdList.includes(row.id))
- {
- const story = row.data;
- if(story.type != storyType && tab == 'product') return;
- if(story?.needSummaryEstimate) estimate += parseFloat(story.estimate);
- if(story.caseCount > 0)
- {
- hasCase += 1;
- }
- else if(typeof story.isParent != 'undefined' && story.isParent == '1')
- {
- rateCount -= 1;
- }
- total += 1;
- }
- })
- if(rateCount) rate = Math.round(hasCase / rateCount * 10000) / 100 + '' + '%';
- return {html: checkedSummary.replace('%total%', total).replace('%estimate%', estimate.toFixed(2)).replace('%rate%', rate)};
- };
- window.setShowGrades = function()
- {
- const showGrades = $('[name^=showGrades]').zui('picker').$.state.value;
- if(oldShowGrades == showGrades) return;
- const module = tab == 'product' || from == 'doc' || from == 'ai' ? storyType : tab;
- const link = $.createLink('product', 'ajaxSetShowGrades', 'module=' + module + '&showGrades=' + showGrades);
- $.get(link, function()
- {
- if(from == 'doc' || from == 'ai')
- {
- const currentLink = $.createLink('product', 'browse', `productID=${productID}&branch=${branch}&browseType=${browseType}¶m=${param}&storyType=${storyType}&orderBy=${orderBy}&recTotal=${recTotal}&recPerPage=${recPerPage}&pageID=${pageID}&projectID=${projectID}&from=${from}&blockID=${blockID}`);
- loadModal(currentLink);
- }
- else
- {
- loadCurrentPage();
- }
- });
- }
- window.importToLib = function()
- {
- const dtable = zui.DTable.query($('#stories'));
- const checkedList = dtable.$.getChecks();
- if(!checkedList.length) return;
- let storyIdList = '';
- checkedList.forEach((id) => storyIdList += id + ',');
- $('#storyIdList').val(storyIdList);
- }
- window.firstRendered = false;
- window.toggleCheckRows = function(idList)
- {
- if(!idList?.length || firstRendered) return;
- firstRendered = true;
- const dtable = zui.DTable.query($('#stories'));
- dtable.$.toggleCheckRows(idList.split(','), true);
- }
|