Skip to content

Commit

Permalink
[IMP] changed to delivery address and serial number
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan Bolen committed Nov 24, 2021
1 parent f8c232d commit 445d127
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions rma/report/rma_report_templates.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<strong t-if="doc.type=='customer'">Customer:</strong>
<strong t-if="doc.type=='supplier'">Supplier:</strong>
<div
t-field="doc.partner_id"
t-field="doc.delivery_address_id"
t-options='{"widget": "contact", "fields": ["address", "name"], "no_marker": True}'
/>
</div>
Expand Down Expand Up @@ -86,7 +86,7 @@
<tr>
<th>Product</th>
<th class="text-right">Quantity</th>
<th class="text-right">Unit Price</th>
<th class="text-right">Serial Number</th>
</tr>
</thead>
<tbody>
Expand All @@ -98,8 +98,7 @@
</td>
<td class="text-right">
<span
t-field="doc.price_unit"
t-options='{"widget": "monetary", "display_currency": doc.currency_id}'
t-field="doc.lot_id.name"
/>
</td>
</tr>
Expand Down Expand Up @@ -182,7 +181,7 @@
<strong t-if="doc.type=='customer'">Customer:</strong>
<strong t-if="doc.type=='supplier'">Supplier:</strong>
<div
t-field="doc.partner_id"
t-field="doc.delivery_address_id"
t-options='{"widget": "contact", "fields": ["address", "name"], "no_marker": True}'
/>
</div>
Expand Down Expand Up @@ -214,7 +213,7 @@
<th>Operation</th>
<th>Product</th>
<th class="text-right">Quantity</th>
<th class="text-right">Unit Price</th>
<th class="text-right">Serial Number</th>
</tr>
</thead>
<tbody>
Expand All @@ -227,7 +226,7 @@
<span t-field="l.uom_id" groups="uom.group_uom" />
</td>
<td class="text-right">
<span t-field="l.price_unit" />
<span t-field="l.lot_id.name" />
</td>
</tr>
</tbody>
Expand Down

0 comments on commit 445d127

Please sign in to comment.