| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467 | 'use strict';/** * 期 - 其他 * * @author Mai * @date 2020/2/12 * @version */$(document).ready(() => {    autoFlashHeight();    let datepicker;    const otherSpreadSetting = {        cols: [            {title: '名称', colSpan: '1', rowSpan: '1', field: 'name', hAlign: 0, width: 235, formatter: '@'},            {title: '类型', colSpan: '1', rowSpan: '1', field: 'o_type', hAlign: 0, width: 40, formatter: '@'},            {title: '金额', colSpan: '1', rowSpan: '1', field: 'total_price', hAlign: 2, width: 100, type: 'Number'},            {title: '本期金额', colSpan: '1', rowSpan: '1', field: 'tp', hAlign: 2, width: 100, type: 'Number'},            {title: '截止本期金额', colSpan: '1', rowSpan: '1', field: 'end_tp', hAlign: 2, width: 100, type: 'Number', readOnly: true},            {                title: '时间', colSpan: '1', rowSpan: '1', field: 'real_time', hAlign: 2, width: 120, readOnly: true,                formatter: 'yyyy-MM-dd', cellType: 'activeImageBtn', normalImg: '#ellipsis-icon', indent: 5,                showImage: function (data) {                    return data !== undefined && data !== null;                }            },            {title: '备注', colSpan: '1', rowSpan: '1', field: 'memo', hAlign: 0, width: 180, formatter: '@', cellType: 'ellipsisAutoTip'}        ],        emptyRows: readOnly ? 0 : 3,        headRows: 1,        headRowHeight: [32],        defaultRowHeight: 21,        headerFont: '12px 微软雅黑',        font: '12px 微软雅黑',        readOnly: readOnly,        getColor: function (sheet, data, row, col, defaultColor) {            if (data) {                if (data.total_price) {                    return data.total_price >= 0                        ? data.end_tp > data.total_price ? '#f8d7da' : defaultColor                        : data.end_tp < data.total_price ? '#f8d7da' : defaultColor;                } else {                    return defaultColor;                }            } else {                return defaultColor;            }        },        imageClick: function (data, hitinfo) {            if (!data || readOnly) return;            const setting = hitinfo.sheet.zh_setting;            if (!setting) return;            const col = setting.cols[hitinfo.col];            if (!col || col.field !== 'real_time') return;            const pos = SpreadJsObj.getObjPos(hitinfo.sheet.getParent().qo);            if (!datepicker) {                datepicker = $('.datepicker-here').datepicker({                    language: 'zh',                    dateFormat: 'yyyy-MM-dd',                    autoClose: true,                    onSelect: function (formattedDate, date, inst) {                        if (!inst.visible) return;                        const sels = hitinfo.sheet.getSelections();                        if (!sels || !sels[0]) return;                        const node = SpreadJsObj.getSelectObject(hitinfo.sheet);                        const uData = { update: {id: node.id, real_time: date} };                        postData(window.location.pathname + '/update', uData, function (result) {                            seOtherObj.loadUpdateData(result);                            SpreadJsObj.reLoadRowData(hitinfo.sheet, sels[0].row);                        }, function () {                            SpreadJsObj.reLoadRowData(hitinfo.sheet, sels[0].row);                        });                    }                }).data('datepicker');            }            const value = hitinfo.sheet.getValue(hitinfo.row, hitinfo.col);            if (value) {                datepicker.selectDate(value);            } else {                datepicker.clear();            }            datepicker.show();            $('#datepickers-container').css('top', hitinfo.cellRect.y + pos.y).css('left', hitinfo.cellRect.x + pos.x);        }    };    const otherSpread = SpreadJsObj.createNewSpread($('#other-spread')[0]);    const otherSheet = otherSpread.getActiveSheet();    SpreadJsObj.initSheet(otherSheet, otherSpreadSetting);    $.subMenu({        menu: '#sub-menu', miniMenu: '#sub-mini-menu', miniMenuList: '#mini-menu-list',        toMenu: '#to-menu', toMiniMenu: '#to-mini-menu',        key: 'menu.1.0.0',        miniHint: '#sub-mini-hint', hintKey: 'menu.hint.1.0.1',        callback: function (info) {            if (info.mini) {                $('.panel-title').addClass('fluid');                $('#sub-menu').removeClass('panel-sidebar');            } else {                $('.panel-title').removeClass('fluid');                $('#sub-menu').addClass('panel-sidebar');            }            autoFlashHeight();            otherSpread.refresh();        }    });    class SeOther {        constructor () {            this.data = [];        }        resortData() {            this.data.sort(function (a, b) {                return a.order - b.order;            });        }        calculateAll() {            for (const d of this.data) {                d.end_tp = ZhCalc.add(d.pre_tp, d.tp);            }        }        loadDatas(datas) {            this.data = datas;            this.calculateAll();            this.resortData();        }        loadUpdateData(updateData) {            if (updateData.add) {                for (const a of updateData.add) {                    this.data.push(a);                }            }            if (updateData.update) {                for (const u of updateData.update) {                    const d = this.data.find(function (x) {                        return u.id === x.id;                    });                    if (d) {                        _.assign(d, u);                    } else {                        this.data.push(d);                    }                }            }            if (updateData.del) {                _.remove(this.data, function (d) {                    return updateData.del.indexOf(d.id) >= 0;                });            }            this.calculateAll();            this.resortData();        }    }    const seOtherObj = new SeOther();    postData(window.location.pathname + '/load', null, function (result) {        seOtherObj.loadDatas(result);        SpreadJsObj.loadSheetData(otherSheet, SpreadJsObj.DataType.Data, seOtherObj.data);    });    if (!readOnly) {        const seOtherOprObj = {            /**             * 删除按钮响应事件             * @param sheet             */            deletePress: function (sheet) {                if (!sheet.zh_setting || readOnly) return;                const sortData = sheet.zh_data;                const datas = [];                const sels = sheet.getSelections();                if (!sels || !sels[0]) return;                for (let iRow = sels[0].row; iRow < sels[0].row + sels[0].rowCount; iRow++) {                    let bDel = false;                    const node = sortData[iRow];                    if (node) {                        const data = {id: node.id};                        for (let iCol = sels[0].col; iCol < sels[0].col + sels[0].colCount; iCol++) {                            const colSetting = sheet.zh_setting.cols[iCol];                            if (colSetting.field === 'name') {                                toastr.error('名称不能为空,如需删除请使用右键删除');                                return;                            }                            const style = sheet.getStyle(iRow, iCol);                            if (!style.locked) {                                const colSetting = sheet.zh_setting.cols[iCol];                                data[colSetting.field] = null;                                bDel = true;                            }                        }                        if (bDel) {                            datas.push(data);                        }                    }                }                if (datas.length > 0) {                    postData(window.location.pathname + '/update', {update: datas}, function (result) {                        seOtherObj.loadUpdateData(result);                        SpreadJsObj.reLoadSheetData(otherSheet);                    }, function () {                        SpreadJsObj.reLoadSheetData(otherSheet);                    });                }            },            delete: function (sheet) {                if (!sheet.zh_setting || readOnly) return;                const sortData = sheet.zh_data;                const datas = [];                const sels = sheet.getSelections();                if (!sels || !sels[0]) return;                const hint = {                    isOld: {type: 'warning', msg: '该数据已计量,不可删除'},                    invalidDel: {type: 'warning', msg: '该数据不是您新增的,只有原报和新增人可删除'},                };                for (let iRow = sels[0].row, iLen = sels[0].row + sels[0].rowCount; iRow < iLen; iRow++) {                    const node = sortData[iRow];                    if (node.pre_used) {                        toastMessageUniq(hint.isOld);                        continue;                    } else {                        if (node.add_uid !== userID && stageUserId !== userID) {                            toastMessageUniq(hint.invalidDel);                            continue;                        }                        datas.push(node.id);                    }                }                if (datas.length > 0) {                    postData(window.location.pathname + '/update', {del: datas}, function (result) {                        seOtherObj.loadUpdateData(result);                        SpreadJsObj.reLoadSheetData(otherSheet);                    }, function () {                        SpreadJsObj.reLoadSheetData(otherSheet);                    });                }            },            editEnded: function (e, info) {                if (!info.sheet.zh_setting || !info.sheet.zh_data) return;                const node = info.sheet.zh_data[info.row];                const col = info.sheet.zh_setting.cols[info.col];                const data = {};                if (node) {                    data.update = {};                    data.update.id = node.id;                    const oldValue = node ? node[col.field] : null;                    const newValue = trimInvalidChar(info.editingText);                    if (oldValue == info.editingText || ((!oldValue || oldValue === '') && (newValue === ''))) {                        SpreadJsObj.reLoadRowData(info.sheet, info.row);                        return;                    }                    data.update[col.field] = newValue;                } else {                    if (col.field !== 'name') {                        toastr.warning('请先输入名称');                        SpreadJsObj.reLoadRowData(info.sheet, info.row);                        return;                    }                    data.add = {};                    data.add.order = info.row + 1;                    data.add.name = trimInvalidChar(info.editingText);                }                postData(window.location.pathname + '/update', data, function (result) {                    seOtherObj.loadUpdateData(result);                    SpreadJsObj.reLoadSheetData(info.sheet);                }, function () {                    SpreadJsObj.reLoadRowData(info.sheet, info.row);                });            },            editStarting(e, info) {                if (!info.sheet.zh_setting || !info.sheet.zh_data) {                    info.cancel = true;                    return;                }                const col = info.sheet.zh_setting.cols[info.col];                const node = info.sheet.zh_data[info.row];                if (!node) return;                switch (col.field) {                    case 'name':                    case 'total_price':                        info.cancel = readOnly || node.pre_used;                        break;                }            },            clipboardPasting(e, info) {                const setting = info.sheet.zh_setting, sortData = info.sheet.zh_data;                info.cancel = true;                if (!setting || !sortData) return;                const pasteData = info.pasteData.html                    ? SpreadJsObj.analysisPasteHtml(info.pasteData.html)                    : (info.pasteData.text === ''                        ? SpreadJsObj.Clipboard.getAnalysisPasteText()                        : SpreadJsObj.analysisPasteText(info.pasteData.text));                const hint = {                    name: {type: 'warning', msg: '名称不可为空,已过滤'},                    tp: {type: 'warning', msg: '输入的 金额 非法,已过滤'},                };                const uDatas = [], iDatas = [];                for (let iRow = 0; iRow < info.cellRange.rowCount; iRow++) {                    const curRow = info.cellRange.row + iRow;                    const node = sortData[curRow];                    let bPaste = false;                    const data = {};                    for (let iCol = 0; iCol < info.cellRange.colCount; iCol++) {                        const curCol = info.cellRange.col + iCol;                        const colSetting = setting.cols[curCol];                        const value = trimInvalidChar(pasteData[iRow][iCol]);                        if (colSetting.field === 'name' && (!value || value === '')) {                            toastMessageUniq(hint.name);                            break;                        }                        if (colSetting.type === 'Number') {                            const num = _.toNumber(value);                            if (num) {                                data[colSetting.field] = num;                                bPaste = true;                            }                        } else {                            data[colSetting.field] = value;                            bPaste = true;                        }                    }                    if (bPaste) {                        if (node) {                            data.id = node.id;                            uDatas.push(data);                        } else {                            data.order = curRow + 1;                            iDatas.push(data);                        }                    }                }                const updateData = {};                if (uDatas.length > 0) updateData.update = uDatas;                if (iDatas.length > 0) updateData.add = iDatas;                if (uDatas.length > 0 || iDatas.length > 0) {                    postData(window.location.pathname + '/update', updateData, function (result) {                        seOtherObj.loadUpdateData(result);                        SpreadJsObj.reLoadSheetData(info.sheet);                    });                } else {                    SpreadJsObj.reLoadSheetData(info.sheet);                }            },            upMove: function () {                const sels = otherSheet.getSelections(), sortData = otherSheet.zh_data;                const node = sortData[sels[0].row];                const preNode = sortData[sels[0].row - 1];                const data = [                    {id: node.id, order: preNode.order},                    {id: preNode.id, order: node.order}                ];                postData(window.location.pathname + '/update', {update: data}, function (result) {                    seOtherObj.loadUpdateData(result);                    SpreadJsObj.reLoadRowsData(otherSheet, [sels[0].row, sels[0].row - 1]);                    otherSheet.setSelection(sels[0].row - 1, sels[0].col, sels[0].rowCount, sels[0].colCount);                });            },            downMove: function () {                const sels = otherSheet.getSelections(), sortData = otherSheet.zh_data;                const node = sortData[sels[0].row];                const nextNode = sortData[sels[0].row + 1];                const data = [                    {id: node.id, order: nextNode.order},                    {id: nextNode.id, order: node.order}                ];                postData(window.location.pathname + '/update', {update: data}, function (result) {                    seOtherObj.loadUpdateData(result);                    SpreadJsObj.reLoadRowsData(otherSheet, [sels[0].row, sels[0].row + 1]);                    otherSheet.setSelection(sels[0].row + 1, sels[0].col, sels[0].rowCount, sels[0].colCount);                });            }        };        otherSheet.bind(spreadNS.Events.EditEnded, seOtherOprObj.editEnded);        otherSheet.bind(spreadNS.Events.EditStarting, seOtherOprObj.editStarting);        otherSheet.bind(spreadNS.Events.ClipboardPasting, seOtherOprObj.clipboardPasting);        SpreadJsObj.addDeleteBind(otherSpread, seOtherOprObj.deletePress);        $.contextMenu({            selector: '#other-spread',            build: function ($trigger, e) {                const target = SpreadJsObj.safeRightClickSelection($trigger, e, otherSpread);                return target.hitTestType === spreadNS.SheetArea.viewport || target.hitTestType === spreadNS.SheetArea.rowHeader;            },            items: {                del: {                    name: '删除',                    icon: 'fa-remove',                    callback: function (key, opt) {                        seOtherOprObj.delete(otherSheet);                    },                    disabled: function (key, opt) {                        const sels = otherSheet.getSelections();                        if (!sels || !sels[0]) return true;                        const row = sels[0].row;                        const node = seOtherObj.data[row];                        return node === undefined || node === null;                    },                    visible: function (key, opt) {                        return !readOnly;                    }                },                sprDel: '------------',                upMove: {                    name: '上移',                    icon: 'fa-arrow-up',                    callback: function (key, opt) {                        seOtherOprObj.upMove();                    },                    disabled: function (key, opt) {                        const sels = otherSheet.getSelections();                        if (!sels || !sels[0] || sels[0].row === 0) return true;                        const row = sels[0].row;                        const node = seOtherObj.data[row];                        return node === undefined || node === null;                    },                    visible: function (key, opt) {                        return !readOnly;                    }                },                downMove: {                    name: '下移',                    icon: 'fa-arrow-down',                    callback: function (key, opt) {                        seOtherOprObj.downMove();                    },                    disabled: function (key, opt) {                        const sels = otherSheet.getSelections();                        if (!sels || !sels[0] || sels[0].row >= seOtherObj.data.length - 1) return true;                        const row = sels[0].row;                        const node = seOtherObj.data[row];                        return node === undefined || node === null;                    },                    visible: function (key, opt) {                        return !readOnly;                    }                }            },        })    }    $('#exportExcel').click(function () {        SpreadExcelObj.exportSimpleXlsxSheet(otherSpreadSetting, seOtherObj.data, $('h2')[0].innerHTML + "-其他.xlsx");    });});
 |