forked from verdnatura/salix-front
refs #6809 supplier UpperCase
This commit is contained in:
parent
a5064e2e2f
commit
7e8f81323a
|
@ -10,6 +10,7 @@ import VnInput from 'src/components/common/VnInput.vue';
|
||||||
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
||||||
|
|
||||||
import { useStateStore } from 'stores/useStateStore';
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
|
import Supplier from 'src/router/modules/Supplier';
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
@ -49,6 +50,9 @@ const redirectToSupplierFiscalData = (_, responseData) => {
|
||||||
<VnInput
|
<VnInput
|
||||||
v-model="data.name"
|
v-model="data.name"
|
||||||
:label="t('supplier.create.supplierName')"
|
:label="t('supplier.create.supplierName')"
|
||||||
|
@keyup="
|
||||||
|
newSupplierForm.name = newSupplierForm.name.toUpperCase()
|
||||||
|
"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
|
|
Loading…
Reference in New Issue