Spade

Mini Shell

Directory:~$ /home/lmsyaran/www/administrator/components/com_invoices/views/invoices/tmpl/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/www/administrator/components/com_invoices/views/invoices/tmpl/default_editmodal.php

<?php
/*------------------------------------------------------------------------
# com_finances - Expense Manager for Joomla
# ------------------------------------------------------------------------
# author				Germinal Camps
# copyright 			Copyright (C) 2015 joomlathat.com. All Rights Reserved.
# @license				http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# Websites: 			http://www.joomlathat.com
# Technical Support:	Forum - http://www.joomlathat.com/support
-------------------------------------------------------------------------*/

//no direct access
defined('_JEXEC') or die('Restricted access.');
?>

<!-- Modal -->
<div class="modal fade invoice-manager"
id="editModal" tabindex="-1" role="dialog"
aria-labelledby="myModalLabel">
  <div class="modal-dialog modal-lg"
role="document">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close"
data-dismiss="modal" aria-label="<?php echo
JText::_('CLOSE'); ?>"><span
aria-hidden="true">&times;</span></button>
        <h4 class="modal-title"
id="myModalLabel"><?php echo
JText::_('EDIT_INVOICE');?></h4>
      </div>
      <div class="modal-body">
        <invoiceform  v-if="!isSplitView()"
                      v-show="current_action == 'edit'"
                      :invoice="current_invoice"
                      >
        </invoiceform>
      </div>
      <div class="modal-footer">
        <button type="button"
                class="btn btn-link btn_no_underline pull-left
maindeletebutton"
                id="deletebutton_modal"
                data-loading-text="<?php echo
JText::_('DELETING_INVOICE'); ?>"
                @click.prevent="delete_invoice()">
          <span class="dlt-item"><?php echo
JText::_('DELETE_INVOICE');?></span></button>
        <button type="button"
                class="btn btn-primary pull-right"
                id="savebutton_modal"
                data-loading-text="<?php echo
JText::_('SAVING'); ?>"
                @click.prevent="saveInvoice()"><?php echo
JText::_('SAVE_INVOICE'); ?></button>
        <button type="button"
                class="btn btn-default pull-right"
                id="closebutton_modal"
                data-dismiss="modal"
                aria-hidden="true"><?php echo
JText::_('CLOSE'); ?></button>
      </div>
    </div>
  </div>
</div>