mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
255 lines
7.1 KiB
Vue
255 lines
7.1 KiB
Vue
<template>
|
|
<div class="item-modal">
|
|
<form action="" @submit.prevent="submitItemData">
|
|
<div class="card-body">
|
|
<div class="form-group row">
|
|
<label class="col-sm-4 col-form-label">
|
|
{{ $t('items.name') }}<span class="required">*</span>
|
|
</label>
|
|
<div class="col-sm-7">
|
|
<base-input
|
|
ref="name"
|
|
:invalid="$v.formData.name.$error"
|
|
v-model="formData.name"
|
|
type="text"
|
|
@input="$v.formData.name.$touch()"
|
|
/>
|
|
|
|
<div v-if="$v.formData.name.$error">
|
|
<span v-if="!$v.formData.name.required" class="text-danger">{{ $tc('validation.required') }}</span>
|
|
<span v-if="!$v.formData.name.minLength" class="text-danger"> {{ $tc('validation.name_min_length', $v.formData.name.$params.minLength.min, { count: $v.formData.name.$params.minLength.min }) }} </span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-4 col-form-label">{{ $t('items.price') }}<span class="required">*</span></label>
|
|
<div class="col-sm-7">
|
|
<div class="base-input">
|
|
<money
|
|
:class="{'invalid' : $v.formData.price.$error}"
|
|
v-model="price"
|
|
v-bind="defaultCurrencyForInput"
|
|
class="input-field"
|
|
/>
|
|
</div>
|
|
<div v-if="$v.formData.price.$error">
|
|
<span v-if="!$v.formData.price.required" class="text-danger">{{ $tc('validation.required') }}</span>
|
|
<span v-if="!$v.formData.price.numeric" class="text-danger">{{ $tc('validation.numbers_only') }}</span>
|
|
<span v-if="!$v.formData.price.maxLength" class="text-danger">{{ $t('validation.price_maxlength') }}</span>
|
|
<span v-if="!$v.formData.price.minValue" class="text-danger">{{ $t('validation.price_minvalue') }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-4 col-form-label">{{ $t('items.unit') }}</label>
|
|
<div class="col-sm-7">
|
|
<base-select
|
|
v-model="formData.unit"
|
|
:options="units"
|
|
:searchable="true"
|
|
:show-labels="false"
|
|
label="name"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group row">
|
|
<label class="col-sm-4 col-form-label">{{ $t('items.description') }}</label>
|
|
<div class="col-sm-7">
|
|
<base-text-area
|
|
v-model="formData.description"
|
|
rows="4"
|
|
cols="50"
|
|
@input="$v.formData.description.$touch()"
|
|
/>
|
|
<div v-if="$v.formData.description.$error">
|
|
<span v-if="!$v.formData.description.maxLength" class="text-danger">{{ $t('validation.description_maxlength') }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-footer">
|
|
<base-button
|
|
:outline="true"
|
|
class="mr-3"
|
|
color="theme"
|
|
type="button"
|
|
@click="closeItemModal"
|
|
>
|
|
{{ $t('general.cancel') }}
|
|
</base-button>
|
|
<base-button
|
|
v-if="isEdit"
|
|
:loading="isLoading"
|
|
color="theme"
|
|
@click="submitItemData"
|
|
>
|
|
{{ $t('general.update') }}
|
|
</base-button>
|
|
<base-button
|
|
v-else
|
|
:loading="isLoading"
|
|
icon="save"
|
|
color="theme"
|
|
type="submit"
|
|
>
|
|
{{ $t('general.save') }}
|
|
</base-button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapActions, mapGetters } from 'vuex'
|
|
import { validationMixin } from 'vuelidate'
|
|
const { required, minLength, numeric, maxLength, minValue } = require('vuelidate/lib/validators')
|
|
export default {
|
|
mixins: [validationMixin],
|
|
data () {
|
|
return {
|
|
isEdit: false,
|
|
isLoading: false,
|
|
tempData: null,
|
|
units: [
|
|
{ name: 'box', value: 'box' },
|
|
{ name: 'cm', value: 'cm' },
|
|
{ name: 'dz', value: 'dz' },
|
|
{ name: 'ft', value: 'ft' },
|
|
{ name: 'g', value: 'g' },
|
|
{ name: 'in', value: 'in' },
|
|
{ name: 'kg', value: 'kg' },
|
|
{ name: 'km', value: 'km' },
|
|
{ name: 'lb', value: 'lb' },
|
|
{ name: 'mg', value: 'mg' }
|
|
],
|
|
formData: {
|
|
name: null,
|
|
price: null,
|
|
description: null,
|
|
unit: null
|
|
}
|
|
}
|
|
},
|
|
validations: {
|
|
formData: {
|
|
name: {
|
|
required,
|
|
minLength: minLength(3)
|
|
},
|
|
price: {
|
|
required,
|
|
numeric,
|
|
minValue: minValue(0.1),
|
|
maxLength: maxLength(10)
|
|
},
|
|
description: {
|
|
maxLength: maxLength(255)
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
...mapGetters('currency', [
|
|
'defaultCurrencyForInput'
|
|
]),
|
|
price: {
|
|
get: function () {
|
|
return this.formData.price / 100
|
|
},
|
|
set: function (newValue) {
|
|
this.formData.price = newValue * 100
|
|
}
|
|
},
|
|
...mapGetters('modal', [
|
|
'modalDataID'
|
|
]),
|
|
...mapGetters('item', [
|
|
'getItemById'
|
|
])
|
|
},
|
|
watch: {
|
|
modalDataID () {
|
|
this.isEdit = true
|
|
this.fetchEditData()
|
|
}
|
|
},
|
|
created () {
|
|
if (this.modalDataID) {
|
|
this.isEdit = true
|
|
this.fetchEditData()
|
|
}
|
|
},
|
|
mounted () {
|
|
this.$refs.name.focus = true
|
|
},
|
|
methods: {
|
|
...mapActions('modal', [
|
|
'closeModal',
|
|
'resetModalData'
|
|
]),
|
|
...mapActions('item', [
|
|
'addItem',
|
|
'updateItem'
|
|
]),
|
|
...mapActions('invoice', [
|
|
'setItem'
|
|
]),
|
|
resetFormData () {
|
|
this.formData = {
|
|
name: null,
|
|
price: null,
|
|
description: null,
|
|
unit: null,
|
|
id: null
|
|
}
|
|
|
|
this.$v.$reset()
|
|
},
|
|
fetchEditData () {
|
|
this.tempData = this.getItemById(this.modalDataID)
|
|
if (this.tempData) {
|
|
this.formData.name = this.tempData.name
|
|
this.formData.price = this.tempData.price
|
|
this.formData.description = this.tempData.description
|
|
this.formData.unit = this.tempData.unit
|
|
this.formData.id = this.tempData.id
|
|
}
|
|
},
|
|
async submitItemData () {
|
|
this.$v.formData.$touch()
|
|
|
|
if (this.$v.$invalid) {
|
|
return true
|
|
}
|
|
if (this.formData.unit) {
|
|
this.formData.unit = this.formData.unit.name
|
|
}
|
|
this.isLoading = true
|
|
let response
|
|
if (this.isEdit) {
|
|
response = await this.updateItem(this.formData)
|
|
} else {
|
|
response = await this.addItem(this.formData)
|
|
}
|
|
|
|
if (response.data) {
|
|
window.toastr['success'](this.$tc('items.created_message'))
|
|
this.setItem(response.data.item)
|
|
window.hub.$emit('newItem', response.data.item)
|
|
this.isLoading = false
|
|
this.resetModalData()
|
|
this.resetFormData()
|
|
this.closeModal()
|
|
return true
|
|
}
|
|
window.toastr['error'](response.data.error)
|
|
},
|
|
closeItemModal () {
|
|
this.resetFormData()
|
|
this.closeModal()
|
|
this.resetModalData()
|
|
}
|
|
}
|
|
}
|
|
</script>
|