whoami7 - Manager
:
/
home
/
kckglobal
/
cloud.kckglobal.net
/
cleaner
/
modules
/
reminder
/
views
/
themes
/
perfex
/
views
/
Upload File:
files >> /home/kckglobal/cloud.kckglobal.net/cleaner/modules/reminder/views/themes/perfex/views/reminder.php
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?> <div class="panel_s section-heading section-proposals"> <div class="panel-body"> <h4 class="no-margin section-text"><?php echo _l('job'); ?></h4> </div> </div> <div class="panel_s"> <div class="panel-body"> <table class="table dt-table table-proposals" data-order-col="3" data-order-type="desc"> <thead> <tr> <th class="th-proposal-number"><?php echo _l('job') . ' #'; ?></th> <th class="th-proposal-subject"><?php echo _l('proposal_subject'); ?></th> <th class="th-proposal-total"><?php echo _l('proposal_total'); ?></th> <th class="th-proposal-open-till"><?php echo _l('proposal_open_till'); ?></th> <th class="th-proposal-date"><?php echo _l('proposal_date'); ?></th> <th class="th-proposal-status"><?php echo _l('proposal_status'); ?></th> <?php $custom_fields = get_custom_fields('proposal', array('show_on_client_portal' => 1)); foreach ($custom_fields as $field) { ?> <th><?php echo $field['name']; ?></th> <?php } ?> </tr> </thead> <tbody> <?php foreach ($proposals as $proposal) { ?> <tr> <td> <a href="<?php echo site_url('job/' . $proposal['id'] . '/' . $proposal['hash']); ?>" class="td-proposal-url"> <?php echo format_proposal_number($proposal['id']); ?> <?php if ($proposal['invoice_id']) { echo '<br /><span class="text-success proposal-invoiced">' . _l('estimate_invoiced') . '</span>'; } ?> </a> <td> <a href="<?php echo site_url('job/' . $proposal['id'] . '/' . $proposal['hash']); ?>" class="td-proposal-url-subject"> <?php echo $proposal['subject']; ?> </a> <?php if ($proposal['invoice_id'] != NULL) { $invoice = $this->invoices_model->get($proposal['invoice_id']); echo '<br /><a href="' . site_url('invoice/' . $invoice->id . '/' . $invoice->hash) . '" target="_blank" class="td-proposal-invoice-url">' . format_invoice_number($invoice->id) . '</a>'; } else if ($proposal['estimate_id'] != NULL) { $estimate = $this->estimates_model->get($proposal['estimate_id']); echo '<br /><a href="' . site_url('estimate/' . $estimate->id . '/' . $estimate->hash) . '" target="_blank" class="td-proposal-estimate-url">' . format_estimate_number($estimate->id) . '</a>'; } ?> </td> <td data-order="<?php echo $proposal['total']; ?>"> <?php if ($proposal['currency'] != 0) { echo app_format_money($proposal['total'], get_currency($proposal['currency'])); } else { echo app_format_money($proposal['total'], get_base_currency()); } ?> </td> <td data-order="<?php echo $proposal['open_till']; ?>"><?php echo _d($proposal['open_till']); ?></td> <td data-order="<?php echo $proposal['date']; ?>"><?php echo _d($proposal['date']); ?></td> <td><?php echo format_proposal_status($proposal['status']); ?></td> <?php foreach ($custom_fields as $field) { ?> <td><?php echo get_custom_field_value($proposal['id'], $field['id'], 'proposal'); ?></td> <?php } ?> </tr> <?php } ?> </tbody> </table> </div> </div>
Copyright ©2021 || Defacer Indonesia