Tomas Cohen Arazi
7a413f8015
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
28 lines
1.1 KiB
Perl
Executable file
28 lines
1.1 KiB
Perl
Executable file
use Modern::Perl;
|
|
|
|
return {
|
|
bug_number => "30335",
|
|
description => "Add manual_invoice and manual_credit permissions",
|
|
up => sub {
|
|
my ($args) = @_;
|
|
my ( $dbh, $out ) = @$args{qw(dbh out)};
|
|
$dbh->do(q{
|
|
INSERT IGNORE permissions (module_bit, code, description) VALUES
|
|
(10, 'manual_credit', 'Add manual credits to a patron account'),
|
|
(10, 'manual_invoice', 'Add manual invoices to a patron account')
|
|
});
|
|
|
|
say $out "Added new permission 'manual_credit'";
|
|
say $out "Added new permission 'manual_invoice'";
|
|
|
|
$dbh->do(q{
|
|
INSERT IGNORE INTO user_permissions (borrowernumber, module_bit, code)
|
|
SELECT borrowernumber, 10, 'manual_credit' FROM user_permissions WHERE code = 'remaining_permissions'
|
|
});
|
|
|
|
$dbh->do(q{
|
|
INSERT IGNORE INTO user_permissions (borrowernumber, module_bit, code)
|
|
SELECT borrowernumber, 10, 'manual_invoice' FROM user_permissions WHERE code = 'remaining_permissions'
|
|
});
|
|
},
|
|
};
|