User Tools

Site Tools


dev:proposal:patron_statistical_categories

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
dev:proposal:patron_statistical_categories [2012/03/20 23:32] – [Objects Affected] update table definition spraterdev:proposal:patron_statistical_categories [2012/03/21 02:37] – [Objects Affected] sprater
Line 41: Line 41:
 ===== Objects Affected ===== ===== Objects Affected =====
  
-All modified files are available at [[https://github.com/sprater/Evergreen/tree/patcatstat|https://github.com/sprater/Evergreen/tree/patcatstat]].+All modified files are available at [[https://github.com/sprater/Evergreen/tree/patstatcat|https://github.com/sprater/Evergreen/tree/patstatcat]].
  
-Comparisons:  [[https://github.com/sprater/Evergreen/compare/patcatstat|https://github.com/sprater/Evergreen/compare/patcatstat]]+Comparisons:  [[https://github.com/sprater/Evergreen/compare/patstatcat|https://github.com/sprater/Evergreen/compare/patstatcat]]
  
 **Database TABLE ''actor.stat_cat''** **Database TABLE ''actor.stat_cat''**
Line 51: Line 51:
 **NEW Database TABLE ''actor.stat_cat_entry_default''** **NEW Database TABLE ''actor.stat_cat_entry_default''**
   * Create a new table ''actor.stat_cat_entry_default'' to store default entries for statistical categories.  It will have the following structure:   * Create a new table ''actor.stat_cat_entry_default'' to store default entries for statistical categories.  It will have the following structure:
-  * +
         id              SERIAL  PRIMARY KEY,         id              SERIAL  PRIMARY KEY,
         stat_cat_entry  INT     NOT NULL REFERENCES actor.stat_cat_entry(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,         stat_cat_entry  INT     NOT NULL REFERENCES actor.stat_cat_entry(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
Line 58: Line 58:
         CONSTRAINT sced_once_per_owner UNIQUE (stat_cat,owner)         CONSTRAINT sced_once_per_owner UNIQUE (stat_cat,owner)
  
-See [[https://github.com/sprater/Evergreen/blob/patcatstat/Open-ILS/src/sql/Pg/005.schema.actors.sql|005.schema.actors.sql]] and [[https://github.com/sprater/Evergreen/blob/patcatstat/Open-ILS/src/sql/Pg/950.data.seed-values.sql|950.data.seed-values.sql]].+See [[https://github.com/sprater/Evergreen/blob/patstatcat/Open-ILS/src/sql/Pg/005.schema.actors.sql|005.schema.actors.sql]] and [[https://github.com/sprater/Evergreen/blob/patstatcat/Open-ILS/src/sql/Pg/950.data.seed-values.sql|950.data.seed-values.sql]].
  
 **Statistical category editor** **Statistical category editor**
   * Add code to manage the new fields in **actor.stat_cat** and the new table **actor.stat_cat_entry_default**.   * Add code to manage the new fields in **actor.stat_cat** and the new table **actor.stat_cat_entry_default**.
 See See
-  * [[https://github.com/sprater/Evergreen/blob/patcatstat/Open-ILS/examples/fm_IDL.xml|Open-ILS/examples/fm_IDL.xml]] +  * [[https://github.com/sprater/Evergreen/blob/patstatcat/Open-ILS/examples/fm_IDL.xml|Open-ILS/examples/fm_IDL.xml]] 
-  * [[https://github.com/sprater/Evergreen/blob/patcatstat/Open-ILS/src/extras/ils_events.xml|Open-ILS/src/extras/ils_events.xml]] +  * [[https://github.com/sprater/Evergreen/blob/patstatcat/Open-ILS/src/extras/ils_events.xml|Open-ILS/src/extras/ils_events.xml]] 
-  * [[https://github.com/sprater/Evergreen/blob/patcatstat/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm|Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm]] +  * [[https://github.com/sprater/Evergreen/blob/patstatcat/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm|Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm]] 
-  * [[https://github.com/sprater/Evergreen/blob/patcatstat/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/StatCat.pm|Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/StatCat.pm]] +  * [[https://github.com/sprater/Evergreen/blob/patstatcat/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/StatCat.pm|Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/StatCat.pm]] 
-  * [[https://github.com/sprater/Evergreen/blob/patcatstat/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/CDBI.pm|Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/CDBI.pm]] +  * [[https://github.com/sprater/Evergreen/blob/patstatcat/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/CDBI.pm|Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/CDBI.pm]] 
-  * [[https://github.com/sprater/Evergreen/blob/patcatstat/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/CDBI/actor.pm|Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/CDBI/actor.pm]] +  * [[https://github.com/sprater/Evergreen/blob/patstatcat/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/CDBI/actor.pm|Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/CDBI/actor.pm]] 
-  * [[https://github.com/sprater/Evergreen/blob/patcatstat/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/dbi.pm|Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/dbi.pm]] +  * [[https://github.com/sprater/Evergreen/blob/patstatcat/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/dbi.pm|Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/dbi.pm]] 
-  * [[https://github.com/sprater/Evergreen/blob/patcatstat/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/actor.pm|Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/actor.pm]] +  * [[https://github.com/sprater/Evergreen/blob/patstatcat/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/actor.pm|Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/actor.pm]] 
-  * [[https://github.com/sprater/Evergreen/blob/patcatstat/Open-ILS/web/opac/locale/en-US/lang.dtd|Open-ILS/web/opac/locale/en-US/lang.dtd]] +  * [[https://github.com/sprater/Evergreen/blob/patstatcat/Open-ILS/web/opac/locale/en-US/lang.dtd|Open-ILS/web/opac/locale/en-US/lang.dtd]] 
-  * [[https://github.com/sprater/Evergreen/blob/patcatstat/Open-ILS/xul/staff_client/server/admin/stat_cat_editor.xhtml|Open-ILS/xul/staff_client/server/admin/stat_cat_editor.xhtml]] +  * [[https://github.com/sprater/Evergreen/blob/patstatcat/Open-ILS/xul/staff_client/server/admin/stat_cat_editor.xhtml|Open-ILS/xul/staff_client/server/admin/stat_cat_editor.xhtml]] 
-  * [[https://github.com/sprater/Evergreen/blob/patcatstat/Open-ILS/xul/staff_client/server/admin/stat_cat_editor.js|Open-ILS/xul/staff_client/server/admin/stat_cat_editor.js]]+  * [[https://github.com/sprater/Evergreen/blob/patstatcat/Open-ILS/xul/staff_client/server/admin/stat_cat_editor.js|Open-ILS/xul/staff_client/server/admin/stat_cat_editor.js]]
      
 **Patron registration**  **Patron registration** 
Line 81: Line 81:
   * If a default entry is specified for the org unit and statistical category, mark it as selected by default.   * If a default entry is specified for the org unit and statistical category, mark it as selected by default.
  
-See [[https://github.com/sprater/Evergreen/blob/patcatstat/Open-ILS/web/js/ui/default/actor/user/register.js|Open-ILS/web/js/ui/default/actor/user/register.js]]+See [[https://github.com/sprater/Evergreen/blob/patstatcat/Open-ILS/web/js/ui/default/actor/user/register.js|Open-ILS/web/js/ui/default/actor/user/register.js]]
 ===== Tests ===== ===== Tests =====
  
dev/proposal/patron_statistical_categories.txt · Last modified: 2022/02/10 13:34 by 127.0.0.1

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki

© 2008-2022 GPLS and others. Evergreen is open source software, freely licensed under GNU GPLv2 or later.
The Evergreen Project is a U.S. 501(c)3 non-profit organization.