IRC Channels

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

Thursday, 2010-06-24

*** Marcel|HSD has left #openobject00:21
*** Gavin_Achado has joined #openobject00:25
*** Gavin_Achado has left #openobject00:25
*** KangOl has quit IRC00:40
*** ludo2 has quit IRC00:43
*** zigzapgabe_ has joined #openobject00:59
*** rationalperseus has quit IRC01:08
*** marc0s has quit IRC01:32
*** marc0s has joined #openobject01:35
*** ovnicraft has quit IRC02:20
*** julian1828 has joined #openobject03:05
*** zigzapgabe_ has quit IRC03:11
*** zigzapgabe_ has joined #openobject03:12
*** zigzapgabe_ has quit IRC03:16
*** zigzapgabe_ has joined #openobject03:16
*** zigzapgabe_ has quit IRC03:24
*** zigzapgabe_ has joined #openobject03:26
*** r3c4ll has joined #openobject03:53
*** mozmck_work has quit IRC04:26
*** pelzi_ has quit IRC04:26
*** mozmck_work has joined #openobject04:27
*** pelzi_ has joined #openobject04:27
*** Spiralmatrix has joined #openobject04:36
*** yangoon has quit IRC05:20
*** Spiralmatrix has quit IRC05:34
*** yangoon has joined #openobject05:35
*** mr_amit has joined #openobject07:01
*** julian1828 has left #openobject07:05
*** cedk has joined #openobject07:46
*** Nyx1 has joined #openobject07:52
*** Nyx1 has left #openobject07:52
*** Red15 has joined #openobject08:48
*** cedk has quit IRC09:00
*** quodt has joined #openobject09:01
*** cjeske has joined #openobject09:08
*** boran has joined #openobject09:17
*** rona1 has joined #openobject09:26
*** rona1 has left #openobject09:27
*** simahawk has joined #openobject09:28
*** enlightx has joined #openobject09:29
*** eLBati has joined #openobject09:35
*** edannenbe has joined #openobject09:41
*** elbati_ has joined #openobject09:44
*** eLBati has quit IRC09:45
*** elbati_ is now known as eLBati09:47
*** kalymero has joined #openobject09:50
*** KangOl has joined #openobject09:56
*** ChanServ sets mode: +o KangOl09:56
*** eLBati has quit IRC09:56
*** KangOl has quit IRC09:57
*** eLBati has joined #openobject09:59
*** stijnbe has joined #openobject10:00
*** bechamel has joined #openobject10:16
*** bechamel has joined #openobject10:18
*** ludo2 has joined #openobject10:19
*** ludo21 has joined #openobject10:24
*** ludo2 has quit IRC10:24
*** ludo21 has quit IRC10:28
*** tarik has joined #openobject10:50
*** ludo2 has joined #openobject10:53
*** deftunix has joined #openobject10:55
deftunixhi all, i've a question about openerp; exist a list about server minimal requirements? thanks in advance10:56
zanagasoftware or hardware?10:56
deftunixhardware10:57
deftunixzanaga: cpu, ram, disk space10:57
zanagathat depends a lot on your environment10:58
deftunixzanaga: minimal requirements for small company... 10-20 concurrent user10:58
zanagacan't really say.. i run my openerp installation on VPS with some 256 of ram and a 5 gigabytes of disk..11:00
zanagaits a single user instance, but you get the idea.. it doesn't require much11:00
deftunixzanaga: ok, thanks :-)11:00
eLBatideftunix, I runned openerp-server and  web (for single user) on a VPS with 128 RAM11:12
deftunixeLBati: thnx11:17
*** boran has quit IRC11:18
deftunixi've just another question about openerp... exist documentation about possibilities of integration of openerp with central auth service (AD, OpenLDAP), webservices and so on?11:18
Red15deftunix, there is an ldap addon11:45
Red15but cant really tell you much about it as I've not used it before.11:46
Red15it should work as advertised though, allowing you to specify users from your ldap server11:46
*** Marcel|HSD has joined #openobject11:54
zanagahmm. turns out openerp is easier to hack than i first thought.12:02
zanagajust posted my first contribution for merging =)12:02
*** franckb has joined #openobject13:05
*** yangoon has quit IRC13:20
*** yangoon has joined #openobject13:26
*** eLBati has quit IRC13:27
*** simahawk is now known as simahawk|lunch13:31
*** eLBati has joined #openobject13:37
*** hounddog has joined #openobject13:44
*** franckb has quit IRC13:51
*** Red15 has quit IRC13:51
*** Red15 has joined #openobject13:57
*** hounddog has quit IRC13:58
*** simahawk|lunch is now known as simahawk14:03
*** Marcel|HSD has left #openobject14:12
*** Marcel|HSD has joined #openobject14:14
*** cedk has joined #openobject14:23
*** mrcast has joined #openobject14:33
canecaWhen defining a field in a view that is a relation (2many), and i want to use a custom form/tree view for that is that possible to define this view in other xml file?14:42
canecaInstead of doing <field>Definition here</field> i do <field>File to get the view</field>14:43
*** ToadP1 has quit IRC14:45
*** ToadP has quit IRC14:45
Red15caneca, maybe try in your one2many field to use view_id="ref('view_name_from_other_xml')"14:50
*** zigzapgabe_ has quit IRC14:51
canecainside this view_name_from_other_xml i can have many definitions of views.. so maybe i need to do also a view_id="ref('view_name_from_other_xml')" id="view_id_name" or something like this...?14:52
canecaah.. no... i miss understood... i will try it out.. and i come back later to tell if it worked =)14:54
canecaInvalid attribute view_id for element field. It didnt work =/15:00
Red15not sure why this would be important ?15:03
Red15why not just use in-line definition ?15:03
Red15if you want to enhance / change that view from another module you can just inherit the view and change the one2many field completely15:04
canecabecause this "custom" view is applied in many places and i dont want to ctrl c ctrl v this same piece of code over and over again15:04
canecayes.. i am reading about the inherit of view right now to see if it will do what i want =)15:05
Red15a more convoluted way to do this would be to set the default view as you would like it inside the form view and make sure any other15:06
Red15menu entry will open another specific view15:06
Red15caneca, wouldnt that make it just the default view then ?15:07
canecathis makes sense... i was considering the default the one that opens for itself in a meny entry... but well it comes to another question (probably easier) is i have many tree and form views in my xml file, how openerp knows with one is the default? the first? or have some tag to set as default?15:09
*** ToadP has joined #openobject15:10
*** ToadP1 has joined #openobject15:10
canecamaybe priority?15:12
canecalooks like it worked =) thanks a lot15:18
*** deftunix has quit IRC15:18
*** SteelSide has left #openobject15:21
*** kalymero has quit IRC15:58
*** kalymero has joined #openobject16:00
Red15anyone know a trick to do blocks next to each other in a semi-grid fashion for reports ?16:01
*** kalymero has quit IRC16:01
*** mattsqz has joined #openobject16:02
*** KangOl has joined #openobject16:08
*** ChanServ sets mode: +o KangOl16:08
*** rationalperseus has joined #openobject16:10
mattsqzI have many products with extra categories, and the product search page will only search the primary category. how can i have the search function look at both primary and extra categories?16:13
Red15mattsqz, you will either have to override name_search method or simply put select="1" (or "2") on the form view for the fields you wish to be able to search on16:15
*** rationalperseus_ has joined #openobject16:17
mattsqzim not sure i understand. im searching by category not by name..?16:18
*** rationalperseus has quit IRC16:19
mattsqzim having difficulty finding the 'view' or .py that controls this16:20
mattsqzproduct.something?16:20
mattsqzim sorry its early here and im groggy and confused16:22
mattsqzso far all i can figure out is that primary category is 'categ_id' and extras is 'categ_ids'16:25
mattsqzi added a select="1" (also tried 2) for categ_ids but got nowhere with it. what am i missing?16:37
*** eLBati has quit IRC16:39
mattsqzmeh. perhaps im barking up a buggy tree. for categ_ids but got nowhere16:44
mattsqz   with it. what am i missing?16:44
mattsqz[mattsqz] You are no longer marked as being away16:44
mattsqz*** Quits: eLBati:#openobject [~elbati@94.162.68.34] (Quit: Leaving)16:44
mattsqz 09:27AM [W:ircII] [mattsqz +i] [#openobject +cnt] type /SHELP for more info16:44
mattsqzmeh. perhaps im barking up a buggy tree.16:44
mattsqz<mattsqz>    with it. what am i missing?16:45
mattsqz<mattsqz> [mattsqz] You are no longer marked as being away16:45
mattsqz<mattsqz> *** Quits: eLBati:#openobject [~elbati@94.162.68.34] (Quit: Leaving)16:45
mattsqz<mattsqz>  09:27AM [W:ircII] [mattsqz +i] [#openobject +cnt] type /SHELP for16:45
mattsqz   more info16:45
mattsqz<mattsqz> meh. perhaps im barking up a buggy tree.16:45
mattsqz 09:28AM [W:ircII] [mattsqz +i] [#openobject +cnt] type /SHELP for more info16:45
mattsqz<mattsqz>    with it. what am i missing?16:45
mattsqz<mattsqz> [mattsqz] You are no longer marked as being away16:45
mattsqz<mattsqz> *** Quits: eLBati:#openobject [~elbati@94.162.68.34] (Quit: Leaving)16:45
mattsqz<mattsqz>  09:27AM [W:ircII] [mattsqz +i] [#openobject +cnt] type /SHELP for16:45
mattsqz   more info16:45
mattsqz<mattsqz> meh. perhaps im barking up a buggy tree.16:45
mattsqz 09:28AM [W:ircII] [mattsqz +i] [#openobject +cnt] type /SHELP for more info16:45
mattsqzACK16:45
*** mattsqz has left #openobject16:45
*** mattsqz has joined #openobject16:45
mattsqztried to paste a url, and rxvt's paste function is broken in cygwin16:46
*** eLBati has joined #openobject16:46
*** r3c4ll has quit IRC16:48
*** simahawk is now known as simahawk|worldcu16:49
*** r3c4ll has joined #openobject16:51
mattsqzok, now i have a seperate field for primary category and extra category. what i need is one field that will search both primary and extra categories16:51
mattsqzwhere can i find the code for this name_search you mentioned?16:52
*** eLBati has quit IRC16:56
*** simahawk|worldcu is now known as simahawk17:05
*** r3c4ll has quit IRC17:10
*** bechamel has quit IRC17:12
*** r3c4ll has joined #openobject17:24
*** quodt has quit IRC17:32
mattsqzi wonder if i can just change the primary category to a many2many17:32
*** ovnicraft has joined #openobject17:34
mattsqzmeh that didnt work17:40
*** KangOl has quit IRC17:41
*** enlightx has quit IRC17:51
*** javivf has joined #openobject17:52
*** samyboy has joined #openobject17:54
samyboyHi, What is the best way to read only access on erp data from an external application?17:54
*** mrcast has quit IRC17:56
*** mrcast has joined #openobject17:56
mattsqzperhaps OOOR?17:57
*** cedk has quit IRC18:01
*** enlightx has joined #openobject18:03
*** eLBati has joined #openobject18:07
*** stijnbe has quit IRC18:13
canecasamyboy, probably you should create a user in postgres with read only access to your data18:13
canecasee Create user and grant commands in postgres manual18:14
samyboycaneca, thanks for your answer, I'm currently trying do it18:15
*** javivf has quit IRC18:16
canecayou are wellcome =)18:16
samyboybut i just don't understand what relations and schemas stand for... damn it's complicated :P18:16
*** mrcast has quit IRC18:16
canecaSomeone knows how to create a field that is unique? 'test': fields.char('Test', size=10, unique=True) ?18:20
canecasamyboy,  you just need to grant access to tables, dont worry with relations and schemas18:21
*** hounddog has joined #openobject18:21
samyboypostgres whines about schemas...18:22
samyboyinput: postgres=# GRANT SELECT ON "prestation_hosting" TO sitearchive;18:22
samyboy  output:  ERROR:  relation "prestation_hosting" does not exist18:22
canecacan you do select * from prestation_hosting; ? is this a table...? check \d  prestation_hosting18:24
*** ovnicraft has quit IRC18:25
samyboyDid not find any relation named "prestation_hosting".18:26
*** mr_amit has quit IRC18:29
*** hounddog has quit IRC18:36
*** hounddog has joined #openobject18:45
*** ToadP has quit IRC18:45
*** ToadP1 has quit IRC18:45
*** cjeske has quit IRC18:47
*** simahawk has quit IRC18:48
*** hounddog has quit IRC18:54
*** cedk has joined #openobject18:54
*** deftunix has joined #openobject18:55
*** ovnicraft has joined #openobject18:56
deftunixhi all, openerp needs to pychart library; the leastes version of this lib, is of 2006; is it correct?18:56
*** samyboy has quit IRC18:57
*** enlightx has quit IRC18:59
*** ovnicraft has quit IRC19:01
*** austini has joined #openobject19:04
*** austini has quit IRC19:08
*** ToadP has joined #openobject19:10
*** ToadP1 has joined #openobject19:10
edannenbedeftunix, http://home.gna.org/pychart/19:13
edannenbelatest version is pychart-1.39 (1/1/2006)19:13
Red15caneca, still there ?19:14
Red15for unique fields use _sql_constraint19:15
*** Spiralmatrix has joined #openobject19:23
*** Red15 has quit IRC19:25
*** hounddog has joined #openobject19:35
canecai saw that in the memento, thanks anyway =)19:36
*** edannenbe has quit IRC19:38
*** hounddog has quit IRC19:42
*** Nyx1 has joined #openobject19:43
*** stijnbe has joined #openobject19:50
deftunixwhat's the default admin user and password for openerp?20:06
deftunixi've installed all server and web client20:06
deftunixhow can i access to it?20:06
eLBatideftunix, superadmin pass is admin20:16
deftunixeLBati: it doesn't work20:19
deftunixeLBati: i've install openerp-server and then openerp-web and started server and web client.. do i need to do other taks?20:19
stijnbeeLBati, what errors do you get?20:21
stijnbeow sry wrong person, deftunix what errors do you get?20:23
deftunixstijnbe: bad username or password20:23
deftunixin log screen of my web client i've database combo + user and password insert element ok... i've write username = superadmin and passowrd=admin20:24
stijnbenormally you should have filled in a password for the admin user when creating your database20:25
deftunixsolved20:27
deftunixthanks20:27
deftunixstijnbe:20:27
stijnbenp20:27
deftunixstijnbe: openerp save password in clear text on database20:27
stijnbethat's not really good20:28
deftunixis possible modify the context in url from / to /openerp?20:30
stijnbemaybe using a proxy20:34
cedkstijnbe: yes that is really bad20:34
cedkstijnbe: there is somewhere a module that allow to crypt password but I did not find it20:34
stijnbeis there a reasing openerp is storing passwords as plain text?20:35
stijnbe*reason20:35
cedkstijnbe: for me any20:35
cedkstijnbe: it is a behavior of the 80's20:38
deftunixcedk: is possible or not alter password format?20:38
cedkdeftunix: I though there was a module for that but did not find it20:42
*** dbarbot has joined #openobject20:47
*** eLBati has quit IRC20:47
*** deftunix has quit IRC20:57
*** eLBati has joined #openobject21:07
*** KangOl has joined #openobject21:24
*** ChanServ sets mode: +o KangOl21:24
*** Marcel|HSD has left #openobject21:24
*** Marcel|HSD has joined #openobject21:25
*** ludo2 has quit IRC21:25
*** mozmck has left #openobject21:26
*** KangOl has quit IRC21:27
*** ludo2 has joined #openobject21:27
*** KangOl has joined #openobject21:36
*** ChanServ sets mode: +o KangOl21:36
*** eLBati has quit IRC21:37
*** ludo2 has quit IRC21:58
*** mattsqz has quit IRC21:58
*** mrcast has joined #openobject21:59
*** stijnbe has quit IRC22:08
*** r3c4ll has quit IRC22:12
*** stijnbe has joined #openobject22:26
*** deftunix has joined #openobject22:31
*** Nyx1 has left #openobject22:43
*** dbarbot has quit IRC22:48
*** stijnbe has quit IRC22:53
*** mozmck has joined #openobject23:39
*** rationalperseus_ has quit IRC23:45
*** mrcast has quit IRC00:04