IRC Channels

For open discussions, an IRC Channel have been set up for Open ERP and Open Object: irc://irc.freenode.net/#openobject.

Tuesday, 2010-08-17

*** quodt has quit IRC00:25
*** quodt has joined #openobject00:26
*** quodt has quit IRC00:31
*** hlykos has quit IRC01:08
*** sharoon has joined #openobject01:24
*** mozmck has left #openobject01:42
*** mozmck has joined #openobject01:42
*** digitalsatori has joined #openobject01:54
*** sharoon has quit IRC02:00
*** b_52light has quit IRC03:31
*** r3c4ll has joined #openobject03:46
*** yangoon has quit IRC05:18
*** ssierra has joined #openobject05:19
*** yangoon has joined #openobject05:33
*** mr_amit has joined #openobject07:07
*** mr_amit has quit IRC07:55
*** mr_amit has joined #openobject07:56
*** ToadP2 has joined #openobject08:26
*** ToadP has quit IRC08:28
*** quodt has joined #openobject08:28
*** cedk has quit IRC08:56
*** eLBati has joined #openobject09:02
*** Billynkid1 has left #openobject09:03
*** rationalperseus has joined #openobject09:12
*** bechamel has joined #openobject09:15
*** mrcast has joined #openobject09:20
*** mrcast has left #openobject09:20
*** ssierra has quit IRC09:50
*** cedk has joined #openobject09:58
*** ludo2 has joined #openobject10:05
*** jessejames has joined #openobject10:07
*** KangOl has joined #openobject10:15
*** ChanServ sets mode: +o KangOl10:15
*** ssierra has joined #openobject10:17
*** edannenbe has joined #openobject10:17
*** ssierra has left #openobject10:17
*** ludo2 has quit IRC10:23
*** dev01 has joined #openobject10:29
*** b_52light has joined #openobject10:32
*** Red15 has joined #openobject10:45
*** ludo2 has joined #openobject10:48
*** ludo2 has quit IRC10:49
*** ludo2 has joined #openobject10:49
*** ludo2 has quit IRC10:54
*** ludo2 has joined #openobject10:54
*** rationalperseus has quit IRC11:02
*** rationalperseus has joined #openobject11:04
*** sharoon has joined #openobject11:10
*** Red15 has quit IRC11:44
*** ludo2 has quit IRC11:47
*** ludo2 has joined #openobject11:47
*** rruebner has joined #openobject11:54
*** Red15 has joined #openobject12:07
*** dex__ has joined #openobject12:11
*** Gavin_Achado has joined #openobject12:13
*** Gavin_Achado has left #openobject12:14
*** dev01 has quit IRC12:44
*** LucaSub1 has joined #openobject13:17
*** LucaSub1 has left #openobject13:19
*** Marcel|HSD has joined #openobject13:25
eLBatithere is a way to check which users are logged in the system?13:31
*** sharoon has quit IRC13:39
*** sharoon has joined #openobject13:39
jessejameseLBati, I don't think there is a record kept of logons. Maybe there is a module that does that?13:44
cedkeLBati: the connection is stateless in openerp13:48
*** digitalsatori has quit IRC14:04
*** rationalperseus_ has joined #openobject14:28
*** yangoon has quit IRC14:35
*** rationalperseus_ has joined #openobject14:35
*** rationalperseus has quit IRC14:36
*** yangoon has joined #openobject14:52
*** zigzapgabe has joined #openobject14:53
*** eLBati has quit IRC14:56
*** eLBati has joined #openobject14:58
*** yangoon has quit IRC15:03
*** eLBati has quit IRC15:04
*** mozmck has quit IRC15:09
*** Marcel|HSD has quit IRC15:09
*** Marcel|HSD has joined #openobject15:09
*** mozmck has joined #openobject15:10
*** yangoon has joined #openobject15:18
*** eLBati has joined #openobject15:18
*** samuellefever has joined #openobject15:29
samuellefeverHello!15:29
samuellefever$15:29
*** iabmatos has joined #openobject15:30
*** samuellefever has quit IRC15:32
*** Flydoire|Taktik has joined #openobject15:33
*** MV|Taktik has joined #openobject15:34
*** sl|taktik has joined #openobject15:35
sl|taktikHello!15:35
*** Marcel|HSD has left #openobject15:35
*** Marcel|HSD has joined #openobject15:35
*** Flydoire|Taktik has left #openobject15:38
*** iabmatos has left #openobject15:40
*** yangoon has quit IRC15:42
*** MV|Taktik has quit IRC15:47
*** dukai has joined #openobject15:51
dukaicould anyone help with mako templates?15:52
*** pheller has joined #openobject15:52
*** zigzapgabe has quit IRC15:57
*** yangoon has joined #openobject15:57
jessejamesdukai, it's better just to ask the question. People that can answer will/may15:58
dukaijessejames: using expressions like ${object.seller_ids[0].name.name} result in <object.seller_ids> tags after parsing16:00
dukaithat means I can't use 2 variables that are accessed through the same one2many field16:00
dukaibecause they'll have the same tag16:01
dukailike seller_ids, in this example16:01
dukaiI wonder what do others do16:01
jessejamesdukai, I've not used mako templates myself. Are you wanting to loop through the seller_ids? If so you can do that with the for / endfor syntax16:07
*** KangOl has quit IRC16:07
dukaijessejames: no, I just need the first element16:07
*** KangOl has joined #openobject16:09
*** ChanServ sets mode: +o KangOl16:09
*** ToadP has joined #openobject16:13
*** ToadP3 has joined #openobject16:13
*** ToadP has quit IRC16:15
jessejamesdukai, how have you defined your seller_ids field in the model?16:34
*** Marcel|HSD has left #openobject16:35
dukaijessejames: it's product.template.seller_ids16:36
*** Marcel|HSD has joined #openobject16:36
jessejamesdukai, what exactly are you trying to print (which field from which record)?16:42
dukaifirst: object.seller_ids[0].name.name second time: object.seller_ids[0].name.country_id.name --- and it prints the first thing 2 times16:42
dukaibecause it gives the same tag to them16:43
dukaiit's not a problem of openerp object access16:43
dukaiit's a problem of mako giving the same tag to 2 different values16:43
dukaiboth will get object.seller_ids16:43
*** rationalperseus_ has quit IRC16:44
*** rationalperseus has joined #openobject16:44
jessejamesdukai, is object.seller_ids[0].name.name the supplier name?16:44
dukaiyes16:44
dukaiok16:44
jessejamesdukai, I think it may be because the country_id is on the res_partner_address record not the res_partner record16:47
dukaijessajames: I've noticed that and corrected to object.seller_ids[0].name.country.name16:47
dukaibut still it prints the first thing 2 times...16:47
jessejamesdukai, think you need object.seller_ids[0].name.address[0].country_id.name16:53
dukaijessajames: I've tried it but it still prints the first thing 2 times16:55
jessejamesdukai, does the record that you are looking at definitely have an address?16:56
*** digitalsatori has joined #openobject16:56
dukaiyes16:56
jessejamesdukai, I don't know what to suggest. I assume that mako is giving you the last valid data it can find. I imagine that the object dereferencing is incorrect somewhere after 'name'16:58
dukaijessejames: it sucks...16:59
*** digitalsatori has quit IRC17:01
*** rruebner has quit IRC17:17
*** dukai has quit IRC17:18
*** ovnicraft has joined #openobject17:19
sl|taktikHello!17:26
sl|taktikWe have a problem with  "Programming error: field 'weight' does not exist in object 'stock.picking' !"17:27
sl|taktikIs there someone who have solved this problem already?17:27
Red15sl|taktik, can you post a traceback on http://openerp.pastebin.com ?17:28
Red15sl|taktik, did you maybe remove the module 'delivery' ?17:30
sl|taktikremove?17:30
sl|taktikDon't think so but I will check17:30
sl|taktikposted : name is Taktik issue17:34
sl|taktikand no, we have never installed delivery module17:35
*** MV has joined #openobject17:37
Red15so sl|taktik this problem occurs when you open a picking or so i guess ?17:38
Red15what version are you running ?17:38
Red15ah 5.0.6 ...17:39
sl|taktik5.0.6 and the problem occured when we are validating a sale order17:39
sl|taktikIt s trying to generate something17:39
sl|taktikIt's happening sometimes but not all the time17:40
*** MV has left #openobject17:40
*** Marcel|HSD has left #openobject17:40
Red15depending on the shipping policy maybe ?17:40
*** MV has joined #openobject17:40
*** MV has left #openobject17:40
*** MV has joined #openobject17:41
sl|taktikafter some search, it's appear to be a RML problem17:41
Red15well that should only happen then when you print the picking17:41
Red15not when you validate a sales order17:41
Red15unless you have made changes to the workflow on the sale order17:42
sl|taktikwe don't17:42
sl|taktikthe problem is already send back to the editor on launchpad but they said 'won't fix'17:43
Red15in that case i find it very strange...17:43
sl|taktikhttps://bugs.launchpad.net/openerp-spain/+bug/49338817:43
*** MV has left #openobject17:43
Red15because weight only appears in module delivery17:43
*** MV|Taktik has joined #openobject17:44
Red15oh well actually i see it's included by default on the picking report ...17:44
Red15there's the error17:44
Red15so just edit stock/report/picking.rml17:44
Red15and remove the [[ picking.weight or '' ]]17:45
sl|taktikok17:45
sl|taktikthanks a lot17:45
sl|taktikother question, do you understand why this error appear even if we have never try to print a report17:46
sl|taktik?17:46
Red15not really17:46
Red15but also find it weird it only happens occasionally as you said17:47
sl|taktikyes17:47
Red15can you try to find out when specifically ?17:48
Red15i'm logging off now, but i'll be back tomorrow17:49
sl|taktikok17:49
sl|taktikthanks a lot and speak you later17:49
sl|taktikhave a nice evening17:49
Red15thx :)17:49
*** Red15 has quit IRC17:49
*** mindey has joined #openobject17:51
*** mindey is now known as Inyuki17:52
*** bechamel has quit IRC17:53
*** quodt has quit IRC17:55
*** quodt has joined #openobject17:55
InyukiHi, I am new here. The project is interesting, and I would like to contribute to it.17:57
InyukiMay I ask how do I try the online demos?17:58
Inyukihttp://demo.openerp.com:8080/login?user=demo&password=demo&db=service_en17:59
InyukiWhat database to choose, and how to choose it if there's none listed?18:00
*** quodt has quit IRC18:00
InyukiSince there aren't any databases, I tried to click "Database", and that lead me to18:01
Inyukihttp://demo.openerp.com:8080/database/create18:01
InyukiHowever, entering database name and password as "demo" didn't create a new database.18:01
*** ludo2 has quit IRC18:18
*** MV|Taktik has quit IRC18:19
*** sl|taktik has quit IRC18:23
*** mr_amit has quit IRC18:28
*** enlightx has joined #openobject18:32
*** dex__ has quit IRC18:34
*** eLBati has quit IRC18:39
*** enlightx has quit IRC19:03
*** cedk has quit IRC19:04
*** cedk has joined #openobject19:04
*** mr_amit has joined #openobject19:15
*** eLBati has joined #openobject19:16
*** mr_amit has quit IRC19:32
InyukiMay I ask, how do I contribute to development of OpenERP project?19:40
edannenbeInyuki, http://doc.openerp.com/contribute/15_guidelines/contribution_guidelines.html19:42
*** KangOl has quit IRC19:42
InyukiThanks, edannenbe :-)19:43
*** jessejames has quit IRC19:47
*** mr_amit has joined #openobject19:49
InyukiIs there a general page on how OpenERP works, and how it is constructed?19:51
InyukiOk. I guess I found it.19:52
*** edannenbe has quit IRC19:59
*** eLBati has quit IRC20:05
*** eLBati has joined #openobject20:10
*** stijnbe has joined #openobject20:32
*** quodt has joined #openobject20:33
*** hlykos has joined #openobject20:53
*** eLBati has quit IRC20:55
*** eLBati has joined #openobject20:59
*** hlykos has quit IRC21:09
*** quodt has quit IRC21:12
*** bechamel has joined #openobject21:13
*** quodt has joined #openobject21:18
*** stijnbe has quit IRC21:24
*** pricew has joined #openobject21:37
*** stijnbe has joined #openobject22:02
*** enlightx has joined #openobject22:02
*** stijnbe has quit IRC22:05
*** Inyuki has left #openobject22:24
*** ludo2 has joined #openobject22:47
*** enlightx has quit IRC22:48
*** mr_amit has quit IRC22:50
*** sharoon_ has joined #openobject23:16
*** sharoon has quit IRC23:18
*** sharoon_ is now known as sharoon23:18
*** Nyx has quit IRC23:28
*** quodt has quit IRC23:28
*** quodt has joined #openobject23:29
*** pheller has quit IRC23:32
*** quodt has quit IRC23:33
*** ludo2 has quit IRC23:34
*** sharoon has quit IRC23:37
*** yangoon_rm has joined #openobject23:47
*** yangoon_rm has left #openobject23:49
*** bechamel has quit IRC23:59
*** mozmck_work has quit IRC00:08
*** rationalperseus has quit IRC00:10
*** eLBati has quit IRC00:12