feat: add template_id column to invoices table and update_invoice_template command

This commit is contained in:
Your Name
2026-02-18 14:37:26 +02:00
parent 9e9c0c78f1
commit cca06e851b
3 changed files with 97 additions and 7 deletions

View File

@@ -57,6 +57,10 @@ pub fn run() {
commands::get_invoices,
commands::update_invoice,
commands::delete_invoice,
commands::update_invoice_template,
commands::get_invoice_items,
commands::create_invoice_item,
commands::delete_invoice_items,
commands::get_settings,
commands::update_settings,
commands::export_data,
@@ -83,6 +87,7 @@ pub fn run() {
commands::get_timesheet_data,
commands::import_entries,
commands::import_json_data,
commands::save_binary_file,
commands::open_mini_timer,
commands::close_mini_timer,
])