Questions tagged [vtiger]

Vtiger is a PHP-based, open-source CRM application which forked off SugarCRM. Very suitable for small and medium enterprises, it uses the Smarty template engine. One can also import and export specific modules with or without customization.

Links

548 questions
1
vote
1 answer

Get result from vTiger webservice

I am writing a wordpress-plugin which queries data from the vTiger Webservice-API. I read the tutorial (https://wiki.vtiger.com/index.php/Webservices_tutorials#QueryResult) and know the reference…
Nico
  • 336
  • 3
  • 19
1
vote
2 answers

vTiger Event Handler to check if record exists

I am working on vTiger 6.5 and I am trying to figure a way to see if a record exists in a custom module of mine. I want to check whether the 'policynumber' is new before saving, here is my code so far. For some reason it seems to act randomly…
Diddy
  • 43
  • 1
  • 8
1
vote
1 answer

vTiger crm change modules config

I want to add new module and deactivate some controlls(left panel and bottom header). Where is some file(config) in which I can write some conditions for this? I want to safe for this module only top header.
stand
  • 139
  • 1
  • 12
1
vote
0 answers

Export and Import vTiger data and/or CRM Settings

We need to set up a couple vTiger instances for user training and to test add-ons and CRM Settings (like: workflow, custom fields, picklists and custom functions, etc). For example, rather than toy around in the a production environment for a major…
1
vote
0 answers

How to work with AppConnector in Vtiger?

I have an API call in vtiger which will give Accounts record details, this call is executed by AppConnector.request() method in vtiger. How to get the data from this call and manipulate with some conditions. Meaning that,... I have a code like…
Jaccs
  • 1,052
  • 3
  • 12
  • 33
1
vote
1 answer

How do I fix the Return URL in Vtiger appending "?success=ok" to the URL?

VTiger is adding "?success=ok" to the Return URL of my webform. I can't figure out how to fix it. I think the problem is in the below php file.
1
vote
0 answers

How generate custom form via vtiger field object?

Add below code in module/Edit.php $query = 'SELECT f.* FROM vtiger_field as f INNER JOIN vtiger_tab as t on f.tabid = t.tabid and t.name=? WHERE fieldname =?'; $result = $adb->pquery($query, array('{module_name}',…
StackCoder
  • 87
  • 1
  • 11
1
vote
1 answer

How to pass two parameters to a select to a SELECT query in vtiger?

I would like to pass two parameters to a SELECT query for one scenario in a vtiger custom function. Like below .. function start_date($projectid, $stage){ $adb = PearDatabase::getInstance(); $stage = "Stage-0"; $data =…
Jaccs
  • 1,052
  • 3
  • 12
  • 33
1
vote
1 answer

How to add a combo drop-down user list in vtigercrm?

I'm using existing Task module under the Project module. I would like to assign particular task to multiple workers. Meaning that group of people will together complete the task. I already have workers as users in my vtigercrm. So if i make a user…
1
vote
1 answer

How one can create users field like "Assigned To" field in vtigercrm?

I have a module ABC in that i need to create another users picklist irrespective of "Assigned To" like already there for every module. I tried to create that by copying existed field for "Assigned To" in vtiger_field table. But it is not working for…
1
vote
1 answer

Vtiger CRM 6.4.0 - Issues when configuring Mail Manager

I am trying to setup an account on the Mail Manager using "Others" mail server but when i click on the button Save button on the Setting menu it seems that the details has been saved but if refresh the page, Vtiger ask me to configure mailbox…
PHP007
  • 11
  • 1
1
vote
3 answers

Guzzle vs CURL for interacting with vtiger web services, CURL works but Guzzle does not

I am implementing a client to consume vtiger REST API and in the login process I manage to get it working with curl but not with Guzzle. Guzzle code: $postData = [ 'operation' => 'login', 'username' => $userName, 'accessKey' =>…
1
vote
3 answers

How to get access the properties in this json response?

I am executing a curl request and get a response which returns a json response. Below is the code after the response is sent back. Response: "Zeros Replaced real…
DEVPROCB
  • 483
  • 2
  • 5
  • 19
1
vote
1 answer

Vtiger Webservice throwing 406 Error

I am trying to call a vtiger webservice using PHP CURL like this. $selectQuery = urlencode("SELECT title,firstname,lastname FROM Contacts;"); $curl =…
Punit Gajjar
  • 4,937
  • 7
  • 35
  • 70
1
vote
1 answer

Add comments block to Campaign detail view vtigerCRM

I have recently enabled comments for the Campaign module, they work fine if you click comments on the right-hand menu, but I can't work out how to get the comments widget block to show within the detail view of the page. I have added the following…
DanBarber
  • 165
  • 3
  • 15