1234567891011121314151617 |
- # -*- coding: utf-8 -*-
- from __future__ import unicode_literals
- from frappe import _
- def get_data():
- return [
- {
- "module_name": "GTL Custom",
- "category": "Modules",
- "color": "grey",
- "icon": "octicon octicon-file-directory",
- "type": "module",
- "label": _("GTL Custom Reports"),
- "description": "GTL Custom Reports"
- }
- ]
|