IRC logs of #tryton for Monday, 2016-07-11

chat.freenode.net #tryton log beginning Mon Jul 11 00:00:01 CEST 2016
2016-07-11 00:16 -!- risk_(be2b9b5d@gateway/web/freenode/ip.190.43.155.93) has joined #tryton
2016-07-11 00:24 <risk_> hi group. first day with Tryton after concluding it the best option for a multiuser small business accounting system that I could modify for my sales cycle and daily cash budgeting requirements. It seems well supported even though not popular in Peru. I suppose that is because the VAT reporting here may be unusual. since my coding was limited to Python it seemed the best option.
2016-07-11 00:28 <risk_> i installed the client and account module which talks to the demo server. I'm trying to install a test sever on my mac and figured out Mamp is not the way to go with MySql+PHP so I'm in the process of downloading OS X server 5.6 but have not come across any explicit install instructions for this configuration. I could start testing on my GoDaddy server if that makes more sense.
2016-07-11 03:28 -!- leio(~leio@gentoo/developer/leio) has joined #tryton
2016-07-11 08:13 -!- rpit(~rpit@2a02:908:e672:9420:56ee:75ff:fe0d:d3c7) has joined #tryton
2016-07-11 08:29 -!- leio(~leio@gentoo/developer/leio) has joined #tryton
2016-07-11 08:31 -!- dj_xatra(~dj_xatra@217.166.83.130) has joined #tryton
2016-07-11 08:43 -!- prayashm(~prayashm@45.251.36.7) has joined #tryton
2016-07-11 08:43 -!- prayashm(~prayashm@unaffiliated/prayashm) has joined #tryton
2016-07-11 08:51 -!- mrichez(~smuxi@mail.saluc.com) has joined #tryton
2016-07-11 09:10 -!- Timitos(~kpreisler@tmo-103-51.customers.d1-online.com) has joined #tryton
2016-07-11 09:25 -!- udono(~udono@tmo-100-11.customers.d1-online.com) has joined #tryton
2016-07-11 09:26 -!- rpit(~rpit@2a02:908:e672:9420:56ee:75ff:fe0d:d3c7) has joined #tryton
2016-07-11 09:35 -!- aasnan(~angel@142.red-2-139-177.staticip.rima-tde.net) has joined #tryton
2016-07-11 09:42 -!- meigallodixital(~meigallod@172.94.112.9) has joined #tryton
2016-07-11 10:00 -!- cedk(~ced@gentoo/developer/cedk) has joined #tryton
2016-07-11 10:01 -!- nicoe(~nicoe@2a02:a03f:3025:2800:ee55:f9ff:fe7b:f7ac) has joined #tryton
2016-07-11 10:25 <mrichez> hi, how to make hgnested working with mercurial 3.8 ? *** failed to import extension hgnested: 'module' object has no attribute 'norepo'
2016-07-11 10:31 <pokoli> mrichez: there is an issue related https://bitbucket.org/cedk/hgnested/issues/34/the-extension-does-not-work-with-mercurial
2016-07-11 10:41 <mrichez> pokoli: how to apply patch when hgnested is installed with pip ?
2016-07-11 10:41 <pokoli> mrichez: clone the source code, apply the patch and install it from source :)
2016-07-11 10:42 <pokoli> mrichez: it's explained on the install file of the extension: https://bitbucket.org/cedk/hgnested/src/3038a511bc9b4a1fb1d5e8c1d6ff8edb881c19c9/INSTALL?fileviewer=file-view-default
2016-07-11 10:42 <mrichez> pokoli: oki, thanks :-)
2016-07-11 11:10 -!- meigallodixital_(~meigallod@249.135.116.91.static.reverse-mundo-r.com) has joined #tryton
2016-07-11 11:15 -!- meigallodixital(~meigallod@154.16.158.18) has joined #tryton
2016-07-11 12:35 -!- mariomop(~quassel@host60.190-138-83.telecom.net.ar) has joined #tryton
2016-07-11 12:35 -!- meigallodixital_(~meigallod@188.72.113.14) has joined #tryton
2016-07-11 13:26 <dj_xatra> Is there a way to query the hostname of the client in Tryton?
2016-07-11 13:33 <pokoli> dj_xatra: I'm a little bit curious about why do you need that
2016-07-11 13:34 <pokoli> dj_xatra: AFAIU it's avaialable on the request object of the dispatcher http://hg.tryton.org/trytond/file/tip/trytond/protocols/dispatcher.py#l147
2016-07-11 13:54 <dj_xatra> pokoli: I would like to make a wizard that generates a file for a print service. The print service expects the name of the printer it should print to in the file name.
2016-07-11 13:55 <pokoli> dj_xatra: so why not adding it as a field in the wizard?
2016-07-11 13:55 <dj_xatra> Because then the user would have to fill it in each time. We don't want to bother them with that.
2016-07-11 13:56 <pokoli> dj_xatra: then you can add the field in user preferences and read it from there on the server
2016-07-11 13:58 <dj_xatra> Hm, that might work.
2016-07-11 14:00 <pokoli> dj_xatra: an then if in the future you need to use a different printer_name for all of the users you only need to change the preferences value, no need to change the code
2016-07-11 14:03 <dj_xatra> We figured we would have everyone use the same user account, because we also don't want to bother the user with having to remember credentials. But I guess we can get the browser to prefill credentials per workstation so that they only have to press enter to log on.
2016-07-11 14:07 <pokoli> dj_xatra: not the password but I'm also interested on making the browser remeber the username
2016-07-11 14:07 <pokoli> dj_xatra: and with trunk version you can implement a custom autentication mechanism with does not ask for anything
2016-07-11 14:08 <dj_xatra> Ah, nice!
2016-07-11 14:11 <pokoli> dj_xatra: basically it's this changeset http://hg.tryton.org/trytond/rev/3daf1a0f0ca7
2016-07-11 14:12 <pokoli> dj_xatra: and there is also the authentication_sms module as example of custom authentication method http://hg.tryton.org/modules/authentication_sms/
2016-07-11 14:13 -!- Timitos(~kpreisler@tmo-103-51.customers.d1-online.com) has joined #tryton
2016-07-11 14:14 <dj_xatra> Cool
2016-07-11 14:14 <dj_xatra> pokoli: how do I add a field in user preferences?
2016-07-11 14:16 <pokoli> dj_xatra: you have to add it on res.user and then there is a custom view for user preferences
2016-07-11 14:16 <pokoli> dj_xatra: the company module is a perfect example for that. See http://hg.tryton.org/modules/company/file/tip/company.xml
2016-07-11 14:59 <sisalp> hello,
2016-07-11 15:01 <sisalp> do you know if there is a draft proposal to support VAT/payment instead of VAT/invoice, which is require for independent workers in France ?
2016-07-11 15:03 <cedk> sisalp: I do not think it is required but just an option
2016-07-11 15:05 <cedk> sisalp: https://discuss.tryton.org/t/tax-report-on-cash-basis/15?u=ced
2016-07-11 15:12 -!- nicoe(~nicoe@balisto.wifi.b2ck.com) has joined #tryton
2016-07-11 15:19 -!- kstenger(~karla@r167-56-255-223.dialup.adsl.anteldata.net.uy) has joined #tryton
2016-07-11 15:38 <sisalp> cedk: thank you. I understand this report is not mandatory if you calculate your VAT by hand, because it doesn't change the accounting journals. Am I correct ?
2016-07-11 15:42 <cedk> sisalp: no, the proposal is about creating tax accounting on closing period
2016-07-11 15:46 -!- kstenger(~karla@r167-56-255-223.dialup.adsl.anteldata.net.uy) has joined #tryton
2016-07-11 15:50 <sisalp> cedk: so why is it just an option ?
2016-07-11 15:51 <cedk> sisalp: I do not understand
2016-07-11 16:03 <sisalp> cedk: you wrote "I do not think it is required but just an option", so I'm asking why ;-)
2016-07-11 16:03 <cedk> sisalp: where?
2016-07-11 16:03 -!- udono(~udono@tmo-108-46.customers.d1-online.com) has joined #tryton
2016-07-11 16:04 <sisalp> (15:03:39) cedk: sisalp: I do not think it is required but just an option
2016-07-11 16:07 <cedk> sisalp: I mean business are not required to follow this accounting way
2016-07-11 16:09 <sisalp> cedk: ok, got it. I think I will read this thread and contribute.
2016-07-11 16:38 -!- JosDzG(~Thunderbi@fixed-188-72-187-188-72-36.iusacell.net) has joined #tryton
2016-07-11 18:26 -!- kstenger(~karla@r167-56-255-223.dialup.adsl.anteldata.net.uy) has joined #tryton
2016-07-11 18:43 -!- Telesight(~anthony@4dae0c97.ftth.telfortglasvezel.nl) has joined #tryton
2016-07-11 18:49 -!- g5pw(~g5pw@mittelab/sudo/g5pw) has left #tryton
2016-07-11 19:05 -!- bvillasanti(~bvillasan@138.117.21.154) has joined #tryton
2016-07-11 20:41 -!- caleb(~caleb@bb-66-63-86-50.static.gwi.net) has joined #tryton
2016-07-11 20:41 <caleb> sdfsdf
2016-07-11 20:46 <Guest91043> Does anyone know why in __register__ of stock_forecast forecast moves are deleted? https://hg.tryton.org/modules/stock_forecast/file/tip/forecast.py#l146
2016-07-11 21:19 -!- kstenger(~karla@r190-133-91-24.dialup.adsl.anteldata.net.uy) has joined #tryton
2016-07-11 22:08 -!- aroncero(~aroncero@cpc91052-lock3-2-0-cust42.6-1.cable.virginm.net) has joined #tryton
2016-07-11 22:52 -!- perilla(~perilla@corp-190-57-169-210-cue.puntonet.ec) has joined #tryton
2016-07-11 23:01 -!- JosDzG(~Thunderbi@fixed-188-72-187-188-72-36.iusacell.net) has joined #tryton

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