vtigercrm activity https://code.vtiger.com/vtiger/vtigercrm 2024-12-20T11:24:07Z tag:code.vtiger.com,2024-12-20:19445 Andrea Verdolini commented on issue #1668 at vtiger / vtigercrm 2024-12-20T11:24:07Z ANDREA.VERDOLINI Andrea Verdolini

+1

tag:code.vtiger.com,2024-12-17:19443 Alan Lord opened issue #1942: Recurring Type Picklist fault in VT830. Can't create recurring Events. at vtiger / vtigercrm 2024-12-17T11:04:38Z lord_alan Alan Lord

Go to the demo.vtiger.com/vtigercrm system. Login and go to Add Event and use the Full Form. Check the Recurrence box. The second picklist which allows you to chose from Daily, weekly etc... Is empty. (The picklist table vtiger_recurringtype is populated however - well it is on the system where I found this issue so I assume it the same on the demo).

Screenshot_from_2024-12-17_10-57-01

tag:code.vtiger.com,2024-12-13:19442 Martin Allen commented on issue #1721 at vtiger / vtigercrm 2024-12-13T08:13:41Z Martin.allen Martin Allen

We've just encountered the same issue with a couple of fields that weren't being calculated even though they had values, and traced it back to the field label. Our field labels contained £ symbols, which at some point appear to be url_encoded and then aren't being decoded later.

We're looking into a fix for this currently - maybe this is caused by a similar problem?

tag:code.vtiger.com,2024-12-09:19441 michael opened issue #1941: Cannot set overall discount on sales order by API at vtiger / vtigercrm 2024-12-09T03:17:25Z michael michael
curl --data 'operation=revise&sessionName='$sessionName'&element=%7B%22id%22:%226x1059807%22,%22hdnDiscountAmount%22:%2227.270%22%7D' https://${crmsite}/webservice.php

returns

{"success":true,"result":{"id":"6x1059807","hdnDiscountAmount":"0.00000000","conversion_rate":"1.000","salesorder_no":"SO212624" [...] }}

and inspection via the UI confirms that the overall discount remains at 0.0. It should show "hdnDiscountAmount":"27.270"

tag:code.vtiger.com,2024-12-06:19440 Alan Lord commented on commit 970660a2 at vtiger / vtigercrm 2024-12-06T16:01:54Z lord_alan Alan Lord

@prasad Why did you add this? In 8.3.0 if you now go to a record in DetailView from a Listview where there are multiple records, then the forward and back buttons disappear in the Detail View? Confirmed on your demo system too.

tag:code.vtiger.com,2024-12-03:19439 angelo paglialonga commented on issue #1779 at vtiger / vtigercrm 2024-12-03T09:02:07Z angelo.paglialonga angelo paglialonga

@prasad any thoughts on this issue?

tag:code.vtiger.com,2024-12-02:19438 Andrea Verdolini commented on issue #1779 at vtiger / vtigercrm 2024-12-02T09:53:10Z ANDREA.VERDOLINI Andrea Verdolini

I tried updating the library but couldn't get it to work. I tried in 8.3 where I had to make some changes to the core but it still doesn't work.

tag:code.vtiger.com,2024-11-29:19423 Ruben A. Estrada commented on issue #1899 at vtiger / vtigercrm 2024-11-29T16:52:29Z ruben.estrada Ruben A. Estrada [email protected]

Yes, I have created events in the past without issues using vtlib. Before the calls to the registration add:

require_once 'vtlib/Vtiger/Module.php';
require_once 'include/utils/VtlibUtils.php';
require_once 'config.inc.php';
require_once 'includes/Loader.php';
require_once 'modules/Emails/mail.php';
require_once 'vtlib/Vtiger/Mailer.php';
vimport ('includes.runtime.EntryPoint');

$current_user = Users::getActiveAdminUser();

$db = PearDatabase::getInstance();
$db->setDebug(true);
$db->setDieOnError(true);

That will give you debug informatin for queries execution. If the query fails, it will throw an exception and a message about the error.

tag:code.vtiger.com,2024-11-29:19422 Amy opened issue #1940: email details popup is not opening in the mail when hover at vtiger / vtigercrm 2024-11-29T11:14:33Z Amy1 Amy

