Topic: Having memo or comment displayed on bank_inquiry.php

I would like to take the memo/comment from gl_trans_view and display it as an additional row in the table created by bank_inquiry.
Does anyone know how this should be done, I've tried, but my php is not very good.
Any help would be appreciated.

Re: Having memo or comment displayed on bank_inquiry.php

Although you will see the memo when pressing the number, I see that this would be cool. Will implement it.

/Joe

Re: Having memo or comment displayed on bank_inquiry.php

This has now been fixed and HG repository will be updated. In the mean time you can change this yourself:

/gl/inquiry/bank_inquiry.php Line 70. Change to:

$th = array(_("Type"), _("#"), _("Reference"), _("Date"),
    _("Debit"), _("Credit"), _("Balance"), _("Person/Item"), _("Memo"), "");

After line:

    label_cell(payment_person_name($myrow["person_type_id"],$myrow["person_id"]));

Add line:

    label_cell(get_comments_string($myrow["type"], $myrow["trans_no"]));

Now you will see the comments/meno on the transactions.

/Joe

Re: Having memo or comment displayed on bank_inquiry.php

SWEET!
Thank you Sir.

Re: Having memo or comment displayed on bank_inquiry.php

Mercurial Changeset 3070