Roll up cost in BOM overview (printable version) does not include total.

When I look at the BOM overview for my products I find to my surprise that I cannot get the Total cost printed in the printable version.
In the summary on the webpage it is all there e.g.


But not in the printout:

That cannot be right!?
If it is like that by design I would like to request to have the total included.

I would agree, the total needs to be on the printable version.

FYI @jake.
It is almoist achivable by modifying the document pdf_component_table.tt under the Custom Documents menu under config settings under admin menu…
Just add this to the end.

        [% END %]
    [% END %]
	
	<tr> 
	<td colspan=11> <b>Unit cost:</td> <td colspan=2 align=right><b>[% total_ext_cost.format_currency(total_precision) %] </b></td>
	</tr>
    [% IF !level %]
        </table>
    [% END %]

However that only works in the old version and also I cannot seem to find the build_qty parameter in the object structure. So it will not scale when you increase the build quantity.