Skip to content
Snippets Groups Projects
Commit f225b35a authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: filter on warehouse

Conflicts:
	htdocs/product/stock/mouvement.php
parent 41bf4d53
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ $id=GETPOST('id','int');
$product_id=GETPOST("product_id");
$action=GETPOST('action');
$cancel=GETPOST('cancel');
$idproduct = isset($_GET["idproduct"])?$_GET["idproduct"]:$_PRODUCT["idproduct"];
$idproduct = GETPOST('idproduct','int');
$year = isset($_GET["year"])?$_GET["year"]:$_POST["year"];
$month = isset($_GET["month"])?$_GET["month"]:$_POST["month"];
$search_movement = isset($_REQUEST["search_movement"])?$_REQUEST["search_movement"]:'';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment