For open discussions, an IRC Channel have been set up for Open ERP and Open Object: irc://irc.freenode.net/#openobject.
| *** tc0703 has quit IRC | 00:33 | |
| *** tc0703 has joined #openobject | 00:37 | |
| *** tc0703 has quit IRC | 00:59 | |
| *** ovnicraft has quit IRC | 01:31 | |
| *** ovnicraft has joined #openobject | 01:35 | |
| *** digitalsatori has joined #openobject | 01:52 | |
| *** ovnicraft has quit IRC | 01:53 | |
| *** bechamel has quit IRC | 02:24 | |
| *** mozmck has quit IRC | 02:36 | |
| *** edannenbe has quit IRC | 04:24 | |
| *** mr_amit has joined #openobject | 07:08 | |
| *** mr_amit has joined #openobject | 07:13 | |
| *** mr_amit_ has joined #openobject | 07:16 | |
| *** mr_amit_ has left #openobject | 07:16 | |
| *** digitalsatori has quit IRC | 07:28 | |
| *** digitalsatori has joined #openobject | 07:29 | |
| *** hounddog has joined #openobject | 07:40 | |
| *** Guest14251 has joined #openobject | 08:20 | |
| *** Guest14251 has quit IRC | 08:25 | |
| *** eLBati has joined #openobject | 08:52 | |
| *** mrcast has joined #openobject | 09:00 | |
| *** cedk has quit IRC | 09:00 | |
| *** Nyx has joined #openobject | 09:02 | |
| *** Nyx has left #openobject | 09:02 | |
| *** cjeske has joined #openobject | 09:15 | |
| *** mrcast has quit IRC | 09:20 | |
| *** mrcast has joined #openobject | 09:21 | |
| *** yangoon_rm has joined #openobject | 09:22 | |
| *** ecarreras has quit IRC | 09:24 | |
| *** ecarreras has joined #openobject | 09:24 | |
| *** ecarreras has joined #openobject | 09:27 | |
| *** simahawk has joined #openobject | 09:28 | |
| *** cedk has joined #openobject | 09:33 | |
| *** apoh has joined #openobject | 09:42 | |
| *** Flydoire|Taktik has joined #openobject | 09:45 | |
| *** Flydoire|Taktik has quit IRC | 09:47 | |
| *** ludo2 has joined #openobject | 10:11 | |
| *** kalymero has joined #openobject | 10:41 | |
| *** digitalsatori has joined #openobject | 11:09 | |
| *** eLBati has quit IRC | 11:10 | |
| digitalsatori | hi, is there any difference between the tag <act_window> and <record model=ir.actions.act_winodw ...> | 11:16 |
|---|---|---|
| digitalsatori | I thought they are the same, but with <act_window> I can show a action button at the right side of any form, | 11:17 |
| digitalsatori | not any form, I mean the form with the same modle as defined in atrribute src_model | 11:19 |
| digitalsatori | for <record model=ir.actions.act_window > tag even I define the <field name="src_model ...., it still won't show a action button at the right side of corresponding form | 11:20 |
| digitalsatori | pls. anybody enlight me | 11:21 |
| digitalsatori | mr_amit: do you have any idea about my above question? | 11:22 |
| *** mrcast has quit IRC | 11:23 | |
| *** edannenbe has joined #openobject | 11:24 | |
| *** rationalperseus has joined #openobject | 11:25 | |
| digitalsatori | cedk: you must have the answer, please kindly advise me | 11:26 |
| *** mrcast has joined #openobject | 11:27 | |
| digitalsatori | for people just come into this channel, I repeat my question: | 11:28 |
| digitalsatori | <digitalsatori> hi, is there any difference between the tag <act_window> and <record model=ir.actions.act_winodw ...> | 11:28 |
| digitalsatori | [17:00] <digitalsatori> I thought they are the same, but with <act_window> I can show a action button at the right side of any form, | 11:28 |
| digitalsatori | [17:01] <digitalsatori> not any form, I mean the form with the same modle as defined in atrribute src_model | 11:28 |
| digitalsatori | [17:02] <digitalsatori> for <record model=ir.actions.act_window > tag even I define the <field name="src_model ...., it still won't show a action button at the right side of corresponding form | 11:28 |
| *** boran has joined #openobject | 11:32 | |
| mr_amit | digitalsatori: to my knowledge act_window can be referenced from a button on a form or sidebar | 11:32 |
| mr_amit | while records are generally used with menu items | 11:32 |
| mr_amit | not sure whether act_window will be automatically listed in sidebar or not | 11:33 |
| digitalsatori | mr_amit: thank you very for the answer | 11:39 |
| digitalsatori | I read the docs, it said that if I define src_model attribute, the action will show in the sidebar | 11:40 |
| mr_amit | digitalsatori: act_window can also be used with new style wizards | 11:41 |
| digitalsatori | mr_amit: another question for you, with the old wizard system I can run an function call without binding with a button | 11:44 |
| digitalsatori | but for the osv_memory wizard, I have no way to run a function without binding it with a button | 11:44 |
| digitalsatori | for example, I would like to call a function in the init state, how can I achieve this in osv_memory | 11:46 |
| mr_amit | next steps are decided based on the return value of actions performed on previous step | 11:48 |
| mr_amit | action can be anything, a window action or workflow action | 11:49 |
| mr_amit | or even a report action | 11:49 |
| digitalsatori | for example I can define an old wizard that doesn't even launch a new window except excuteing a function | 11:51 |
| digitalsatori | 'init': { | 11:52 |
| digitalsatori | 'actions': [], | 11:52 |
| digitalsatori | 'result': {'type': 'action', 'action': _view_relation_product, 'state':'end'} | 11:52 |
| digitalsatori | } | 11:52 |
| digitalsatori | how can I do this in the new osv_memory | 11:52 |
| digitalsatori | is there anything like 'action' in osv_memory except for those function bind with buttons | 11:53 |
| cedk | digitalsatori: act_window is a shortcut for <record model="ir.actions.act_window" | 11:54 |
| digitalsatori | hi cedk, I thought the same way, but when I tried, I found the difference | 11:54 |
| cedk | digitalsatori: I don't use act_window because other is more precsis | 11:55 |
| digitalsatori | and I noticed that act_window can use the key2 attribute while the record can't | 11:55 |
| digitalsatori | and record can't show the button at the side bar, | 11:56 |
| digitalsatori | that's why I came and ask for the difference | 11:56 |
| cedk | digitalsatori: data model of this is really crappy | 11:57 |
| digitalsatori | cedk: forget about those damn tags then ; ), can you answer my question about the osv_memory | 12:06 |
| digitalsatori | I would like to have the same effect like below in the osv_memory | 12:08 |
| digitalsatori | 'init': { | 12:08 |
| digitalsatori | 'actions': [], | 12:08 |
| digitalsatori | 'result': {'type': 'action', 'action': _view_relation_product, 'state':'end'} | 12:08 |
| digitalsatori | _view_relation_product return a dict with all the value for an action definition | 12:11 |
| *** hawodi has joined #openobject | 12:15 | |
| hawodi | hi everyone. | 12:15 |
| hawodi | Under product->Prices & Suppliers, what does the "Variant Price Margin and Variant Price Extra" mean please? | 12:16 |
| cedk | digitalsatori: I don't know osv_memory, it is a clone of Tryton wizard but also crappy :-) | 12:19 |
| *** boran has quit IRC | 12:24 | |
| *** jehan has joined #openobject | 12:44 | |
| *** ludo2 has quit IRC | 12:44 | |
| *** apoh has quit IRC | 12:48 | |
| *** jehan has quit IRC | 12:53 | |
| *** jehan has joined #openobject | 12:56 | |
| *** digitalsatori has quit IRC | 13:00 | |
| *** jehan has quit IRC | 13:03 | |
| *** digitalsatori has joined #openobject | 13:10 | |
| *** hounddog has quit IRC | 13:10 | |
| *** rationalperseus_ has joined #openobject | 13:16 | |
| *** rationalperseus has quit IRC | 13:17 | |
| *** mr_amit has left #openobject | 14:08 | |
| *** simahawk is now known as simahawk|lunch | 14:09 | |
| *** mrcast has quit IRC | 14:24 | |
| *** mrcast has joined #openobject | 14:24 | |
| *** ludo2 has joined #openobject | 14:34 | |
| zanaga | does anyone here use the project_mrp so that the hours used for a task is getting billed properly? | 14:34 |
| *** hounddog has joined #openobject | 14:35 | |
| *** rationalperseus_ has quit IRC | 14:50 | |
| *** rationalperseus has joined #openobject | 14:58 | |
| *** bechamel has joined #openobject | 15:01 | |
| *** simahawk|lunch is now known as simahawk | 15:04 | |
| *** digitalsatori has quit IRC | 15:12 | |
| *** digitalsatori has joined #openobject | 15:12 | |
| *** rationalperseus has quit IRC | 15:13 | |
| *** rationalperseus has joined #openobject | 15:15 | |
| *** komsas has joined #openobject | 15:19 | |
| *** rationalperseus has quit IRC | 15:48 | |
| *** rationalperseus has joined #openobject | 15:51 | |
| *** digitalsatori has quit IRC | 15:59 | |
| *** digitalsatori has joined #openobject | 16:00 | |
| *** simahawk has quit IRC | 16:02 | |
| *** ovnicraft has joined #openobject | 16:04 | |
| *** smrln has joined #openobject | 16:06 | |
| smrln | anyone use the crm module? | 16:07 |
| *** eLBati has joined #openobject | 16:15 | |
| *** apoh has joined #openobject | 16:22 | |
| apoh | hi | 16:23 |
| apoh | why ist it not possible to set a field via attrs invisible? | 16:24 |
| ecarreras | I don't know apoh, but you can use group wrapping this field, then works | 16:31 |
| edannenbe | think it worked on field too for me, just need to remember to include the attr you are testing on into the view | 16:32 |
| edannenbe | ie, you test for state: xxx, include state as invisible field into the view | 16:32 |
| ecarreras | edannenbe, in gtk client or web client? | 16:34 |
| apoh | endannenbe, i think this didn't work in the gtk-client | 16:36 |
| edannenbe | just did it yesterday in gtk | 16:37 |
| apoh | ecarreras, group wrapping is not the nice way | 16:37 |
| apoh | edannenbe, in wich version? | 16:37 |
| ecarreras | I know... I know... | 16:38 |
| edannenbe | 5.0.11 | 16:38 |
| *** bechamel has quit IRC | 16:42 | |
| *** bechamel` has joined #openobject | 16:42 | |
| la_loOse | hmmmm about old versions | 16:43 |
| la_loOse | tell me i'm blind and the 5.0.10 is somewhere ? | 16:44 |
| la_loOse | http://openerp.com/download/old/ | 16:44 |
| smrln | If I create a new section in the CRM and then create stages and assign them to that section, and then create a menu item for that section, how am I to get the stages to show up in the form view when creating a new record in that section? | 16:46 |
| smrln | anyone know what I'm missing? | 16:46 |
| *** eLBati has quit IRC | 16:47 | |
| *** mozmck has joined #openobject | 16:47 | |
| *** eLBati has joined #openobject | 16:50 | |
| apoh | edannenbe, i try this out with boolean fields a it still dont work | 16:50 |
| dba | la_loOse: http://archive.debian-maintainers.org/open-object/packages/ | 16:50 |
| la_loOse | dba: thanks | 16:51 |
| dba | the orig.tar.gz are (except for openerp-web) unmodified (same checksums) as the ones from upstream. | 16:51 |
| la_loOse | dba: thanks again :-) | 16:52 |
| dba | the openerp-web has +dfsg i n the version and is without embeddded js stuff that is already packaged in debian. | 16:52 |
| *** simahawk has joined #openobject | 16:53 | |
| *** digitalsatori has quit IRC | 17:08 | |
| *** apoh has left #openobject | 17:10 | |
| smrln | the accounting of openerp is just awesome | 17:12 |
| smrln | took me 12mos to figure it out, but wow | 17:13 |
| *** mmahir has quit IRC | 17:23 | |
| *** edannenbe has quit IRC | 17:34 | |
| *** bechamel` has quit IRC | 17:44 | |
| *** cedk has quit IRC | 18:03 | |
| *** hawodi has quit IRC | 18:08 | |
| *** hawodi has joined #openobject | 18:09 | |
| zigzapgabe | smrin: lol | 18:20 |
| zigzapgabe | hey all - question on importing leads. I have used the exported template, copied in my leads, and when i try to re-import it autodetects fields just fine, but then i get this message after attempting "Error Message: Line 1: Insertion Failed!" | 18:20 |
| zigzapgabe | and help would be greatly appreciated. I have 2600 leads and i dont want to have to type them all in by hand :) | 18:21 |
| smrln | zigzapgabe whenever I have trouble importing, its normally because I haven't satisfied one of the required fields on my csv | 18:26 |
| smrln | it should give you more than "Error Message: Line 1: Insertion Failed!" | 18:26 |
| zigzapgabe | smrin: thank you. let me see if there is more of an error | 18:26 |
| zigzapgabe | smrin: it gives me "error trying to import this record" and then lists the record | 18:27 |
| zigzapgabe | but if i drop that record it does it on the next, and so on | 18:27 |
| zigzapgabe | it does say on partner_id: False and partner_address: False | 18:28 |
| zigzapgabe | are those required fields? | 18:28 |
| smrln | probably | 18:28 |
| zigzapgabe | alright | 18:28 |
| smrln | best thing to do I've found, is enter a record using the form, then export it to a csv and use that as your template | 18:28 |
| zigzapgabe | yeah thats what i tried, i guess i should use all fields available? | 18:29 |
| zigzapgabe | and can i have null fields? | 18:30 |
| smrln | not sure | 18:34 |
| *** julian18281 has joined #openobject | 18:43 | |
| *** simahawk has quit IRC | 18:45 | |
| *** julian18281 has left #openobject | 18:48 | |
| *** simahawk has joined #openobject | 18:49 | |
| komsas | zigzapgabe: I propose to use csv fields names like they are in the database. Exp. importing products, requered fields are category and name, so you must fill 2 fields (csv columns) categ_id:id, name. Colon is for relation with category id. | 18:54 |
| zigzapgabe | komas: thank you, i think i understand :) i haven't done much in the way of importing to this yet, so i appreciate the help! | 18:57 |
| *** simahawk has quit IRC | 18:59 | |
| komsas | zigzapgabe: one more, and if you importing a lot of data, the best way is to create mini module for that. If you need exp. i can share. | 19:02 |
| *** hawodi has quit IRC | 19:03 | |
| zigzapgabe | komsas: yes, that would be wonderful, i have not built any modules yet, though i've looked at the code for all of them | 19:04 |
| komsas | zigzapgabe: ok, give me your email and I'll send you demo. | 19:06 |
| *** pelzi_ has quit IRC | 19:06 | |
| zigzapgabe | komsas: just messaged it to you | 19:08 |
| zigzapgabe | see it? | 19:08 |
| komsas | yee, I sent it. | 19:12 |
| zigzapgabe | komsas: thank you! any instructions on how to use it, or is it in the module | 19:12 |
| komsas | you can use it like demo module, to create yours | 19:13 |
| *** kalymero has quit IRC | 19:14 | |
| komsas | take a look to csv files and __terp__, it is little so everythink is simple. | 19:14 |
| komsas | main thing is to create correct csv files | 19:14 |
| *** cedk has joined #openobject | 19:16 | |
| zigzapgabe | komsas: ok, thank you, i really appreciate the help | 19:20 |
| komsas | no problem:) | 19:20 |
| zigzapgabe | that is very, very helpful. | 19:39 |
| *** cjeske has quit IRC | 19:39 | |
| zigzapgabe | i have another question, do i need to import many fields, or can i just import required fields (highlighted in the gui) | 19:39 |
| komsas | zigzapgabe: you must import only required fields. | 19:44 |
| *** rationalperseus has quit IRC | 19:52 | |
| *** rationalperseus has joined #openobject | 19:52 | |
| *** pelzi_ has joined #openobject | 19:56 | |
| *** rationalperseus has quit IRC | 19:56 | |
| *** eLBati has quit IRC | 20:06 | |
| *** Gavin_Achado has joined #openobject | 20:12 | |
| *** rationalperseus has joined #openobject | 20:13 | |
| *** LucaSub1 has joined #openobject | 20:14 | |
| *** Billynkid has joined #openobject | 20:17 | |
| *** Billynkid1 has joined #openobject | 20:17 | |
| *** ecn has joined #openobject | 20:23 | |
| *** ecn has quit IRC | 20:28 | |
| zigzapgabe | komsas: how would you format this: | 20:29 |
| *** LucaSub1 has quit IRC | 20:29 | |
| zigzapgabe | name,section_id, partner_name2,name,partner_mobile,note,partner_phone,partner_name,email_from | 20:29 |
| zigzapgabe | its the first line in my csv file | 20:30 |
| komsas | it is leads? | 20:30 |
| *** LucaSub1 has joined #openobject | 20:30 | |
| zigzapgabe | yes | 20:30 |
| zigzapgabe | im trying to follow your example, but i am just rather new to this still :) | 20:31 |
| *** LucaSub1 has left #openobject | 20:31 | |
| komsas | ok, I will look what is lead structure | 20:32 |
| zigzapgabe | thank you so much | 20:32 |
| *** LucaSub1 has joined #openobject | 20:34 | |
| komsas | name,section_id:id,partner_name2,partner_mobile,note,partner_phone,partner_name,email_from | 20:40 |
| komsas | Why you have 2 "name" fields ? | 20:40 |
| *** LucaSub1 has quit IRC | 20:46 | |
| zigzapgabe | komsas: thank you! i think that its prospect name, and contact name, not sure | 20:47 |
| komsas | first name is Lead subject, but second mm.. | 20:47 |
| *** LucaSub1 has joined #openobject | 20:49 | |
| zigzapgabe | getting this error now: | 20:49 |
| zigzapgabe | Error processing your first line of the file. | 20:49 |
| zigzapgabe | Field name,section_id:id,partner_name2,partner_mobile,note,partner_phone,partner_name,email_from;;;;;;; is unknown ! | 20:49 |
| *** LucaSub1 has left #openobject | 20:50 | |
| *** LucaSub2 has joined #openobject | 20:51 | |
| komsas | how you importing this data? | 20:52 |
| zigzapgabe | trying through your module i modded, and also just direct from the import menu | 20:53 |
| komsas | can you give me your csv with some lines with demo data? | 20:54 |
| zigzapgabe | yep | 20:54 |
| zigzapgabe | sending it now, and again, i truly appreciate your assistance | 20:54 |
| komsas | how i said, no problem :) | 20:55 |
| zigzapgabe | you should have it in a moment | 20:58 |
| *** LucaSub2 has quit IRC | 20:58 | |
| *** LucaSub2 has joined #openobject | 20:59 | |
| *** LucaSub2 has joined #openobject | 21:03 | |
| *** LucaSub2 has quit IRC | 21:04 | |
| *** LucaSub1 has joined #openobject | 21:08 | |
| *** LucaSub1 has left #openobject | 21:09 | |
| *** zigzapgabe_ has joined #openobject | 21:32 | |
| zigzapgabe | i am not very good at this and it is frustrating :) | 21:32 |
| *** zigzapgabe__ has joined #openobject | 21:41 | |
| *** zigzapgabe__ has joined #openobject | 21:45 | |
| *** zigzapgabe_ has quit IRC | 21:46 | |
| *** ludo2 has quit IRC | 21:51 | |
| *** zigzapgabe__ has quit IRC | 21:56 | |
| *** zigzapgabe_ has joined #openobject | 22:07 | |
| komsas | zigzapgabe: Check your email. | 22:10 |
| *** zigzapgabe_ has quit IRC | 22:15 | |
| zigzapgabe | komsas: you are my hero | 22:19 |
| komsas | zigzapgabe: I think sometimes technical stuff must do work with importing a lof ot data, not CEO :)) | 22:21 |
| zigzapgabe | haha | 22:21 |
| zigzapgabe | you are probably right | 22:22 |
| zigzapgabe | im trying it now | 22:22 |
| komsas | zigzapgabe: ok, bye, time to go to bed. If you'll have hardly resolved problems you can contact me directly. | 22:30 |
| zigzapgabe | komsas: thank you so much | 22:31 |
| zigzapgabe | get some rest, and i'll talk to you again i hope | 22:31 |
| komsas | thanks | 22:31 |
| *** komsas has quit IRC | 22:31 | |
| zigzapgabe | it works perfect | 22:33 |
| *** yangoon_rm has quit IRC | 22:48 | |
| *** ludo2 has joined #openobject | 22:51 | |
| *** yangoon_rm has joined #openobject | 22:59 | |
| *** yangoon_rm has quit IRC | 23:02 | |
| *** yangoon_rm has joined #openobject | 23:02 | |
| *** ToadP has joined #openobject | 23:02 | |
| *** ToadP1 has joined #openobject | 23:02 | |
| *** max3903 has quit IRC | 23:03 | |
| *** rationalperseus has quit IRC | 23:11 | |
| *** max3903 has joined #openobject | 23:16 | |
| *** Billynkid has left #openobject | 23:37 | |
| *** Billynkid1 has left #openobject | 23:37 | |
| *** eLBati has joined #openobject | 23:45 | |
| *** mrcast has left #openobject | 23:48 | |
| *** max3903 has quit IRC | 23:51 | |
| *** ludo2 has quit IRC | 23:55 | |
| *** max3903 has joined #openobject | 00:04 | |
| *** eLBati has quit IRC | 00:06 | |
| *** ovnicraft has quit IRC | 00:06 | |
| *** ovnicraft has joined #openobject | 00:15 | |