Updated Licence Type var under client export pdf

This commit is contained in:
johnnyq 2022-04-29 12:11:57 -04:00
parent ba57078810
commit d5922b25a9
2 changed files with 2 additions and 32 deletions

View File

@ -14,36 +14,6 @@
<div class="form-group">
<input type="text" class="form-control" name="name" placeholder="Name" required autofocus>
</div>
<?php
if($document_tags) {
?>
<!-- Document Tags select start -->
<div class="form-group">
<div class="button-group">
<button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown">
<span class="fa fa-fw fa-tag"></span> <span class="caret"></span>
</button>
<ul class="dropdown-menu">
<?php
foreach($document_tags as $document_tag) {
?>
<li>
<div class="form-check">
<label>
<input class="form-check-input" type="checkbox" value="<?php echo $document_tag['tag_id'] ?>" name="tags_ids[<?php echo $document_tag['tag_id']; ?>]"> <?php echo htmlentities($document_tag['tag_name']); ?>
</label>
</div>
</li>
<?php
}
?>
</ul>
</div>
</div>
<!-- Document tags select end -->
<?php
}
?>
<div class="form-group">
<textarea class="form-control summernote" name="content"></textarea>

View File

@ -8480,7 +8480,7 @@ if(isset($_GET['export_client_pdf'])){
while($row = mysqli_fetch_array($sql_software)){
$software_name = $row['software_name'];
$software_type = $row['software_type'];
$software_license = $row['software_license'];
$software_license_type = $row['software_license_type'];
$software_notes = $row['software_notes'];
?>
@ -8494,7 +8494,7 @@ if(isset($_GET['export_client_pdf'])){
style: 'item'
},
{
text: <?php echo json_encode($software_license); ?>,
text: <?php echo json_encode($software_license_type); ?>,
style: 'item'
},
{