@prasad No, it didn´t work again with new installation. I suspect is something related to this commit: 119ca0d7 because after this 7e8e61d2 I tested and did work but doesn´t work again. Look:
and yes, is the version updated with:
if (!in_array($picklistValueInLowerCase, $allPicklistValuesInLowerCase) && !empty($picklistValueInLowerCase)) { if ($moduleName != 'Calendar') { // Required to update runtime cache. $wsFieldDetails = $fieldInstance->getPicklistDetails(); $moduleObject = Vtiger_Module::getInstance($moduleName); $fieldObject = Vtiger_Field::getInstance($fieldName, $moduleObject); $fieldObject->setPicklistValues(array($fieldValue)); // Update cache state with new value added. $wsFieldDetails[] = array('label' => $fieldValue, 'name' => $fieldValue); Vtiger_Cache::getInstance()->setPicklistDetails($moduleObject->getId(), $fieldName, $wsFieldDetails); unset($this->allPicklistValues[$fieldName]); } } else { $fieldData[$fieldName] = $picklistDetails[$picklistValueInLowerCase]; }```