fix: Add picklist dashboard config

This commit is contained in:
Suraj Shetty 2019-08-28 12:40:58 +05:30
parent be0ae7a430
commit 1cf7270049

View File

@ -0,0 +1,12 @@
from __future__ import unicode_literals
from frappe import _
def get_data():
return {
'fieldname': 'pick_list',
'transactions': [
{
'items': ['Stock Entry', 'Delivery Note']
},
]
}