FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
latepoint
/
lib
/
views
/
transactions
Edit File: view_receipt_by_key.php
<?php /* * Copyright (c) 2023 LatePoint LLC. All rights reserved. */ /* @var $invoice OsInvoiceModel */ /* @var $transaction OsTransactionModel */ /* @var $invoice_data array */ ?> <?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } if($invoice){ ?> <div class="os-invoice-wrapper"> <div class="os-invoice-inner"> <?php OsInvoicesHelper::invoice_document_html($invoice, false, $transaction); ?> </div> </div> <?php }else{ echo 'Invoice not found'; }
Save
Back