chat.freenode.net #tryton log beginning Sun Aug 26 00:00:01 CEST 2018 | ||
-!- cedk(~ced@gentoo/developer/cedk) has joined #tryton | 23:18 | |
-!- thaneor(~lenovo3@r186-53-83-113.dialup.adsl.anteldata.net.uy) has joined #tryton | 01:51 | |
-!- yangoon(~mathiasb@i59F4F246.versanet.de) has joined #tryton | 02:21 | |
-!- thaneor(~lenovo3@r186-53-74-185.dialup.adsl.anteldata.net.uy) has joined #tryton | 02:58 | |
-!- Guest31586(~Eduard_Mu@AMarseille-652-1-154-49.w83-201.abo.wanadoo.fr) has joined #tryton | 04:03 | |
-!- csotelo(~csotelo@2800:200:e488:4d5:9433:40fc:b0d8:4700) has joined #tryton | 04:45 | |
-!- Mikaela11(~Mikaela@61.74.97.190) has joined #tryton | 05:44 | |
-!- lucascastro(~lucascast@177-185-139-175.isotelco.net.br) has joined #tryton | 05:55 | |
-!- thaneor(~lenovo3@r186-53-74-185.dialup.adsl.anteldata.net.uy) has joined #tryton | 06:05 | |
-!- thaneor1(~lenovo3@r186-53-74-185.dialup.adsl.anteldata.net.uy) has joined #tryton | 07:53 | |
-!- cedk(~ced@gentoo/developer/cedk) has joined #tryton | 07:55 | |
-!- thaneor(~lenovo3@r186-53-74-185.dialup.adsl.anteldata.net.uy) has joined #tryton | 07:57 | |
-!- cedk(~ced@gentoo/developer/cedk) has joined #tryton | 09:09 | |
-!- irclog(~irclog@moretus.b2ck.com) has joined #tryton | 09:37 | |
-!- semarie(~semarie@unaffiliated/semarie) has joined #tryton | 09:37 | |
semarie | a question about analytic_invoice and mandatory root account: currently, on Invoice, the validation of check_roots() is done at save time even if the invoice is in 'draft' state (you can't save without specifying the analytic account). does it would make sens to require the analytic account only on 'validated' state (and so forbid the state change if the mandatory root is missing) ? | 10:13 |
---|---|---|
cedk | semarie: I presonally think that the mandatory check is useless since we have an analytic state on move line | 10:17 |
semarie | without the check, it would be possible to validate (and post) a invoice without any analytic account on line | 10:18 |
semarie | or I missed something ? | 10:19 |
cedk | semarie: yes but the analytic state is there to find those lines and fill them | 10:19 |
semarie | how ? once an invoice is posted, Analytic tab on the line is readonly | 10:21 |
cedk | semarie: it is done on the move line directly | 10:22 |
cedk | semarie: only the analytic on move line is used for analytic chart | 10:22 |
cedk | the analytic on document like invoice or sale are just early encoding | 10:22 |
semarie | ok I found it | 10:23 |
cedk | semarie: I commented on https://bugs.tryton.org/issue7605 because it is quiet similar | 10:33 |
cedk | so the debate is open about removing or improving mendatory flag | 10:33 |
semarie | a warning could make sens too, or having move line without analytic account in the completion view for "mandatory" account | 10:35 |
semarie | currently, the view show only 'posted' move with analytic in 'draft' state | 10:36 |
semarie | the domain for 'Analytic Lines to Complete' is [('analytic_state', '=', 'draft'), ('move_state', '=', 'posted')] | 10:37 |
semarie | ah, it is issue5900 | 10:38 |
semarie | (sort of) | 10:38 |
semarie | having a domain like: [('move_state', '=', 'posted'), ['OR', ('analytic_state', '=', 'draft'), ('analytic_lines', '=', '[]')]] might help | 10:46 |
cedk | semarie: the state should be set to draft is no lines are set | 10:49 |
cedk | semarie: but it works only for new lines created after the setup of analytic | 10:54 |
semarie | ah ok. it explains why I do not see some lines | 11:20 |
-!- csotelo(~csotelo@2800:200:e488:4d5:9433:40fc:b0d8:4700) has joined #tryton | 11:29 | |
-!- cedk(~ced@gentoo/developer/cedk) has joined #tryton | 12:18 | |
-!- yangoon(~mathiasb@i59F4D510.versanet.de) has joined #tryton | 12:27 | |
-!- csotelo(~csotelo@2800:200:e488:4d5:9433:40fc:b0d8:4700) has joined #tryton | 15:49 | |
-!- local(~local@cpc94710-oxfd26-2-0-cust5.4-3.cable.virginm.net) has joined #tryton | 16:52 | |
-!- zmijunkie(~Adium@200116b80abd88008dbd5ae71dd21cf3.dip.versatel-1u1.de) has joined #tryton | 17:40 | |
-!- zmijunkie(~Adium@i577AD8D2.versanet.de) has joined #tryton | 17:51 | |
-!- lucascastro(~lucascast@177-185-139-175.isotelco.net.br) has joined #tryton | 18:51 | |
-!- plant-ian(6154504f@gateway/web/freenode/ip.97.84.80.79) has joined #tryton | 18:59 | |
plant-ian | I'm still testing out module code (not data) I migrated from 2.8 to 4.6 -- any thoughts on this exception -- I grepped all over and can't find timestamp -- https://gist.github.com/ianjosephwilson/cb8e19f393600ca3a6e2c71384646778 | 19:04 |
cedk | plant-ian: you can not display timestamp field on any views | 19:08 |
plant-ian | I guess maybe this is the problem -- https://bugs.tryton.org/issue5120 | 19:08 |
plant-ian | I have to set the widget property to date? | 19:08 |
cedk | plant-ian: for now, https://bugs.tryton.org/issue6463 | 19:09 |
cedk | plant-ian: no, you have to use a Function field that convert to date for all version <5.0 | 19:10 |
plant-ian | cedk: Okay, but regular Date field is not affected right? I think I was using create_date instead of date. | 19:22 |
cedk | plant-ian: no regular date has always been supported | 19:23 |
cedk | indeed timestamp was never supported by the client did not crash | 19:23 |
plant-ian | It loads! | 19:41 |
plant-ian | cedk: I see a patch for flat childs but does that work if you already have a tree of locations with intermediate virtual locations ? Or is it just meant for warehouse storage location to only have immediate children ? | 19:49 |
-!- semarie(~semarie@unaffiliated/semarie) has joined #tryton | 20:01 |
Generated by irclog2html.py 2.17.3 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!