mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 16:34:46 +00:00
link member in dynamic link table
This commit is contained in:
37
erpnext/config/non_profit.py
Normal file
37
erpnext/config/non_profit.py
Normal file
@@ -0,0 +1,37 @@
|
||||
from __future__ import unicode_literals
|
||||
from frappe import _
|
||||
|
||||
def get_data():
|
||||
return [
|
||||
{
|
||||
"label": _("Chapter"),
|
||||
"icon": "fa fa-star",
|
||||
"items": [
|
||||
{
|
||||
"type": "doctype",
|
||||
"name": "Chapter",
|
||||
"description": _("Chapter information."),
|
||||
},
|
||||
{
|
||||
"type": "doctype",
|
||||
"name": "Chapter Message",
|
||||
"description": _("Chapter Message."),
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": _("Membership"),
|
||||
"items": [
|
||||
{
|
||||
"type": "doctype",
|
||||
"name": "Member",
|
||||
"description": _("Member information."),
|
||||
},
|
||||
{
|
||||
"type": "doctype",
|
||||
"name": "Membership",
|
||||
"description": _("Memebership Details"),
|
||||
},
|
||||
]
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user