I edited reporting/rep710.php
I added a.description to the $sql variable like so...
$sql = "SELECT a.*,
SUM(IF(ISNULL(g.amount), NULL, IF(g.amount > 0, g.amount, 0))) AS amount,
u.user_id, a.description,
UNIX_TIMESTAMP(a.stamp) as unix_stamp ...
Changed the columns widths as follows
//$cols = array(0, 60, 120, 180, 240, 340, 400, 460, 520);
$cols = array(-10, 40, 80, 120, 170, 250, 280, 500, 560);
altered the "action" column as follows:
if (!$myrow['description']){
if ($myrow['gl_seq'] == null)
$action = _('Updated');
else
$action = _('Created');
} else {
$action = $myrow['description'];
}
$rep->TextCol(6, 7, $action);
Also in admin/db/voiding_db.inc, I changed
//add_audit_trail($type, $type_no, $date_, _("Voided.")."\n".$memo_);
add_audit_trail($type, $type_no, $date_, _("Voided.")." ".$memo_);
This gave me my desired result - Voided transactions are now lablled "Voided" and any memo also displays.