From 7061031cd9334e5eda062f4d4061d987a7aba54c Mon Sep 17 00:00:00 2001 From: MacBook Air M1 Date: Wed, 10 Jun 2026 21:15:59 +0700 Subject: [PATCH] show total price when pending is 0 --- .../pages/production/recording/form/RecordingForm.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/components/pages/production/recording/form/RecordingForm.tsx b/src/components/pages/production/recording/form/RecordingForm.tsx index 0d4a761b..9735a9b4 100644 --- a/src/components/pages/production/recording/form/RecordingForm.tsx +++ b/src/components/pages/production/recording/form/RecordingForm.tsx @@ -1524,6 +1524,13 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => { ); } + if (showTotalPrice) { + return ( + + (total harga: {totalPrice}) + + ); + } return null; }