BUG 7224 No last names in user to reassign list

This issue was fixed and added the user name into the list
This commit is contained in:
Carlos Pacha
2011-08-12 15:46:26 -04:00
parent e076dc48e1
commit 166417ce72

View File

@@ -459,9 +459,9 @@ Ext.onReady(function(){
root: 'data',
fields : [
{name : 'USR_UID'},
{name : 'PRO_USERNAME'},
{name : 'USR_USERNAME'},
{name : 'USR_FIRSTNAME'},
{name : 'PRO_LASTNAME'}
{name : 'USR_LASTNAME'}
]
})
});
@@ -490,8 +490,9 @@ Ext.onReady(function(){
},
columns: [
{id:'USR_UID', dataIndex: 'USR_UID', hidden:true, hideable:false},
{header: _('ID_USER_NAME'), dataIndex: 'USR_USERNAME', width: 300},
{header: _('ID_FIRSTNAME'), dataIndex: 'USR_FIRSTNAME', width: 300},
{header: _('ID_LASTNAME'), dataIndex: 'USR_LASTNAME', width: 300}
{header: _('ID_LASTNAME'), dataIndex: 'USR_LASTNAME', width: 300}
]
}),
@@ -878,4 +879,4 @@ Date.prototype.dateToString = function(character) {
default:
return character;
}
}*/
}*/