General clean up and improvements.

This commit is contained in:
Scott Idem
2025-04-02 13:42:14 -04:00
parent b9f4189a95
commit 7fa0d5cc5b
6 changed files with 41 additions and 7 deletions

View File

@@ -599,7 +599,7 @@ export function db_save_ae_obj_li__journal(
// tmp_sort_2: `${obj.group}_${obj.original_datetime}_${obj.priority}_${obj.sort}`,
// From SQL view
// journal_other_count: obj.journal_other_count,
journal_entry_count: obj.journal_entry_count,
// A key value list of the others
// journal_other_kv: obj.journal_other_kv,

View File

@@ -97,6 +97,8 @@ export interface Journal {
journal_location_code?: null|string;
journal_location_name?: null|string;
journal_entry_count?: null|number;
// A key value list of the entries
journal_entry_kv?: null|key_val;
journal_entry_li?: null|[];