| 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/utilities/ |
Upload File : |
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<?php init_head(); ?>
<div id="wrapper">
<div class="content">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h4 class="tw-mt-0 tw-font-semibold tw-text-lg tw-text-neutral-700">
<?php echo e($title); ?>
</h4>
<?php echo form_open($this->uri->uri_string()); ?>
<div class="panel_s">
<div class="panel-body">
<div class="form-group select-placeholder">
<label for="export_type"><?php echo _l('bulk_pdf_export_select_type'); ?></label>
<select name="export_type" id="export_type" class="selectpicker" data-width="100%"
data-none-selected-text="<?php echo _l('dropdown_non_selected_tex'); ?>">
<option value=""></option>
<?php foreach ($bulk_pdf_export_available_features as $feature) { ?>
<option value="<?php echo e($feature['feature']); ?>"><?php echo e($feature['name']); ?>
</option>
<?php } ?>
</select>
</div>
<?php echo render_date_input('date-from', 'zip_from_date'); ?>
<?php echo render_date_input('date-to', 'zip_to_date'); ?>
<?php echo render_input('tag', 'bulk_export_include_tag', '', 'text', ['data-toggle' => 'tooltip', 'title' => 'bulk_export_include_tag_help']); ?>
<div class="form-group hide shifter estimates_shifter">
<label for="estimate_zip_status"><?php echo _l('bulk_export_status'); ?></label>
<div class="radio radio-primary">
<input type="radio" value="all" checked name="estimates_export_status">
<label for="all"><?php echo _l('bulk_export_status_all'); ?></label>
</div>
<?php foreach ($estimate_statuses as $status) { ?>
<div class="radio radio-primary">
<input type="radio" id="<?php echo format_estimate_status($status, '', false); ?>"
value="<?php echo e($status); ?>" name="estimates_export_status">
<label
for="<?php echo format_estimate_status($status, '', false); ?>"><?php echo format_estimate_status($status, '', false); ?></label>
</div>
<?php } ?>
</div>
<div class="form-group hide shifter credit_notes_shifter">
<label for="credit_notes_export_status"><?php echo _l('bulk_export_status'); ?></label>
<div class="radio radio-primary">
<input type="radio" id="all" value="all" checked name="credit_notes_export_status">
<label for="all"><?php echo _l('bulk_export_status_all'); ?></label>
</div>
<?php foreach ($credit_notes_statuses as $status) { ?>
<div class="radio radio-primary">
<input type="radio" id="credit_note_<?php echo e($status['id']); ?>"
value="<?php echo e($status['id']); ?>" name="credit_notes_export_status">
<label
for="credit_note_<?php echo e($status['id']); ?>"><?php echo e($status['name']); ?></label>
</div>
<?php } ?>
</div>
<div class="form-group hide shifter invoices_shifter">
<label for="invoices_export_status"><?php echo _l('bulk_export_status'); ?></label>
<div class="radio radio-primary">
<input type="radio" id="all" value="all" checked name="invoices_export_status">
<label for="all"><?php echo _l('bulk_export_status_all'); ?></label>
</div>
<?php foreach ($invoice_statuses as $status) { ?>
<div class="radio radio-primary">
<input type="radio"
id="invoice_<?php echo format_invoice_status($status, '', false); ?>"
value="<?php echo e($status); ?>" name="invoices_export_status">
<label
for="invoice_<?php echo format_invoice_status($status, '', false); ?>"><?php echo format_invoice_status($status, '', false); ?></label>
</div>
<?php } ?>
<hr />
<div class="radio radio-primary">
<input type="radio" id="invoice_not_send" value="not_send"
name="invoices_export_status">
<label for="invoice_not_send"><?php echo _l('not_sent_indicator'); ?></label>
</div>
</div>
<div class="form-group hide shifter proposals_shifter">
<label for="proposals_export_status"><?php echo _l('bulk_export_status'); ?></label>
<div class="radio radio-primary">
<input type="radio" value="all" checked name="proposals_export_status">
<label for="all"><?php echo _l('bulk_export_status_all'); ?></label>
</div>
<?php foreach ($proposal_statuses as $status) {
if ($status == 0) {
continue;
} ?>
<div class="radio radio-primary">
<input type="radio" value="<?php echo e($status); ?>" name="proposals_export_status"
id="proposal_<?php echo format_proposal_status($status, '', false); ?>">
<label
for="proposal_<?php echo format_proposal_status($status, '', false); ?>"><?php echo format_proposal_status($status, '', false); ?></label>
</div>
<?php
} ?>
</div>
<div class="form-group hide shifter payments_shifter expenses_shifter">
<?php
array_unshift($payment_modes, ['id' => '', 'name' => _l('bulk_export_status_all')]);
echo render_select('paymentmode', $payment_modes, ['id', 'name'], 'payment_modes');
?>
</div>
<?php hooks()->do_action('after_bulk_pdf_export_options'); ?>
</div>
<div class="panel-footer text-right">
<button class="btn btn-primary"
type="submit"><?php echo _l('bulk_pdf_export_button'); ?></button>
</div>
</div>
<?php echo form_close(); ?>
</div>
</div>
</div>
</div>
<?php init_tail(); ?>
<script>
$(function() {
appValidateForm($('form'), {
export_type: 'required'
});
$('#export_type').on('change', function() {
var val = $(this).val();
$('.shifter').addClass('hide');
$('.' + val + '_shifter').removeClass('hide');
});
});
</script>
</body>
</html>