IRC Channels

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

Wednesday, 2010-09-01

*** G_O_D has quit IRC00:21
*** mrcast has quit IRC00:21
*** b_52light_ has joined #openobject00:23
*** b_52light has quit IRC00:27
*** mozmck has joined #openobject00:42
*** pheller has quit IRC00:44
*** Billynkid has quit IRC01:01
*** sraps_ has joined #openobject01:04
*** sraps has quit IRC01:04
*** quodt has quit IRC01:10
*** mrcast has joined #openobject01:46
*** mrcast has quit IRC01:57
*** b_52light_ has quit IRC03:37
*** ovnicraft has quit IRC03:45
*** yangoon has quit IRC05:22
*** mozmck has quit IRC05:33
*** yangoon has joined #openobject05:37
*** mr_amit has joined #openobject07:38
*** Billynkid has joined #openobject08:23
*** Billynkid has quit IRC08:28
*** quodt has joined #openobject08:49
*** eLBati has joined #openobject08:57
*** cedk has quit IRC09:04
*** Nyx has joined #openobject09:12
*** enlightx has joined #openobject09:19
*** rona1 has joined #openobject09:21
*** rona1 has left #openobject09:25
*** KangOl has joined #openobject09:34
*** ChanServ sets mode: +o KangOl09:34
*** simahawk has joined #openobject09:35
*** cedk has joined #openobject09:44
*** edannenbe has joined #openobject09:45
*** rationalperseus has joined #openobject09:56
*** Red15 has joined #openobject10:03
*** bechamel has joined #openobject10:05
*** Billynkid has joined #openobject10:06
*** jessejames has joined #openobject10:18
*** edannenbe is now known as adannenbe10:20
*** adannenbe is now known as edannenbe10:20
ex4hmm10:23
ex4What permission or group memberships a user needs for confirming a quotation to order.10:24
ex4I have 'confirm order' -button disabled when i log in as a normal user but can confim it with admin account.10:24
*** kalymero has joined #openobject10:26
ex4hi!10:27
eLBatiex4, Sale / Manager10:36
eLBatiprobably  Sale / Salesman too10:36
*** mrcast has joined #openobject10:39
sixelaex4: you also need a role10:43
sixelaex4: rights on workflow transitions are managed by the roles10:43
sixelaex4: confirming a sale order is a workflow transition10:44
sixelaex4: the role is "Salesman"10:45
sixelaex4: you can see that in "Administration > Customization > Workflow definition > Workflows > sale.order.basic > name=router10:46
sixelaex4: the colums "Role" displays "Salesman"10:46
sixela-s +n10:47
ex4sixela: Thank you, I'll try that.10:59
ex4Already added group memberships eLBati mentioned, but it didn't help10:59
*** rationalperseus has quit IRC11:19
ex4Then second (stupid?) question.... Where can I modify invoice tempaltes?11:20
ex4templates even11:20
*** mr_amit has quit IRC11:35
*** rationalperseus has joined #openobject11:38
Billynkidex4: Do you mean the pdf invoice?11:42
*** rationalperseus_ has joined #openobject11:43
ex4Billynkid: Yes11:45
*** rationalperseus has quit IRC11:46
*** mr_amit has joined #openobject11:47
*** Billynkid has quit IRC11:52
*** mrcast has quit IRC12:05
*** ludo2 has joined #openobject12:06
*** mrcast has joined #openobject12:31
*** r3c4ll has quit IRC12:33
*** Billynkid has joined #openobject12:44
*** Billynkid has quit IRC12:58
*** sj has joined #openobject13:16
*** enlightx has quit IRC13:21
*** mrcast has quit IRC13:27
*** renato has joined #openobject13:45
renatoHi, I am following the OpenERP tutorial, I am stock locations. Do you have anyidea on why the company I have set up has just Oputput and stock locations but no Input location?13:46
ex4Because you want to use your supplier's output location as your company's input location.14:02
ex4See OpenERP book page 248... :)14:02
*** danilofpires has joined #openobject14:18
danilofpiresbom dia14:18
danilofpiresalguem pode me passar informações sobre como implementar os packages de language no openerp??14:19
renatoex4: I have yet to get to page 248, I was following the tutorial :)14:21
*** eLBati has quit IRC14:34
*** danilofpires has quit IRC14:40
*** mrcast has joined #openobject14:44
*** matrixise has joined #openobject14:45
*** ChanServ sets mode: +o matrixise14:47
*** hsm has joined #openobject14:48
*** eLBati has joined #openobject14:56
ex4Hey, I'm writing a module adding one new field to invoice.14:58
ex4My python code looks like this:14:58
ex4class account_invoice_ref(osv.osv): _inherit = "account.invoice" _name = "account.invoice"14:58
ex4(whoops, imagine all \n's)14:59
*** rationalperseus_ has quit IRC14:59
ex4When I try to install my module, it says that AssertionError: parent class res.account.invoice does not exist14:59
renatois it possible to store in OpenErp product images?14:59
ex4renato: you can attach files to any OpenERP objects15:00
*** rationalperseus has joined #openobject15:02
*** sj has quit IRC15:03
ex4Ok, it just needed server reboot...15:04
hsmex4: is it working already?15:07
*** enlightx has joined #openobject15:08
ex4hsm: not yet. But I passed that problem.15:12
hsmok :)15:12
ex4Now it says ValueError: No references to invoice_reference.account_invoice_form15:13
ex4when I try to install the module.15:13
ex4invoice_reference is name of my module15:13
ex4That seems to be related to xml-files15:15
*** sj has joined #openobject15:16
hsmex4: i think you used 'account_invoice_form' somewhere in your code or xml.. make sure that you type the right module name in front of it..15:16
ex4hmm, I haven't fully understand those xml-files yet.15:17
ex4hsm: You were right. It was mentioned in my XML code.15:18
ex4<field name="inherit_id" ref="account_invoice_form" />15:18
hsmex4: yeah, I think it points to something in the 'account_invoice_layout' module.. type that in front of it: account_invoice_layout.account_invoice_form15:19
hsmex4: you're pointing towards an identifier in the account_invoice_layout module from your own module, so you need to make clear where this can be found..15:20
ex4Ok.15:20
*** jessejames has left #openobject15:20
ex4Is there (even close to complete) list of modules?15:22
hsmin your addons folder..15:22
ex4:)15:23
ex4hmm, didn't help...15:24
ex4ValueError: No references to account_invoice_layout.account_invoice_form15:24
*** mozmck has joined #openobject15:24
hsmallright.. then it is in some other module..15:26
ex4hmm.15:27
ex4account.invoice_form woud be a good candidate.15:27
hsmtry: rgrep "account_invoice_form" * in your addons folder.. this will return all files15:27
hsmnormally it looks something like this: <field name="inherit_id" ref="base.view_partner_form"/>15:28
hsmis account.invoice_form working?15:29
hsmthis id is then located in account/account_invoice_view.xml15:29
*** arqeco has joined #openobject15:32
ex4hsm: account.invoice_form did work!15:35
ex4now the module installed without errors.15:35
ex4Now we'll see if it works :)15:35
*** max3903 has joined #openobject15:37
ex4Ok, next problem.... ;)15:39
ex4When I try to open an invoice it raises an error message: AttributeError: Couldn't find tag '<field name="bank_reference">' in parent view !15:40
ex4And I have defined column bank_reference in my python file15:40
ex4    _columns = {15:40
ex4            'bank_reference': fields.integer('Bank reference'),15:40
ex4            }15:40
hsmrestart / upgrade15:48
*** ludo2 has quit IRC15:48
hsmadmin/customisation/data/object or so lets you inspect the object in openerp.. you can check if the attribute/field is there already..15:49
*** arqeco has quit IRC15:55
ex4hsm: that object view seems to be very useful! bank_reference is there.... :)16:09
hsmex4: nice! so you know that that is available..16:10
hsmex4: now, the error message is raised because it can't be found in the 'parent view'. Is i an inherited view or so?16:11
ex4it is an inherited view.16:23
ex4<field name="bank_reference" position="after"/>16:24
ex4that was the problem16:24
*** r3c4ll has joined #openobject16:25
ex4hsm: Actually that bank reference field is calculated based on invoice number and it does not to need changed.16:29
ex4How can i create this kind of field?16:30
Red15ex4, perhaps you mean a functional field type ?16:31
ex4Red15: propably16:35
ex4hmm, the field was integer... i wonder what happens if I change it to function16:35
ex4:)16:35
*** ludo2 has joined #openobject16:36
*** hsm has left #openobject16:37
Red15ex4: http://doc.openerp.com/developer/2_5_Objects_Fields_Methods/field_type.html#functional-fields16:38
ex4Red15: thank you16:45
*** ludo2 has quit IRC16:47
*** ludo2 has joined #openobject16:51
*** ToadP has joined #openobject16:54
*** ToadP1 has joined #openobject16:54
*** ToadP1 has left #openobject16:56
*** bechamel has quit IRC16:59
*** ovnicraft has joined #openobject17:00
ovnicrafthi folks i have problems changing an activity in workflow with: http://bit.ly/cPQgBF17:13
ovnicrafti want to know if anyone has experience with same issue?17:13
*** enlightx has quit IRC17:32
*** mrcast has quit IRC17:37
Red15ovnicraft, does it execute any of the functions ?17:40
Red15i think what you need to keep in mind is that the value of "action" is eval()'ed in python17:40
Red15so no multiline, use 'and' operator, (or maybe 'or')17:40
Red15oh wait, it uses a custom evaluate construction17:42
Red15it does allow multiline and indeed does an 'and' operation between them17:42
ovnicraftyes it exec a new action17:50
ovnicraftas you see17:50
*** quodt has quit IRC17:50
*** renato has quit IRC17:56
Red15action ? don't you mean method function of your model ?17:58
*** sj has quit IRC18:04
ovnicraftRed15, yes18:06
ovnicraftcan i send my module and you test it?18:06
ovnicrafti add a new function in my model and i need it be part of workflow18:07
ovnicrafti change it18:07
ovnicraftand it creates a new object, invoice has M2O with it but when method runs and create the new object it is not showed in view18:08
*** pricew_ has joined #openobject18:13
*** pricew has quit IRC18:15
Red15no time to check it sorry18:15
*** simahawk has quit IRC18:17
*** cedk has quit IRC18:25
*** mr_amit has quit IRC18:35
*** ludo2 has quit IRC18:41
*** edannenbe has quit IRC18:45
*** kalymero has quit IRC18:57
*** cedk has joined #openobject19:01
*** sharoon has joined #openobject19:12
*** sharoon has quit IRC19:13
*** sharoon has joined #openobject19:13
*** Red15 has quit IRC19:14
*** eLBati has quit IRC19:16
*** sharoon_ has joined #openobject19:17
*** sharoon has quit IRC19:17
*** sharoon_ is now known as sharoon19:17
*** sharoon has quit IRC19:19
*** sharoon_ has joined #openobject19:19
*** sharoon_ has quit IRC19:21
*** sharoon has joined #openobject19:22
*** sharoon has quit IRC19:26
*** sharoon has joined #openobject19:26
*** enlightx has joined #openobject19:48
*** enlightx has quit IRC19:49
*** rationalperseus has quit IRC19:56
*** Nyx has left #openobject19:56
*** rationalperseus has joined #openobject20:00
*** eLBati has joined #openobject20:23
zlinuxhello all20:23
ex4hi20:24
zlinuxhi ex4 :)20:35
*** KangOl has quit IRC20:35
zlinuxex4, how are you today?20:35
zlinuxex4, btw, are you deploying OpenERP for your own business?20:35
*** pricew_ has quit IRC20:45
*** LucaSub1 has joined #openobject20:50
*** LucaSub1 has left #openobject20:50
*** pricew has joined #openobject20:51
*** jcnorman has joined #openobject20:57
jcnormanAnyone here?20:58
*** b_52light has joined #openobject21:11
*** pricew has quit IRC21:14
*** max3903 has quit IRC21:18
*** max3903 has joined #openobject21:23
ex4jcnorman: yes :)21:24
ex4zlinux: yes, we are implementing OpenERP to our own company.21:24
ex4My company is a local IT vendor and service provider, so if it works as we hope, we might offer it to our customers as well.21:26
*** ToadP has quit IRC21:36
*** pricew has joined #openobject21:44
*** matrixise has quit IRC21:58
*** quodt has joined #openobject22:12
*** sharoon has joined #openobject22:22
*** max3903 has quit IRC22:27
*** max3903 has joined #openobject22:28
*** b_52light has quit IRC22:39
*** b_52light has joined #openobject23:12
*** rationalperseus has quit IRC23:29
*** eLBati has quit IRC23:47
*** sharoon has quit IRC00:18