From 9b64afe61af246cfe42edb09d22bd595f2957da9 Mon Sep 17 00:00:00 2001 From: Victor Saisa Lopez Date: Mon, 9 Mar 2015 14:53:27 -0400 Subject: [PATCH] PM-1709 "Designer: Perdida del proceso original al..." SOLVED Issue: Designer: Perdida del proceso original al importar uno con el mismo nombre Cause: Nuevo requerimiento de funciones Solution: Se ha eliminado la opcion "Disable the current process and create a new version of the process" --- workflow/engine/templates/processes/main.js | 62 ++++++++++++--------- 1 file changed, 35 insertions(+), 27 deletions(-) diff --git a/workflow/engine/templates/processes/main.js b/workflow/engine/templates/processes/main.js index 23a5a3c76..8641c838b 100755 --- a/workflow/engine/templates/processes/main.js +++ b/workflow/engine/templates/processes/main.js @@ -1033,34 +1033,42 @@ importProcessExistProcess = function() }, { xtype : 'spacer', height : 10 - }, { - items : [ - { - xtype : "radio", - boxLabel : _('IMPORT_PROCESS_OVERWRITING'), - name : "IMPORT_OPTION", - inputValue : '1', - tabIndex : 1 - } + }, + { + items: [ + { + xtype: "radio", + name: "IMPORT_OPTION", + inputValue: "3", + boxLabel: _("IMPORT_PROCESS_NEW"), + tabIndex: 3, + checked: "checked" + } ] - }, { - items : [{ - xtype : "radio", - boxLabel : _('IMPORT_PROCESS_DISABLE'), - tabIndex : 2, - name : "IMPORT_OPTION", - inputValue : '2', - checked : "checked" - }] - }, { - items: [{ - xtype : "radio", - boxLabel : _('IMPORT_PROCESS_NEW'), - name : "IMPORT_OPTION", - inputValue : '3', - tabIndex : 3 - }] - }, { + }, + //{ + // items: [ + // { + // xtype: "radio", + // name: "IMPORT_OPTION", + // inputValue: "2", + // boxLabel: _("IMPORT_PROCESS_DISABLE"), + // tabIndex: 2 + // } + // ] + //}, + { + items: [ + { + xtype: "radio", + name: "IMPORT_OPTION", + inputValue: "1", + boxLabel: _("IMPORT_PROCESS_OVERWRITING"), + tabIndex: 1 + } + ] + }, + { xtype : 'hidden', name : 'ajaxAction', value : 'uploadFileNewProcessExist'