From 88c23d957398fefe66b3b0ecb9ecc3f5ddc14949 Mon Sep 17 00:00:00 2001 From: laurentbarontini Date: Sun, 28 Dec 2025 23:31:33 +0100 Subject: [PATCH] 28_12_25 --- src/App.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.jsx b/src/App.jsx index 68bda905..1e30cb95 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -87,7 +87,7 @@ const data = [ ]; const purchaseData = [ - { status: "Draft", count: draft_p, color: "bg-teal-500", onClick: () => openInTryton("purchase.purchase", undefined, "tree")}, + { status: "Draft", count: draft_p, color: "bg-teal-500", onClick: () => openInTryton("purchase.purchase", undefined, "tree",[['state', '=', 'draft']])}, { status: "Validated", count: val_p, color: "bg-cyan-500", onClick: () => openInTryton("purchase.purchase", undefined, "tree") }, { status: "Confirmed", count: conf_p, color: "bg-blue-500", onClick: () => openInTryton("purchase.purchase", undefined, "tree") }, ];