The issue is when we opened Mail Manager; it opened the list of mails, and if we clicked on one mail, it would open the mail on the right-hand side. If we hover on the from email address, it doesn't show the pop up with the email's details. popupissue

tag:code.vtiger.com,2024-11-29:19421 Andrea Verdolini commented on issue #1899 at vtiger / vtigercrm 2024-11-29T08:05:18Z ANDREA.VERDOLINI Andrea Verdolini

about this, i tried to use the script to create the events of version 7.3 and it doesn't work. i solved it by inserting it into the db did you create the event with a script?

this is the script i used

<?php
include_once('vtlib/Vtiger/Event.php');

if(Vtiger_Event::hasSupport()) {
      Vtiger_Event::register(
            'EventsHandler', 'vtiger.entity.beforedelete',
            'EventsHandler', 'modules/Events/EventsHandler.php'
      );
      Vtiger_Event::register(
        'EventsHandler', 'vtiger.entity.afterdelete',
        'EventsHandler', 'modules/Events/EventsHandler.php'
  );
      echo 'Eventi aggiunti con successo';
}
tag:code.vtiger.com,2024-11-20:19418 Alan Lord commented on issue #1934 at vtiger / vtigercrm 2024-11-20T08:56:38Z lord_alan Alan Lord

👍

tag:code.vtiger.com,2024-11-19:19416 Alan Lord commented on issue #1938 at vtiger / vtigercrm 2024-11-19T09:45:12Z lord_alan Alan Lord

Well, yes. You need to configure it. When a field is created certain columns and relationships are set up in the database...

This method might help you get started:

https://code.vtiger.com/vtiger/vtigercrm/-/blob/3ef60ec5c9c8fd94b057a2d56bd78077873162bf/modules/Vtiger/helpers/Util.php#L376

tag:code.vtiger.com,2024-11-19:19415 User IA commented on issue #1938 at vtiger / vtigercrm 2024-11-19T09:29:59Z ynqlh User IA

I try to change the uitype to 15 but the whole field seems like not working. I can assigned the role to the option but when I log to the role, I totally cannot see any of the option.

tag:code.vtiger.com,2024-11-19:19414 Alan Lord commented on issue #1938 at vtiger / vtigercrm 2024-11-19T08:14:52Z lord_alan Alan Lord

Try it :-) In vtiger_field

tag:code.vtiger.com,2024-11-19:19413 Prasad commented on issue #1934 at vtiger / vtigercrm 2024-11-19T03:47:27Z prasad Prasad

@vincenzo.bruno @Ralph.Kretzschmar @lord_alan - thank you for digging specifics. Please review last commit.

tag:code.vtiger.com,2024-11-19:19412 Prasad closed issue #1934: Permission denied on several modules for Standard Profiles except CEO at vtiger / vtigercrm 2024-11-19T03:46:41Z prasad Prasad

Dear vtiger-Team,

i install the latest version. setup is running smooth without any errors.

issue example: it is not possible for non CEO Users to assign a company to an organisation because the user receives: image

the problem exists on several modules when trying to search for organisation or searching for organisation on project level etc.

Best regrads Ralph

tag:code.vtiger.com,2024-11-19:19411 Prasad pushed to project branch master at vtiger / vtigercrm 2024-11-19T03:46:41Z prasad Prasad

Prasad (3ef60ec5) at 19 Nov 03:46

Fixes #1934: Logical correction to compare allowed ref module

tag:code.vtiger.com,2024-11-19:19410 Prasad opened issue #1934: Permission denied on several modules for Standard Profiles except CEO at vtiger / vtigercrm 2024-11-19T03:45:36Z prasad Prasad

Dear vtiger-Team,

i install the latest version. setup is running smooth without any errors.

issue example: it is not possible for non CEO Users to assign a company to an organisation because the user receives: image

the problem exists on several modules when trying to search for organisation or searching for organisation on project level etc.

Best regrads Ralph

tag:code.vtiger.com,2024-11-19:19409 User IA commented on issue #1938 at vtiger / vtigercrm 2024-11-19T02:58:07Z ynqlh User IA

I found that picklist with uitype 15 can assigned role while uitype 16 cannot. Is there a way we can change this?