*** hieplq has joined #idempiere | 05:15 | |
*** hieplq has quit IRC | 05:59 | |
Not-6f15 | [IDEMPIERE] red1 updated IDEMPIERE-2953 | 06:21 |
---|---|---|
Not-6f15 | [IDEMPIERE] AFAIK, FiFO accounting is not implemented well since Compiere days, and not considered in iDempiere. Only Std and Average PO is working. If you have interest, providing a full insight into how it should work in all parts of its related code, can help towards coding it right. I be interested to do it but i am not an accounting expert to say so. | 06:21 |
Not-6f15 | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2953 | 06:21 |
*** octavian has joined #idempiere | 07:01 | |
*** octavian is now known as Guest26707 | 07:02 | |
*** Guest26707 has quit IRC | 07:05 | |
*** tavi has joined #idempiere | 07:06 | |
tavi | Hy! I have a problem with Inventory Valuation Report. It runs very slowly . How can I improve the speed ? I 'm using PostgreSQL. | 07:14 |
*** nmicoud has joined #idempiere | 07:50 | |
*** hieplq has joined #idempiere | 07:52 | |
*** KermitTheFragger has joined #idempiere | 08:09 | |
*** a42niem has joined #idempiere | 08:35 | |
*** tavi has quit IRC | 09:06 | |
*** a42niem has quit IRC | 09:41 | |
*** a42niem has joined #idempiere | 09:43 | |
*** hieplq has quit IRC | 10:36 | |
*** nmicoud_ has joined #idempiere | 14:20 | |
*** nmicoud has quit IRC | 14:24 | |
*** nmicoud_ has quit IRC | 17:07 | |
*** KermitTheFragger has quit IRC | 17:49 | |
*** CarlosRuiz has joined #idempiere | 18:23 | |
*** ChanServ sets mode: +o CarlosRuiz | 18:23 | |
Not-6f15 | [IDEMPIERE] red1 updated IDEMPIERE-2745 | 19:27 |
Not-6f15 | [IDEMPIERE] Create constraint based on AD_Column existence raise a bug as reported at https://idempiere.atlassian.net/browse/IDEMPIERE-1264 for virtual columns, which does not mean existence in actual DB. In manual, it is taken care when we go to Window, Tab & Field to examine that column, its Synchronize Column button does not appear as Display Logic @IsView@='N' & @ColumnSQL@='' However I am not clear how Anthony | 19:27 |
Not-6f15 | logic at 1264 is solving it properly either. I will check the patches here and see. | 19:27 |
Not-6f15 | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2745 | 19:27 |
Not-6f15 | [IDEMPIERE] red1 updated IDEMPIERE-2745 status set to "Reopened" -resolution set to "None" | 19:30 |
Not-6f15 | [IDEMPIERE] Creating constraint keys should not include virtual columns. If done manually in Window, Tab & Field the Synchronize Column also does not appear as its Display Logic is @IsView@='N' & @ColumnSQL@='' thus the column exists in AD_Column without existing in actual database table. | 19:30 |
Not-6f15 | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2745 | 19:30 |
*** CarlosRuiz has quit IRC | 19:59 | |
Not-6f15 | [IDEMPIERE] red1 updated IDEMPIERE-2745 | 20:48 |
Not-6f15 | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2745 | 20:48 |
Not-6f15 | [IDEMPIERE] red1 updated IDEMPIERE-2745 | 20:49 |
Not-6f15 | [IDEMPIERE] Creating constraint keys should not include virtual columns. If done manually in Window, Tab & Field the Synchronize Column also does not appear as its Display Logic is @IsView@='N' & @ColumnSQL@='' thus the column exists in AD_Column without existing in actual database table. Therefore the following would have been necessary: {quote} +++ b/org.adempiere.pipo/src/org/adempiere/pipo2/PackInHandler.java @@ | 20:49 |
Not-6f15 | -416,11 +416,11 @@ log.warning("Table " + column.getAD_Table_ID() + " not found"); continue; } - if (table.isView()) { + if (table.isView() && !column.getColumnSQL().isEmpty()) { continue; } String tableName = table.getTableName(); { {quote} | 20:49 |
Not-6f15 | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2745 | 20:49 |
Not-6f15 | [IDEMPIERE] red1 updated IDEMPIERE-2745 | 20:50 |
Not-6f15 | [IDEMPIERE] Creating constraint keys should not include virtual columns. If done manually in Window, Tab & Field the Synchronize Column also does not appear as its Display Logic is @IsView@='N' & @ColumnSQL@='' thus the column exists in AD_Column without existing in actual database table. Therefore the following would have been necessary: {quote} +++ b/org.adempiere.pipo/src/org/adempiere/pipo2/PackInHandler.java @@ | 20:50 |
Not-6f15 | -416,11 +416,11 @@ log.warning("Table " + column.getAD_Table_ID() + " not found"); continue; } -- if (table.isView()) { + if (table.isView() && !column.getColumnSQL().isEmpty()) { continue; } String tableName = table.getTableName(); { {quote} | 20:50 |
Not-6f15 | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2745 | 20:50 |
Not-6f15 | [IDEMPIERE] red1 updated IDEMPIERE-2745 | 20:51 |
Not-6f15 | [IDEMPIERE] Creating constraint keys should not include virtual columns. If done manually in Window, Tab & Field the Synchronize Column also does not appear as its Display Logic is @IsView@='N' & @ColumnSQL@='' thus the column exists in AD_Column without existing in actual database table. Therefore the following would have been necessary: {quote} +++ b/org.adempiere.pipo/src/org/adempiere/pipo2/PackInHandler.java @@ | 20:51 |
Not-6f15 | -416,11 +416,11 @@ log.warning("Table " + column.getAD_Table_ID() + " not found"); continue; } -- if (table.isView()) { + if (table.isView() {color:#d04437}&& !column.getColumnSQL().isEmpty()){color} { continue; } String tableName = table.getTableName(); { {quote} | 20:51 |
Not-6f15 | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2745 | 20:51 |
Not-6f15 | [IDEMPIERE] red1 updated IDEMPIERE-2745 | 20:52 |
Not-6f15 | [IDEMPIERE] Creating constraint keys should not include virtual columns. If done manually in Window, Tab & Field the Synchronize Column also does not appear as its Display Logic is @IsView@='N' & @ColumnSQL@='' thus the column exists in AD_Column without existing in actual database table. Therefore the following would have been necessary: +++ b/org.adempiere.pipo/src/org/adempiere/pipo2/PackInHandler.java @@ -416,11 | 20:52 |
Not-6f15 | +416,11 @@ log.warning("Table " + column.getAD_Table_ID() + " not found"); continue; } -- if (table.isView()) { + if (table.isView() {color:#d04437}&& !column.getColumnSQL().isEmpty()){color} { continue; } String tableName = table.getTableName(); { | 20:52 |
Not-6f15 | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2745 | 20:52 |
*** a42niem has quit IRC | 22:09 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!