#idempiere IRC log for Monday, 2016-04-18

*** j has joined #idempiere01:41
*** j is now known as Guest5458701:42
*** Guest54587 has quit IRC01:43
*** Not-aaf4 has joined #idempiere04:06
Not-aaf4[iDempiere] CarlosRuiz_globalqss pushed 1 commit to release-3.1 [+0/-0/±5] https://bitbucket.org/idempiere/idempiere/commits/04:06
Not-aaf4[iDempiere] globalqss 6d6760f - IDEMPIERE-3071 Cache Reset process dont work if set Show Help = "Run silently - Take Defaults"04:06
Not-aaf4[IDEMPIERE] carlosruiz_globalqss updated IDEMPIERE-3071 status set to "Resolved" -assignee set to "Carlos Antonio Ruiz Gomez" -resolution set to "Fixed"04:06
Not-aaf4[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-307104:06
Not-aaf4[iDempiere3.1Daily] jenkins built #43 completed (success) http://ci.idempiere.org/job/iDempiere3.1Daily/43/05:18
*** nmicoud has joined #idempiere05:20
*** a42niem has joined #idempiere05:55
*** a42niem has quit IRC06:29
*** a42niem has joined #idempiere06:31
Not-aaf4[IDEMPIERE] norbert.bede created IDEMPIERE-3074 Quick Create Doesn't consider Window Customisation settings07:14
Not-aaf4[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-307407:14
*** tavi has joined #idempiere08:13
taviHello! I have 2 processes. First one has a class atached and second  has a jasper report. I try to start second process from first one but parametres that I set in first process have null values in jasper report. Any suggestions?08:16
*** tavi has quit IRC09:02
*** a42niem has joined #idempiere09:40
Not-aaf4[IDEMPIERE] a42niem created IDEMPIERE-3075 On oracle db report shows oracle.sql.CLOB@23acf576 instead of text field content13:12
Not-aaf4[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-307513:12
Not-aaf4[IDEMPIERE] Denis Kuznetsov updated IDEMPIERE-307214:51
Not-aaf4[IDEMPIERE] There is some way to create new record, but for simplicity of the experiment we will take two of them: 1) from window by clicking on New Record; 2) from Favorites panel by clicking on New Record. The first method working fine. The second one - error occures as wrote above (Only in WebUI). Apropos, my test in swing interface did not reveal any errors in both methods. That is issue of WebUI. I debugged code14:51
Not-aaf4and found that problem exists in class GridTable.java procedure createSelectSql(). In this procedure SQL created which select lines from detail table. There is line (№ 405): m_SQL = m_SQL_Select + where.toString(); Here: m_SQL_Select - is contains value = "SELECT .... FROM C_OrderLine" where - is contains value "WHERE (2=3)" if record creates by method #1 - is contein value "" if record creates by method #2 As a14:51
Not-aaf4result m_SQL is set to: "SELECT .... FROM C_OrderLine WHERE (2=3)" - if record creates by method #1 "SELECT .... FROM C_OrderLine" - if record creates by method #2 With this m_SQL idempiere selecting 0 lines from C_OrderLine table - if record creates by method #1, and all records in C_OrderLine table - if record creates by method #2. If C_OrderLine contains 12 millions records (as we have), then system show error14:51
Not-aaf4message (timeout). I am a poor knows this code, but I can offer patch: in GridTable.java at line #206 instead of: - private String m_whereClause = ""; add one: + private String m_whereClause = "2=3"; My little test showed, that this patch works correctly in clean base and in our big production base.14:51
Not-aaf4[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-307214:51
Not-aaf4[IDEMPIERE] Denis Kuznetsov updated IDEMPIERE-307214:52
Not-aaf4[IDEMPIERE] There is some way to create new record, but for simplicity of the experiment we will take two of them: 1) from window by clicking on New Record; 2) from Favorites panel by clicking on New Record. The first method working fine. The second one - error occures as wrote above (Only in WebUI). Apropos, my test in swing interface did not reveal any errors in both methods. That is issue of WebUI. I debugged code14:52
Not-aaf4and found that problem exists in class GridTable.java procedure createSelectSql(). In this procedure SQL created which select lines from detail table. There is line (№ 405): m_SQL = m_SQL_Select + where.toString(); Here: m_SQL_Select - is contains value = "SELECT .... FROM C_OrderLine" where - is contains value "WHERE (2=3)" if record creates by method #1 - is contein value "" if record creates by method #2 As a14:52
Not-aaf4result m_SQL is set to: "SELECT .... FROM C_OrderLine WHERE (2=3)" - if record creates by method #1 "SELECT .... FROM C_OrderLine" - if record creates by method #2 With this m_SQL idempiere selecting 0 lines from C_OrderLine table - if record creates by method #1, and all records in C_OrderLine table - if record creates by method #2. If C_OrderLine contains 12 millions records (as we have), then system show error14:52
Not-aaf4message (timeout). I am a poor knows this code, but I can offer patch: in GridTable.java at line #206 instead of: - private String m_whereClause = ""; add one: + private String m_whereClause = "2=3"; My little test showed, that this patch works correctly in clean base and in our big production base.14:52
Not-aaf4[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-307214:52
Not-aaf4[IDEMPIERE] Denis Kuznetsov updated IDEMPIERE-307214:52
Not-aaf4[IDEMPIERE] There is some way to create new record, but for simplicity of the experiment we will take two of them: 1) from window by clicking on New Record; 2) from Favorites panel by clicking on New Record. The first method working fine. The second one - error occures as wrote above (Only in WebUI). Apropos, my test in swing interface did not reveal any errors in both methods. That is issue of WebUI. I debugged code14:52
Not-aaf4and found that problem exists in class GridTable.java procedure createSelectSql(). In this procedure SQL created which select lines from detail table. There is line (№ 405): m_SQL = m_SQL_Select + where.toString(); Here: m_SQL_Select - is contains value = "SELECT .... FROM C_OrderLine" where - is contains value "WHERE (2=3)" if record creates by method #1 - is contein value "" if record creates by method #2 As a14:52
Not-aaf4result m_SQL is set to: "SELECT .... FROM C_OrderLine WHERE (2=3)" - if record creates by method #1 "SELECT .... FROM C_OrderLine" - if record creates by method #2 With this m_SQL idempiere selecting 0 lines from C_OrderLine table - if record creates by method #1, and all records in C_OrderLine table - if record creates by method #2. If C_OrderLine contains 12 millions records (as we have), then system show error14:52
Not-aaf4message (timeout). I am a poor knows this code, but I can offer patch: in GridTable.java at line #206 instead of: | - private String m_whereClause = ""; add one: | + private String m_whereClause = "2=3"; My little test showed, that this patch works correctly in clean base and in our big production base.14:52
Not-aaf4[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-307214:52
*** a42niem has quit IRC14:53
Not-aaf4[IDEMPIERE] Denis Kuznetsov updated IDEMPIERE-307214:53
Not-aaf4[IDEMPIERE] There is some way to create new record, but for simplicity of the experiment we will take two of them: 1) from window by clicking on New Record; 2) from Favorites panel by clicking on New Record. The first method working fine. The second one - error occures as wrote above (Only in WebUI). Apropos, my test in swing interface did not reveal any errors in both methods. That is issue of WebUI. I debugged code14:53
Not-aaf4and found that problem exists in class GridTable.java procedure createSelectSql(). In this procedure SQL created which select lines from detail table. There is line (№ 405): m_SQL = m_SQL_Select + where.toString(); Here: m_SQL_Select - is contains value = "SELECT .... FROM C_OrderLine" where - is contains value "WHERE (2=3)" if record creates by method #1 - is contein value "" if record creates by method #2 As a14:53
Not-aaf4result m_SQL is set to: "SELECT .... FROM C_OrderLine WHERE (2=3)" - if record creates by method #1 "SELECT .... FROM C_OrderLine" - if record creates by method #2 With this m_SQL idempiere selecting 0 lines from C_OrderLine table - if record creates by method #1, and all records in C_OrderLine table - if record creates by method #2. If C_OrderLine contains 12 millions records (as we have), then system show error14:53
Not-aaf4message (timeout). I am a poor knows this code, but I can offer patch: in GridTable.java at line #206 instead of: . - private String m_whereClause = ""; add one: . + private String m_whereClause = "2=3"; My little test showed, that this patch works correctly in clean base and in our big production base.14:53
Not-aaf4[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-307214:53
Not-aaf4[IDEMPIERE] Denis Kuznetsov updated IDEMPIERE-307214:53
Not-aaf4[IDEMPIERE] There is some way to create new record, but for simplicity of the experiment we will take two of them: 1) from window by clicking on New Record; 2) from Favorites panel by clicking on New Record. The first method working fine. The second one - error occures as wrote above (Only in WebUI). Apropos, my test in swing interface did not reveal any errors in both methods. That is issue of WebUI. I debugged code14:53
Not-aaf4and found that problem exists in class GridTable.java procedure createSelectSql(). In this procedure SQL created which select lines from detail table. There is line (№ 405): m_SQL = m_SQL_Select + where.toString(); Here: m_SQL_Select - is contains value = "SELECT .... FROM C_OrderLine" where - is contains value "WHERE (2=3)" if record creates by method #1; - is contein value "" if record creates by method #2. As a14:53
Not-aaf4result m_SQL is set to: "SELECT .... FROM C_OrderLine WHERE (2=3)" - if record creates by method #1 "SELECT .... FROM C_OrderLine" - if record creates by method #2 With this m_SQL idempiere selecting 0 lines from C_OrderLine table - if record creates by method #1, and all records in C_OrderLine table - if record creates by method #2. If C_OrderLine contains 12 millions records (as we have), then system show error14:53
Not-aaf4message (timeout). I am a poor knows this code, but I can offer patch: in GridTable.java at line #206 instead of: . - private String m_whereClause = ""; add one: . + private String m_whereClause = "2=3"; My little test showed, that this patch works correctly in clean base and in our big production base.14:53
Not-aaf4[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-307214:53
*** egil0902 has joined #idempiere15:32
*** CarlosRuiz has joined #idempiere15:46
Not-aaf4[IDEMPIERE] egil0902 updated IDEMPIERE-307315:50
Not-aaf4[IDEMPIERE] Hi community. I create a modification for this class which i hope can be introduce into the core. Attach to this issue is my improvement The especific case is to allow decide the length of data showed in grid.15:50
Not-aaf4[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-307315:50
Not-aaf4[IDEMPIERE] egil0902 updated IDEMPIERE-3073 Attachment set to "GridTabRowRenderer.patch"15:50
Not-aaf4[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-307315:50
Not-aaf4[IDEMPIERE] egil0902 created IDEMPIERE-3076 Textarea show as textbox in grid15:55
Not-aaf4[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-307615:55
*** CarlosRuiz has quit IRC17:08
*** nmicoud has left #idempiere18:14
*** egil0902 has quit IRC18:51
*** CarlosRuiz has joined #idempiere19:40
*** CarlosRuiz has quit IRC20:08
Not-aaf4[IDEMPIERE] hieplq created IDEMPIERE-3077 security problem20:10
Not-aaf4[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-307720:10
*** CarlosRuiz has joined #idempiere21:00
*** CarlosRuiz has quit IRC22:05

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!