Commit 218b8eb5 authored by Samir Sadyhov's avatar Samir Sadyhov 🤔

канбан-доска - добавлена выгрузка в ексель

parent 5b15a845
$.getScript("https://cdnjs.cloudflare.com/ajax/libs/alasql/0.6.1/alasql.min.js");
const compContainer = $(`#${comp.code}`);
const boardContent = compContainer.find('.kanban-board-content');
......@@ -13,6 +15,25 @@ const getRegistryList = async () => {
});
}
const formatDate = () => {
let d = new Date();
return ['0' + d.getDate(), '0' + (d.getMonth() + 1), '' + d.getFullYear()].map(x => x.slice(-2)).join('.');
}
const getSystemReport = () => {
Cons.showLoader();
AS.FORMS.ApiUtils.simpleAsyncGet(`rest/api/registry/filters?registryCode=${KanbanBoard.registryCode}&type=service`)
.then(filters => {
let filterID = filters.find(x => x.code === KanbanBoard.filterCode);
if(filterID) filterID = filterID.id;
Cons.hideLoader();
let url = `${window.location.origin}/Synergy/rest/reg/load/xls?r=${KanbanBoard.registryID}`;
url += `&l=ru&f=${filterID || ''}&s=&u=${AS.OPTIONS.currentUser.userid}&fn=${KanbanBoard.registryName}_${formatDate()}`;
window.open(url);
});
}
const KanbanBoard = {
registryCode: null,
registryID: null,
......@@ -27,6 +48,8 @@ const KanbanBoard = {
fieldDict: null,
countInPart: 5,
heads: [],
columns: [],
searchString: null,
filterSearchUrl: null,
......@@ -50,6 +73,15 @@ const KanbanBoard = {
return '';
},
getFullDataUrl: function(){
let url = `api/registry/data_ext?registryCode=${this.registryCode}`;
if(this.filterCode) url+=`&filterCode=${this.filterCode}`;
if(this.heads && this.heads.length > 0) this.heads.forEach(item => url+=`&fields=${item.columnID}`);
if(this.searchString) url += `&searchString=${this.searchString}`;
if(this.filterSearchUrl) url += this.filterSearchUrl;
return url;
},
getUrlParam: function(column) {
const {key, currentPage, countInPart} = column;
let param = `?registryCode=${this.registryCode}`;
......@@ -642,6 +674,16 @@ const KanbanBoard = {
if(!registry.rights.includes("rr_list")) throw new Error(`Нет прав на просмотр данного реестра`);
const info = await appAPI.getRegistryInfo(registryCode);
this.heads = info.columns.filter(item => item.visible != '0')
.sort((a, b) => {
if (a.order == 0) return 0;
return a.order - b.order;
})
.map(item => {
return {label: item.label, columnID: item.columnID}
});
this.registryCode = registryCode;
this.filterCode = filterCode;
this.registryID = info.registryID;
......@@ -707,6 +749,46 @@ compContainer.off()
KanbanBoard.filterSearchUrl = filterSearchUrl;
KanbanBoard.reset();
KanbanBoard.render();
}).on('getXLS', e => {
Cons.showLoader();
let url = KanbanBoard.getFullDataUrl();
url += `&pageNumber=1&countInPart=1&loadData=false`;
rest.synergyGet(url, part => {
Cons.hideLoader();
UIkit.modal.confirm(`Вы собираетесь выгрузить ${part.count} записей. Продолжить?`,
{labels: {ok: i18n.tr('Да'), cancel: i18n.tr('Отмена')}})
.then(() => {
if(KanbanBoard.searchString || KanbanBoard.filterSearchUrl) {
Cons.showLoader();
rest.synergyGet(KanbanBoard.getFullDataUrl(), data => {
let excelData = [];
data.result.forEach(res => {
let tmpValues = {};
KanbanBoard.heads.forEach(col => tmpValues[col.label] = res.fieldValue[col.columnID] || "");
excelData.push(tmpValues);
});
try {
let opts = {headers: true, column: {style:{Font:{Bold:"1"}}}};
let result = alasql(`SELECT * INTO XLS("${KanbanBoard.registryName}_${formatDate()}.xls",?) FROM ?`, [opts, excelData]);
Cons.hideLoader();
} catch (e) {
console.log(e.message);
Cons.hideLoader();
showMessage(i18n.tr('Произошла ошибка при выгрузке записей реестра'), 'error');
}
});
} else {
getSystemReport();
}
}, () => null);
});
});
$(document).off()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment