<%inherit file="../base/base.html" /> <%namespace file="../base/base.html" import="header, setup_margin_labels" /> <%block name="title_head"> ${ title } <%block name="extra_meta"> ${ setup_margin_labels(title) }
${ header(complete_header, title, subtitle, notes) }
% if order.receival_date: % endif
${_("Invoice number")}: ${ order.invoice_number}
${_("Open date")}: ${ order.open_date.strftime('%x')}${_("Receival")}: ${ order.receival_date.strftime('%x')}
${ _("Source") }: ${ order.source_branch.get_description() } ${ _("Destination") }: ${ order.destination_branch.get_description() }
${ _("Responsible") }: ${ order.source_responsible.person.name } ${ _("Responsible") }: % if order.destination_responsible: ${ order.destination_responsible.person.name } % endif
% for item in order.get_items(): % endfor
# ${ _("Description") } ${ _("Quantity") }
${ item.sellable.code } ${ item.sellable.get_description() } ${ item.quantity }
Total: ${ total }
% if order.comments:

${ _("Comments") }:

${ order.comments }
% endif

 

${ order.source_responsible.person.name } % if order.destination_responsible: ${ order.destination_responsible.person.name } % endif