mirror of
https://github.com/itflow-org/itflow
synced 2026-03-05 21:34:51 +00:00
Lowercase ty in QTY, fixed issue in setup where it would not take the selected currency type
This commit is contained in:
@@ -234,7 +234,7 @@ if(isset($_GET['invoice_id'])){
|
|||||||
<th class="d-print-none"></th>
|
<th class="d-print-none"></th>
|
||||||
<th>Item</th>
|
<th>Item</th>
|
||||||
<th>Description</th>
|
<th>Description</th>
|
||||||
<th class="text-center">QTY</th>
|
<th class="text-center">Qty</th>
|
||||||
<th class="text-right">Price</th>
|
<th class="text-right">Price</th>
|
||||||
<th class="text-right">Tax</th>
|
<th class="text-right">Tax</th>
|
||||||
<th class="text-right">Total</th>
|
<th class="text-right">Total</th>
|
||||||
@@ -935,4 +935,4 @@ $('#item').typeahead({
|
|||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -198,7 +198,7 @@ if(isset($_GET['quote_id'])){
|
|||||||
<th class="d-print-none"></th>
|
<th class="d-print-none"></th>
|
||||||
<th>Item</th>
|
<th>Item</th>
|
||||||
<th>Description</th>
|
<th>Description</th>
|
||||||
<th class="text-center">QTY</th>
|
<th class="text-center">Qty</th>
|
||||||
<th class="text-right">Price</th>
|
<th class="text-right">Price</th>
|
||||||
<th class="text-right">Tax</th>
|
<th class="text-right">Tax</th>
|
||||||
<th class="text-right">Total</th>
|
<th class="text-right">Total</th>
|
||||||
@@ -738,4 +738,4 @@ var docDefinition = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -178,7 +178,7 @@ if(isset($_GET['recurring_id'])){
|
|||||||
<th class="d-print-none"></th>
|
<th class="d-print-none"></th>
|
||||||
<th>Item</th>
|
<th>Item</th>
|
||||||
<th>Description</th>
|
<th>Description</th>
|
||||||
<th class="text-center">QTY</th>
|
<th class="text-center">Qty</th>
|
||||||
<th class="text-right">Price</th>
|
<th class="text-right">Price</th>
|
||||||
<th class="text-right">Tax</th>
|
<th class="text-right">Tax</th>
|
||||||
<th class="text-right">Total</th>
|
<th class="text-right">Total</th>
|
||||||
@@ -362,4 +362,4 @@ if(isset($_GET['recurring_id'])){
|
|||||||
|
|
||||||
include("footer.php");
|
include("footer.php");
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|||||||
@@ -591,7 +591,7 @@ if(isset($_POST['add_company_settings'])){
|
|||||||
<select class="form-control select2" name="currency_code" required>
|
<select class="form-control select2" name="currency_code" required>
|
||||||
<option value="">- Currency -</option>
|
<option value="">- Currency -</option>
|
||||||
<?php foreach($currencies_array as $currency_code => $currency_name) { ?>
|
<?php foreach($currencies_array as $currency_code => $currency_name) { ?>
|
||||||
<option><?php echo "$currency_code - $currency_name"; ?></option>
|
<option value="<?php echo $currency_code; ?>"><?php echo "$currency_code - $currency_name"; ?></option>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
@@ -660,4 +660,4 @@ if(isset($_POST['add_company_settings'])){
|
|||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user