php - VTiger Scheduled workflow: "is empty" condition doesen't work -
i noticed is empty
, is not empty
conditions don't work scheduled workflows.
they work workflows triggered hand (for example modifying record), scheduled workflows consider not empty
fields, empty ones..
the same behavior happens settig is
condition , lefting blank value
: when workflow triggered hand, recognizes empty values, when scheduled fields detected not empty
.
i'll more researches on it, i'll apreciate if test , confirm behaviour. i've tested on fresh 6.2 installation: problem remains same.
thanks joebordes quick answer on vtiger blog. posted fix github:
pratically, find modules/com_vtiger_workflow/workflowscheduler.php
file , replace line 136:
'is not empty' => 'n',
with 2 lines:
'is empty' => 'y', 'is not empty' => 'ny',
thanks again!
Comments
Post a Comment