Skip to content

Commit

Permalink
Update pdfreport.php
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlosb committed Jun 28, 2024
1 parent f44365d commit c95ce8d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion application/views/pdfreport.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,13 @@
<td class="frcellfld"><?= $this->lang->line('pdf_wheeldrive_vhcl'); ?></td><td><?php echo $this->lang->line($inspection->wheeldrive_vhcl); ?></td><td class="frcellfld"><?= $this->lang->line('pdf_mlg_vhcl'); ?></td><td><?php echo number_format($inspection->mlg_vhcl, 0,',', '.'); ?></td>
</tr>
<tr>
<td class="frcellfld"><?= $this->lang->line('pdf_displpow_vhcl'); ?></td><td><?php echo number_format($inspection->pow_vhcl, 0,',', '.'); ?>kW / <?php echo number_format($inspection->displ_vhcl, 0,',', '.'); ?>ccm</td><td class="frcellfld" nowrap><?= $this->lang->line('pdf_firstreg_vhcl'); ?></td><td><?php echo date("m/Y", strtotime($inspection->firstreg_vhcl)); ?></td>
<td class="frcellfld"><?= $this->lang->line('pdf_displpow_vhcl'); ?></td><td><?php echo number_format($inspection->pow_vhcl, 0,',', '.'); ?>kW / <?php
if ($inspection->displ_vhcl >0) {
echo number_format($inspection->displ_vhcl, 0,',', '.')."ccm";
} else {
echo " - ";
}
?></td><td class="frcellfld" nowrap><?= $this->lang->line('pdf_firstreg_vhcl'); ?></td><td><?php echo date("m/Y", strtotime($inspection->firstreg_vhcl)); ?></td>
</tr>
<tr><td colspan="4" class="bot-border smalltxt">&nbsp;</td></tr>
<tr><td colspan="4" class="smalltxt"><?= $this->lang->line('pdf_mlg_notice'); ?></td></tr>
Expand Down

0 comments on commit c95ce8d

Please sign in to comment.