desktop.py 533 B

1234567891011121314151617
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from frappe import _
  4. def get_data():
  5. return [
  6. {
  7. "module_name": "GTL Custom",
  8. "category": "Modules",
  9. "color": "grey",
  10. "icon": "octicon octicon-file-directory",
  11. "type": "module",
  12. "label": _("GTL Custom Reports"),
  13. "description": "GTL Custom Reports"
  14. }
  15. ]