- Updated the AnyDesk quick connect modal to improve user experience with new UI elements and functionality. - Added support for saving and managing multiple AnyDesk IDs associated with cases, including hardware and contact information. - Implemented backend endpoints for managing vendor email domains, allowing addition, deletion, and retrieval of domains linked to vendors. - Created a new database table for vendor email domains to support multiple exact domains per vendor. - Added tests for bankruptcy workflow to ensure correct case creation and alert linking based on exact CVR matches.
10 lines
268 B
SQL
10 lines
268 B
SQL
INSERT INTO groups (name, description)
|
|
SELECT
|
|
'Bogholderi',
|
|
'Kundehenvendelser og opgaver vedrørende bogholderi og økonomi'
|
|
WHERE NOT EXISTS (
|
|
SELECT 1
|
|
FROM groups
|
|
WHERE LOWER(TRIM(name)) IN ('bogholderi', 'økonomi', 'okonomi', 'accounting')
|
|
);
|