X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Finquiry%2Fsales_orders_view.php;h=3d70d125b686a20001973dc4ef1d2a7521f7896a;hb=0a6988eadb9d779a9c49c79772c1c2a3e19b6b05;hp=f275bc7055c2957c14781c143f64188631ef6cf6;hpb=f11b39846d81bd043490ba9596224b859e47467c;p=fa-stable.git diff --git a/sales/inquiry/sales_orders_view.php b/sales/inquiry/sales_orders_view.php index f275bc70..3d70d125 100644 --- a/sales/inquiry/sales_orders_view.php +++ b/sales/inquiry/sales_orders_view.php @@ -114,14 +114,19 @@ function edit_link($row) function dispatch_link($row) { - global $trans_type; + global $trans_type, $page_nested; if ($row['ord_payments'] + $row['inv_payments'] < $row['prep_amount']) return ''; if ($trans_type == ST_SALESORDER) - return pager_link( _("Dispatch"), - "/sales/customer_delivery.php?OrderNumber=" .$row['order_no'], ICON_DOC); + { + if ($row['TotDelivered'] < $row['TotQuantity'] && !$page_nested) + return pager_link( _("Dispatch"), + "/sales/customer_delivery.php?OrderNumber=" .$row['order_no'], ICON_DOC); + else + return ''; + } else return pager_link( _("Sales Order"), "/sales/sales_order_entry.php?OrderNumber=" .$row['order_no'], ICON_DOC); @@ -168,6 +173,21 @@ function tmpl_checkbox($row) . hidden('last['.$row['order_no'].']', $value, false); } +function unallocated_prepayments($row) +{ + + if ($row['ord_payments'] > 0) { + $pmts = get_payments_for($row['order_no'], $row['trans_type'], $row['debtor_no']); + + foreach($pmts as $pmt) + { + $list[] = get_trans_view_str($pmt['trans_type_from'], $pmt['trans_no_from'], get_reference($pmt['trans_type_from'], $pmt['trans_no_from'])); + } + return implode(',', $list); + } else + return ''; +} + function invoice_prep_link($row) { // invoicing should be available only for partially allocated orders @@ -249,7 +269,7 @@ $sql = get_sql_for_sales_orders_view($trans_type, get_post('OrderNumber'), get_p if ($trans_type == ST_SALESORDER) $cols = array( - _("Order #") => array('fun'=>'view_link'), + _("Order #") => array('fun'=>'view_link', 'align'=>'right', 'ord' =>''), _("Ref") => array('type' => 'sorder.reference', 'ord' => '') , _("Customer") => array('type' => 'debtor.name' , 'ord' => '') , _("Branch"), @@ -263,7 +283,7 @@ if ($trans_type == ST_SALESORDER) ); else $cols = array( - _("Quote #") => array('fun'=>'view_link'), + _("Quote #") => array('fun'=>'view_link', 'align'=>'right', 'ord' => ''), _("Ref"), _("Customer"), _("Branch"), @@ -277,8 +297,9 @@ else ); if ($_POST['order_view_mode'] == 'OutstandingOnly') { array_append($cols, array( + array('insert'=>true, 'fun'=>'edit_link'), array('insert'=>true, 'fun'=>'dispatch_link'), - array('insert'=>true, 'fun'=>'edit_link'))); + array('insert'=>true, 'fun'=>'prt_link'))); } elseif ($_POST['order_view_mode'] == 'InvoiceTemplates') { array_substitute($cols, 4, 1, _("Description")); @@ -291,7 +312,8 @@ if ($_POST['order_view_mode'] == 'OutstandingOnly') { ); } else if ($_POST['order_view_mode'] == 'PrepaidOrders') { array_append($cols, array( - array('insert'=>true, 'fun'=>'invoice_prep_link')) + _("New Payments") => array('insert'=>true, 'fun'=>'unallocated_prepayments'), + array('insert'=>true, 'fun'=>'invoice_prep_link')) ); } elseif ($trans_type == ST_SALESQUOTE) { @@ -303,6 +325,7 @@ if ($_POST['order_view_mode'] == 'OutstandingOnly') { array_append($cols,array( _("Tmpl") => array('insert'=>true, 'fun'=>'tmpl_checkbox'), array('insert'=>true, 'fun'=>'edit_link'), + array('insert'=>true, 'fun'=>'dispatch_link'), array('insert'=>true, 'fun'=>'prt_link'))); };