big update
This commit is contained in:
parent
d53ebf9ecd
commit
5c7e93fcc7
26 changed files with 1890 additions and 423 deletions
|
|
@ -40,7 +40,7 @@ const FRAPPE_GET_ADDRESSES_METHOD = "custom_ui.api.db.addresses.get_addresses";
|
|||
const FRAPPE_UPSERT_CLIENT_METHOD = "custom_ui.api.db.clients.upsert_client";
|
||||
const FRAPPE_GET_CLIENT_STATUS_COUNTS_METHOD = "custom_ui.api.db.clients.get_client_status_counts";
|
||||
const FRAPPE_GET_CLIENT_TABLE_DATA_METHOD = "custom_ui.api.db.clients.get_clients_table_data";
|
||||
const FRAPPE_GET_CLIENT_METHOD = "custom_ui.api.db.clients.get_client";
|
||||
const FRAPPE_GET_CLIENT_METHOD = "custom_ui.api.db.clients.get_client_v2";
|
||||
const FRAPPE_GET_CLIENT_NAMES_METHOD = "custom_ui.api.db.clients.get_client_names";
|
||||
|
||||
class Api {
|
||||
|
|
@ -157,10 +157,15 @@ class Api {
|
|||
});
|
||||
}
|
||||
|
||||
static async createBidMeeting(address, notes = "") {
|
||||
static async getBidMeeting(name) {
|
||||
return await this.request("custom_ui.api.db.bid_meetings.get_bid_meeting", {
|
||||
name,
|
||||
});
|
||||
}
|
||||
|
||||
static async createBidMeeting(data) {
|
||||
return await this.request("custom_ui.api.db.bid_meetings.create_bid_meeting", {
|
||||
address,
|
||||
notes,
|
||||
data,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue