*** j has joined #idempiere | 01:41 | |
*** j is now known as Guest54587 | 01:42 | |
*** Guest54587 has quit IRC | 01:43 | |
*** Not-aaf4 has joined #idempiere | 04: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-3071 | 04:06 |
Not-aaf4 | [iDempiere3.1Daily] jenkins built #43 completed (success) http://ci.idempiere.org/job/iDempiere3.1Daily/43/ | 05:18 |
*** nmicoud has joined #idempiere | 05:20 | |
*** a42niem has joined #idempiere | 05:55 | |
*** a42niem has quit IRC | 06:29 | |
*** a42niem has joined #idempiere | 06:31 | |
Not-aaf4 | [IDEMPIERE] norbert.bede created IDEMPIERE-3074 Quick Create Doesn't consider Window Customisation settings | 07:14 |
Not-aaf4 | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3074 | 07:14 |
*** tavi has joined #idempiere | 08:13 | |
tavi | Hello! 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 IRC | 09:02 | |
*** a42niem has joined #idempiere | 09:40 | |
Not-aaf4 | [IDEMPIERE] a42niem created IDEMPIERE-3075 On oracle db report shows oracle.sql.CLOB@23acf576 instead of text field content | 13:12 |
Not-aaf4 | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3075 | 13:12 |
Not-aaf4 | [IDEMPIERE] Denis Kuznetsov updated IDEMPIERE-3072 | 14: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 code | 14:51 |
Not-aaf4 | and 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 a | 14:51 |
Not-aaf4 | result 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 error | 14:51 |
Not-aaf4 | message (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-3072 | 14:51 |
Not-aaf4 | [IDEMPIERE] Denis Kuznetsov updated IDEMPIERE-3072 | 14: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 code | 14:52 |
Not-aaf4 | and 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 a | 14:52 |
Not-aaf4 | result 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 error | 14:52 |
Not-aaf4 | message (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-3072 | 14:52 |
Not-aaf4 | [IDEMPIERE] Denis Kuznetsov updated IDEMPIERE-3072 | 14: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 code | 14:52 |
Not-aaf4 | and 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 a | 14:52 |
Not-aaf4 | result 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 error | 14:52 |
Not-aaf4 | message (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-3072 | 14:52 |
*** a42niem has quit IRC | 14:53 | |
Not-aaf4 | [IDEMPIERE] Denis Kuznetsov updated IDEMPIERE-3072 | 14: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 code | 14:53 |
Not-aaf4 | and 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 a | 14:53 |
Not-aaf4 | result 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 error | 14:53 |
Not-aaf4 | message (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-3072 | 14:53 |
Not-aaf4 | [IDEMPIERE] Denis Kuznetsov updated IDEMPIERE-3072 | 14: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 code | 14:53 |
Not-aaf4 | and 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 a | 14:53 |
Not-aaf4 | result 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 error | 14:53 |
Not-aaf4 | message (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-3072 | 14:53 |
*** egil0902 has joined #idempiere | 15:32 | |
*** CarlosRuiz has joined #idempiere | 15:46 | |
Not-aaf4 | [IDEMPIERE] egil0902 updated IDEMPIERE-3073 | 15: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-3073 | 15:50 |
Not-aaf4 | [IDEMPIERE] egil0902 updated IDEMPIERE-3073 Attachment set to "GridTabRowRenderer.patch" | 15:50 |
Not-aaf4 | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3073 | 15:50 |
Not-aaf4 | [IDEMPIERE] egil0902 created IDEMPIERE-3076 Textarea show as textbox in grid | 15:55 |
Not-aaf4 | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3076 | 15:55 |
*** CarlosRuiz has quit IRC | 17:08 | |
*** nmicoud has left #idempiere | 18:14 | |
*** egil0902 has quit IRC | 18:51 | |
*** CarlosRuiz has joined #idempiere | 19:40 | |
*** CarlosRuiz has quit IRC | 20:08 | |
Not-aaf4 | [IDEMPIERE] hieplq created IDEMPIERE-3077 security problem | 20:10 |
Not-aaf4 | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3077 | 20:10 |
*** CarlosRuiz has joined #idempiere | 21:00 | |
*** CarlosRuiz has quit IRC | 22:05 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!