From e692f0fbe16342195297048534ad1be227493107 Mon Sep 17 00:00:00 2001 From: Anders Betts Date: Mon, 21 Sep 2026 09:09:39 +0200 Subject: payroll: employees, tax tables and the monthly run (schema v10) --- src/commands.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/commands.c') diff --git a/src/commands.c b/src/commands.c index f30e82a..56e7010 100644 --- a/src/commands.c +++ b/src/commands.c @@ -217,6 +217,8 @@ extern const struct cmd_table g_cmd_table_sru; extern const struct cmd_table g_cmd_table_sie; extern const struct cmd_table g_cmd_table_bokslut; extern const struct cmd_table g_cmd_table_bank; +extern const struct cmd_table g_cmd_table_employees; +extern const struct cmd_table g_cmd_table_payroll; const struct cmd_table *const g_command_tables[] = { &g_cmd_table_auth, &g_cmd_table_org, &g_cmd_table_users, @@ -225,7 +227,7 @@ const struct cmd_table *const g_command_tables[] = { &g_cmd_table_settings, &g_cmd_table_bank, &g_cmd_table_rules, &g_cmd_table_templates, &g_cmd_table_attachments, &g_cmd_table_reports, &g_cmd_table_sru, &g_cmd_table_sie, &g_cmd_table_customers, - &g_cmd_table_invoices, + &g_cmd_table_invoices, &g_cmd_table_employees, &g_cmd_table_payroll, }; const size_t g_command_tables_count = -- cgit v1.3