PM-1947 Classic/BPMN DESIGNER: La habilitacióe 'Timing Control' usando el checkbox funciona al revéCausa : Definida de esa manera.

Solucion : Revertir la interpretacion de esa propiedad.
This commit is contained in:
dheeyi
2015-03-24 18:27:21 -04:00
parent 8a25902d8c
commit 1ef21eeb8c
2 changed files with 2 additions and 2 deletions

View File

@@ -321,7 +321,7 @@ class Task
} }
//Validating TAS_TRANSFER_FLY value //Validating TAS_TRANSFER_FLY value
if ($arrayProperty["TAS_TRANSFER_FLY"] == "FALSE") { if ($arrayProperty["TAS_TRANSFER_FLY"] == "TRUE") {
if (!isset($arrayProperty["TAS_DURATION"])) { if (!isset($arrayProperty["TAS_DURATION"])) {
throw (new \Exception("Invalid value specified for 'tas_duration'")); throw (new \Exception("Invalid value specified for 'tas_duration'"));
} }

View File

@@ -23,7 +23,7 @@ SELECT CALENDAR_UID, CALENDAR_NAME FROM availableCalendars
var toggleFields = function() var toggleFields = function()
{ {
if(getField('TAS_TRANSFER_FLY').checked == false) if(getField('TAS_TRANSFER_FLY').checked == true)
{ {
showRowById('TAS_DURATION'); showRowById('TAS_DURATION');
showRowById('TAS_TIMEUNIT'); showRowById('TAS_TIMEUNIT');