You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to tryton
Hello,
I would like to connect some external proccesses to tryton using the json api. How can I figure out what parameters the methods derived with "system.server.listMethods" need and what the methods exactly do?
Regards Simon Tapmeyer
Cédric Krier
unread,
Jul 2, 2016, 3:55:03 AM7/2/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to tryton
You can use the call to system.methodHelp but system.methodSignature is
not implemented because trytond is written in Python.
Indeed most of the methods have always the same API for any Models and
for special cases, the best is to read the code that implement it.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to tryton
Hello,
thank you for the answer. If I would like to do "model.production.on_change_warehouse" where would I look for the code which implements it. Could you give me an advice?
Regards Simon
Cédric Krier
unread,
Jul 4, 2016, 3:30:03 AM7/4/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to tryton
On 2016-07-03 23:40, 'Simon Tapmeyer' via tryton wrote:
> Hello,
>
> thank you for the answer. If I would like to do
> "model.production.on_change_warehouse" where would I look for the code
> which implements it. Could you give me an advice?