blob: 9f92b06ebbf8ed9de28f7a921b26e3ce364c9bb6 (
plain)
- -- Probably want to move this to the Settings module -CT
- CREATE OR REPLACE FUNCTION defaults_get_defaultcurrency()
- RETURNS SETOF char(3) AS
- $$
- DECLARE defaultcurrency defaults.value%TYPE;
- BEGIN
- SELECT INTO defaultcurrency substr(value,1,3)
- FROM defaults
- WHERE setting_key = 'curr';
- RETURN NEXT defaultcurrency;
- END;
- $$ language plpgsql;
- COMMENT ON FUNCTION defaults_get_defaultcurrency() IS
- $$ This function return the default currency asigned by the program. $$;
|