% for item in report.workorder.order_items: % endfor
${ _("Code") } ${ _("Item") } ${ _("Quantity") } ${ _("Price") } ${ _("Total") }
${ item.sellable.code } ${ item.sellable.get_description() } ${ format_quantity(item.quantity) } ${ format_price(item.price) } ${ format_price(item.total) }
${ _("Total:") } ${ format_price(report.workorder.get_total_amount()) }