Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion account_invoice_report_grouped_by_picking/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{
"name": "Account Invoice Grouped by Picking",
"summary": "Print invoice lines grouped by picking",
"version": "19.0.1.0.0",
"version": "19.0.1.1.0",
"category": "Accounting & Finance",
"website": "https://github.com/OCA/account-invoice-reporting",
"author": "Tecnativa, Odoo Community Association (OCA)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<attribute name="t-field" />
<attribute
name="t-options"
>{'widget': 'float', 'decimal_precision': 'Product Unit of Measure'}</attribute>
>{'widget': 'float', 'decimal_precision': 'Product Unit'}</attribute>
</xpath>
<xpath expr="//td/span[@t-field='line.price_subtotal']" position="before">
<t t-set="line_subtotal" t-value="l.price_subtotal" />
Expand Down Expand Up @@ -94,7 +94,7 @@
position="after"
>
<tr t-if="picking != next_picking[0]">
<td colspan="10" class="text-right">
<td colspan="10" class="text-end">
<strong>Subtotal: </strong>
<strong
t-esc="subtotal"
Expand Down
Loading