晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
|
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/layouts/vlayout/modules/Leads/resources/ |
Upload File : |
/*+***********************************************************************************
* 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_Detail_Js("Leads_Detail_Js",{
//cache will store the convert lead data(Model)
cache : {},
//Holds detail view instance
detailCurrentInstance : false,
/*
* function to trigger Convert Lead action
* @param: Convert Lead url, currentElement.
*/
convertLead : function(convertLeadUrl, buttonElement) {
var instance = Leads_Detail_Js.detailCurrentInstance;
//Initially clear the elements to overwtite earliear cache
instance.convertLeadContainer = false;
instance.convertLeadForm = false;
instance.convertLeadModules = false;
if(jQuery.isEmptyObject(Leads_Detail_Js.cache)) {
AppConnector.request(convertLeadUrl).then(
function(data) {
if(data) {
Leads_Detail_Js.cache = data;
instance.displayConvertLeadModel(data, buttonElement);
}
},
function(error,err){
}
);
} else {
instance.displayConvertLeadModel(Leads_Detail_Js.cache, buttonElement);
}
}
},{
//Contains the convert lead form
convertLeadForm : false,
//contains the convert lead container
convertLeadContainer : false,
//contains all the checkbox elements of modules
convertLeadModules : false,
//constructor
init : function() {
this._super();
Leads_Detail_Js.detailCurrentInstance = this;
},
/*
* function to disable the Convert Lead button
*/
disableConvertLeadButton : function(button) {
jQuery(button).attr('disabled','disabled');
},
/*
* function to enable the Convert Lead button
*/
enableConvertLeadButton : function(button) {
jQuery(button).removeAttr('disabled');
},
/*
* function to enable all the input and textarea elements
*/
removeDisableAttr : function(moduleBlock) {
moduleBlock.find('input,textarea,select').removeAttr('disabled');
},
/*
* function to disable all the input and textarea elements
*/
addDisableAttr : function(moduleBlock) {
moduleBlock.find('input,textarea,select').attr('disabled', 'disabled');
},
/*
* function to display the convert lead model
* @param: data used to show the model, currentElement.
*/
displayConvertLeadModel : function(data, buttonElement) {
var instance = this;
var errorElement = jQuery(data).find('#convertLeadError');
if(errorElement.length != '0') {
var errorMsg = errorElement.val();
var errorTitle = jQuery(data).find('#convertLeadErrorTitle').val();
var params = {
title: errorTitle,
text: errorMsg,
addclass: "convertLeadNotify",
width: '35%',
pnotify_after_open: function(){
instance.disableConvertLeadButton(buttonElement);
},
pnotify_after_close: function(){
instance.enableConvertLeadButton(buttonElement);
}
}
Vtiger_Helper_Js.showPnotify(params);
} else {
var callBackFunction = function(data){
var editViewObj = Vtiger_Edit_Js.getInstance();
jQuery(data).find('.fieldInfo').collapse({
'parent': '#leadAccordion',
'toggle' : false
});
app.showScrollBar(jQuery(data).find('#leadAccordion'), {'height':'350px'});
editViewObj.registerBasicEvents(data);
var checkBoxElements = instance.getConvertLeadModules();
jQuery.each(checkBoxElements, function(index, element){
instance.checkingModuleSelection(element);
});
instance.registerForReferenceField();
instance.registerForDisableCheckEvent();
instance.registerConvertLeadEvents();
instance.getConvertLeadForm().validationEngine(app.validationEngineOptions);
instance.registerConvertLeadSubmit();
}
app.showModalWindow(data,function(data){
if(typeof callBackFunction == 'function'){
callBackFunction(data);
}
},{
'text-align' : 'left'
});
}
},
/*
* function to check which module is selected
* to disable or enable all the elements with in the block
*/
checkingModuleSelection : function(element) {
var instance = this;
var module = jQuery(element).val();
var moduleBlock = jQuery(element).closest('.accordion-group').find('#'+module+'_FieldInfo');
if(jQuery(element).is(':checked')) {
instance.removeDisableAttr(moduleBlock);
} else {
instance.addDisableAttr(moduleBlock);
}
},
registerForReferenceField : function() {
var container = this.getConvertLeadContainer();
var referenceField = jQuery('.reference', container);
if(referenceField.length > 0) {
jQuery('#AccountsModule').attr('readonly', 'readonly');
}
},
registerForDisableCheckEvent : function() {
var instance = this;
var container = this.getConvertLeadContainer();
var referenceField = jQuery('.reference', container);
var oppAccMandatory = jQuery('#oppAccMandatory').val();
var oppConMandatory = jQuery('#oppConMandatory').val();
var conAccMandatory = jQuery('#conAccMandatory').val();
jQuery('#PotentialsModule').on('click',function(){
if((jQuery('#PotentialsModule').is(':checked')) && oppAccMandatory) {
jQuery('#AccountsModule').attr({'disabled':'disabled','checked':'checked'});
}else if(!conAccMandatory || !jQuery('#ContactsModule').is(':checked')) {
jQuery('#AccountsModule').removeAttr('disabled');
}
if((jQuery('#PotentialsModule').is(':checked')) && oppConMandatory) {
jQuery('#ContactsModule').attr({'disabled':'disabled','checked':'checked'});
}else {
jQuery('#ContactsModule').removeAttr('disabled');
}
});
jQuery('#ContactsModule').on('click',function(){
if((jQuery('#ContactsModule').is(':checked')) && conAccMandatory) {
jQuery('#AccountsModule').attr({'disabled':'disabled','checked':'checked'});
}else if(!oppAccMandatory || !jQuery('#PotentialsModule').is(':checked')) {
jQuery('#AccountsModule').removeAttr('disabled');
}
});
},
/*
* function to register Convert Lead Events
*/
registerConvertLeadEvents : function() {
var container = this.getConvertLeadContainer();
var instance = this;
//Trigger Event to change the icon while shown and hidden the accordion body
container.on('hidden', '.accordion-body', function(e){
var currentTarget = jQuery(e.currentTarget);
currentTarget.closest('.convertLeadModules').find('.iconArrow').removeClass('icon-chevron-up').addClass('icon-chevron-down');
}).on('shown', '.accordion-body', function(e){
var currentTarget = jQuery(e.currentTarget);
currentTarget.closest('.convertLeadModules').find('.iconArrow').removeClass('icon-chevron-down').addClass('icon-chevron-up');
});
//Trigger Event on click of Transfer related records modules
container.on('click', '.transferModule', function(e){
var currentTarget = jQuery(e.currentTarget);
var module = currentTarget.val();
var moduleBlock = jQuery('#'+module+'_FieldInfo');
if(currentTarget.is(':checked')) {
jQuery('#'+module+'Module').attr('checked','checked');
moduleBlock.collapse('show');
instance.removeDisableAttr(moduleBlock);
}
});
//Trigger Event on click of the Modules selection to convert the lead
container.on('click','.convertLeadModuleSelection', function(e){
var currentTarget = jQuery(e.currentTarget);
var currentModuleName = currentTarget.val();
var moduleBlock = currentTarget.closest('.accordion-group').find('#'+currentModuleName+'_FieldInfo');
var currentTransferModuleElement = jQuery('#transfer'+currentModuleName);
var otherTransferModuleElement = jQuery('input[name="transferModule"]').not(currentTransferModuleElement);
var otherTransferModuleValue = jQuery(otherTransferModuleElement).val();
var otherModuleElement = jQuery('#'+otherTransferModuleValue+'Module');
if(currentTarget.is(':checked')) {
moduleBlock.collapse('show');
instance.removeDisableAttr(moduleBlock);
if(!otherModuleElement.is(':checked')) {
jQuery(currentTransferModuleElement).attr('checked', 'checked');
}
} else {
moduleBlock.collapse('hide');
instance.addDisableAttr(moduleBlock);
jQuery(currentTransferModuleElement).removeAttr('checked');
if(otherModuleElement.is(':checked')) {
jQuery(otherTransferModuleElement).attr('checked','checked');
}
}
e.stopImmediatePropagation();
});
},
/*
* function to register Convert Lead Submit Event
*/
registerConvertLeadSubmit : function() {
var thisInstance = this;
var formElement = this.getConvertLeadForm();
formElement.on('jqv.form.validating', function(e){
var jQv = jQuery(e.currentTarget).data('jqv');
//Remove the earlier validated fields from history so that it wont count disabled fields
jQv.InvalidFields = [];
});
//Convert Lead Form Submission
formElement.on('submit',function(e) {
var convertLeadModuleElements = thisInstance.getConvertLeadModules();
var moduleArray = [];
var contactModel = formElement.find('#ContactsModule');
var accountModel = formElement.find('#AccountsModule');
//If the validation fails in the hidden Block, we should show that Block with error.
var invalidFields = formElement.data('jqv').InvalidFields;
if(invalidFields.length > 0) {
var fieldElement = invalidFields[0];
var moduleBlock = jQuery(fieldElement).closest('div.accordion-body');
moduleBlock.collapse('show');
e.preventDefault();
return;
}
jQuery.each(convertLeadModuleElements, function(index, element) {
if(jQuery(element).is(':checked')) {
moduleArray.push(jQuery(element).val());
}
});
formElement.find('input[name="modules"]').val(JSON.stringify(moduleArray));
var contactElement = contactModel.length;
var organizationElement = accountModel.length;
if(contactElement != '0' && organizationElement != '0') {
if(jQuery.inArray('Accounts',moduleArray) == -1 && jQuery.inArray('Contacts',moduleArray) == -1) {
alert(app.vtranslate('JS_SELECT_ORGANIZATION_OR_CONTACT_TO_CONVERT_LEAD'));
e.preventDefault();
}
} else if(organizationElement != '0') {
if(jQuery.inArray('Accounts',moduleArray) == -1) {
alert(app.vtranslate('JS_SELECT_ORGANIZATION'));
e.preventDefault();
}
} else if(contactElement != '0') {
if(jQuery.inArray('Contacts',moduleArray) == -1) {
alert(app.vtranslate('JS_SELECT_CONTACTS'));
e.preventDefault();
}
}
});
},
/*
* function to get all the checkboxes which are representing the modules selection
*/
getConvertLeadModules : function() {
var container = this.getConvertLeadContainer();
if(this.convertLeadModules == false) {
this.convertLeadModules = jQuery('.convertLeadModuleSelection', container);
}
return this.convertLeadModules;
},
/*
* function to get Convert Lead Form
*/
getConvertLeadForm : function() {
if(this.convertLeadForm == false) {
this.convertLeadForm = jQuery('#convertLeadForm');
}
return this.convertLeadForm;
},
/*
* function to get Convert Lead Container
*/
getConvertLeadContainer : function() {
if(this.convertLeadContainer == false) {
this.convertLeadContainer = jQuery('#leadAccordion');
}
return this.convertLeadContainer;
} ,
updateConvertLeadvalue : function() {
var thisInstance = Vtiger_Detail_Js.getInstance();
var detailContentsHolder = thisInstance.getContentHolder();
detailContentsHolder.on(thisInstance.fieldUpdatedEvent,"input,select",function(e, params){
var elem = jQuery(e.currentTarget);
var fieldName = elem.attr("name");
var ajaxnewValue = params.new;
if(!(jQuery.isEmptyObject(Leads_Detail_Js.cache))){
var sampleCache = jQuery(Leads_Detail_Js.cache);
var contextElem = sampleCache.find('[name="'+fieldName+'"]');
if(elem.is("select")) {
var oldvalue= contextElem.val();
contextElem.find('option[value="'+oldvalue+'"]').removeAttr("selected");
contextElem.find('option[value="'+ ajaxnewValue +'"]').attr("selected","selected");
contextElem.trigger("liszt:updated");
}
else{
contextElem.attr("value",ajaxnewValue);
}
Leads_Detail_Js.cache = sampleCache;
}
});
},
registerEvents : function(){
this._super();
this.updateConvertLeadvalue();
}
});