IRC logs of #tryton for Tuesday, 2010-10-19

chat.freenode.net #tryton log beginning Tue Oct 19 00:00:01 CEST 2010
2010-10-19 01:57 -!- zodman(~andres-va@200.67.176.253) has joined #tryton
2010-10-19 02:01 -!- pheller(~pheller@2002:ad30:d8c3:0:fa1e:dfff:fee6:aabf) has joined #tryton
2010-10-19 03:16 -!- pepeu(~manuel@201.155.193.192) has joined #tryton
2010-10-19 04:39 -!- rednul_(~rednul@host-174-45-250-246.bln-mt.client.bresnan.net) has joined #tryton
2010-10-19 04:44 -!- pheller(~pheller@2002:ad30:d8c3:0:fa1e:dfff:fee6:aabf) has joined #tryton
2010-10-19 05:19 -!- yangoon(~mathiasb@p549F6654.dip.t-dialin.net) has joined #tryton
2010-10-19 05:33 -!- gremly(~gremly@190.26.155.61) has joined #tryton
2010-10-19 07:11 -!- rednul_(~rednul@host-174-45-250-246.bln-mt.client.bresnan.net) has joined #tryton
2010-10-19 07:58 -!- evernichon(~evernicho@mailout.fief.ch) has joined #tryton
2010-10-19 08:05 -!- enlightx(~enlightx@ip-223-177.sn1.eutelia.it) has joined #tryton
2010-10-19 08:33 -!- rednul_(~rednul@host-174-45-250-246.bln-mt.client.bresnan.net) has joined #tryton
2010-10-19 09:01 -!- mr_amit(~amit@115.252.104.187) has joined #tryton
2010-10-19 09:27 -!- cedk(~ced@gentoo/developer/cedk) has joined #tryton
2010-10-19 09:29 -!- cedk(~ced@gentoo/developer/cedk) has joined #tryton
2010-10-19 09:36 -!- pjstevns(~pjstevns@a83-163-46-103.adsl.xs4all.nl) has joined #tryton
2010-10-19 09:36 -!- pepeu(~manuel@201.155.193.192) has joined #tryton
2010-10-19 09:53 -!- Timitos(~kp@88.217.184.172) has joined #tryton
2010-10-19 10:33 -!- vladimir_(~vladimir@bband-dyn18.178-41-96.t-com.sk) has joined #tryton
2010-10-19 11:23 -!- svaksha(~svaksha@unaffiliated/svaksha) has joined #tryton
2010-10-19 11:34 <udono> cedk: hi, do you have an idea for http://codereview.appspot.com/2550042/diff/13002/scenario_simple.rst#pair-679 and http://codereview.appspot.com/2550042/diff/13002/scenario_simple.rst#pair-714 ?
2010-10-19 11:46 <cedk> udono: it seems that relation is not a proteus Model
2010-10-19 11:47 <udono> cedk: how it could...
2010-10-19 11:47 <udono> just not implemented?
2010-10-19 11:49 -!- cedk_(~ced@tycho.b2ck.com) has joined #tryton
2010-10-19 11:50 -!- FWiesing(~FWiesing@85-126-100-130.work.xdsl-line.inode.at) has joined #tryton
2010-10-19 11:50 -!- cedk(~ced@gentoo/developer/cedk) has joined #tryton
2010-10-19 11:50 -!- dba(~daniel@static.88-198-196-34.clients.your-server.de) has joined #tryton
2010-10-19 11:50 <cedk> udono: don't know, you should add some print statement
2010-10-19 11:50 -!- thick_mcrunfast(~blast_har@dsl092-043-124.lax1.dsl.speakeasy.net) has joined #tryton
2010-10-19 11:51 <udono> cedk: I did. The 11 Arguments in __init__ field, vals are the contents of the tax: taxes {'account': 8, 'description': u'Received tax', 'manual': False, 'tax': 1, 'base_sign': Decimal('1.0'), 'tax_code': 5, 'amount': Decimal('20.00'), 'base': Decimal('100.00'), 'base_code': 2, 'tax_sign': Decimal('1.0')}
2010-10-19 11:51 <cedk> udono: and relation
2010-10-19 11:51 <udono> cedk: ?
2010-10-19 11:53 <udono> cedk: I put the print statement before line http://hg.tryton.org/proteus/file/fb6ed55c091b/proteus/__init__.py#l503
2010-10-19 11:53 <udono> ic, just let me check
2010-10-19 12:14 -!- Red15(~red15@unaffiliated/red15) has joined #tryton
2010-10-19 12:31 -!- vladimir_(~vladimir@bband-dyn18.178-41-96.t-com.sk) has joined #tryton
2010-10-19 12:59 -!- mr_amit(~amit@115.252.104.187) has joined #tryton
2010-10-19 13:13 <udono> cedk: ... the values are: http://paste.pocoo.org/show/277355/
2010-10-19 13:15 <udono> cedk: It seems that I need to add line taxes to account.invoice.tax? But this looks wrong...
2010-10-19 13:21 <udono> cedk: no, it seems that the on_change which fills account.invoice.tax is not working...
2010-10-19 13:29 <cedk> udono: could you try to find which __init__ is not working
2010-10-19 13:33 <udono> cedk: I can try tomorrow morning
2010-10-19 13:35 <udono> cedk: but isn't it the __init__ from account.invoice.tax ?
2010-10-19 13:35 <udono> cedk: is it a pure proteus problem?
2010-10-19 13:35 <cedk> udono: i don't know because there is *kwargs in __init__
2010-10-19 13:36 <cedk> udono: could you try by changing *vals into **vals
2010-10-19 13:37 <udono> cedk: yes, sounds good, since vals is a dict
2010-10-19 13:42 <udono> cedk: http://paste.pocoo.org/show/277364/
2010-10-19 13:42 <udono> cedk: New is on top
2010-10-19 13:44 <cedk> udono: what is the value of "value" ?
2010-10-19 13:48 <udono> cedk: its 8
2010-10-19 13:49 <udono> cedk: so it seems vals['account']
2010-10-19 13:50 <udono> cedk: expected values are like: <product.uom(1)> or <account.account(6)> or <party.address(1)> ...
2010-10-19 13:56 <cedk> udono: so it is the set value of Model that doesn't handle correctly many2one
2010-10-19 13:57 <cedk> udono: could you fill an issue with that
2010-10-19 14:03 -!- bechamel(~user@chimie-prtx11.scf.fundp.ac.be) has joined #tryton
2010-10-19 14:03 <udono> cedk: done
2010-10-19 14:10 -!- evernichon(~evernicho@mailout.fief.ch) has joined #tryton
2010-10-19 14:38 -!- paepke(~paepke@p4FEB3174.dip.t-dialin.net) has joined #tryton
2010-10-19 14:55 -!- gavinf(~gavinf@196-210-199-66.dynamic.isadsl.co.za) has joined #tryton
2010-10-19 15:04 -!- vincent(~vincent@62.58.29.41) has joined #tryton
2010-10-19 15:08 -!- evernichon(~evernicho@mailout.fief.ch) has joined #tryton
2010-10-19 15:15 -!- pheller(~pheller@pool-173-48-216-195.bstnma.fios.verizon.net) has joined #tryton
2010-10-19 15:36 -!- digitalsatori(~tony@116.233.244.122) has joined #tryton
2010-10-19 15:42 -!- mr_amit(~amit@115.252.104.187) has joined #tryton
2010-10-19 15:46 -!- vladimir_(~vladimir@adsl-dyn-3.95-102-175.t-com.sk) has joined #tryton
2010-10-19 15:52 -!- evernichon(~evernicho@mailout.fief.ch) has left #tryton
2010-10-19 16:02 -!- mr_amit_(~amit@115.252.104.187) has joined #tryton
2010-10-19 16:03 -!- mr_amit(~amit@115.252.104.187) has joined #tryton
2010-10-19 16:13 -!- gremly(~gremly@200.106.202.91) has joined #tryton
2010-10-19 16:17 -!- FWiesing(~FWiesing@85-126-100-130.work.xdsl-line.inode.at) has joined #tryton
2010-10-19 16:17 -!- pepeu(~manuel@201.155.193.192) has joined #tryton
2010-10-19 16:53 -!- pepeu(~manuel@201.155.193.192) has joined #tryton
2010-10-19 17:04 -!- rednul_(~rednul@host-174-45-250-246.bln-mt.client.bresnan.net) has joined #tryton
2010-10-19 17:07 -!- digitalsatori(~tony@116.233.244.122) has joined #tryton
2010-10-19 17:20 -!- vincentvdl(~vincent@62.58.29.41) has left #tryton
2010-10-19 17:20 -!- vincentvdl(~vincent@62.58.29.41) has joined #tryton
2010-10-19 17:36 -!- rednul_(~rednul@host-174-45-250-246.bln-mt.client.bresnan.net) has joined #tryton
2010-10-19 17:47 -!- vincentvdl(~vincent@62.58.29.41) has left #tryton
2010-10-19 18:04 -!- cheche(cheche@188.85.213.151) has joined #tryton
2010-10-19 18:31 -!- svaksha(~svaksha@unaffiliated/svaksha) has joined #tryton
2010-10-19 18:37 -!- vladimir(~vladimir@213.151.246.136) has joined #tryton
2010-10-19 18:42 -!- enlightx(~enlightx@ip-223-177.sn1.eutelia.it) has joined #tryton
2010-10-19 19:47 -!- cedk(~ced@gentoo/developer/cedk) has joined #tryton
2010-10-19 19:56 -!- pheller(~pheller@c1fw226.constantcontact.com) has joined #tryton
2010-10-19 20:30 -!- enlightx(~enlightx@ip-223-177.sn1.eutelia.it) has joined #tryton
2010-10-19 21:12 -!- nicoe(~nicoe@91.180.213.121) has joined #tryton
2010-10-19 22:24 -!- enlightx(~enlightx@ip-223-177.sn1.eutelia.it) has joined #tryton

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