IRC logs of #tryton for Monday, 2018-09-17

chat.freenode.net #tryton log beginning Mon Sep 17 00:00:01 CEST 2018
-!- gnarface18(~gnarface@194.59.251.216) has joined #tryton22:14
-!- MB_Adriaan(~MB_Adriaa@174.127.244.90) has joined #tryton22:40
-!- giesen(~ggiesen@ego.giesen.me) has joined #tryton23:19
-!- ehuelsmann(~ehuelsman@171.224.160.97) has joined #tryton00:31
-!- yangoon(~mathiasb@i59F5F314.versanet.de) has joined #tryton01:04
-!- fazid7224(~fazid72@220.179.182.193) has joined #tryton01:18
-!- scc9(~scc@27.79.142.102) has joined #tryton01:52
-!- lucascastro(~lucascast@177-185-139-186.isotelco.net.br) has joined #tryton01:56
-!- TheoStorm23(~TheoStorm@59.4.84.75) has joined #tryton02:09
-!- yangoon1(~mathiasb@i59F5FF3A.versanet.de) has joined #tryton02:10
-!- rmu|w(~robert@cpe90-146-69-94.liwest.at) has joined #tryton04:49
-!- rmu|w(~robert@cpe90-146-69-94.liwest.at) has joined #tryton04:57
-!- tafelgeschirr(~tafelgesc@5.104.149.54) has joined #tryton05:12
-!- LordVan(~LordVan@gentoo/developer/LordVan) has joined #tryton05:45
LordVanmorning06:14
-!- Timitos(~kpreisler@host-88-217-184-172.customer.m-online.net) has joined #tryton06:18
-!- giesen(~ggiesen@ego.giesen.me) has joined #tryton06:21
-!- cedk(~ced@gentoo/developer/cedk) has joined #tryton06:29
LordVanhi06:44
-!- mrichez(~smuxi@mail.saluc.com) has joined #tryton07:04
mrichezLordVan: hi, did you solve your problem ?07:09
-!- udono(~udono@113-135-067-156.ip-addr.inexio.net) has joined #tryton07:17
-!- jpaulovi_(~jpaulovi_@31.135.101.16) has joined #tryton07:19
LordVanmrichez, nope ..w hile I got rid of some errors, it still doesn't show the column i want07:33
LordVani will upload the whole module source to github or sth later gotta do some other work first07:34
LordVan(it is probably something simple anyway)07:34
mrichezLordVan: did you saw my last msg to change your xpath : use name instead of id07:34
LordVanno i don't think so07:36
mrichezLordVan: xpath: /tree/field[@name='product']07:38
LordVanah07:40
LordVanthat was it!07:40
LordVanthanks ;)07:40
LordVanbtw07:40
LordVanwould it be possible to only show the first line / first X characters of that with just the xml?07:40
-!- csotelo(~csotelo@2001:1388:49c6:3dc6:d113:e244:d8cf:cb72) has joined #tryton07:41
LordVanI think in the end I will probably have to add at least one extra field anyway though, since I will need the name of the position + description (either for articles/variants, but also for one-off items)07:43
LordVan[[maybe even more for some - later searchable -- metadata]]07:44
LordVanmrichez, do you know of any list (or way to generate it) so one knows the structures that are accessible with xpath stuff like this? -- can the whole thing be saved as xml?)07:46
mrichezLordVan: there's no list, you need to check xml files07:47
LordVanmrichez, you mean in the modules themselves?07:49
mrichezLordVan: yes... this is the best way to extend modules07:50
LordVanic07:50
LordVanok i shall do that next time thanks07:50
LordVanso anyway what I am thinking of doing next is adding some fields to sale_line to give me the extra info I need, but *if* an article/variant is selected get the data from there (if present) .. I suspect that should be possible "fairly" easy from what I've seen so far07:51
LordVan(but I still need to figure out the python parts of that of course) - and read other moduels07:51
mrichezLordVan: in this case, you will need to extend the sale.line model with the fields you need (often with function fields) and then add those fields in xml with xpath07:53
mrichezLordVan: and to reduce your description , it could be done with a function field07:54
LordVanmrichez, I will still decide if I replace that description field with a custom one anyway I suppose but good to know thanks07:55
mrichezLordVan: ok. good luck with your customizations...07:56
LordVanthanks ^^ I will probably be back with questions haha .. that said I will see if I find a module I can use as a reference07:59
LordVanmrichez, do you think sale_price_list is a good starting point?08:05
mrichezLordVan: good starting point for ?08:22
LordVanmy module that adds items to sale_line08:23
mrichezLordVan: hum, sale_price_list seems complex... better is to check small customizations in zikzakmedia bitbucket: https://bitbucket.org/zikzakmedia/08:24
mrichezLordVan: or nantic : https://bitbucket.org/nantic/08:26
mrichezLordVan: this kind of module: https://bitbucket.org/nantic/trytond-sale_line_address/src/default/08:27
LordVanmrichez, thanks i will check those out08:30
LordVansale_price_list did seem a bit confusing08:31
mrichezLordVan: indeed08:31
LordVanit's jsut that it was already installed ^^08:31
-!- nicoe(~nicoe@host-85-201-184-151.dynamic.voo.be) has joined #tryton08:32
LordVanthose look familiar .. i think i had seen those before .. but i couldnT' find the links again ;)08:32
LordVanthe last one especially seems rather similar to what i want - except that i want to add a new field08:34
LordVanor maybe https://bitbucket.org/zikzakmedia/trytond-sale_weight/src is more fitting since it seems to add something new08:35
mrichezLordVan: sale_line_address add also two new fields on sale_line...08:37
LordVanyes08:37
LordVanboth are good :)08:37
mrichez:-)08:37
pokoliLordVan: reading this presentation may be usefull for you http://downloads.tryton.org/TUL2014/crash-course.pdf08:38
LordVanpokoli, i shall - i had looked at some more recent ones08:39
pokoliLordVan: explain the basics concepts of customization with examples08:39
LordVannice08:39
LordVantbh I find getting started with tryton def rather difficult due to lakc of (easy to find) documentation and examples08:39
pokoliLordVan: yes, I know we miss some documentation08:41
LordVanmaybe I sho7uld document my "adventures" xD08:42
pokoliLordVan: if you think that something can be improved on the current content of doc.tryton.org any proposal is very welcome :)08:43
LordVanpokoli, ^^08:43
mrichezcedk: Hi, is there Tryton Unconference this year?08:50
pokolimrichez: no, there is no proposal to organize one, do you want to host it? ejjejejeje08:52
mrichezpokoli: twice in Belgium ? ;-)08:55
LordVancloser to Austria would be nice (for me anyway ^^)08:58
-!- thaneor(~lenovo3@r179-25-36-46.dialup.adsl.anteldata.net.uy) has joined #tryton09:05
pokolimrichez: Maybe france as there had been any unconference there :P09:09
LordVanas long as you don't do talks in french XD09:11
LordVanthat aside09:12
LordVanI am considering going to FOSDEM .. is anyone form here going there?09:12
mrichezpokoli: Yes France would be nice... :-) You need to call for proposal to french tryton users :-)09:16
mrichezLordVan: talks are in english09:16
LordVanIf you plan to do a tryton conference in Austria (i suppose Vienna) some time let me know and I will help as much as I can ;)09:17
pokoliLordVan: we normally call for volunters willing to organize in their country. So if you want to organize it in Vienna we will be very happy to come there09:18
LordVanhmm organzing it by myself would be a bit of a tall order .. maybe if others near here would be interested too it might be an option09:19
LordVanHow big was the last conference?09:19
pokoliLordVan: We just need a venue and some places to eat09:20
pokoliLordVan: big as number of attendees?09:20
LordVanyes09:21
LordVanroom size,..09:21
pokoliLordVan: I don't know because I did not attent the last one, but probably a venue for 50 persons will be enough09:21
LordVanp.s.: maybe someone wants to come next year to PyDays in vienna and hold a tryton talk or 2  (here some photos: https://gallery.lordvan.com/Events/LinuxWochen_Vienna_2018/PyDays_2018/ )09:22
LordVanpokoli, ok well that is not too bad i guess - that is as long as it doesn'T include also accomodation for people ;))09:23
pokoliLordVan: normally the events organitze propose some places for acomodations and everyone registers for themselfs on the one it prefers09:25
LordVanyes that is fine09:26
LordVanbut once people expect the organzier to book/reserve those it gets a lot more complicated and more work ^^09:26
pokoliLordVan: usually the organizer only reserves the venue and some places to eat for the attendes09:27
LordVanyeah that is reasonable ;)09:31
LordVanpokoli, i am tempted, but i think i'd still want at least one other person to help organize it(if only as "insurance" should i get sick or something)09:48
pokoliLordVan: Maybe you can introduce Tryton to the Vienna Python users and search for somebody interested to help there09:55
LordVanpossible ;)09:56
LordVanand i think there are some other austrian tryton users .. but i think that was in linz - 3 h drive from vienna09:56
-!- gavit19(~gavit@27.34.90.9) has joined #tryton10:01
cedkI switched discuss from subcategory to tags for the feature, like that we can reuse it to tag third party modules10:30
pokolicedk: great, do you think we should also tag support requests?10:33
pokolifor example, this can be probably tagged as sales: https://discuss.tryton.org/t/how-to-change-a-price-on-each-sale/71010:33
-!- mariomop(~quassel@181.93.172.119) has joined #tryton11:03
cedkpokoli: why not11:26
LordVanbtw did i post the link to my blog with tryton related stuff yet?11:27
pokoliLordVan: I dont think so. Is it user or developer related stuff?11:47
LordVaninstallation11:48
LordVanso far anyway11:48
LordVanand config11:48
LordVanhttps://blog.lordvan.com/blog/category/tryton/ if you are curious -- I intend to add something dev related too at some point11:49
LordVannothign too exciting, but also serving as a reminder for me to not forget any specific steps11:51
-!- tafelgeschirr(~tafelgesc@5.104.149.54) has joined #tryton12:06
-!- jmpoure(~jmpoure@soy95-3-82-237-147-64.fbx.proxad.net) has joined #tryton12:20
-!- cedk(~ced@gentoo/developer/cedk) has joined #tryton13:28
-!- nlopez73(bc56d678@gateway/web/cgi-irc/kiwiirc.com/ip.188.86.214.120) has joined #tryton13:38
-!- csotelo(~csotelo@2001:1388:49c6:3dc6:d113:e244:d8cf:cb72) has joined #tryton13:51
-!- rmu(~robert@cpe90-146-69-94.liwest.at) has joined #tryton14:01
-!- rmu(~robert@cpe90-146-69-94.liwest.at) has left #tryton14:01
-!- rmu(~robert@cpe90-146-69-94.liwest.at) has joined #tryton14:01
-!- jmpoure(~jmpoure@soy95-3-82-237-147-64.fbx.proxad.net) has joined #tryton14:17
-!- smorillo(bc56d678@gateway/web/cgi-irc/kiwiirc.com/ip.188.86.214.120) has joined #tryton15:15
-!- Teppich(~Teppich@152.231.104.252) has joined #tryton17:30
-!- jmpoure(~jmpoure@soy95-3-82-237-147-64.fbx.proxad.net) has joined #tryton18:46
-!- saint^7(~saint^@86.127.135.95) has joined #tryton19:05
-!- semarie(~semarie@unaffiliated/semarie) has joined #tryton20:00
-!- smorillo(258799fc@gateway/web/cgi-irc/kiwiirc.com/ip.37.135.153.252) has joined #tryton20:17
-!- lucascastro(~lucascast@186.193.178.113.jupiter.com.br) has joined #tryton20:22
-!- thaneor1(~lenovo3@r179-25-68-216.dialup.adsl.anteldata.net.uy) has joined #tryton21:08
-!- lucascastro(~lucascast@177-185-139-186.isotelco.net.br) has joined #tryton21:51

Generated by irclog2html.py 2.17.3 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!