[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;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
th.code {
|
||||||
|
max-width: 60px;
|
||||||
|
}
|
||||||
|
|
||||||
td.product {
|
td.product {
|
||||||
max-width: 160px;
|
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 {
|
.scissors {
|
||||||
|
|
|
||||||
|
|
@ -20,21 +20,23 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="product align-top"><strong>Product</strong></th>
|
<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">
|
<t t-foreach="partner_chunk" t-as="partner">
|
||||||
<th class="partner align-top"><div class="text-truncate"><t
|
<th class="partner align-top"><div class="text-truncate">
|
||||||
t-esc="partner.firstname"
|
<t t-esc="partner.lastname"/><br/>
|
||||||
/><br/>
|
<t t-esc="partner.firstname"/>
|
||||||
<t t-esc="partner.lastname[0]"/>.</div></th>
|
</div></th>
|
||||||
</t>
|
</t>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<t t-foreach="products" t-as="product">
|
<t t-foreach="products" t-as="product">
|
||||||
<tr>
|
<tr>
|
||||||
<td class="product text-truncate"><strong t-esc="product.name"/></td>
|
<td class="product text-truncate"><span t-esc="product.name"/></td>
|
||||||
<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-foreach="product.packaging_ids" t-as="packaging">
|
||||||
<t t-esc="packaging.name"/>
|
<span t-esc="packaging.name"/>
|
||||||
</t>
|
</t>
|
||||||
</td>
|
</td>
|
||||||
<t t-foreach="partner_chunk" t-as="partner">
|
<t t-foreach="partner_chunk" t-as="partner">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue