refs #6199 Requested changes
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Guillermo Bonet 2023-10-11 07:39:41 +02:00
parent d2ce920f13
commit 2b41bf7eb1
4 changed files with 17 additions and 9 deletions

View File

@ -15,5 +15,5 @@ Generic: Genérico
This item does need a photo: Este artículo necesita una foto This item does need a photo: Este artículo necesita una foto
Do photo: Hacer foto Do photo: Hacer foto
Recycled Plastic: Plástico reciclado Recycled Plastic: Plástico reciclado
Non recycled plastic: Plástico no Non recycled plastic: Plástico no reciclado
Minimum sales quantity: Cantidad mínima de venta Minimum sales quantity: Cantidad mínima de venta

View File

@ -115,7 +115,7 @@ module.exports = Self => {
i.stars, i.stars,
tci.price, tci.price,
tci.available, tci.available,
w.lastName lastName, w.lastName,
w.firstName, w.firstName,
tci.priceKg, tci.priceKg,
ink.hex, ink.hex,

View File

@ -37,16 +37,14 @@
value="{{::item.value7}}"> value="{{::item.value7}}">
</vn-label-value> </vn-label-value>
</div> </div>
<div class="container text-right text-caption" ng-if="::item.minQuantity" style=" <div
display: flex; class="container text-right text-caption"
align-items: center; ng-if="::item.minQuantity"
justify-content: flex-end; ng-class="'text-caption-reduced'">
color: #fb5252;
">
<vn-icon <vn-icon
icon="production_quantity_limits" icon="production_quantity_limits"
translate-attr="{title: 'Minimal quantity'}" translate-attr="{title: 'Minimal quantity'}"
style="font-size: 18px; margin-right: 3px;"> ng-class="'min-quantity-icon'">
</vn-icon> </vn-icon>
<span>{{::item.minQuantity}}</span> <span>{{::item.minQuantity}}</span>
</div> </div>

View File

@ -44,4 +44,14 @@ vn-order-catalog {
height: 30px; height: 30px;
position: relative; position: relative;
} }
.text-caption-reduced {
display: flex;
align-items: center;
justify-content: flex-end;
color: tomato;
}
.min-quantity-icon {
font-size: 18px;
margin-right: 3px;
}
} }