From e37010da7316e79ff79d7283ae8e7499090b2551 Mon Sep 17 00:00:00 2001 From: Julio Cesar Laura Date: Wed, 12 Sep 2012 16:00:28 -0400 Subject: [PATCH] Fix conflict with the USR_STATUS identifiers on the ExtJs script --- workflow/engine/templates/users/users.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow/engine/templates/users/users.js b/workflow/engine/templates/users/users.js index 68ecf22cf..19205691a 100644 --- a/workflow/engine/templates/users/users.js +++ b/workflow/engine/templates/users/users.js @@ -343,7 +343,7 @@ Ext.onReady(function () { }); var status = new Ext.data.SimpleStore({ - fields: ["USR_STATUS", "status"], + fields: ["USR_STATUS_VALUE", "status"], data: [["ACTIVE", _("ID_ACTIVE")], ["INACTIVE", _("ID_INACTIVE")], ["VACATION", _("ID_VACATION")]] }); @@ -356,7 +356,7 @@ Ext.onReady(function () { mode : 'local', store : status, displayField : 'status', - valueField : 'USR_STATUS', + valueField : 'USR_STATUS_VALUE', width : 120, typeAhead : true, triggerAction : 'all',