mirror of
https://github.com/ForgeFlow/stock-rma.git
synced 2025-01-21 12:57:49 +02:00
[14.0][IMP] rma: add lot/serial in report
This commit is contained in:
@@ -84,19 +84,23 @@
|
|||||||
<table class="table table-condensed">
|
<table class="table table-condensed">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Product</th>
|
<th name="product" invisible="1">Product</th>
|
||||||
<th class="text-right">Quantity</th>
|
<th name="lot" t-if="doc.lot_id">Lot/Serial Number</th>
|
||||||
<th class="text-right">Unit Price</th>
|
<th name="quantity" class="text-right">Quantity</th>
|
||||||
|
<th name="unit_price" class="text-right">Unit Price</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td><span t-field="doc.product_id" /></td>
|
<td name="product"><span t-field="doc.product_id" /></td>
|
||||||
<td class="text-right">
|
<td name="lot" t-if="doc.lot_id"><span
|
||||||
|
t-field="doc.lot_id"
|
||||||
|
/></td>
|
||||||
|
<td name="quantity" class="text-right">
|
||||||
<span t-field="doc.product_qty" />
|
<span t-field="doc.product_qty" />
|
||||||
<span t-field="doc.uom_id" groups="uom.group_uom" />
|
<span t-field="doc.uom_id" groups="uom.group_uom" />
|
||||||
</td>
|
</td>
|
||||||
<td class="text-right">
|
<td name="unit_price" class="text-right">
|
||||||
<span
|
<span
|
||||||
t-field="doc.price_unit"
|
t-field="doc.price_unit"
|
||||||
t-options='{"widget": "monetary", "display_currency": doc.currency_id}'
|
t-options='{"widget": "monetary", "display_currency": doc.currency_id}'
|
||||||
|
|||||||
Reference in New Issue
Block a user