Skip to content
Snippets Groups Projects
Commit 807de91b authored by Satish's avatar Satish
Browse files

Fixes #418 - vt7 should the account owner column under users list view be present in Open Source ?

parent ae79148d
No related branches found
No related tags found
No related merge requests found
......@@ -122,13 +122,7 @@
<td class="{$WIDTHTYPE}" nowrap>
<span class="fieldValue">
<span class="value textOverflowEllipsis">
{if $LISTVIEW_HEADER->getName() eq 'is_owner'}
{if $LISTVIEW_ENTRY->get($LISTVIEW_HEADERNAME) eq 1}
{vtranslate('LBL_YES')}
{/if}
{else}
{$LISTVIEW_ENTRY->get($LISTVIEW_HEADERNAME)}
{/if}
{$LISTVIEW_ENTRY->get($LISTVIEW_HEADERNAME)}
</span>
</span>
</td>
......
......@@ -97,8 +97,7 @@ class Users extends CRMEntity {
'Email'=>Array('vtiger_users'=>'email1'),
'Email2'=>Array('vtiger_users'=>'email2'),
'Admin'=>Array('vtiger_users'=>'is_admin'),
'Phone'=>Array('vtiger_users'=>'phone_work'),
'Owner'=>Array('vtiger_users'=>'is_owner')
'Phone'=>Array('vtiger_users'=>'phone_work')
);
var $list_fields_name = Array(
'Last Name'=>'last_name',
......@@ -109,8 +108,7 @@ class Users extends CRMEntity {
'Email'=>'email1',
'Email2'=>'email2',
'Admin'=>'is_admin',
'Phone'=>'phone_work',
'Owner'=>'is_owner'
'Phone'=>'phone_work'
);
//Default Fields for Email Templates -- Pavani
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment