File: //proc/thread-self/root/home/slfopp7cb1df/www/pm/app/Views/invoices/invoice_parts/invoice_info.php
<span class="invoice-info-title" style="font-size:20px; font-weight: bold;background-color: <?php echo $color; ?>; color: #fff;"> <?php echo get_invoice_id($invoice_info->id); ?> </span>
<div style="line-height: 10px;"></div><?php
if (isset($invoice_info->custom_fields) && $invoice_info->custom_fields) {
foreach ($invoice_info->custom_fields as $field) {
if ($field->value) {
echo "<span>" . $field->custom_field_title . ": " . view("custom_fields/output_" . $field->custom_field_type, array("value" => $field->value)) . "</span><br />";
}
}
}
?>
<span><?php echo app_lang("bill_date") . ": " . format_to_date($invoice_info->bill_date, false); ?></span><br />
<span><?php echo app_lang("due_date") . ": " . format_to_date($invoice_info->due_date, false); ?></span>