details: https://code.openbravo.com/erp/devel/pi/rev/29672f8eff0e changeset: 22927:29672f8eff0e user: Guillermo Gil <guillermo.gil <at> openbravo.com> date: Wed Apr 30 15:23:58 2014 +0200 summary: Fixed issue 26195: FIC Error message is missing window name
Added window name to error message in addition to tab name. diffstat: modules/org.openbravo.client.application/src/org/openbravo/client/application/window/FormInitializationComponent.java | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diffs (24 lines): diff -r 045bce2cd264 -r 29672f8eff0e modules/org.openbravo.client.application/src/org/openbravo/client/application/window/FormInitializationComponent.java --- a/modules/org.openbravo.client.application/src/org/openbravo/client/application/window/FormInitializationComponent.java Wed Apr 30 15:17:25 2014 +0200 +++ b/modules/org.openbravo.client.application/src/org/openbravo/client/application/window/FormInitializationComponent.java Wed Apr 30 15:23:58 2014 +0200 @@ -1250,8 +1250,8 @@ "inp" + Sqlc.TransformaNombreColumna(columnName), currentValue.toString()); } } else { - RequestContext.get().setRequestParameter( - "inp" + Sqlc.TransformaNombreColumna(columnName), null); + RequestContext.get().setRequestParameter("inp" + Sqlc.TransformaNombreColumna(columnName), + null); } } catch (Exception e) { log.error("Couldn't get the value for column " + columnName, e); @@ -1829,7 +1829,8 @@ return fvalue; } catch (Exception e) { log.error("Error while computing auxiliary input parameter: " + auxIn.getName() - + " from tab: " + auxIn.getTab().getName(), e); + + " from tab: " + auxIn.getTab().getName() + " of window: " + + auxIn.getTab().getWindow().getName(), e); } return null; } ------------------------------------------------------------------------------ "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available. Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs _______________________________________________ Openbravo-commits mailing list Openbravo-commits@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/openbravo-commits