13 lines
213 B
Python
13 lines
213 B
Python
from frappe import _
|
|
|
|
def get_data():
|
|
return [
|
|
{
|
|
"module_name": "Label Printing",
|
|
"color": "grey",
|
|
"icon": "octicon octicon-file-directory",
|
|
"type": "module",
|
|
"label": _("Label Printing")
|
|
}
|
|
]
|