Design fix (Date and Due Date labels)
authorJoe Hunt <joe.hunt.consulting@gmail.com>
Tue, 11 Mar 2008 08:54:37 +0000 (08:54 +0000)
committerJoe Hunt <joe.hunt.consulting@gmail.com>
Tue, 11 Mar 2008 08:54:37 +0000 (08:54 +0000)
CHANGELOG.txt
sales/customer_delivery.php

index 648d690d0de63ed3e38c9ff8faf98820dfe279c3..49f22c49b3e981bd336e04205096da1a10dcdc01 100644 (file)
@@ -20,8 +20,9 @@ Legend:
 $ -> 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).
index cc28d7f7f9bd9f2d2292f689620846af3546c87b..ba7016ef78d9610e8dd4dc1480d0c114e0207dc9 100644 (file)
@@ -319,7 +319,7 @@ if (!isset($_POST['DispatchDate']) || !is_date($_POST['DispatchDate'])) {
                $_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();
@@ -331,7 +331,7 @@ start_table("$table_style width=90%");
 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>";