fix: Dashboard for cost center

This commit is contained in:
deepeshgarg007 2019-06-03 21:53:58 +05:30
parent 290847df46
commit 1831844fcf
2 changed files with 16 additions and 1 deletions

View File

@ -9,7 +9,7 @@ def get_data():
'transactions': [
{
'label': _('Bank Deatils'),
'items': ['Bank Account', 'Bank Statement Transaction Entry', 'Bank Guarantee']
'items': ['Bank Account', 'Bank Guarantee']
},
{
'items': ['Payment Order']

View File

@ -0,0 +1,15 @@
from __future__ import unicode_literals
from frappe import _
def get_data():
return {
'fieldname': 'cost_center',
'reports': [
{
'label': _('Reports'),
'items': ['Budget Variance Report', 'General Ledger']
}
]
}