From: erickson Date: Fri, 1 Feb 2008 20:50:00 +0000 (+0000) Subject: adding initial acq permissions X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a90bcd2f0274fdc9fb05e9a4b4e7874b42edb696;p=Evergreen.git adding initial acq permissions git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@8578 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index b43a7cee59..f5faa745c6 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -811,7 +811,24 @@ INSERT INTO permission.perm_list VALUES (149, 'VIEW_REPORT_OUTPUT', oils_i18n_gettext('Allow user to view report output')), (150, 'COPY_CIRC_NOT_ALLOWED.override', oils_i18n_gettext('Allows a user to checkout an item that is marked as non-circ')), (151, 'DELETE_CONTAINER_ITEM', oils_i18n_gettext('Allows a user to delete an item out of another user''s container')), - (152, 'ASSIGN_WORK_ORG_UNIT', oils_i18n_gettext('Allow a staff member to define where another staff member has their permissions')); + (152, 'ASSIGN_WORK_ORG_UNIT', oils_i18n_gettext('Allow a staff member to define where another staff member has their permissions')), + (153, 'CREATE_FUNDING_SOURCE', oils_i18n_gettext('Allow a user to create a new funding source')), + (154, 'DELETE_FUNDING_SOURCE', oils_i18n_gettext('Allow a user to delete a funding source')), + (155, 'VIEW_FUNDING_SOURCE', oils_i18n_gettext('Allow a user to view a funding source')), + (156, 'UPDATE_FUNDING_SOURCE', oils_i18n_gettext('Allow a user to update a funding source')), + (157, 'CREATE_FUND', oils_i18n_gettext('Allow a user to create a new fund')), + (158, 'DELETE_FUND', oils_i18n_gettext('Allow a user to delete a fund')), + (159, 'VIEW_FUND', oils_i18n_gettext('Allow a user to view a fund')), + (160, 'UPDATE_FUND', oils_i18n_gettext('Allow a user to update a fund')), + (161, 'CREATE_FUND_ALLOCATION', oils_i18n_gettext('Allow a user to create a new fund allocation')), + (162, 'DELETE_FUND_ALLOCATION', oils_i18n_gettext('Allow a user to delete a fund allocation')), + (163, 'VIEW_FUND_ALLOCATION', oils_i18n_gettext('Allow a user to view a fund allocation')), + (164, 'UPDATE_FUND_ALLOCATION', oils_i18n_gettext('Allow a user to update a fund allocation')), + (165, 'GENERAL_ACQ', oils_i18n_gettext('Lowest level permission required to access the ACQ interface')), + (166, 'CREATE_PROVIDER', oils_i18n_gettext('Allow a user to create a new provider')), + (167, 'DELETE_PROVIDER', oils_i18n_gettext('Allow a user to delate a provider')), + (168, 'VIEW_PROVIDER', oils_i18n_gettext('Allow a user to view a provider')), + (169, 'UPDATE_PROVIDER', oils_i18n_gettext('Allow a user to update a provider')); INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES (1, 'Users', NULL, NULL, '3 years', FALSE, 'group_application.user'),