-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Assign ticket to someone #42
Comments
Thinking about this, I can't understand how the assigning would work. In the bundle there are 2 types of user, those with ticket admin role, and those without. There are events firing so adding email notification would straight forward for someone to do outside of the bundle. |
We should be able to assign a ticket to a specific user then this user could show his tasks and treat them by priorities or scheduled date and when it's done (resolved), he will assigne the ticket to the owner. You can add in the entity Ticket a new field assigned_to and date limit ? Do you agree ? |
This sounds interesting, but will require more thought. I will revisit this after some of my other neglected projects. |
+1 We need this for our project. Maybe I will implement it and open a PR. |
Has someone implemented assigning? |
Not at present. I have been quite busy recently. The next feature I'll be implementing will be #51 |
@hackzilla do you know when could you implement assigning functionality? |
It's probably going to be at least month. #51 is currently in progress. |
I've decided I will attempt this for v3. I haven't made a start of this, but I will soon. |
hi @hackzilla , I need something like "assign ticket to someone", but simpler: I need to assign the ticket programmatically. So I'm writing the code but I would like to have the same name for entity field you will use for the assignee. Which name do you think you will put in Ticket Entity for that user? so... in the future I will have no problem if I would like to switch to your more complex system (assign ticket from the gui) |
I have no planned names at the moment. I haven't given ticket-bundle the time it deserves for the last few months. So I think I'm going to have to do a proper push, and get Ticket Bundle v4 working/released. |
Wow, I would like to be there too! I was thinking to something like "userAssigned" because of "userCreated" field. Using intefarces is really a better choice when working on open project like this. Thank You! |
my preference would be userAssigned. Yhea, interfaces feel better. A bit more work for the setup, but it allows people to store whatever they want in addition to the stuff for ticketing. |
@Filoz Symfony Flex is awesome. I didn't know about it until now. |
@hackzilla in another service I developed a way to make tickets asignable to any entity (even other tickets) wich obviously includes users. Making entitys assignable is as simple as implementing an interface and 2 static functions for mapping purposes to the disired entitys. |
I've taken a step back. |
Hi! |
That helpdesk scenario was exactly my usecase. I needed to be able to assign users to a ticket to give them responsibility for the ticket but also make tickets filterable by any entity or even its child entities. Its a maintenance system for real life objects wich need to be maintained by technicians. I introduced a own TicketAssignment entity wich handles the Mapping. Each entity wich is assignable implements an interface and thats basicly how you make entitys assignable in my Bundle. Quite easy to make new Entitys assignable. Could provide my aproach. Possibly even after #128, if you need any help there, let me know |
Thanks for sharing this projet.
If you have not already planned, it would be logic to have a functionality for assigning to somone a ticket. Even with notification by email.
The text was updated successfully, but these errors were encountered: