Skip to content

Commit

Permalink
styling of doc
Browse files Browse the repository at this point in the history
  • Loading branch information
kamranzafar4343 committed Nov 5, 2024
1 parent 993f4d5 commit b39f825
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
2 changes: 0 additions & 2 deletions createAccessWO.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,6 @@
exit();
}
}


?>


Expand Down
26 changes: 17 additions & 9 deletions viewOrder.php
Original file line number Diff line number Diff line change
Expand Up @@ -332,15 +332,15 @@
}

.barcode {
height: 55px;
width: 250px;
height: 30px;
width: 230px;
position: relative;
left: -38px;
}

body {
font-family: "Times New Roman", Times, serif;
font-size: 20px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 16px;
}

.invoice-container {
Expand Down Expand Up @@ -544,12 +544,20 @@
</p>
</div>
<div class="col-4 text-center">
<p style="text-transform: uppercase;"><?php echo $flag . " WORKORDER" ?></p><br>
<br>
<p>
<?php echo $priority; ?>
<p style="text-transform: uppercase;"><?php echo $flag . " WORKORDER"; ?></p>

<p class="mb-4">
<?php
if($priority == "Regular"){

echo "REGULAR - Next Working Day";
}
else{
echo "Urgent - Rush Same Day";
}
?>
</p>
<br>

</div>
<div class="col-4 text-right">
<?php echo '<img class="barcode" alt="' . $order_no . '" src="barcode.php?text=' . $order_no . '&codetype=code128&orientation=horizontal&size=20&print=false"/>'; ?>
Expand Down

0 comments on commit b39f825

Please sign in to comment.