File: /home/slfopp7cb1df/public_html/pm/app/Views/proposals/index.php
<div id="page-content" class="page-wrapper clearfix">
<div class="card clearfix">
<ul id="proposal-tabs" data-bs-toggle="ajax-tab" class="nav nav-tabs bg-white title" role="tablist">
<li class="title-tab"><h4 class="pl15 pt10 pr15"><?php echo app_lang('proposals'); ?></h4></li>
<li><a id="monthly-proposal-button" role="presentation" href="javascript:;" data-bs-target="#monthly-proposals"><?php echo app_lang("monthly"); ?></a></li>
<li><a role="presentation" href="<?php echo_uri("proposals/yearly/"); ?>" data-bs-target="#yearly-proposals"><?php echo app_lang('yearly'); ?></a></li>
<div class="tab-title clearfix no-border">
<div class="title-button-group">
<?php echo modal_anchor(get_uri("proposals/modal_form"), "<i data-feather='plus-circle' class='icon-16'></i> " . app_lang('add_proposal'), array("class" => "btn btn-default", "title" => app_lang('add_proposal'))); ?>
</div>
</div>
</ul>
<div class="tab-content">
<div role="tabpanel" class="tab-pane fade" id="monthly-proposals">
<div class="table-responsive">
<table id="monthly-proposal-table" class="display" cellspacing="0" width="100%">
</table>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="yearly-proposals"></div>
</div>
</div>
</div>
<script type="text/javascript">
loadProposalsTable = function (selector, dateRange) {
$(selector).appTable({
source: '<?php echo_uri("proposals/list_data") ?>',
order: [[0, "desc"]],
dateRangeType: dateRange,
filterDropdown: [{name: "status", class: "w150", options: <?php echo view("proposals/proposal_statuses_dropdown"); ?>}, <?php echo $custom_field_filters; ?>],
columns: [
{title: "<?php echo app_lang("proposal") ?> ", "class": "w15p"},
{title: "<?php echo app_lang("client") ?>", "class": "w15p"},
{visible: false, searchable: false},
{title: "<?php echo app_lang("proposal_date") ?>", "iDataSort": 2, "class": "w15p"},
{visible: false, searchable: false},
{title: "<?php echo app_lang("valid_until") ?>", "iDataSort": 4, "class": "w15p"},
{title: "<?php echo app_lang("amount") ?>", "class": "text-right w15p"},
{title: "<?php echo app_lang("status") ?>", "class": "text-center"}
<?php echo $custom_field_headers; ?>,
{title: "<i data-feather='menu' class='icon-16'></i>", "class": "text-center option w150"}
],
printColumns: combineCustomFieldsColumns([0, 1, 3, 5, 6, 7], '<?php echo $custom_field_headers; ?>'),
xlsColumns: combineCustomFieldsColumns([0, 1, 3, 5, 6, 7], '<?php echo $custom_field_headers; ?>'),
summation: [{column: 6, dataType: 'currency', currencySymbol: AppHelper.settings.currencySymbol}]
});
};
$(document).ready(function () {
loadProposalsTable("#monthly-proposal-table", "monthly");
});
</script>