This commit is contained in:
2026-01-03 10:46:25 +01:00
parent a2f81b54a8
commit f33d11392b

View File

@@ -579,25 +579,41 @@ export default function App() {
</Card>
);
})}
<Card
className="p-4 rounded-xl border border-gray-200 dark:border-gray-700 shadow-md bg-white dark:bg-gray-800 hover:shadow-lg transition"
>
<Card className="p-4 rounded-xl border border-gray-200 dark:border-gray-700 shadow-md bg-white dark:bg-gray-800">
<div className="flex justify-between items-center mb-4">
<Title className="text-base">Payments</Title>
<HandCoins className="w-6 h-6" />
</div>
<Text className="text-3xl font-bold mb-1">{move_cash}</Text>
<Text className="text-xs text-gray-500 mb-3">To validate</Text>
<div className="grid grid-rows-2 gap-3">
<div className="w-full h-1 bg-gray-200 dark:bg-gray-600 mb-4"></div>
{/* TO VALIDATE */}
<button
onClick={() => openInTryton("account.move", undefined, ["tree","form"], [["state","=","draft"]])}
className="group rounded-lg border border-gray-200 dark:border-gray-600 p-4 flex flex-col items-center justify-center hover:bg-teal-50 dark:hover:bg-gray-700 transition"
>
<span className="text-4xl font-extrabold text-gray-900 dark:text-white">
{move_cash_to_validate}
</span>
<span className="mt-1 text-sm font-bold uppercase tracking-wide text-teal-600">
To validate
</span>
</button>
<Text className="text-3xl font-bold mb-1">{move_cash}</Text>
<Text className="text-xs text-gray-500 mb-3">Posted</Text>
{/* POSTED */}
<button
onClick={() => openInTryton("account.move", undefined, ["tree","form"], [["state","=","posted"]])}
className="group rounded-lg border border-gray-200 dark:border-gray-600 p-4 flex flex-col items-center justify-center hover:bg-indigo-50 dark:hover:bg-gray-700 transition"
>
<span className="text-4xl font-extrabold text-gray-900 dark:text-white">
{move_cash_posted}
</span>
<span className="mt-1 text-sm font-bold uppercase tracking-wide text-indigo-600">
Posted
</span>
</button>
{/* <button onClick={() => openInTryton("account.move", undefined, ['tree','form'],[['journal', '=', 3]])} className="mt-4 text-xs text-teal-600 underline">
View details
</button> */}
</div>
</Card>
</div>
</main>