diff --git a/src/components/pages/report/finance/export/CustomerPaymentExportPDF.tsx b/src/components/pages/report/finance/export/CustomerPaymentExportPDF.tsx
index 08efa409..5adcb694 100644
--- a/src/components/pages/report/finance/export/CustomerPaymentExportPDF.tsx
+++ b/src/components/pages/report/finance/export/CustomerPaymentExportPDF.tsx
@@ -154,6 +154,9 @@ const pdfStyles = StyleSheet.create({
backgroundColor: '#F97316',
color: '#FFFFFF',
},
+ textError: {
+ color: '#DC2626',
+ },
parameterBadge: {
backgroundColor: '#F5F5F5',
color: '#333333',
@@ -389,7 +392,9 @@ const createPDFDocument = (params: CustomerPaymentExportPDFParams) => {
{formatCurrency(item.payment)}
- {formatCurrency(item.accounts_receivable)}
+
+ {formatCurrency(item.accounts_receivable)}
+
{item.notes ? (
@@ -483,7 +488,7 @@ const createPDFDocument = (params: CustomerPaymentExportPDFParams) => {
-
+
{formatCurrency(
customerReport.summary.total_accounts_receivable
)}