X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Finquiry%2Fcustomer_inquiry.php;h=160cb2509ba1937a094b0b5e75c68fe44351eb26;hb=dca46563d3e8b7546e7095b7d96b40d9838c4c75;hp=6db43593a18d1ed2ee156b97f0a2588d6a22381f;hpb=74dc7287df122a02d0e5ef3b8bda58e60057a5a1;p=fa-stable.git diff --git a/sales/inquiry/customer_inquiry.php b/sales/inquiry/customer_inquiry.php index 6db43593..160cb250 100644 --- a/sales/inquiry/customer_inquiry.php +++ b/sales/inquiry/customer_inquiry.php @@ -1,13 +1,13 @@ . + See the License here . ***********************************************************************/ $page_security = 1; $path_to_root="../.."; @@ -51,7 +51,7 @@ if (!isset($_POST['filterType'])) cust_allocations_list_cells(null, 'filterType', $_POST['filterType'], true); -submit_cells('RefreshInquiry', _("Search"),'',_('Refresh Inquiry'), true); +submit_cells('RefreshInquiry', _("Search"),'',_('Refresh Inquiry'), 'default'); end_row(); end_table(); end_form(); @@ -127,7 +127,7 @@ function trans_view($trans) function due_date($row) { - return $row["type"] == 10 ? sql2date($row["due_date"]) : ''; + return $row["type"] == 10 ? $row["due_date"] : ''; } function gl_view($row) @@ -184,7 +184,7 @@ function edit_link($row) $str = "/sales/customer_delivery.php?ModifyDelivery=".$row['trans_no']; break; } - if ($str != "") + if ($str != "" && !is_closed_trans($row['type'], $row["trans_no"])) return pager_link(_('Edit'), $str, ICON_EDIT); return ''; } @@ -272,7 +272,7 @@ $cols = array( _("Order") => array('fun'=>'order_view'), _("Reference"), _("Date") => array('name'=>'tran_date', 'type'=>'date', 'ord'=>'desc'), - _("Due Date") => array('type=>date', 'fun'=>'due_date'), + _("Due Date") => array('type'=>'date', 'fun'=>'due_date'), _("Customer") => array('ord'=>''), _("Branch") => array('ord'=>''), _("Currency") => array('align'=>'center'),