1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-12 22:29:59 +08:00
2020-12-01 19:36:57 -04:00

313 lines
8.6 KiB
Vue

<template>
<div
v-if="isLoaded"
style="height: 100% !important;"
@click="focusProductValue"
>
<el-container style="height: 100% !important;">
<img
fit="contain"
:src="defaultImageLogo"
class="background-price-checking"
>
<el-main>
<el-form
key="form-loaded"
class="inquiry-form"
label-position="top"
label-width="10px"
@submit.native.prevent="notSubmitForm"
>
<field
v-for="(field) in fieldsList"
ref="ProductValue"
:key="field.columnName"
:metadata-field="field"
:v-model="field.value"
class="product-value"
/>
</el-form>
<div class="inquiry-product">
<el-row v-if="!isEmptyValue(productPrice)" :gutter="20">
<el-col style="padding-left: 0px; padding-right: 0%;">
<div class="product-description">
{{ productPrice.productName }} {{ productPrice.productDescription }}
</div>
<br><br><br>
<div class="product-price-base">
Precio Base
<span class="amount">
{{ formatPrice(productPrice.priceBase, productPrice.currency.iSOCode) }}
</span>
</div>
<br><br><br>
<div class="product-tax">
{{ productPrice.taxName }}
<span class="amount">
{{ formatPrice(productPrice.taxAmt, productPrice.currency.iSOCode) }}
</span>
</div>
<br><br><br>
<div class="product-price amount">
{{ formatPrice(productPrice.grandTotal, productPrice.currency.iSOCode) }}
</div>
</el-col>
</el-row>
</div>
</el-main>
</el-container>
</div>
<div
v-else
key="form-loading"
v-loading="!isLoaded"
:element-loading-text="$t('notifications.loading')"
element-loading-spinner="el-icon-loading"
element-loading-background="rgba(255, 255, 255, 0.8)"
class="loading-panel"
/>
</template>
<script>
import formMixin from '@/components/ADempiere/Form/formMixin.js'
import fieldsList from './fieldsListBarCode.js'
// import { requestGetProductPrice } from '@/api/ADempiere/form/price-checking.js'
import { formatPercent, formatPrice } from '@/utils/ADempiere/valueFormat.js'
import { buildImageFromArrayBuffer } from '@/utils/ADempiere/resource.js'
import { requestImage } from '@/api/ADempiere/persistence.js'
export default {
name: 'BarcodeReader',
mixins: [
formMixin
],
props: {
metadata: {
type: Object,
default: () => {
return {
uuid: 'Bar-code-Reader',
containerUuid: 'Bar-code-Reader',
fieldsList
}
}
}
},
data() {
return {
fieldsList,
productPrice: {},
organizationBackground: '',
currentImageOfProduct: '',
search: 'sad',
unsubscribe: () => {}
}
},
computed: {
organizationImagePath() {
return this.$store.getters.corporateBrandingImage
},
defaultImage() {
return require('@/image/ADempiere/priceChecking/no-image.jpg')
},
defaultImageLogo() {
return require('@/image/ADempiere/priceChecking/todoagro.png')
},
backgroundForm() {
if (this.isEmptyValue(this.currentImageOfProduct)) {
return this.organizationBackground
}
return this.currentImageOfProduct
}
},
created() {
this.unsubscribe = this.subscribeChanges()
},
mounted() {
this.getImage()
},
beforeDestroy() {
this.unsubscribe()
},
methods: {
async getImage(imageName = '') {
let isSetOrg = false
if (this.isEmptyValue(imageName)) {
if (!this.isEmptyValue(this.organizationBackground)) {
return this.organizationBackground
}
isSetOrg = true
imageName = this.organizationImagePath
}
// the name of the image plus the height and width of the container is sent
const imageBuffer = await requestImage({
file: imageName,
width: 750,
height: 380
}).then(responseImage => {
const arrayBufferAsImage = buildImageFromArrayBuffer({
arrayBuffer: responseImage
})
if (isSetOrg) {
this.organizationBackground = arrayBufferAsImage
return arrayBufferAsImage
}
this.currentImageOfProduct = arrayBufferAsImage
return arrayBufferAsImage
})
return imageBuffer
},
focusProductValue() {
this.$refs.ProductValue[0].$children[0].$children[0].$children[1].$children[0].focus()
},
formatPercent,
formatPrice,
subscribeChanges() {
return this.$store.subscribe((mutation, state) => {
// if ((mutation.type === 'updateValueOfField' || mutation.type === 'addActionKeyPerformed') && mutation.payload.columnName === 'ProductValue') {
// // cleans all values except column name 'ProductValue'
// this.search = mutation.payload.value
// if (!this.isEmptyValue(this.search) && this.search.length >= 4) {
// requestGetProductPrice({
// searchValue: mutation.payload.value
// })
// .then(productPrice => {
// console.log(productPrice)
// const { product, taxRate, priceStandard: priceBase } = productPrice
// const { rate } = taxRate
// const { imageURL: image } = product
// this.productPrice = {
// productName: product.name,
// productDescription: product.description,
// priceBase,
// priceStandard: productPrice.priceStandard,
// priceList: productPrice.priceList,
// priceLimit: productPrice.priceLimit,
// taxRate: rate,
// image,
// taxName: taxRate.name,
// taxIndicator: taxRate.taxIndicator,
// taxAmt: this.getTaxAmount(priceBase, rate),
// grandTotal: this.getGrandTotal(priceBase, rate),
// currency: productPrice.currency
// }
// })
// .catch(error => {
// this.$message({
// type: 'info',
// message: error.message,
// showClose: true
// })
// this.productPrice = {}
// })
// .finally(() => {
// this.$store.commit('updateValueOfField', {
// containerUuid: this.containerUuid,
// columnName: 'ProductValue',
// value: ''
// })
// this.search = ''
// this.currentImageOfProduct = ''
// if (this.isEmptyValue(this.productPrice.image)) {
// this.getImage(this.productPrice.image)
// }
// })
// }
// }
})
},
getTaxAmount(basePrice, taxRate) {
if (this.isEmptyValue(basePrice) || this.isEmptyValue(taxRate)) {
return 0
}
return (basePrice * taxRate) / 100
},
getGrandTotal(basePrice, taxRate) {
if (this.isEmptyValue(basePrice)) {
return 0
}
return basePrice + this.getTaxAmount(basePrice, taxRate)
}
}
}
</script>
<style lang="scss" scoped>
.background-price-checking {
width: 100%;
height: 100%;
float: inherit;
// color: white;
// opacity: 0.5;
}
.product-description {
color: #32363a;
font-size: 30px;
float: right;
padding-bottom: 0px;
}
.product-price-base, .product-tax {
font-size: 30px;
float: right;
}
.product-price {
padding-top: 15px;
font-size: 50px;
float: right;
}
.inquiry-form {
position: absolute;
right: 5%;
width: 100%;
top: 10%;
z-index: 0;
}
.inquiry-product {
position: absolute;
right: 20%;
width: 100%;
top: 33%;
.amount {
color: black;
font-weight: bold;
}
}
</style>
<style lang="scss">
.price-inquiry {
input {
color: #606266 !important;
font-size: 100% !important;
}
}
.product-value {
float: right;
padding-right: 0% !important;
z-index: 0;
.el-form-item__label {
font-size: 15px !important;
color: #000 !important;
}
}
.el-aside {
background: white;
width: 60%;
overflow: hidden;
}
.el-form-item {
margin-bottom: 10px !important;
margin-left: 10px;
margin-right: 0px !important;
}
</style>