X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Finquiry%2Fsales_orders_view.php;h=3d70d125b686a20001973dc4ef1d2a7521f7896a;hb=8d809a4d7562cde8931bf4a69d3e63f63157973c;hp=6a7186d952e2f716cdf245e877b1da17250751e9;hpb=b0de7973950dd3f665839600b20141461c624614;p=fa-stable.git diff --git a/sales/inquiry/sales_orders_view.php b/sales/inquiry/sales_orders_view.php index 6a7186d9..3d70d125 100644 --- a/sales/inquiry/sales_orders_view.php +++ b/sales/inquiry/sales_orders_view.php @@ -173,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 @@ -297,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) {