Re: [tryton] Install tryton via mercuarial.

2015-02-23 Thread James Norman
I must agree with Chris’ issue. I have been unable to login to Triton 3.4. I just also tried the crypt Cedric suggested, and it doesn’t work either. Does the encrypted password go into the configuration file or is it entered into the login dialog? I get “Sorry, wrong password . . .” for any c

Re: [tryton] Install tryton via mercuarial.

2015-02-23 Thread Cédric Krier
On 23 Feb 21:11, Chris Larsen wrote: > Dear All, > The lack of a default configuraqtion file is kind of acceptable, though a > bit inconvenient. It is because trytond doesn't need configuration. > What does not make sense is the lack of documentation of all the options > that are applicable to

Re: [tryton] Install tryton via mercuarial.

2015-02-23 Thread Chris Larsen
On Sunday, 23 November 2014 16:30:03 UTC+7, Cédric Krier wrote: > > On 21 Nov 18:16, Pandhêga Palibaya wrote: > > Hi guys.. > > > > I was tried install tryton via mercurial, and always got "Sorry, wrong > > password for the Tryton server. Please try again." when create new > database. > >

Re: [tryton] How to limit changes to unit_price in the sales order (line) to specific group of users?

2015-02-23 Thread Cédric Krier
On 23 Feb 09:41, Cédric Krier wrote: > On 22 Feb 19:20, Ahmed AlBoori wrote: > > > > > > On Wednesday, February 18, 2015 at 6:54:35 AM UTC-5, Sergi Almacellas > > Abellana wrote: > > > > > > > > > > > > @classmethod > > > def create(cls, vlist): > > > for value in vlist: > > > if

Re: [tryton] How to limit changes to unit_price in the sales order (line) to specific group of users?

2015-02-23 Thread Cédric Krier
On 22 Feb 19:20, Ahmed AlBoori wrote: > > > On Wednesday, February 18, 2015 at 6:54:35 AM UTC-5, Sergi Almacellas > Abellana wrote: > > > > > > > > @classmethod > > def create(cls, vlist): > > for value in vlist: > > if 'unit_price' not in value: > > value['unit_price

Re: [tryton] How to limit changes to unit_price in the sales order (line) to specific group of users?

2015-02-23 Thread Ahmed AlBoori
On Wednesday, February 18, 2015 at 6:54:35 AM UTC-5, Sergi Almacellas Abellana wrote: > > > > @classmethod > def create(cls, vlist): > for value in vlist: > if 'unit_price' not in value: > value['unit_price'] = > return super(SaleLine, cls).create(vlist) > > >