Removed word asset from name and type

This commit is contained in:
johnny@pittpc.com
2021-03-09 18:09:03 -05:00
parent 713778d094
commit b4d8780be1
3 changed files with 7 additions and 7 deletions

View File

@@ -39,7 +39,7 @@
<div class="tab-pane fade show active" id="pills-details">
<div class="form-group">
<label>Asset Name <strong class="text-danger">*</strong></label>
<label>Name <strong class="text-danger">*</strong></label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-tag"></i></span>
@@ -49,7 +49,7 @@
</div>
<div class="form-group">
<label>Asset Type <strong class="text-danger">*</strong></label>
<label>Type <strong class="text-danger">*</strong></label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-tags"></i></span>

View File

@@ -39,7 +39,7 @@
<div class="tab-pane fade show active" id="pills-details<?php echo $asset_id; ?>">
<div class="form-group">
<label>Asset Name <strong class="text-danger">*</strong></label>
<label>Name <strong class="text-danger">*</strong></label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-tag"></i></span>
@@ -49,7 +49,7 @@
</div>
<div class="form-group">
<label>Asset Type <strong class="text-danger">*</strong></label>
<label>Type <strong class="text-danger">*</strong></label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-tags"></i></span>

View File

@@ -734,7 +734,7 @@ include("footer.php");
style:'itemsFooterSubTitle'
},
{
text: '$<?php echo $total_tax; ?>',
text: '$<?php echo number_format($total_tax,2); ?>',
style:'itemsFooterSubValue'
}
],
@@ -744,7 +744,7 @@ include("footer.php");
style:'itemsFooterTotalTitle'
},
{
text: '$<?php echo $invoice_amount; ?>',
text: '$<?php echo number_format($invoice_amount,2); ?>',
style:'itemsFooterTotalValue'
}
],
@@ -754,7 +754,7 @@ include("footer.php");
style:'itemsFooterSubTitle'
},
{
text: '$<?php echo $amount_paid; ?>',
text: '$<?php echo number_format($amount_paid,2); ?>',
style:'itemsFooterSubValue'
}
],