Server IP : 192.185.129.71 / Your IP : 18.118.171.161 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/application/views/admin/invoices/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?> <?php echo form_open($formUrl, ['id' => 'schedule_send_form']); ?> <div class="col-md-12 no-padding animated fadeIn"> <div class="panel_s"> <div class="panel-body"> <h4 class="tw-my-0 tw-font-semibold"> <?php echo _l('schedule_email_for', format_invoice_number($invoice->id)); ?> </h4> <hr class="hr-panel-separator" /> <div class="row"> <div class="col-md-12"> <div class="checkbox checkbox-primary"> <input type="checkbox" name="attach_pdf" id="attach_pdf" <?php echo(isset($schedule) && $schedule->attach_pdf || !isset($schedule) ? ' checked' : ''); ?>> <label for="attach_pdf"><?php echo _l('invoice_send_to_client_attach_pdf'); ?></label> </div> <hr /> <div class="form-group"> <?php if ($template_disabled) { echo '<div class="alert alert-danger">'; echo 'The email template <b><a href="' . admin_url('emails/email_template/' . $template_id) . '" target="_blank">' . $template_system_name . '</a></b> is disabled. Click <a href="' . admin_url('emails/email_template/' . $template_id) . '" target="_blank">here</a> to enable the email template in order to be sent successfully.'; echo '</div>'; } $selected = []; $contacts = $this->clients_model->get_contacts($invoice->clientid, ['active' => 1, 'invoice_emails' => 1]); if (!isset($schedule)) { foreach ($contacts as $contact) { array_push($selected, $contact['id']); } } else { $selected = explode(',', $schedule->contacts); } if (count($selected) == 0) { echo '<p class="text-danger">' . _l('sending_email_contact_permissions_warning', _l('customer_permission_invoice')) . '</p><hr />'; } echo render_select('sent_to[]', $contacts, ['id', 'email', 'firstname,lastname'], 'invoice_estimate_sent_to_email', $selected, ['multiple' => true], [], '', '', false); ?> </div> <?php echo render_input('cc', 'CC', isset($schedule) ? $schedule->cc : ''); ?> <?php echo render_datetime_input( 'scheduled_at', 'schedule_date', _d($date) ); ?> </div> </div> </div> <div class="panel-footer text-right"> <a href="#" class="btn btn-danger" onclick="init_invoice(<?php echo $invoice->id; ?>); return false;"><?php echo _l('cancel'); ?></a> <button type="submit" autocomplete="off" data-loading-text="<?php echo _l('wait_text'); ?>" data-form="#schedule_send_form" class="btn btn-success"><?php echo _l('schedule'); ?></button> </div> </div> </div> <?php echo form_close(); ?> <script> $(function() { init_selectpicker(); init_datepicker(); appValidateForm($('#schedule_send_form'), { 'sent_to[]': 'required', scheduled_at: 'required' }); }); </script>