Add input date text.
[order_line_extra.git] / order_lines_view.php
index 6f076140977391679876cfa784fc81a8d3eb3334..ee07f227c3daf416dfbc4f8a684c8387d28c173d 100644 (file)
@@ -50,12 +50,15 @@ end_table(1);
 //
 $customer_id = $_POST['customer_id'];
 if(isset($customer_id)) {
-label_cell($customer_id);
        $sql = get_order_details_extra($customer_id);
 
 
        $cols = array(
-               _("Order #")
+               _("Order #") => array('fun'=>'view_link', 'ord' => '')
+       ,_("Item Code") => array('ord' => '')
+               ,_("Quantity") => array('type' => 'qty')
+,_("Required Date") => array('fun' => 'input_date_details')
+,_("Comment") => array('fun' => 'input_comment_details')
        );
 }
 else {