mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-08-12 22:29:59 +08:00
Add translation for Product Info
This commit is contained in:
parent
4a272296a9
commit
053a250b21
@ -29,7 +29,7 @@
|
|||||||
>
|
>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="product.value"
|
prop="product.value"
|
||||||
label="Codigo"
|
:label="$t('form.productInfo.code')"
|
||||||
/>
|
/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="Producto"
|
label="Producto"
|
||||||
@ -38,11 +38,11 @@
|
|||||||
<el-popover trigger="click" placement="right" width="300">
|
<el-popover trigger="click" placement="right" width="300">
|
||||||
<b><i> {{ scope.row.product.name }} </i> </b>
|
<b><i> {{ scope.row.product.name }} </i> </b>
|
||||||
<el-divider />
|
<el-divider />
|
||||||
<p><b style="float: left"> Codigo :</b><spam style="float: right">{{ scope.row.product.value }}</spam></p><br>
|
<p><b style="float: left">{{ $t('form.productInfo.code') }}</b><spam style="float: right">{{ scope.row.product.value }}</spam></p><br>
|
||||||
<p><b style="float: left">Precio :</b><spam style="float: right"> {{ formatPrice(scope.row.priceStandard, scope.row.currency.iSOCode) }} </spam></p><br>
|
<p><b style="float: left">{{ $t('form.productInfo.price') }}</b><spam style="float: right"> {{ formatPrice(scope.row.priceStandard, scope.row.currency.iSOCode) }} </spam></p><br>
|
||||||
<p><b style="float: left">Tax :</b><spam style="float: right"> {{ formatPrice(getTaxAmount(scope.row.priceStandard, scope.row.taxRate.rate), scope.row.currency.iSOCode) }} </spam></p><br>
|
<p><b style="float: left">{{ $t('form.productInfo.taxAmount') }}</b><spam style="float: right"> {{ formatPrice(getTaxAmount(scope.row.priceStandard, scope.row.taxRate.rate), scope.row.currency.iSOCode) }} </spam></p><br>
|
||||||
<p><b style="float: left">Gran Total :</b><spam style="float: right"> {{ formatPrice(getTaxAmount(scope.row.priceStandard, scope.row.taxRate.rate) + scope.row.priceStandard, scope.row.currency.iSOCode) }} </spam></p><br>
|
<p><b style="float: left">{{ $t('form.productInfo.grandTotal') }}</b><spam style="float: right"> {{ formatPrice(getTaxAmount(scope.row.priceStandard, scope.row.taxRate.rate) + scope.row.priceStandard, scope.row.currency.iSOCode) }} </spam></p><br>
|
||||||
<p><b style="float: left">UPC :</b><spam style="float: right"> {{ scope.row.product.upc }} </spam></p>
|
<p><b style="float: left">{{ $t('form.productInfo.upc') }}</b><spam style="float: right"> {{ scope.row.product.upc }} </spam></p>
|
||||||
<div slot="reference" class="name-wrapper">
|
<div slot="reference" class="name-wrapper">
|
||||||
{{ scope.row.product.name }}
|
{{ scope.row.product.name }}
|
||||||
</div>
|
</div>
|
||||||
@ -50,7 +50,7 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="Tax"
|
:label="$t('form.productInfo.taxAmount')"
|
||||||
align="right"
|
align="right"
|
||||||
width="150"
|
width="150"
|
||||||
>
|
>
|
||||||
@ -59,7 +59,7 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="Precio"
|
:label="$t('form.productInfo.price')"
|
||||||
align="right"
|
align="right"
|
||||||
width="200"
|
width="200"
|
||||||
>
|
>
|
||||||
@ -68,7 +68,7 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="Gran Total"
|
:label="$t('form.productInfo.grandTotal')"
|
||||||
align="right"
|
align="right"
|
||||||
width="300"
|
width="300"
|
||||||
>
|
>
|
||||||
|
@ -363,15 +363,6 @@ export default {
|
|||||||
editQuantities: 'Edit Quantities',
|
editQuantities: 'Edit Quantities',
|
||||||
remove: 'Remove'
|
remove: 'Remove'
|
||||||
},
|
},
|
||||||
product: {
|
|
||||||
productInformation: 'Product information',
|
|
||||||
code: 'Code',
|
|
||||||
name: 'Name',
|
|
||||||
description: 'Description',
|
|
||||||
price: 'Price',
|
|
||||||
taxRate: 'Tax Rate',
|
|
||||||
quantityAvailable: 'Quantity Avalible'
|
|
||||||
},
|
|
||||||
order: {
|
order: {
|
||||||
order: 'Order',
|
order: 'Order',
|
||||||
seller: 'Seller',
|
seller: 'Seller',
|
||||||
@ -400,6 +391,17 @@ export default {
|
|||||||
priceChecking: {
|
priceChecking: {
|
||||||
messageError: 'This Product Not Available',
|
messageError: 'This Product Not Available',
|
||||||
basePrice: 'Base price'
|
basePrice: 'Base price'
|
||||||
|
},
|
||||||
|
productInfo: {
|
||||||
|
productInformation: 'Product information',
|
||||||
|
code: 'Code',
|
||||||
|
name: 'Name',
|
||||||
|
description: 'Description',
|
||||||
|
price: 'Price',
|
||||||
|
taxAmount: 'Tax Amount',
|
||||||
|
grandTotal: 'Grand Total',
|
||||||
|
quantityAvailable: 'Quantity Avalible',
|
||||||
|
upc: 'UPC / EAN'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -338,15 +338,6 @@ export default {
|
|||||||
editQuantities: 'Editar Cantidades',
|
editQuantities: 'Editar Cantidades',
|
||||||
remove: 'Eliminar'
|
remove: 'Eliminar'
|
||||||
},
|
},
|
||||||
product: {
|
|
||||||
productInformation: 'Información de Producto',
|
|
||||||
code: 'Código',
|
|
||||||
name: 'Nombre',
|
|
||||||
description: 'Descripción',
|
|
||||||
price: 'Precio',
|
|
||||||
taxRate: 'Tasa de Impuesto',
|
|
||||||
quantityAvailable: 'Cantidad Disponible'
|
|
||||||
},
|
|
||||||
order: {
|
order: {
|
||||||
order: 'Orden',
|
order: 'Orden',
|
||||||
seller: 'Vendedor',
|
seller: 'Vendedor',
|
||||||
@ -375,6 +366,17 @@ export default {
|
|||||||
priceChecking: {
|
priceChecking: {
|
||||||
messageError: 'Este Producto No Disponible',
|
messageError: 'Este Producto No Disponible',
|
||||||
basePrice: 'Precio Base'
|
basePrice: 'Precio Base'
|
||||||
|
},
|
||||||
|
productInfo: {
|
||||||
|
productInformation: 'Product information',
|
||||||
|
code: 'Código',
|
||||||
|
name: 'Nombre',
|
||||||
|
description: 'Descripción',
|
||||||
|
price: 'Precio',
|
||||||
|
taxAmount: 'Monto de Impuesto',
|
||||||
|
grandTotal: 'Total General',
|
||||||
|
quantityAvailable: 'Cantidad Disponible',
|
||||||
|
upc: 'Código de Barras'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user