brotherton-erpnext/erpnext/demo/domains.py

19 lines
341 B
Python
Raw Normal View History

2016-06-29 13:08:32 +00:00
from __future__ import unicode_literals
data = {
'Manufacturing': {
'company_name': 'Wind Power LLC'
},
'Retail': {
'company_name': 'Annapurna Dairy Shop',
},
'Distribution': {
'company_name': 'Soltice Hardware',
},
'Services': {
'company_name': 'Acme Consulting'
2016-08-22 07:27:09 +00:00
},
'Education': {
'company_name': 'Whitmore College'
2016-06-29 13:08:32 +00:00
}
}