X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Forder_lines.inc;h=52d315de4b1c84d41cf8262ba28c2294bfb07324;hb=046be716a4814a03e139b990543831e5e30d2a34;hp=cd0f8602464591db5f883a2c8dbb937642d2267b;hpb=68bcfcee0be5037bc0152d5daaeba3ce402ab471;p=order_line_extra.git diff --git a/includes/order_lines.inc b/includes/order_lines.inc index cd0f860..52d315d 100644 --- a/includes/order_lines.inc +++ b/includes/order_lines.inc @@ -73,6 +73,11 @@ function view_link($dummy, $order_no) return get_customer_trans_view_str(ST_SALESORDER, $order_no); } +function item_link($dummy, $stock_id) +{ + return pager_link( _($stock_id), + "/modules/order_line_extra/item_schedule.php?stock_id=" .$stock_id); +} function order_link($row) { @@ -81,12 +86,16 @@ function order_link($row) } function customer_link($row) { - return pager_link(_($row['debtor_ref']), "/modules/order_line_extra/order_lines_view.php?customer_id=${row['debtor_no']}"); + return customer_link2($row['debtor_ref'], $row['debtor_no']); +} + +function customer_link2($name, $id) { + return pager_link(_($name), "/modules/order_line_extra/order_lines_view.php?customer_id=${id}"); } function aggregate_comment($row) { - $comment = $row['order_comment'].$row['detail_comment']; + $comment = $row['order_comment'].";".$row['detail_comment']; if($comment) { $comments = array_map('trim', explode(';', $comment)); $comments = array_filter($comments); @@ -94,7 +103,7 @@ function aggregate_comment($row) { if(count($comments) == 0) return $first; else { - $tooltip = implode('
', $comments); + $tooltip = implode('
- ', $comments); return "$first more $tooltip"; } }