Fix panel style for PO vs. Invoice breakdown in receiving batch

This commit is contained in:
Lance Edgar 2024-06-02 15:58:10 -05:00
parent fa25857680
commit 3dc8deef67

View file

@ -27,12 +27,14 @@
<%def name="render_po_vs_invoice_helper()"> <%def name="render_po_vs_invoice_helper()">
% if master.handler.has_purchase_order(batch) and master.handler.has_invoice_file(batch): % if master.handler.has_purchase_order(batch) and master.handler.has_invoice_file(batch):
<div class="object-helper"> <nav class="panel">
<h3>PO vs. Invoice</h3> <p class="panel-heading">PO vs. Invoice</p>
<div class="object-helper-content"> <div class="panel-block">
${po_vs_invoice_breakdown_grid} <div style="width: 100%;">
${po_vs_invoice_breakdown_grid}
</div>
</div> </div>
</div> </nav>
% endif % endif
</%def> </%def>