Combined edit invoice, quote and recurring item into 1 edit item

This commit is contained in:
johnny@pittpc.com
2021-02-08 13:11:56 -05:00
parent 3c63dfe7e0
commit 4a291486ce
7 changed files with 44 additions and 288 deletions

View File

@@ -260,7 +260,7 @@ if(isset($_GET['invoice_id'])){
<tr>
<td class="text-center d-print-none">
<a class="text-secondary" href="#" data-toggle="modal" data-target="#editInvoiceItemModal<?php echo $item_id; ?>"><i class="fa fa-fw fa-edit"></i></a>
<a class="text-secondary" href="#" data-toggle="modal" data-target="#editItemModal<?php echo $item_id; ?>"><i class="fa fa-fw fa-edit"></i></a>
<a class="text-danger" href="post.php?delete_invoice_item=<?php echo $item_id; ?>"><i class="fa fa-fw fa-trash-alt"></i></a>
</td>
<td><?php echo $item_name; ?></td>
@@ -273,7 +273,7 @@ if(isset($_GET['invoice_id'])){
<?php
include("edit_invoice_item_modal.php");
include("edit_item_modal.php");
}