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 = () => {
|
||||
debugger;
|
||||
quasar.dialog({
|
||||
component: SupplierNewPayment,
|
||||
componentProps: {
|
||||
|
|
|
@ -15,6 +15,7 @@ import VnInputDate from 'components/common/VnInputDate.vue';
|
|||
import VnInputNumber from 'components/common/VnInputNumber.vue';
|
||||
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||
import VnInput from 'src/components/common/VnInput.vue';
|
||||
import VnAccountNumber from 'src/components/common/VnAccountNumber.vue';
|
||||
|
||||
const { t } = useI18n();
|
||||
const route = useRoute();
|
||||
|
@ -180,12 +181,7 @@ async function getAmountPaid() {
|
|||
auto-load
|
||||
url="Companies"
|
||||
/>
|
||||
<FetchData
|
||||
:filter="filterBanks"
|
||||
@on-fetch="(data) => (bankOptions = data)"
|
||||
auto-load
|
||||
url="Accountings"
|
||||
/>
|
||||
|
||||
<FetchData
|
||||
:filter="filterRecordFindOne"
|
||||
url="Suppliers/findOne"
|
||||
|
@ -268,9 +264,10 @@ async function getAmountPaid() {
|
|||
{{ t('Compensation') }}
|
||||
</div>
|
||||
<VnRow>
|
||||
<VnInputNumber
|
||||
<VnAccountNumber
|
||||
:label="t('Compensation account')"
|
||||
clearable
|
||||
required
|
||||
v-model="data.compensationAccount"
|
||||
@blur="accountShortToStandard"
|
||||
/>
|
||||
|
|
Loading…
Reference in New Issue