“I have pushed the category tree to my laptop. In the Doctype, I am able to see the pushed Doctype while raising a new ticket. However, when I click on the ticket category, it shows ‘Create New Category List’. How can I proceed with packaging this? Can someone kindly help me out?”
You can export this in fixtures
in your custom app hooks.py
file
Export with filters
fixtures = [
{"dt": "Ticket Category List", "filters": [
[
"name", "in", [
"Example Name 1",
"Example Name 2"
]
]
]}
]
if you want to export all Category then simply use this
fixtures = [
"Ticket Category List"
]
after that run bench export-fixtures
command