The initial migration for IDAA Recovery Meetings. Progress

This commit is contained in:
Scott Idem
2024-09-27 15:20:26 -04:00
parent 495dd0e6d9
commit d6c26e7511
21 changed files with 787 additions and 453 deletions

View File

@@ -67,11 +67,12 @@ export async function handle_load_ae_obj_id__event(
}
// Updated 2024-05-24
export async function handle_load_ae_obj_li__event(
// Updated 2024-09-27
export async function load_ae_obj_li__event(
{
api_cfg,
account_id,
for_obj_type = 'account',
for_obj_id,
inc_file_li = false,
inc_location_li = false,
inc_presentation_li = false,
@@ -83,7 +84,8 @@ export async function handle_load_ae_obj_li__event(
log_lvl = 0
}: {
api_cfg: any,
account_id: string,
for_obj_type: string,
for_obj_id: string,
inc_file_li?: boolean,
inc_location_li?: boolean,
inc_presentation_li?: boolean,
@@ -95,7 +97,7 @@ export async function handle_load_ae_obj_li__event(
log_lvl?: number
}
) {
console.log(`*** handle_load_ae_obj_li__event() *** account_id=${account_id}`);
console.log(`*** load_ae_obj_li__event() *** for_obj_id=${for_obj_id}`);
let enabled: string = (params.qry__enabled ?? 'enabled'); // all, disabled, enabled
let hidden: string = (params.qry__hidden ?? 'not_hidden'); // all, hidden, not_hidden
@@ -110,8 +112,8 @@ export async function handle_load_ae_obj_li__event(
ae_promises.load__event_obj_li = await api.get_ae_obj_li_for_obj_id_crud({
api_cfg: api_cfg,
obj_type: 'event',
for_obj_type: 'account',
for_obj_id: account_id,
for_obj_type: for_obj_type,
for_obj_id: for_obj_id,
use_alt_table: true, // NOTE: This will use the table_name_alt value instead of the table_name value in the API config.
use_alt_base: false, // NOTE: This will use the base_name_alt value instead of the base_name value
enabled: enabled,
@@ -316,6 +318,23 @@ export function handle_db_save_ae_obj_li__event(
created_on: obj.created_on,
updated_on: obj.updated_on,
// IDAA Recovery Meetings
contact_li_json: obj.contact_li_json,
external_person_id: obj.external_person_id,
physical: obj.physical,
virtual: obj.virtual,
weekday_sunday: obj.weekday_sunday,
weekday_monday: obj.weekday_monday,
weekday_tuesday: obj.weekday_tuesday,
weekday_wednesday: obj.weekday_wednesday,
weekday_thursday: obj.weekday_thursday,
weekday_friday: obj.weekday_friday,
weekday_saturday: obj.weekday_saturday,
recurring_start_time: obj.recurring_start_time,
// From SQL view
file_count: obj.file_count,
file_count_all: obj.file_count_all,