Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/cvetdv.ru/bitrix/components/bitrix/sender.rc.list/templates/.default/ |
Upload File : |
;(function () { BX.namespace('BX.Sender'); if (BX.Sender.LetterList) { return; } //var Helper = BX.Sender.Helper; var Page = BX.Sender.Page; /** * LetterList. * */ function LetterList() { } LetterList.prototype.init = function (params) { //this.context = BX(params.containerId); this.gridId = params.gridId; this.actionUri = params.actionUri; this.pathToEdit = params.pathToEdit; this.mess = params.mess; this.buttonAdd = BX('SENDER_LETTER_BUTTON_ADD'); if (this.buttonAdd) { var menuItems = (params.messages || []).filter(function (message) { return !message.IS_HIDDEN; }).map(function (message) { return { 'id': message.CODE, 'text': message.NAME, 'onclick': this.onMenuItemClick.bind(this, message), 'className': message.IS_AVAILABLE ? '' : 'b24-tariff-lock' }; }, this); this.initMenuAdd(menuItems); } this.ajaxAction = new BX.AjaxAction(this.actionUri); this.userErrorHandler = new BX.Sender.ErrorHandler(); //this.selectorNode = Helper.getNode('template-selector', this.context); }; LetterList.prototype.remove = function (letterId) { this.sendChangeStateAction('remove', letterId); }; LetterList.prototype.copy = function (letterId) { var self = this; this.sendChangeStateAction('copy', letterId, function (data) { if (!data.copiedId) { return; } Page.open(self.pathToEdit.replace('#id#', data.copiedId)); }); }; LetterList.prototype.send = function (letterId) { this.sendChangeStateAction('send', letterId); }; LetterList.prototype.wait = function (letterId) { this.sendChangeStateAction('wait', letterId); }; LetterList.prototype.halt = function (letterId) { this.sendChangeStateAction('halt', letterId); }; LetterList.prototype.pause = function (letterId) { this.sendChangeStateAction('pause', letterId); }; LetterList.prototype.stop = function (letterId) { this.sendChangeStateAction('stop', letterId); }; LetterList.prototype.resume = function (letterId) { this.sendChangeStateAction('resume', letterId); }; LetterList.prototype.sendChangeStateAction = function (actionName, letterId, callback) { var gridId = this.gridId; var messageCode = null; if (BX.Main && BX.Main.gridManager) { var grid = BX.Main.gridManager.getById(gridId); if (grid) { messageCode = grid.instance.getRows().getById(letterId).getDataset().messageCode; } } Page.changeGridLoaderShowing(gridId, true); var self = this; this.ajaxAction.request({ action: actionName, onsuccess: function (data) { Page.reloadGrid(gridId); if (callback) { callback.apply(self, [data]); } }, onusererror: this.userErrorHandler.getHandlers( (function() { this.sendChangeStateAction(actionName, letterId, callback); }).bind(this), (function() { Page.changeGridLoaderShowing(gridId, false); }).bind(this), { editUrl: this.pathToEdit.replace('#id#', letterId) } ), onfailure: function () { Page.changeGridLoaderShowing(gridId, false); }, data: { 'id': letterId }, urlParams: { 'messageCode': messageCode } }); }; LetterList.prototype.onMenuItemClick = function (message) { if (!message.IS_AVAILABLE && BX.Sender.B24License) { BX.Sender.B24License.showPopup('Rc'); this.popupMenu.close(); return; } Page.open(message.URL); this.popupMenu.close(); }; LetterList.prototype.initMenuAdd = function (items) { if (this.popupMenu) { this.popupMenu.show(); return; } this.popupMenu = BX.PopupMenu.create( 'sender-letter-list', this.buttonAdd, items, { autoHide: true, autoClose: true } ); BX.bind(this.buttonAdd, 'click', this.popupMenu.show.bind(this.popupMenu)); }; BX.Sender.LetterList = new LetterList(); })(window);