... | ... | @@ -14,6 +14,22 @@ Returns all receptions of a selected warehouse |
|
|
{"status": true, "reception_receptions": [{"name": "WH/IN/00011", "picking_id": 37, "partner": "Agencia Estatal de Administraci\u00f3n Tributaria (AEAT)", "origin": "PO00009"}, {"name": "WH/IN/00015", "picking_id": 54, "partner": "Agencia Estatal de Administraci\u00f3n Tributaria (AEAT)", "origin": "PO00013"}, {"name": "WH/IN/00016", "picking_id": 56, "partner": "Agencia Estatal de Administraci\u00f3n Tributaria (AEAT)", "origin": "PO00014"}]}
|
|
|
```
|
|
|
|
|
|
# /app/reception_all_products *(POST)*
|
|
|
|
|
|
Returns all products of a selected reception
|
|
|
|
|
|
**Params**
|
|
|
* `token` *(required)*
|
|
|
* `dbname` *(required)*
|
|
|
* `picking_id` *(required)*
|
|
|
|
|
|
**Return:** *JSON*
|
|
|
|
|
|
**Example return:**
|
|
|
```
|
|
|
{"status": true, "reception_all_products": [{"product_id": "2", "product_name": "test", "product_code": "Ref 1", "qty": "1"}]}
|
|
|
```
|
|
|
|
|
|
# /app/product_in_reception *(POST)*
|
|
|
|
|
|
Checks if the requests product is in the reception and returns the information of this product in the reception
|
... | ... | |