$ -> Affected files
11-Mar-2008 Joe Hunt
- # Small fix for alignment of date and due date label fields in customer_invoice.php
+ # Small fix for alignment of date and due date label fields in customer_invoice.php and customer_delivery.php
$ /sales/customer_invoice.php
+ /sales/customer_delivery.php
10-Mar-2008 Joe Hunt
# Small fix for Template Invoice in sales_order_entry.php on line 363 (duedate for Invoice).
$_POST['DispatchDate'] = end_fiscalyear();
}
}
-date_cells(_("Date"), 'DispatchDate', $_POST['DispatchDate'], 0, 0, 0, "class='tableheader'");
+date_cells(_("Date"), 'DispatchDate', $_POST['DispatchDate'], 0, 0, 0, "class='tableheader2'");
end_row();
end_table();
if (!isset($_POST['due_date']) || !is_date($_POST['due_date'])) {
$_POST['due_date'] = get_invoice_duedate($_SESSION['Items']->customer_id, $_POST['DispatchDate']);
}
-date_row(_("Invoice Dead-line"), 'due_date', $_POST['due_date'], 0, 0, 0, "class='tableheader'");
+date_row(_("Invoice Dead-line"), 'due_date', $_POST['due_date'], 0, 0, 0, "class='tableheader2'");
end_table();
echo "</td></tr>";