IRC logs of #tryton for Tuesday, 2021-01-05

chat.freenode.net #tryton log beginning Tue Jan 5 12:00:01 AM CET 2021
-!- cedk(~ced@gentoo/developer/cedk) has joined #tryton23:41
-!- sharkcz(~sharkcz@194.228.59.51) has joined #tryton04:43
-!- springwurm(~Springwur@5.104.149.54) has joined #tryton06:02
-!- tuvlah(~alidipatr@154.126.99.53) has joined #tryton06:37
-!- mrichez(~Maxime@2a02:a03f:c2e8:f900:25f1:c49:2ee7:275e) has joined #tryton06:44
-!- JanGB(~jan@ip5f5ab08d.dynamic.kabel-deutschland.de) has joined #tryton07:39
-!- LordVan(~lordvan@gentoo/developer/LordVan) has joined #tryton08:15
-!- Timitos(~kpreisler@2001:a61:578:ee01:762b:62ff:fe84:ed7e) has joined #tryton08:33
-!- cedk(~ced@gentoo/developer/cedk) has joined #tryton08:34
-!- McFloss_(~McFloss@cpc160081-irvi3-2-0-cust24.14-1.cable.virginm.net) has joined #tryton08:40
-!- McFloss_(~McFloss@cpc160081-irvi3-2-0-cust24.14-1.cable.virginm.net) has left #tryton08:41
-!- JanGB(~jan@ip-109-40-240-114.web.vodafone.de) has joined #tryton08:50
-!- JanGB1(~jan@2a00:20:604c:a38:8064:4ebb:5b59:5920) has joined #tryton08:59
-!- nicoe(~nicoe@2a02:578:852a:c00:7e2a:31ff:fe5e:b25d) has joined #tryton09:19
-!- JanGB(~jan@2a00:20:604d:766d:2d09:42f4:41e0:be99) has joined #tryton09:26
-!- JanGB(~jan@2a00:20:604d:766d:2d09:42f4:41e0:be99) has left #tryton09:26
-!- sharkcz(~sharkcz@194.228.59.51) has joined #tryton09:46
-!- JanGB(~jan@ip-109-40-242-173.web.vodafone.de) has joined #tryton09:51
-!- JanGB1(~jan@dslb-188-105-154-233.188.105.pools.vodafone-ip.de) has joined #tryton09:55
-!- sharkcz(~sharkcz@194.228.59.51) has joined #tryton09:57
LordVanhi10:36
LordVanjust wondering11:01
LordVanis there a way to increase the maximum phone number length? - i have some customers here with 4 digit company internal numbers that make it too long11:01
LordVan(for austria)11:01
LordVani couldn't find a setting .. --- or do i need to make my own validation function for it?11:01
-!- alidipatrick(~alidipatr@154.126.11.81) has joined #tryton11:03
-!- mariomop(~quassel@190.188.44.80) has joined #tryton11:08
LordVanah .. phonenumbers module is seperate11:11
cedkLordVan: I guess the best is to fill an issue on https://github.com/daviddrysdale/python-phonenumbers/issues if you have some valid number that are not validated by phonenumbers11:14
LordVancedk, yeah i will consdier that .. but for now i will put it in a note or something .. also so far the only one I encountered was one guy who no longer works at that company anyway so ...11:15
LordVani just realized one thing though .. if I create a contact_mechanism with party.contact_mechanism.new it is automatically attached to the party .. so I would get the error again when saving the party despite having cought the exception before when I did try to save the contact mechanism. guess .delete() in the except: block is on order11:26
LordVanah .delete() doesn't seem to work and give me another error..11:35
LordVanI think I will not use .new() anymore but instead just create the object first and assign it after validation ;)11:36
cedkLordVan: of course .new attache to the parent but there is no reason to reuse this instance11:41
cedkACTION sign off from the forum for few days, too much pissed of11:50
pokolicedk: we will wait you when you come back from your forum holidays11:52
pokolibut we are just commenting if we can improve some process for Tryton11:52
pokolisorry if I bothered you with some of my comments, nothing personal from my side11:52
pokoliACTION bbl11:52
cedkI'm tired to be alone against every others, all the time!!!11:53
-!- sharkcz`(~sharkcz@19.161.broadband4.iol.cz) has joined #tryton11:55
-!- alidipatrick(~alidipatr@197.149.21.123) has joined #tryton12:27
-!- cedk(~ced@gentoo/developer/cedk) has left #tryton12:29
-!- sharkcz(~sharkcz@19.161.broadband4.iol.cz) has joined #tryton12:50
-!- springwurm(~Springwur@5.104.149.54) has joined #tryton13:24
LordVanIs there any way to quickly get to a related party from the party relation form ?13:56
LordVandouble click only opens the relation itself13:56
LordVanAlso .. is there an easy way to change which columns are displayed on the party list? - i assume it has to be done in a module somehow? (an example would be great as figuring out the correct xpath,.. for me is a bit difficult still)14:00
nicoeLordVan: xpath in tree views are usually easy: something like "/tree/field[@name='<field_name>']" but indeed with inheritance it could become more difficult especially in forms14:12
LordVannicoe, yeah .. I have no idea where to start iwth the columns of the party list ^^ but i will look into the party module xml,..14:33
LordVan(not somethign I need right now fortunately, but I will need it )14:34
LordVanis there an easy way to compare (the data) of two parties ?15:04
LordVan(I want to filter out some duplicate data which resulted from the way dolibarr handles these things)15:04
-!- lucascastro(~lucascast@177-185-139-189.dynamic.isotelco.net.br) has joined #tryton15:05
LordVan(same for contact_mechanism and/or address)15:07
pokoliLordVan: there is a wizard to merge to duplicated parties into a single one15:31
LordVanpokoli, yes but .. I need to assign a value as well in the process15:35
LordVansince i am merging 2 tables from dolibarr into one table in tryton i need to keep both ids for one15:35
LordVanpokoli, also how do i run the wizard? i wanted to just have a look anyway15:37
LordVanon another note .. i'll find the source15:37
LordVanbut i don't find anything in party.py .. is it another module or something?15:38
LordVanlaters15:48
-!- alidipatrick(~alidipatr@154.126.12.58) has joined #tryton16:25
-!- JanGB(~jan@dslb-188-105-154-233.188.105.pools.vodafone-ip.de) has joined #tryton16:52
-!- thaneor(~ldlc6@r167-61-107-79.dialup.adsl.anteldata.net.uy) has joined #tryton17:07
-!- semarie_(~semarie@unaffiliated/semarie) has joined #tryton18:30
-!- JanGB(~jan@dslb-188-105-154-233.188.105.pools.vodafone-ip.de) has joined #tryton18:47
-!- alidipatrick(~alidipatr@154.126.98.10) has joined #tryton19:36
-!- lucascastro(~lucascast@177-185-131-162.corp.isotelco.net.br) has joined #tryton20:53
-!- lucascastro(~lucascast@177-185-131-162.corp.isotelco.net.br) has joined #tryton21:18
-!- cryptic(~cryptic@142-196-139-017.res.spectrum.com) has joined #tryton21:35
-!- lucascastro(~lucascast@177-185-139-189.dynamic.isotelco.net.br) has joined #tryton22:44

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