fix record payment from view invoice

This commit is contained in:
yogesh_gohil
2019-11-23 19:30:49 +05:30
parent 095f3c0b31
commit dbc5950294

View File

@ -183,7 +183,8 @@ export default {
customerList: [],
invoiceList: [],
isLoading: false,
maxPayableAmount: Number.MAX_SAFE_INTEGER
maxPayableAmount: Number.MAX_SAFE_INTEGER,
isSettingInitialData: true
}
},
validations () {
@ -247,7 +248,12 @@ export default {
customer (newValue) {
this.formData.user_id = newValue.id
if (!this.isEdit) {
this.invoice = null
if (this.isSettingInitialData) {
this.isSettingInitialData = false
} else {
this.invoice = null
this.formData.invoice_id = null
}
this.formData.amount = 0
this.invoiceList = []
this.fetchCustomerInvoices(newValue.id)
@ -263,9 +269,6 @@ export default {
}
},
async mounted () {
// if (!this.$route.params.id) {
// this.$refs.baseSelect.$refs.search.focus()
// }
this.$nextTick(() => {
this.loadData()
if (this.$route.params.id && !this.isEdit) {