feat: refs #7134 use VnAccountNumber
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
7b8093c048
commit
218f45c289
|
@ -201,7 +201,6 @@ async function onFetch(data) {
|
||||||
}
|
}
|
||||||
|
|
||||||
const showNewPaymentDialog = () => {
|
const showNewPaymentDialog = () => {
|
||||||
debugger;
|
|
||||||
quasar.dialog({
|
quasar.dialog({
|
||||||
component: SupplierNewPayment,
|
component: SupplierNewPayment,
|
||||||
componentProps: {
|
componentProps: {
|
||||||
|
|
|
@ -15,6 +15,7 @@ import VnInputDate from 'components/common/VnInputDate.vue';
|
||||||
import VnInputNumber from 'components/common/VnInputNumber.vue';
|
import VnInputNumber from 'components/common/VnInputNumber.vue';
|
||||||
import VnSelect from 'src/components/common/VnSelect.vue';
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
import VnAccountNumber from 'src/components/common/VnAccountNumber.vue';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
@ -180,12 +181,7 @@ async function getAmountPaid() {
|
||||||
auto-load
|
auto-load
|
||||||
url="Companies"
|
url="Companies"
|
||||||
/>
|
/>
|
||||||
<FetchData
|
|
||||||
:filter="filterBanks"
|
|
||||||
@on-fetch="(data) => (bankOptions = data)"
|
|
||||||
auto-load
|
|
||||||
url="Accountings"
|
|
||||||
/>
|
|
||||||
<FetchData
|
<FetchData
|
||||||
:filter="filterRecordFindOne"
|
:filter="filterRecordFindOne"
|
||||||
url="Suppliers/findOne"
|
url="Suppliers/findOne"
|
||||||
|
@ -268,9 +264,10 @@ async function getAmountPaid() {
|
||||||
{{ t('Compensation') }}
|
{{ t('Compensation') }}
|
||||||
</div>
|
</div>
|
||||||
<VnRow>
|
<VnRow>
|
||||||
<VnInputNumber
|
<VnAccountNumber
|
||||||
:label="t('Compensation account')"
|
:label="t('Compensation account')"
|
||||||
clearable
|
clearable
|
||||||
|
required
|
||||||
v-model="data.compensationAccount"
|
v-model="data.compensationAccount"
|
||||||
@blur="accountShortToStandard"
|
@blur="accountShortToStandard"
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue