$(document).off('click','.batch-btn').on('click', '.batch-btn', function() { const dtable = zui.DTable.query($(this).target); const checkedList = dtable.$.getChecks(); if(!checkedList.length) return; const url = $(this).data('url'); const form = new FormData(); checkedList.forEach((id) => form.append('taskIdList[]', id)); if($(this).hasClass('ajax-btn')) { $.ajaxSubmit({url, data: form}); } else { postAndLoadPage(url, form); } }).off('click', '#actionBar .export').on('click', '#actionBar .export', function() { const dtable = zui.DTable.query($('#table-execution-task')); const checkedList = dtable.$.getChecks(); if(!checkedList.length) return; $.cookie.set('checkedItem', checkedList); }); /** * 计算表格任务信息的统计。 * Set task summary for table footer. * * @param element element * @param array checkedIDList * @access public * @return object */ window.setStatistics = function(element, checkedIDList) { let totalLeft = 0; let totalEstimate = 0; let totalConsumed = 0; let waitCount = 0; let doingCount = 0; let totalCount = 0; const rows = element.layout.allRows; rows.forEach((row) => { if(checkedIDList.length == 0 || checkedIDList.includes(row.id)) { const task = row.data; if(!task.isParent) { totalEstimate += Number(task.estimate); totalConsumed += Number(task.consumed); } if(task.status != 'cancel' && task.status != 'closed' && !task.isParent) totalLeft += Number(task.left); if(task.status == 'wait') { waitCount ++; } else if(task.status == 'doing') { doingCount ++; } totalCount ++; } }) const summary = checkedIDList.length > 0 ? checkedSummary : pageSummary; return { html: summary.replace('%total%', totalCount) .replace('%wait%', waitCount) .replace('%doing%', doingCount) .replace('%estimate%', totalEstimate.toFixed(1)) .replace('%consumed%', totalConsumed.toFixed(1)) .replace('%left%', totalLeft.toFixed(1)) }; } /** * 对部分列进行重定义。 * Redefine the partial column. * * @param array result * @param array info * @access public * @return string|array */ window.renderCell = function(result, info) { const task = info.row.data; if(info.col.name == 'name' && result) { let html = ''; const module = this.options.modules[info.row.data.module]; if(module) html += '' + module + ''; // 添加模块标签 if(task.team) { html += "" + multipleAB + ""; } if(task.parent) { html += "" + childrenAB + ""; } if(html) result.unshift({html}); } if(info.col.name == 'deadline' && result[0]) { const today = zui.formatDate(zui.createDate(), 'yyyy-MM-dd'); const yesterday = zui.formatDate(convertStringToDate(today) - 24 * 60 * 60 * 1000, 'yyyy-MM-dd'); if(result[0] == today) { result[0] = {html: '' + todayLabel + ''}; } else if(result[0] == yesterday) { result[0] = {html: '' + yesterdayLabel + ''}; } else if(result[0] < yesterday) { result[0] = {html: '' + result[0] + ''}; } } if(info.col.name == 'assignedTo' && result) { if(!task.assignedTo && task.mode == 'multi' && !['done,closed'].includes(task.status)) { result[0]['props']['children'][1]['props']['children'] = teamLang; } } return result; }