${ _("Client") }: | ${ report.sale.client.person.name } | ${ _("Sale #") }: | ${ unicode(report.sale.identifier) } |
${ _("Sales Person") }: | ${ report.sale.salesperson.person.name } | ${ _("Open Date") }: | ${ format_date(report.sale.open_date) } |
${ _("Estimated finish") }: | ${ format_date(report.max_estimated_finish) } |
${ _("Item") } | ${ _("Price") } | ${ _("Total") } |
${ format_quantity(item.quantity) } x ${ item.sellable.get_description() } <% remaining = (item.quantity - item.quantity_decreased) %> % if remaining > 0: (${ _("Missing:")} ${ format_quantity(remaining)}) % endif | ${ format_price(item.price) } | ${ format_price(item.get_total()) } |
${ _("Items Discount:") } | ${ format_price(items_discount) } | |
${ _("Total:") } | ${ format_price(report.sale.get_total_sale_amount()) } |
${ _("Method") } | ${ _("Value") } |
${ method.description } | ${ value } |
${ _("Missing") } | ${ report.sale.get_total_to_pay() } |