[imp] add internal reference and cr changes
This commit is contained in:
parent
ef77c4ff32
commit
515e271fe7
2 changed files with 25 additions and 8 deletions
|
|
@ -12,8 +12,23 @@ th.partner {
|
|||
text-align: left;
|
||||
}
|
||||
|
||||
th.code {
|
||||
max-width: 60px;
|
||||
}
|
||||
|
||||
td.product {
|
||||
max-width: 160px;
|
||||
font-size: smaller;
|
||||
}
|
||||
|
||||
td.packaging {
|
||||
max-width: 160px;
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
td.code {
|
||||
max-width: 60px;
|
||||
font-size: xx-small;
|
||||
}
|
||||
|
||||
.scissors {
|
||||
|
|
|
|||
|
|
@ -20,21 +20,23 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th class="product align-top"><strong>Product</strong></th>
|
||||
<th class="partner align-top"><strong>Batch Size</strong></th>
|
||||
<th class="code align-top text-truncate"><strong>Internal<br/> Reference</strong></th>
|
||||
<th class="partner align-top text-truncate"><strong>Batch Size</strong></th>
|
||||
<t t-foreach="partner_chunk" t-as="partner">
|
||||
<th class="partner align-top"><div class="text-truncate"><t
|
||||
t-esc="partner.firstname"
|
||||
/><br/>
|
||||
<t t-esc="partner.lastname[0]"/>.</div></th>
|
||||
<th class="partner align-top"><div class="text-truncate">
|
||||
<t t-esc="partner.lastname"/><br/>
|
||||
<t t-esc="partner.firstname"/>
|
||||
</div></th>
|
||||
</t>
|
||||
</tr>
|
||||
</thead>
|
||||
<t t-foreach="products" t-as="product">
|
||||
<tr>
|
||||
<td class="product text-truncate"><strong t-esc="product.name"/></td>
|
||||
<td>
|
||||
<td class="product text-truncate"><span t-esc="product.name"/></td>
|
||||
<td class="code text-truncate"><span t-esc="product.default_code"/></td>
|
||||
<td class="packaging text-truncate">
|
||||
<t t-foreach="product.packaging_ids" t-as="packaging">
|
||||
<t t-esc="packaging.name"/>
|
||||
<span t-esc="packaging.name"/>
|
||||
</t>
|
||||
</td>
|
||||
<t t-foreach="partner_chunk" t-as="partner">
|
||||
|
|
|
|||
Loading…
Reference in a new issue