diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2018-10-02 12:48:24 -0400 |
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2018-10-02 12:48:24 -0400 |
| commit | b22ecae7aaa96df5f0e70a5bea87ee42feaf7d30 (patch) | |
| tree | 98b2cccb2a68e0deb860881eda6945e33390e2de /min_selfservice/payment_finish.php | |
| parent | fac189e83181e7b099adc89ffe6f52fade62c7c6 (diff) | |
Revert "RT# 39340 - removed min_selfservice dir and merged into ng_selfservice"
This reverts commit 77baa7974ade41e55d85de22e7d7a54273dd442f.
Diffstat (limited to 'min_selfservice/payment_finish.php')
| -rw-r--r-- | min_selfservice/payment_finish.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/min_selfservice/payment_finish.php b/min_selfservice/payment_finish.php new file mode 100644 index 000000000..04fdfa6f3 --- /dev/null +++ b/min_selfservice/payment_finish.php @@ -0,0 +1,34 @@ +<? $title ='Payment Confirmation'; include('elements/header.php'); ?> +<? $current_menu = ''; include('elements/menu.php'); ?> +<? + $params = $_GET; + $params['session_id'] = $_COOKIE['session_id']; + + //print_r($params); + $payment_results = $freeside->finish_thirdparty($params); + + if ( isset($payment_results['error']) ) { + $error = $payment_results['error']; + include('elements/error.php'); + } else { +?> +<TABLE> + <TR> + <TH COLSPAN=2><FONT SIZE=+1><B>Your payment details</B></FONT></TH> + </TR> + <TR> +<TR> + <TD ALIGN="right">Payment #</TD> + <TD BGCOLOR="#ffffff"><B><? echo($payment_results['paynum']); ?></B></TD> +</TR> +<TR> + <TD ALIGN="right">Payment amount</TH> + <TD BGCOLOR="#ffffff"><B>$<? printf('%.2f', $payment_results['paid']); ?></B> + </TD> +</TR> +<TR> + <TD ALIGN="right">Processing #</TD> + <TD BGCOLOR="#ffffff"><B><? echo($payment_results['order_number']); ?></B> + </TD> +</TR> +<? } ?>
\ No newline at end of file |
