X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Finquiry%2Fcustomer_inquiry.php;h=aba3613593850c49b649cd2bedaf33d94c68b9b3;hb=7202616e85a0fb8907ced404e418d8a16a5ed53a;hp=8e54861131eda0a8ae0ddfb321a8a01ea6887876;hpb=795cb201893b54ea61d93b74b20fa09df515c310;p=fa-stable.git diff --git a/sales/inquiry/customer_inquiry.php b/sales/inquiry/customer_inquiry.php index 8e548611..aba36135 100644 --- a/sales/inquiry/customer_inquiry.php +++ b/sales/inquiry/customer_inquiry.php @@ -1,16 +1,16 @@ . + See the License here . ***********************************************************************/ -$page_security = 1; -$path_to_root="../.."; +$page_security = 'SA_SALESTRANSVIEW'; +$path_to_root = "../.."; include($path_to_root . "/includes/db_pager.inc"); include_once($path_to_root . "/includes/session.inc"); @@ -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,8 +127,7 @@ function trans_view($trans) function due_date($row) { - return ($row["type"]==20 || $row["type"]==21) - ? $row["due_date"] : ''; + return $row["type"] == 10 ? $row["due_date"] : ''; } function gl_view($row) @@ -185,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,8 +271,8 @@ $cols = array( _("#") => array('fun'=>'trans_view', 'ord'=>''), _("Order") => array('fun'=>'order_view'), _("Reference"), - _("Date") => array('type'=>'date', 'ord'=>'desc'), - _("Due Date") => array('type=>date', 'fun'=>'due_date'), + _("Date") => array('name'=>'tran_date', 'type'=>'date', 'ord'=>'desc'), + _("Due Date") => array('type'=>'date', 'fun'=>'due_date'), _("Customer") => array('ord'=>''), _("Branch") => array('ord'=>''), _("Currency") => array('align'=>'center'),