#idempiere IRC log for Monday, 2015-01-19

*** a42niem has quit IRC00:18
*** Danielc1234_ has joined #idempiere01:13
Danielc1234_hi all, does Adempiere have an online demo available? I did not see anywhere that they do.01:14
Not-ae23[iDempiere] hengsin pushed 2 commits to development [+0/-0/±4] https://bitbucket.org/idempiere/idempiere/commits/02:12
Not-ae23[iDempiere] hengsin 244fce3 - IDEMPIERE-2114 Session is not closed when closing the tab. Integrate patch from hieplq.02:12
Not-ae23[iDempiere] hengsin 5507ad4 - IDEMPIERE-2245 Platform Upgrade for r3. Replace repo1.maven.org with central.maven.org as suggested by hieplq.02:12
*** is-mw2 has joined #idempiere02:14
*** is-mw has quit IRC02:15
*** Danielc1234_ has quit IRC02:35
*** hieplq has quit IRC02:45
*** jmpiloq_ has quit IRC05:47
*** norbertbede has joined #idempiere05:50
*** norbertbede has quit IRC05:52
*** norbertbede has joined #idempiere05:53
*** hieplq has joined #idempiere05:56
*** a42niem has joined #idempiere06:14
*** a42niem_ has joined #idempiere06:14
*** a42niem_ has left #idempiere06:15
*** norbertbede has quit IRC06:25
*** a42niem_ has joined #idempiere06:41
*** a42niem_ has left #idempiere06:42
*** a42niem_ has joined #idempiere06:48
*** a42niem_ has left #idempiere06:50
*** andrei_miron has joined #idempiere06:52
*** andrei_miron has quit IRC07:07
*** andrei_miron has joined #idempiere07:22
Not-ae23[IDEMPIERE] norbert.bede updated IDEMPIERE-2309 Attachment set to "landingpage_ID3_v4.png"07:25
Not-ae23[IDEMPIERE] changes: button "Go to Login" changed to "Try DEMO" + color orange changed to gray with icon and little white stroke.07:25
Not-ae23[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-230907:25
*** KermitTheFragger has joined #idempiere07:41
*** nmicoud has joined #idempiere07:47
Not-ae23[IDEMPIERE] hengsin updated IDEMPIERE-236707:52
Not-ae23[IDEMPIERE] <= 1000 doesn't really takes up much memory but I'm fine to remove that cache since it does simplify the code. I think default of 2 page is too little, should cache at least 4/5 page.07:52
Not-ae23[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-236707:52
*** hieplq has quit IRC08:54
*** coenraad has joined #idempiere09:48
*** coenraad has quit IRC10:00
*** coenraad has joined #idempiere10:12
*** is-mw2 has quit IRC10:17
*** is-mw has joined #idempiere10:24
*** norbertbede has joined #idempiere10:26
*** hieplq has joined #idempiere10:38
Not-ae23[IDEMPIERE] hieplq updated IDEMPIERE-2300 labels set to "+Patch zk7" -Attachment set to "IDEMPIERE-2300.patch"10:45
Not-ae23[IDEMPIERE] by my investigate: when user do lost focus and click refresh has some action as below: 1. a "rmdesktop" request to server is fire to remove current desktop 2. textbox user name auto get focus, so a new focus event is fire and sent to server but rmdesktop is removed at step1 => it will make a response to redirect to timeout page. line 552 class DHtmlUpdateServlet 3. at same time request to indext.zul is fire by browse (to refresh page) 2 an10:45
Not-ae23[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-230010:45
Not-ae23[IDEMPIERE] hieplq updated IDEMPIERE-2300 status set to "Peer Review Queue"10:45
Not-ae23[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-230010:45
*** binario01 has joined #idempiere11:22
*** is-mw has quit IRC11:36
*** is-mw has joined #idempiere11:46
*** norbertbede has quit IRC12:00
*** red1 has joined #idempiere12:28
*** ChanServ sets mode: +o red112:29
red1xin cao hieplq12:29
hieplqgood evening mr red1.12:30
red1wana ask remember how to get a doc object in idempiere12:30
red1when not know the object name?12:30
red1for example, if u do not know if it is Order or Invoice but wants to get it12:31
red1i forgot which API to use12:31
red1i want to do it for DocBook, to pass the tab and return the object data12:31
red1if Tab is C_Order then select from c_order12:31
red1is there a query method for this?12:32
red1instead of StringBuilder dataSQL = new StringBuilder("SELECT * FROM "+table.getTableName())12:32
red1and then execute the dataSQL and then retrieve the model object.. is too long12:32
hieplqfrom MTab object you want get Model of this tab?12:34
red1yes.. its underlying data12:35
red1i already get its tab model.. for DocBook12:36
red1now i want a <data> link when click go to its records12:36
red1so its easy for users12:36
red1i will export its (COUNT) no of records12:36
red1then listing of the records12:36
red1so now users no need to launch PG or iDempiere12:37
red1to check info about their ERP and data12:37
red1its for quick debugging12:37
hieplqfrom MTab i think can't direct get this info12:39
hieplqin Import, export csv, has code to load info in gridTab12:40
hieplqi think it will suitable for you12:40
hieplqImportCSVProcess12:41
red1What about from MTable?12:42
red1or PO, POInfo12:42
red1as they are related12:42
hieplqMTable or MTab is only metadata12:43
red1Mtab > MTable > (C_Order)12:43
*** coenraad has quit IRC12:43
red1i think i will use my above crude way12:43
red1the use MTable.getColumns12:43
hieplqyou must use GridTab to load record. affter that you can investigate12:44
red1its many steps12:44
red1i just want to reuse the method.. not for grid but docbook export12:44
red1maybe in grid use that method12:44
red1?12:44
hieplqyou need info about how many record in a grid12:45
red1how many in table12:45
hieplqyou must use grid to get info and count it or find out more from it.12:45
red1no need grid12:46
red1its just Select (count) from <Mtable.TableName>12:46
hieplqnot need fillter?12:47
red1what you think about MTable public PO getPO(?12:47
red1i start with no filter12:47
red1later i can filter to paging12:47
red1if more records12:47
hieplqit's PO of MTable.12:47
red1maybe finally this works: po = getPO(rs, trxName);12:48
red1from the PO i can retrieve all i want12:48
*** coenraad has joined #idempiere12:50
*** a42niem_ has joined #idempiere13:08
*** a42niem_ has left #idempiere13:09
*** binario01m has joined #idempiere13:23
*** guischarf has joined #idempiere13:26
*** guischarf has quit IRC13:27
*** norbertbede has joined #idempiere13:38
*** norbertbede1 has joined #idempiere13:39
*** norbertbede has quit IRC13:43
*** coenraad has quit IRC13:48
*** aguerra has joined #idempiere14:02
*** aguerra has quit IRC14:04
*** red1 has quit IRC14:06
*** CarlosRuiz has joined #idempiere14:17
*** ChanServ sets mode: +o CarlosRuiz14:17
Not-ae23[IDEMPIERE] carlosruiz_globalqss updated IDEMPIERE-2114 status set to "Resolved" -resolution set to "Fixed"14:19
Not-ae23[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-211414:19
*** hieplq has quit IRC15:01
Not-ae23[IDEMPIERE] cboecking created IDEMPIERE-2410 Add Phase parameter to Generate PO from Project process15:43
Not-ae23[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-241015:43
Not-ae23[IDEMPIERE] cboecking updated IDEMPIERE-2410 description set to "Update existing Generate PO from Project process to add "Phase" option. Doing so allows you to generate your POs on a phase by phase basis. This is important if you are performing any type of long-running construction or manufacturing project. See attachments: * patch * pack out for process parameter changes Regards, Chuck Boecking erp-academy.chuckboecking.com "15:44
Not-ae23[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-241015:44
Not-ae23[IDEMPIERE] nmicoud created IDEMPIERE-2411 FDialog.ask with title, AD_Message and msg15:55
Not-ae23[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-241115:55
Not-ae23[IDEMPIERE] nmicoud updated IDEMPIERE-2411 Attachment set to "IDEMPIERE-2411.patch"15:59
Not-ae23[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-241115:59
Not-ae23[IDEMPIERE] nmicoud updated IDEMPIERE-2411 assignee set to "Carlos Antonio Ruiz Gomez"15:59
Not-ae23[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-241116:00
Not-ae23[IDEMPIERE] nmicoud updated IDEMPIERE-2411 status set to "Peer Review Queue"16:00
Not-ae23[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-241116:00
Not-ae23[IDEMPIERE] nmicoud updated IDEMPIERE-2411 labels set to "+Patch"16:00
Not-ae23[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-241116:00
binario01Hi all, How can I make the server logging more verbose ?16:11
*** andrei_miron has quit IRC16:26
*** norbertbede1 has quit IRC16:28
*** coenraad has joined #idempiere16:28
*** nmicoud has left #idempiere16:29
*** KermitTheFragger has quit IRC16:34
CarlosRuizbinario01 -> https://groups.google.com/d/msg/idempiere/7QaJz1Kez_w/-fjDRTS9aWoJ16:54
*** norbertbede has joined #idempiere16:56
*** norbertbede has quit IRC17:01
*** norbertbede has joined #idempiere17:29
*** coenraad has quit IRC17:41
*** binario01 has left #idempiere17:51
*** a42niem has quit IRC17:59
Not-ae23[IDEMPIERE] cboecking created IDEMPIERE-2412 Generate Production from Project with Phase - New Process19:10
Not-ae23[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-241219:10
*** jmpiloq_ has joined #idempiere21:01
*** binario01 has joined #idempiere21:15
*** norbertbede has quit IRC21:16
*** AdamTang has joined #idempiere22:33
AdamTangMorning to all from Malaysia.22:33
*** norbertbede has joined #idempiere22:34
CarlosRuizHello AdamTang22:35
AdamTanghello the great CarlosRuiz :)22:35
CarlosRuizso you're neighbor with Heng Sin and Redhuan22:35
AdamTangHeng Sin has helped me in 2013 on a small idempiere project for billing for a company :)22:36
AdamTangI am still chasing Redhuan but no chance to meet him :D22:36
CarlosRuiz:)22:36
AdamTangi have just joined a company for a customized wms coding. examine right now our buddy, idempiere.22:37
AdamTangMr. CarlosRuiz, i might need to load data or even update a column on an external database said MsSQL their legacy system or their current accounting system. Do we have standard way to do that?22:40
CarlosRuiznot std - you need to code something22:41
AdamTangis it ok if i code normal jdbc codes inside my plugin project which is going to plug into idempiere?22:42
AdamTangi loves the way we just create object, set properties and push for save in idempiere model kind of coding.22:43
*** norbertbede has quit IRC22:45
AdamTang1 final question, said i want to add 2 columns into sales invoice form and i will need to write coding for those columns on save, what should i do so that if i update the core coding, it won't wipe out my coding? a plugin project?22:49
CarlosRuizyes - a model validator plugin is the easier to fill a couple of columns22:50
AdamTanghi Carlos, jdbc coding to pull data and push update external database is ok right? or we can utilize some kind of facility in idempiere?22:54
CarlosRuizyes - that sounds one of the possible approaches22:55
AdamTangThanks man for solving my sad :D22:55
AdamTangin addition, i feel like idempiere is kind of buying things, doing things and selling things. do we have any modules for WMS which is not selling things and buying things but item move there and here?22:57
*** binario01 has joined #idempiere23:23
CarlosRuizAdamTang, see Material Management menu23:29

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