Allow Negative item line amounts for invoice/quotes/recurring for dicounts Fixes #483 and #311

This commit is contained in:
johnnyq
2022-08-29 17:37:37 -04:00
parent b10e493e12
commit f2f1949ff8
3 changed files with 3 additions and 3 deletions

View File

@@ -234,7 +234,7 @@ if(isset($_GET['recurring_id'])){
<td><input type="text" class="form-control" id="name" name="name" placeholder="Item" required></td>
<td><textarea class="form-control" rows="1" id="desc" name="description" placeholder="Description"></textarea></td>
<td><input type="number" step="0.01" min="0" class="form-control" style="text-align: center;" id="qty" name="qty" placeholder="QTY"></td>
<td><input type="number" step="0.01" min="0" class="form-control" style="text-align: right;" id="price" name="price" placeholder="Price"></td>
<td><input type="number" step="0.01" class="form-control" style="text-align: right;" id="price" name="price" placeholder="Price"></td>
<td>
<select class="form-control select2" name="tax_id" required>
<option value="0">None</option>