http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13429

            Bug ID: 13429
           Summary: Add helper SQL functions for report use
 Change sponsored?: ---
           Product: Koha
           Version: master
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5 - low
         Component: Database
          Assignee: [email protected]
          Reporter: [email protected]
        QA Contact: [email protected]

To make creating SQL reports easier, there should be some helper functions in
the database.
For example, looking at the SQL Reports Library, there are several functions
that create URLs to the staff client:

CONCAT('<a
href=\"/cgi-bin/koha/catalogue/detail.pl?biblionumber=',biblio.biblionumber,'\">',biblio.biblionumber,'</a>')


Adding the following function:

DROP FUNCTION IF EXISTS StaffUrl;
DELIMITER $$
CREATE FUNCTION StaffUrl(url text, linkname text) RETURNS text
BEGIN
   RETURN CONCAT('<a href=\"/cgi-bin/koha/', url, '\">', linkname, '</a>');
END$$


The example above would turn into

StaffUrl(CONCAT('catalogue/detail.pl?biblionumber=',biblio.biblionumber),
biblio.biblionumber)

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to