[Vtigercrm-developers] disable contacts filtering by selected organization
Preexo
preexo at googlemail.com
Mon Sep 21 08:19:43 GMT 2015
ah, found it... comment the part about adding the account to the params as
the parent module.
e.g.
/*
if (params.search_module == 'Contacts') {
var form = this.getForm();
var parentIdElement = form.find('[name="vendor_id"]');
if(parentIdElement.length > 0 && parentIdElement.val().length > 0) {
var closestContainer = parentIdElement.closest('td');
params.parent_id = parentIdElement.val();
params.parent_module =
closestContainer.find('[name="popupReferenceModule"]').val();
}
}
*/
in the following files you will find reference to the contact account
connection and filtering on the ajax search:
modules/Calendar/resources/Edit.js
modules/Invoice/resources/Edit.js
modules/PurchaseOrder/resources/Edit.js
modules/Quotes/resources/Edit.js
modules/SalesOrder/resources/Edit.js
Preexo wrote
> I'm trying to find where the filtering of the contacts happens. When you
> edit an entity and an organization is already selected, then the ajax
> search for contacts is being filtered by the organization selected.
> I understand that this is a nice feature, but in our case we will need to
> have contacts selected that are not part of the organization selected
> already.
>
> I found how to disable the filter in the popup. Just added this on line
> 130 of modules/vtiger/views/popup.php
> if ($moduleName == "Contacts"){
> $relatedParentModule = '';
> $relatedParentId = '';
> }
>
>
> But can't find this for the ajax search. Thanks for any hint!
--
View this message in context: http://vtiger-crm.2324883.n4.nabble.com/disable-contacts-filtering-by-selected-organization-tp17393p17397.html
Sent from the vtigercrm-developers mailing list archive at Nabble.com.
More information about the vtigercrm-developers
mailing list