Merge requires lock on bulk / merge for roles?

Moderator: crythias

Post Reply
hkais
Znuny expert
Posts: 287
Joined: 16 Apr 2016, 08:55
Znuny Version: see in post
Real Name: Hans
Contact:

Merge requires lock on bulk / merge for roles?

Post by hkais »

Hi there,

is there any way to be able to do a merge in bulk on a search result page?

found this, and set it to disabled: but does not help in that case

Code: Select all

Ticket::Frontend::AgentTicketMerge###RequiredLock
Also is it possible to limit the merge function to only specific roles?
Elected 2022-06 as an IT Governance Portal Expert. The portal for Znuny, OTRS and OTOBO users
Johannes
Moderator
Posts: 393
Joined: 30 Jan 2008, 02:26
Znuny Version: All of them ^^
Real Name: Hannes
Company: Znuny|OTTERHUB

Re: Merge requires lock on bulk / merge for roles?

Post by Johannes »

Hi,
is there any way to be able to do a merge in bulk on a search result page?
This is already possible:
Bulk Action - Ticket - senacor 2022-02-25 09-06-32.png
Also is it possible to limit the merge function to only specific roles?
Using ACLs it should be something like this (https://doc.znuny.org/doc/manual/admin/ ... ation.html):
It limits the Bulk Action (which includes the merge) to specific roles.

Code: Select all

# Disable ATBulk for all user
    Properties => {
    },

    PossibleNot => {
        Action => [
            'AgentTicketBulk',
        ],
    },


# Enable ATBulk for special role
    Properties => {
            User => {
                Role => [
                    'SpecialRoleGoesHere',
                ],
            },
    },

    Possible => {
        Action => [
            'AgentTicketBulk',
        ],
    },
Regards
You do not have the required permissions to view the files attached to this post.
hkais
Znuny expert
Posts: 287
Joined: 16 Apr 2016, 08:55
Znuny Version: see in post
Real Name: Hans
Contact:

Re: Merge requires lock on bulk / merge for roles?

Post by hkais »

Johannes wrote: 25 Feb 2022, 10:16 Hi,
is there any way to be able to do a merge in bulk on a search result page?
This is already possible:
Sadly cannot confirm
Screenshot_02698.png
Johannes wrote: 25 Feb 2022, 10:16 Also is it possible to limit the merge function to only specific roles?
Using ACLs it should be something like this (https://doc.znuny.org/doc/manual/admin/ ... ation.html):
It limits the Bulk Action (which includes the merge) to specific roles.

Code: Select all

# Disable ATBulk for all user
    Properties => {
    },

    PossibleNot => {
        Action => [
            'AgentTicketBulk',
        ],
    },


# Enable ATBulk for special role
    Properties => {
            User => {
                Role => [
                    'SpecialRoleGoesHere',
                ],
            },
    },

    Possible => {
        Action => [
            'AgentTicketBulk',
        ],
    },
Regards
Okay will read and try to implement a ACL. Thx so far
You do not have the required permissions to view the files attached to this post.
Elected 2022-06 as an IT Governance Portal Expert. The portal for Znuny, OTRS and OTOBO users
reneeb
Znuny guru
Posts: 5018
Joined: 13 Mar 2011, 09:54
Znuny Version: 6.0.x
Real Name: Renée Bäcker
Company: Perl-Services.de
Contact:

Re: Merge requires lock on bulk / merge for roles?

Post by reneeb »

hkais wrote: 25 Feb 2022, 09:22 is there any way to be able to do a merge in bulk on a search result page?
Maybe https://opar.perl-services.de/dist/QuickMerge-6.0.2 helps
Perl / Znuny development: http://perl-services.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
Johannes
Moderator
Posts: 393
Joined: 30 Jan 2008, 02:26
Znuny Version: All of them ^^
Real Name: Hannes
Company: Znuny|OTTERHUB

Re: Merge requires lock on bulk / merge for roles?

Post by Johannes »

Sadly cannot confirm
But the merge button is there? Whats the problem?
EDIT:
Merge to ticket...merge to oldest...
What did I miss?
Post Reply