$rep->NewPage();
}
- $comments = get_comments(ST_SALESINVOICE, $i);
- if ($comments && db_num_rows($comments))
+ $memo = get_comments_string(ST_SALESINVOICE, $i);
+ if ($memo != "")
{
$rep->NewLine();
- while ($comment=db_fetch($comments))
- $rep->TextColLines(0, 6, $comment['memo_'], -2);
+ $rep->TextColLines(1, 5, $memo, -2);
}
$DisplaySubTot = number_format2($SubTotal,$dec);
$rep->NewPage();
}
- $comments = get_comments(ST_CUSTDELIVERY, $i);
- if ($comments && db_num_rows($comments))
+ $memo = get_comments_string(ST_CUSTDELIVERY, $i);
+ if ($memo != "")
{
$rep->NewLine();
- while ($comment=db_fetch($comments))
- $rep->TextColLines(0, 6, $comment['memo_'], -2);
+ $rep->TextColLines(1, 5, $memo, -2);
}
$DisplaySubTot = number_format2($SubTotal,$dec);
$rep->NewPage();
}
+ $memo = get_comments_string($j, $i);
+ if ($memo != "")
+ {
+ $rep->NewLine();
+ $rep->TextColLines(1, 5, $memo, -2);
+ }
+
$rep->row = $rep->bottomMargin + (15 * $rep->lineHeight);
$rep->TextCol(3, 6, _("Total Allocated"), -2);
$rep->NewPage();
}
- $comments = get_comments(ST_CUSTCREDIT, $i);
- if ($comments && db_num_rows($comments))
+ $memo = get_comments_string(ST_CUSTCREDIT, $i);
+ if ($memo != "")
{
$rep->NewLine();
- while ($comment=db_fetch($comments))
- $rep->TextColLines(0, 6, $comment['memo_'], -2);
+ $rep->TextColLines(1, 5, $memo, -2);
}
$DisplaySubTot = number_format2($SubTotal,$dec);
$rep->NewPage();
}
+ $memo = get_comments_string($j, $i);
+ if ($memo != "")
+ {
+ $rep->NewLine();
+ $rep->TextColLines(1, 5, $memo, -2);
+ }
$rep->row = $rep->bottomMargin + (15 * $rep->lineHeight);
$rep->TextCol(3, 6, _("Total Allocated"), -2);
$rep->NewLine(1);
$rep->TextCol(0, 5," *** = "._("Insufficient stock"), -2);
- $comments = get_comments(ST_WORKORDER, $i);
- if ($comments && db_num_rows($comments))
+ $memo = get_comments_string(ST_WORKORDER, $i);
+ if ($memo != "")
{
$rep->NewLine();
- while ($comment=db_fetch($comments))
- $rep->TextColLines(0, 6, $comment['memo_'], -2);
+ $rep->TextColLines(1, 5, $memo, -2);
}
+
if ($email == 1)
{
$myrow['DebtorName'] = $myrow['contact'];