details: https://code.openbravo.com/erp/devel/pi/rev/f399f54aaf52 changeset: 13836:f399f54aaf52 user: Antonio Moreno <antonio.moreno <at> openbravo.com> date: Mon Sep 26 18:28:42 2011 +0200 summary: Fixed issue 18566. Passwords greater than 7 chars will be accepted
details: https://code.openbravo.com/erp/devel/pi/rev/b682658595ef changeset: 13837:b682658595ef user: Antonio Moreno <antonio.moreno <at> openbravo.com> date: Mon Sep 26 19:14:02 2011 +0200 summary: Fixed issue 18555. Display logic will work correctly for Process buttons. The currentValues variable had been globally initialized and its value wasn't in sync with the buttons of the context. This meant that the displayLogic was evaluated using the values of the header tab, so the relevant value was null, and the display logic sometimes returned false. This did not always happened, it happened only with the FIC-related call. This explains why it worked the second time the user tried. diffstat: modules/org.openbravo.client.application/web/org.openbravo.client.application/js/toolbar/ob-toolbar.js | 2 +- src-db/database/sourcedata/AD_COLUMN.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diffs (24 lines): diff -r 53f710de3c59 -r b682658595ef modules/org.openbravo.client.application/web/org.openbravo.client.application/js/toolbar/ob-toolbar.js --- a/modules/org.openbravo.client.application/web/org.openbravo.client.application/js/toolbar/ob-toolbar.js Mon Sep 26 13:04:20 2011 +0200 +++ b/modules/org.openbravo.client.application/web/org.openbravo.client.application/js/toolbar/ob-toolbar.js Mon Sep 26 19:14:02 2011 +0200 @@ -1062,7 +1062,7 @@ } } currentContext.viewForm.view.attachmentExists = attachmentExists; - doRefresh(buttonsByContext[currentContext], currentValues || {}, noneOrMultipleRecordsSelected, me); + doRefresh(buttonsByContext[currentContext], currentContext.getCurrentValues() || {}, noneOrMultipleRecordsSelected, me); }; }; diff -r 53f710de3c59 -r b682658595ef src-db/database/sourcedata/AD_COLUMN.xml --- a/src-db/database/sourcedata/AD_COLUMN.xml Mon Sep 26 13:04:20 2011 +0200 +++ b/src-db/database/sourcedata/AD_COLUMN.xml Mon Sep 26 19:14:02 2011 +0200 @@ -195725,7 +195725,7 @@ <!--1000500014--> <COLUMNNAME><![CDATA[Smtpserverpassword]]></COLUMNNAME> <!--1000500014--> <AD_TABLE_ID><![CDATA[1000500000]]></AD_TABLE_ID> <!--1000500014--> <AD_REFERENCE_ID><![CDATA[16EC6DF4A59747749FDF256B7FBBB058]]></AD_REFERENCE_ID> -<!--1000500014--> <FIELDLENGTH><![CDATA[20]]></FIELDLENGTH> +<!--1000500014--> <FIELDLENGTH><![CDATA[60]]></FIELDLENGTH> <!--1000500014--> <ISKEY><![CDATA[N]]></ISKEY> <!--1000500014--> <ISPARENT><![CDATA[N]]></ISPARENT> <!--1000500014--> <ISMANDATORY><![CDATA[N]]></ISMANDATORY> ------------------------------------------------------------------------------ All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudulent activity and more. Splunk takes this data and makes sense of it. Business sense. IT sense. Common sense. http://p.sf.net/sfu/splunk-d2dcopy1 _______________________________________________ Openbravo-commits mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openbravo-commits
