grouping & packaging according to grouping mode
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
5614a39f91
commit
58fc25d91f
|
@ -47,7 +47,6 @@
|
||||||
<vn-th field="comissionValue" expand>Comission value</vn-th>
|
<vn-th field="comissionValue" expand>Comission value</vn-th>
|
||||||
<vn-th field="packageValue" expand>Package value</vn-th>
|
<vn-th field="packageValue" expand>Package value</vn-th>
|
||||||
<vn-th field="isIgnored">Is ignored</vn-th>
|
<vn-th field="isIgnored">Is ignored</vn-th>
|
||||||
<vn-th field="groupingMode" expand>Grouping mode</vn-th>
|
|
||||||
<vn-th field="price2">price2</vn-th>
|
<vn-th field="price2">price2</vn-th>
|
||||||
<vn-th field="price3">price3</vn-th>
|
<vn-th field="price3">price3</vn-th>
|
||||||
<vn-th field="minPrice">Min price</vn-th>
|
<vn-th field="minPrice">Min price</vn-th>
|
||||||
|
@ -79,8 +78,16 @@
|
||||||
{{::buy.itemFk | zeroFill:6}}
|
{{::buy.itemFk | zeroFill:6}}
|
||||||
</span>
|
</span>
|
||||||
</vn-td>
|
</vn-td>
|
||||||
<vn-td number>{{::buy.grouping}}</vn-td>
|
<vn-td number>
|
||||||
<vn-td number>{{::buy.packing}}</vn-td>
|
<vn-chip translate-attr="{title: 'Grouping'}" ng-class="{'message': buy.groupingMode == 1}">
|
||||||
|
<span translate>{{::buy.grouping | dashIfEmpty}}</span>
|
||||||
|
</vn-chip>
|
||||||
|
</vn-td>
|
||||||
|
<vn-td number>
|
||||||
|
<vn-chip translate-attr="{title: 'Packing'}" ng-class="{'message': buy.groupingMode == 2}">
|
||||||
|
<span translate>{{::buy.packing | dashIfEmpty}}</span>
|
||||||
|
</vn-chip>
|
||||||
|
</vn-td>
|
||||||
<vn-td number>{{::buy.size}}</vn-td>
|
<vn-td number>{{::buy.size}}</vn-td>
|
||||||
<vn-td shrink title="{{::buy.type}}">
|
<vn-td shrink title="{{::buy.type}}">
|
||||||
{{::buy.type}}
|
{{::buy.type}}
|
||||||
|
@ -110,7 +117,6 @@
|
||||||
<vn-td number>{{::buy.comissionValue | currency: 'EUR':2}}</vn-td>
|
<vn-td number>{{::buy.comissionValue | currency: 'EUR':2}}</vn-td>
|
||||||
<vn-td number>{{::buy.packageValue | currency: 'EUR':2}}</vn-td>
|
<vn-td number>{{::buy.packageValue | currency: 'EUR':2}}</vn-td>
|
||||||
<vn-td shrink>{{::buy.isIgnored}}</vn-td>
|
<vn-td shrink>{{::buy.isIgnored}}</vn-td>
|
||||||
<vn-td shrink>{{::buy.groupingMode}}</vn-td>
|
|
||||||
<vn-td number>{{::buy.price2 | currency: 'EUR':2}}</vn-td>
|
<vn-td number>{{::buy.price2 | currency: 'EUR':2}}</vn-td>
|
||||||
<vn-td number>{{::buy.price3 | currency: 'EUR':2}}</vn-td>
|
<vn-td number>{{::buy.price3 | currency: 'EUR':2}}</vn-td>
|
||||||
<vn-td number>{{::buy.minPrice | currency: 'EUR':2}}</vn-td>
|
<vn-td number>{{::buy.minPrice | currency: 'EUR':2}}</vn-td>
|
||||||
|
|
|
@ -20,7 +20,6 @@ export default class Controller extends Section {
|
||||||
{field: 'freightValue', displayName: 'freightValue'},
|
{field: 'freightValue', displayName: 'freightValue'},
|
||||||
{field: 'packing', displayName: 'packing'},
|
{field: 'packing', displayName: 'packing'},
|
||||||
{field: 'grouping', displayName: 'grouping'},
|
{field: 'grouping', displayName: 'grouping'},
|
||||||
{field: 'groupingMode', displayName: 'groupingMode'},
|
|
||||||
{field: 'comissionValue', displayName: 'comissionValue'},
|
{field: 'comissionValue', displayName: 'comissionValue'},
|
||||||
{field: 'packageValue', displayName: 'packageValue'},
|
{field: 'packageValue', displayName: 'packageValue'},
|
||||||
{field: 'price2', displayName: 'price2'},
|
{field: 'price2', displayName: 'price2'},
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
Edit buy(s): Editar compra(s)
|
Edit buy(s): Editar compra(s)
|
||||||
Buying value: Valor compra
|
Buying value: Precio
|
||||||
Freight value: Valor envío
|
Freight value: Porte
|
||||||
Comission value: Valor comisión
|
Commission value: Comisión
|
||||||
Package value: Valor paquete
|
Package value: Embalaje
|
||||||
Is ignored: Ignorado
|
Is ignored: Ignorado
|
||||||
Grouping mode: Agrupación
|
price 2: Paquete
|
||||||
price2: Precio 2
|
price 3: Caja
|
||||||
price3: Precio 3
|
|
||||||
Min price: Precio min
|
Min price: Precio min
|
||||||
|
Ekt: Ekt
|
||||||
Weight: Peso
|
Weight: Peso
|
||||||
Field to edit: Campo a editar
|
|
Loading…
Reference in New Issue