editing med feeds works, working on adding
This commit is contained in:
parent
64fcfff373
commit
7b61ccf99b
2 changed files with 5 additions and 4 deletions
|
@ -133,13 +133,13 @@ export default {
|
||||||
this.errors = []
|
this.errors = []
|
||||||
this.saving = true
|
this.saving = true
|
||||||
let url = this.$api_url + "/customers/medicated-feeds/" + this.mf.id + "/save"
|
let url = this.$api_url + "/customers/medicated-feeds/" + this.mf.id + "/save"
|
||||||
if (this.contract.isNew) {
|
if (this.mf.isNew) {
|
||||||
url = this.$api_url + "/customers/medicated-feeds/add"
|
url = this.$api_url + "/customers/medicated-feeds/add"
|
||||||
}
|
}
|
||||||
console.log("Saving Med Feed...")
|
console.log("Saving Med Feed...")
|
||||||
axios.put(url,{
|
axios.post(url,{
|
||||||
medfeed: medfeed
|
medfeed: medfeed
|
||||||
})
|
})
|
||||||
.then(resp => {
|
.then(resp => {
|
||||||
let stat = resp.data
|
let stat = resp.data
|
||||||
if (stat.status == true ) {
|
if (stat.status == true ) {
|
||||||
|
|
|
@ -117,7 +117,8 @@ export default {
|
||||||
}
|
}
|
||||||
let clist = this.list.filter(q =>
|
let clist = this.list.filter(q =>
|
||||||
q.customer.name.toLowerCase().includes(query) ||
|
q.customer.name.toLowerCase().includes(query) ||
|
||||||
q.customer.acc_no.includes(query)
|
q.customer.acc_no.includes(query) ||
|
||||||
|
q.id == query
|
||||||
)
|
)
|
||||||
return clist
|
return clist
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue