aboutsummaryrefslogtreecommitdiff
path: root/src/classes/client.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/classes/client.js')
-rw-r--r--src/classes/client.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/classes/client.js b/src/classes/client.js
index 524d0ce..cae528e 100644
--- a/src/classes/client.js
+++ b/src/classes/client.js
@@ -43,24 +43,24 @@ export class Client {
this.Contact = new Contact();
this.GSTIN = "";
this.BillingAddress = new Address();
- this.ShippingAddress = [];
+ this.ShippingAddresses = [];
}
}
export const saveClient = (item, ok, fail) => {
axios.post("/client/new", item)
- .then(res => { console.log(res);ok()})
- .catch((err) => fail())
+ .then(res => ok(res))
+ .catch(err => fail(err))
}
export const deleteClient = (id, ok, fail) => {
axios.delete(`/client/${id}`)
- .then(res => ok())
- .catch((err) => fail())
+ .then(res => ok(res))
+ .catch(err => fail(err))
}
export const getAllClients = (ok, fail) => {
axios.get("/client/all")
- .then(res => ok(res.data))
- .catch(err => fail())
+ .then(res => ok(res.Data))
+ .catch(err => fail(err))
}