0
I will like to add the item name, and description to the invoice layout on the front end, so user knows what the invoice #33 is about
thanks
thanks
Responses (5)
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0Did manage to open the space and change the header, for the item_name but I am missing the code to "call" the item name..
?>
<tr class="linefinances<?php echo $k; ?> lineinvoice" id="lineinvoice_<?php echo $i; ?>" >
<td><?php echo JHTML::_('date', $this->items[$i]->invoice_date, JText::_('DATE_FORMAT_LC3')); ?></td>
<td><?php echo $this->items[$i]->invoice_num; ?></td>
<td><?php echo $this->items[$i]->to_name; ?></td>
//Here to display item_name
<td><?php echo $this->items[$i]->item_name; ?></td>
<td align="right"><?php echo InvoicesHelper::format($this->items[$i]->subtotal, $this->items[$i]->currency_before, $this->items[$i]->currency_after); ?></td>
<td align="right"><?php echo InvoicesHelper::format($this->items[$i]->total, $this->items[$i]->currency_before, $this->items[$i]->currency_after); ?></td>
<td width="70" align="right">
CAn somebody hint me on what to use there to call the name in the item description from the invoices_items table??
thanks
Your Reply
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »