Employee Loan Dashboard

This commit is contained in:
Kanchan Chauhan 2017-03-29 21:42:54 +05:30 committed by Nabin Hait
parent 99752e58ec
commit b87c174898

View File

@ -0,0 +1,19 @@
from frappe import _
def get_data():
return {
'fieldname': 'employee',
'non_standard_fieldnames': {
'Journal Entry': 'reference_name',
},
'transactions': [
{
'label': _('Employee'),
'items': ['Employee Loan Application', 'Salary Slip']
},
{
'label': _('Account'),
'items': ['Journal Entry']
}
]
}