HEX
Server: LiteSpeed
System: Linux s3604.bom1.stableserver.net 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User: dmstechonline (1480)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/dmstechonline/crm.chaitanyahospitalvirar.com/application/views/admin/patient/ipdBill.php
<?php
$currency_symbol = $this->customlib->getHospitalCurrencyFormat();

?>
<link rel="stylesheet" href="<?php echo base_url(); ?>backend/dist/css/sh-print.css">
<html lang="en">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <title><?php echo $this->lang->line('bill'); ?></title>
    </head>
    <div id="html-2-pdfwrapper">
        <div class="row">
            <!-- left column -->
            <div class="col-md-12">
                <div>
                    <div class="pprinta4">
                        <?php if (!empty($print_details[0]['print_header'])) { ?>
                            <img style="height:100px;width:100%;" class="img-responsive" src="<?php echo base_url() . $print_details[0]["print_header"].img_time() ?>">
                        <?php } ?>
                        <div style="height: 10px; clear: both;"></div>
                    </div>
                    <table width="100%" class="printablea4">
                        <tr>
                            <td class="text-left"><h5><?php echo $this->lang->line('bill') . " #" ?><?php echo $this->customlib->getSessionPrefixByType('ipd_billing').$result["ipdid"] ?></h5></td>
                            <td class="text-right"><h5><?php echo $this->lang->line('date') . " : " ?><?php
                                    if (!empty($result['date'])) {
                                        echo date($this->customlib->getHospitalDateFormat(true, false), strtotime($result['discharge_date']));
                                    }
                                    ?></h5></td>
                        </tr>
                    </table>
                    <div class="divider mt-10 mb-10"></div>
                    <table class="printablea4" cellspacing="0" width="100%">
                        <tr>
                            <th width="25%"><?php echo $this->lang->line('name'); ?></th>
                            <td width="25%"><?php echo $result["patient_name"]; ?></td>
                            <th width="25%"><?php echo $this->lang->line('doctor'); ?></th>
                            <td width="25%" class="text-right"><?php echo $result["name"] . " " . $result["surname"]; ?></td>
                        </tr>
                        <tr>
                            <th><?php echo $this->lang->line('ipd') . " " . $this->lang->line('no'); ?></th>
                            <td><?php echo $result['ipd_no']; ?></td> 
                            <th><?php echo $this->lang->line('organisation'); ?></th>
                            <td class="text-right"><?php echo $result['organisation_name']; ?></td> 
                        </tr> 
                        <tr>
                            <th><?php echo $this->lang->line('admission') . " " . $this->lang->line('date'); ?></th>
                            <td><?php echo date($this->customlib->getHospitalDateFormat(true, true), strtotime($result['date'])); ?></td> 
                            <?php if (!empty($result['discharge_date'])) { ?>
                                <th><?php echo $this->lang->line('discharged') . " " . $this->lang->line('date'); ?></th>
                                <td class="text-right"><?php echo date($this->customlib->getHospitalDateFormat(), strtotime($result['discharge_date'])); ?></td> 
                            <?php } ?>
                        </tr> 
                    </table>
                    <div class="divider mt-10 mb-10"></div>
                    <table class="printablea4" width="100%">
                        <tr>
                            <th width="25%"><?php echo $this->lang->line('charges') . ' (' . $currency_symbol . ')'; ?> </th>
                            <th width="25%"><?php echo $this->lang->line('category'); ?></th>
                            <th width="25%"><?php echo $this->lang->line('date'); ?></th> 
                            <th width="25%" class="pttright reborder text-right"><?php echo $this->lang->line('amount') . ' (' . $currency_symbol . ')'; ?> </th>
                        </tr>
                        <?php
                        $j = 0;
                        $total = 0;
                        foreach ($charges as $key => $charge) {
                            ?>
                            <tr>
                                <td><?php echo $charge["charge_type"]; ?></td> 
                                <td><?php echo $charge["charge_category_name"]; ?></td>
                                <td><?php echo date("m/d/Y", strtotime($charge["date"])); ?></td>
                                <td class="text-right"><?php echo $charge["apply_charge"]; ?></td>
                            </tr>
                            <?php
                            $total += $charge["apply_charge"];
                            ?>

                            <?php
                            $j++;
                        }
                        ?>
                        <tr>
                            <td></td>
                            <td></td>
                            <td></td>
                            <td class="text-right"><?php echo $this->lang->line('total') . " : " ?>  <?php echo $currency_symbol . $total ?></td>
                        </tr>
                    </table>
                    <div class="divider mt-10 mb-10"></div>
                    <table class="printablea4" width="100%">
                        <tr>
                            <th width="25%"><?php echo $this->lang->line('payment') . " " . $this->lang->line('mode'); ?></th>
                            <th width="25%"><?php echo $this->lang->line('payment') . " " . $this->lang->line('date'); ?></th>
                            <th width="50%" class="text-right"><?php echo $this->lang->line('paid') . " " . $this->lang->line('amount') . ' (' . $currency_symbol . ')'; ?></th>
                        </tr>
                        <?php
                        $k = 0;
                        $total_paid = 0;
                        if ($result['status'] != 'paid') {
                            $status = $this->lang->line('unpaid');
                        } else {
                            $status = $this->lang->line('paid');
                        }
                        foreach ($payment_details as $key => $payment) {
                            ?>
                            <tr>
                                <td width="25%"><?php echo $this->lang->line(strtolower($payment["payment_mode"])); ?></td>
                                <td width="25%"><?php echo date($this->customlib->getHospitalDateFormat(), $this->customlib->dateyyyymmddTodateformat($payment['date'])); ?></td>
                                <td width="50%" class="text-right"><?php echo $payment["paid_amount"]; ?></td>
                            </tr>
                            <?php
                            $total_paid += $payment["paid_amount"];
                        }
                        ?>
                        <tr>
                            <td width="25%"></td>
                            <td width="25%"></td>
                            <td width="50%" class="text-right"><?php echo $this->lang->line('total') . " : " ?> <?php echo $currency_symbol . $total_paid ?></td>
                        </tr>
                    </table>
                    <div class="divider mt-10 mb-10"></div> 
                    <table class="printablea4" width="100%">
                        <tr>
                            <th width="20%"><?php echo $this->lang->line('total') . " " . $this->lang->line('charges') . " (" . $currency_symbol . ")" ?> </th> 
                            <td class="text-right"><?php echo $total; ?></td>
                        </tr>
                        <tr>
                            <th width="30%"><?php echo $this->lang->line('any_other_charges') . " (" . $currency_symbol . ")"; ?></th> 
                            <td class="text-right"><?php
                                if (!empty($result["other_charge"]) | $result["other_charge"] == 0) {
                                    echo $result["other_charge"];
                                } else {
                                    echo $other_charge;
                                }
                                ?></td>
                        </tr>
                        <tr>
                            <th width="20%"><?php echo $this->lang->line('discount') . " (" . $currency_symbol . ")"; ?></th> 
                            <td class="text-right">
                                <input type="hidden" name="patient_id" value="<?php echo $result["id"] ?>">
                                <?php
                                if (!empty($result["discount"]) | $result["discount"] == 0) {
                                    echo $result["discount"];
                                } else {
                                    echo $discount;
                                }
                                ?></td>
                        </tr>
                        <tr>
                            <th width="20%"><?php echo $this->lang->line('tax') . " (" . $currency_symbol . ")" ?></th> 
                            <td class="text-right"><?php
                                if (!empty($result['tax']) | $result["tax"] == 0) {
                                    echo $result['tax'];
                                } else {
                                    echo $tax;
                                }
                                ?></td>
                        </tr>
                         <tr>
                            <td colspan="2">
                                <div class="divider mt-10 mb-10"></div>
                            </td>
                        </tr> 
                        <tr>
                            <th width="20%"><?php echo $this->lang->line('gross') . " " . $this->lang->line('total') . " (" . $currency_symbol . ")" ?> </th> 
                            <td class="text-right" width=""><?php
                                if (empty($result['gross_total'])) {
                                    echo $gross_total;
                                } else {
                                    echo $result['gross_total'];
                                }
                                ?></td>
                        </tr>
                        <tr>
                            <th width="20%"><?php echo $this->lang->line('total') . " " . $this->lang->line('payment') . " (" . $currency_symbol . ")" ?> </th> 
                            <td class="text-right" width=""><?php
                                if (empty($result['paid_amount'])) {
                                    echo $paid_amount;
                                } else {
                                    echo $result['paid_amount'];
                                }
                                ?></td>
                        </tr>
                         <tr>
                            <td colspan="2">
                                <div class="divider mt-10 mb-10"></div>
                            </td>
                        </tr>  
                        <tr>
                            <th width="50%"><?php echo $this->lang->line('net_payable') . " " . $this->lang->line('amount') . " (" . $status . ")" ?></th> 
                            <td class="text-right"><?php
                                if (empty($result['net_amount'])) {
                                    echo $net_amount;
                                } else {
                                    echo $result['net_amount'];
                                }
                                ?></td>
                        </tr>
                        
                    </table>
                    <div class="divider mt-10 mb-10"></div>
                    <div class="footer-fixed printfooter">
                        <?php if (!empty($print_details[0]['print_footer'])) { ?>    
                            <p class="ptt10"><?php echo $print_details[0]['print_footer']; ?></p>
                        <?php } ?>
                    </div>    
                </div>
            </div>
        </div>
    </div>
</html>