0
0
Fork 0

Fix unpaid bug

This commit is contained in:
William Buezas 2024-03-13 11:14:11 -03:00
parent 0f85bd25a2
commit fe737324ea
1 changed files with 6 additions and 5 deletions

View File

@ -3,16 +3,17 @@ import { computed, onBeforeMount, ref, watch } from 'vue';
import { useI18n } from 'vue-i18n';
import { useRoute } from 'vue-router';
import axios from 'axios';
import useNotify from 'src/composables/useNotify';
import VnInputDate from 'components/common/VnInputDate.vue';
import VnInput from 'src/components/common/VnInput.vue';
import axios from 'axios';
import useNotify from 'src/composables/useNotify';
import { useStateStore } from 'stores/useStateStore';
const { t } = useI18n();
const route = useRoute();
const { notify } = useNotify();
const stateStore = useStateStore();
const initialDated = '2001-01-01T11:00:00.000Z';
const unpaidClient = ref(false);
@ -98,7 +99,7 @@ const onSubmit = async () => {
</script>
<template>
<Teleport to="#st-actions">
<Teleport v-if="stateStore?.isSubToolbarShown()" to="#st-actions">
<QBtnGroup push class="q-gutter-x-sm">
<QBtn
:disabled="!hasChanged"