Skip to content
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

refactor: sort #1107

Merged
merged 5 commits into from
Apr 11, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: patch: integer values for ticket priorities
  • Loading branch information
ssiyad committed Apr 11, 2023
commit 9056aaeddb2029be625a1d16d5f6a7df4631ec6a
20 changes: 20 additions & 0 deletions helpdesk/patches/add_priority_integer.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import frappe


BUILTIN_PRIORITIES = {
"Urgent": 100,
"High": 200,
"Medium": 300,
"Low": 400,
}


def execute():
for p in BUILTIN_PRIORITIES:
d = frappe.get_doc("HD Ticket Priority", p)

if d.integer_value:
continue

d.integer_value = BUILTIN_PRIORITIES[p]
d.save()