From 224fd366db138780b8407e8c7047d4fce5c314fd Mon Sep 17 00:00:00 2001 From: stephen waite Date: Wed, 22 May 2024 17:34:35 -0400 Subject: [PATCH] total front receipts by payment method (#7449) * feat: add payment method to front receipts * use format money class * styling * styling --- interface/reports/front_receipts_report.php | 31 +++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/interface/reports/front_receipts_report.php b/interface/reports/front_receipts_report.php index bc0a55805..347a9fc91 100755 --- a/interface/reports/front_receipts_report.php +++ b/interface/reports/front_receipts_report.php @@ -63,7 +63,7 @@ $to_date = (isset($_POST['form_to_date'])) ? DateToYYYYMMDD($_POST['form_to_da // The OnClick handler for receipt display. function show_receipt(pid,timestamp) { dlgopen('../patient_file/front_payment.php?receipt=1&patient=' + encodeURIComponent(pid) + - '&time=' + encodeURIComponent(timestamp), '_blank', 550, 400, '', '', { + '&time=' + encodeURIComponent(timestamp), '_blank', 850, 550, '', '', { onClosed: 'reload' }); } @@ -208,7 +208,7 @@ $to_date = (isset($_POST['form_to_date'])) ? DateToYYYYMMDD($_POST['form_to_da if (!empty($_POST['form_refresh']) || !empty($_POST['form_orderby'])) { ?>
- +
@@ -288,6 +288,15 @@ if (!empty($_POST['form_refresh']) || !empty($_POST['form_orderby'])) { @@ -297,6 +306,24 @@ if (!empty($_POST['form_refresh']) || !empty($_POST['form_orderby'])) { + + + + + + + +
+ + + + + + + +
-- 2.11.4.GIT