@@ -, +, @@ permissions - Go to any patron account in staff - Go to more > permissions - Verify that the meaning of each acquisition permission is clear from the description --- installer/data/mysql/userpermissions.sql | 18 +++++++++--------- .../prog/en/includes/permissions.inc | 18 +++++++++--------- 2 files changed, 18 insertions(+), 18 deletions(-) --- a/installer/data/mysql/userpermissions.sql +++ a/installer/data/mysql/userpermissions.sql @@ -19,16 +19,16 @@ INSERT INTO permissions (module_bit, code, description) VALUES (10, 'remaining_permissions', 'Remaining permissions for managing fines and fees'), (11, 'vendors_manage', 'Manage vendors'), (11, 'contracts_manage', 'Manage contracts'), - (11, 'period_manage', 'Manage periods'), - (11, 'budget_manage', 'Manage budgets'), - (11, 'budget_modify', 'Modify budget (can''t create lines, but can modify existing ones)'), + (11, 'period_manage', 'Manage budgets'), + (11, 'budget_manage', 'Manage funds'), + (11, 'budget_modify', 'Modify funds (can''t create lines, but can modify existing ones)'), (11, 'planning_manage', 'Manage budget plannings'), - (11, 'order_manage', 'Manage orders & basket'), - (11, 'order_manage_all', 'Manage all orders and baskets, regardless of restrictions on them'), - (11, 'group_manage', 'Manage orders & basketgroups'), - (11, 'order_receive', 'Manage orders & basket'), - (11, 'budget_add_del', 'Add and delete budgets (but can''t modify budgets)'), - (11, 'budget_manage_all', 'Manage all budgets'), + (11, 'order_manage', 'Manage baskets and order lines'), + (11, 'order_manage_all', 'Manage all baskets and order lines, regardless of restrictions on them'), + (11, 'group_manage', 'Manage basket groups'), + (11, 'order_receive', 'Receive orders and manage shipments'), + (11, 'budget_add_del', 'Add and delete funds (but can''t modify funds)'), + (11, 'budget_manage_all', 'Manage all funds'), (11, 'edi_manage', 'Manage EDIFACT transmissions'), (13, 'edit_news', 'Write news for the OPAC and staff interfaces'), (13, 'label_creator', 'Create printable labels and barcodes from catalog and patron data'), --- a/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc @@ -45,16 +45,16 @@ [%- CASE 'fast_cataloging' -%]Fast cataloging [%- CASE 'remaining_permissions' -%]Remaining permissions for managing fines and fees [%- CASE 'writeoff' -%]Write off fines and fees - [%- CASE 'budget_add_del' -%]Add and delete budgets (but can't modify budgets) - [%- CASE 'budget_manage' -%]Manage budgets - [%- CASE 'budget_manage_all' -%]Manage all budgets - [%- CASE 'budget_modify' -%]Modify budget (can't create lines, but can modify existing ones) + [%- CASE 'budget_add_del' -%]Add and delete funds (but can't modify funds) + [%- CASE 'budget_manage' -%]Manage funds + [%- CASE 'budget_manage_all' -%]Manage all funds + [%- CASE 'budget_modify' -%]Modify funds (can't create lines, but can modify existing ones) [%- CASE 'contracts_manage' -%]Manage contracts - [%- CASE 'group_manage' -%]Manage orders & basketgroups - [%- CASE 'order_manage' -%]Manage orders & basket - [%- CASE 'order_manage_all' -%]Manage all orders and baskets, regardless of restrictions on them - [%- CASE 'order_receive' -%]Manage orders & basket - [%- CASE 'period_manage' -%]Manage periods + [%- CASE 'group_manage' -%]Manage basket groups + [%- CASE 'order_manage' -%]Manage basket and order lines + [%- CASE 'order_manage_all' -%]Manage all baskets and order lines, regardless of restrictions on them + [%- CASE 'order_receive' -%]Receive orders and manage shipments + [%- CASE 'period_manage' -%]Manage budgets [%- CASE 'planning_manage' -%]Manage budget plannings [%- CASE 'vendors_manage' -%]Manage vendors [%- CASE 'batch_upload_patron_images' -%]Upload patron images in a batch or one at a time --