Have Invoice only show Item, Description, Quantity

How can we get a report showing just:

ITEM, DESCRIPTION, QUANTITY

We do not need Unit cost or anything else.

2 Likes

Hi Frank,
Sorry for the long delay in responding. Yes, you can do this.

First, do a search for: .invbody-items tbody .item
Then add this before the closing } brace: width: 250px;
The code should look like this:

    .invbody-items tbody .item {
      padding-left: 5px;
      text-align: left;
      width: 250px;
    }

Next, search for this: <thead>
Then replace that and all the code between the <table cellspacing=“0” class=“invbody-items”> and closing </table> tags with this:

	<thead>
		<tr>
			<th class="first">
			<div class="item">Item</div>
			</th>
			<th>
			<div class="description">Description</div>
			</th>
			<th class="last">
			<div class="quantity">Quantity</div>
			</th>
		</tr>
	</thead>
	<tbody>{{invoice_line_items_table_qty_only}}
	</tbody>

That should take care of it.

2 Likes