CoreBOSBB

Full Version: Business Maps ListColumns for some user don't display all field
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I found a bug on my installation and I reproduce it on Corebos demo.
In the demo crm I createed Business Maps HelpDesk_ListColumns.

https://demo.corebos.com/index.php?module=cbMap&action=DetailView&viewname=0&start=&record=43464&;

When global search the same string User admin see all fields in the Business Maps, but for user User cdTest don't see one of the fields. The field "Title" is missing.

Attach screenshots
reproduced locally. will have a look and get back to you
I had a look. The issue is that you have to give the field name, not the column name.

Code:
<linkfield>ticket_title</linkfield>

Code:
<field>
      <label>Title</label>
      <name>ticket_title</name>
</field>

I changed the business map code for it to check if you are giving the column name and adapt accordingly. I haven't released that code yet as I am currently validating some other changes. It will be available soon. In the meantime use the field name.

Let me know how it goes
Thank you