# Custom WebApp in php

**URL:** https://discuss.tryton.org/t/custom-webapp-in-php/823
**Category:** Developer
**Created:** [October 25, 2018, 9:37am UTC](https://discuss.tryton.org/t/custom-webapp-in-php/823 "2018-10-25T09:37:02Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Vincenzo](https://discuss-cdn.tryton.org/user_avatar/discuss.tryton.org/vincenzo/32/847_2.png) [@Vincenzo](https://discuss.tryton.org/u/Vincenzo)
#### Post date: [October 25, 2018, 9:37am UTC](https://discuss.tryton.org/t/custom-webapp-in-php/823/1 "2018-10-25T09:37:02Z")

</div>

Goodmorning everyone,  
I’m trying to make a Tryton Custom Web App in php.  
I was able to log in to the server, get user preferences and CRUD operations via the command line.  
To get the sidebar menu, first use the model.ir.ui.menu.search method to get the menu IDs and the model.ir.ui.menu.read method to recursively obtain menu and submenu info.  
Question with practical example:  
How can I get the “link” (or the call) that opens the partyes list when I click on the Party menu (with the text fields, button, etc.)?

---

<div class="post-metadata">

### Author: ![ced](https://discuss-cdn.tryton.org/user_avatar/discuss.tryton.org/ced/32/1237_2.png) [@ced](https://discuss.tryton.org/u/ced)
#### Post date: [October 25, 2018, 10:00am UTC](https://discuss.tryton.org/t/custom-webapp-in-php/823/2 "2018-10-25T10:00:30Z")

</div>

What’s the point to recreate a client in PHP?  
If you make a custom app, then do not care about the Tryton UI and plug only actions.

---

<div class="post-metadata">

### Author: ![Vincenzo](https://discuss-cdn.tryton.org/user_avatar/discuss.tryton.org/vincenzo/32/847_2.png) [@Vincenzo](https://discuss.tryton.org/u/Vincenzo)
#### Post date: [October 25, 2018, 11:09am UTC](https://discuss.tryton.org/t/custom-webapp-in-php/823/3 "2018-10-25T11:09:01Z")

</div>

For some menu items (for example, Party list) I would like to use Tryton’s methods; for the add of specific moves (for example, Customer Return Shipment) I would like to create a guided procedure in php, which helps the user to fill in the fields (wizard step by step).

---

<div class="post-metadata">

### Author: ![pokoli](https://discuss-cdn.tryton.org/user_avatar/discuss.tryton.org/pokoli/32/22_2.png) [@pokoli](https://discuss.tryton.org/u/pokoli)
#### Post date: [October 25, 2018, 12:25pm UTC](https://discuss.tryton.org/t/custom-webapp-in-php/823/4 "2018-10-25T12:25:38Z")

</div>

> [@Vincenzo](#):
>
> I would like to create a guided procedure in php, which helps the user to fill in the fields (wizard step by step).

Won’t be easier to create this procedures using [Tryton wizards](http://docs.tryton.org/projects/server/en/5.0/topics/wizard.html)? This will avoid to rewriting the php version and they have the benefit that can be used from desktop and sao clients.

---

<div class="post-metadata">

### Author: ![Vincenzo](https://discuss-cdn.tryton.org/user_avatar/discuss.tryton.org/vincenzo/32/847_2.png) [@Vincenzo](https://discuss.tryton.org/u/Vincenzo)
#### Post date: [October 25, 2018, 1:39pm UTC](https://discuss.tryton.org/t/custom-webapp-in-php/823/5 "2018-10-25T13:39:48Z")

</div>

Unfortunately, I’m not a python programmer (I’m sticking to the python world).  
For business deadlines I have to create a web app to give to our customers to be able to operate from a tablet.
