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

Popular posts from this blog

css - SVG using textPath a symbol not rendering in Firefox -

Java 8 + Maven Javadoc plugin: Error fetching URL -

node.js - How to abort query on demand using Neo4j drivers -