2012-02-23 07:05:32 +00:00
|
|
|
# ERPNext - web based ERP (http://erpnext.com)
|
|
|
|
# Copyright (C) 2012 Web Notes Technologies Pvt Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2012-02-23 06:16:28 +00:00
|
|
|
import webnotes
|
2012-02-24 12:26:00 +00:00
|
|
|
import _mysql_exceptions
|
2012-02-23 06:16:28 +00:00
|
|
|
|
|
|
|
def execute():
|
|
|
|
from webnotes.modules import reload_doc
|
|
|
|
reload_doc('accounts', 'page', 'accounts_home')
|
|
|
|
reload_doc('selling', 'page', 'selling_home')
|
|
|
|
reload_doc('buying', 'page', 'buying_home')
|
|
|
|
reload_doc('stock', 'page', 'stock_home')
|
|
|
|
reload_doc('hr', 'page', 'hr_home')
|
|
|
|
reload_doc('support', 'page', 'support_home')
|
|
|
|
reload_doc('production', 'page', 'production_home')
|
|
|
|
reload_doc('projects', 'page', 'projects_home')
|
|
|
|
reload_doc('website', 'page', 'website_home')
|
2012-02-24 09:59:07 +00:00
|
|
|
reload_doc('home', 'page', 'desktop')
|
2012-02-24 12:26:00 +00:00
|
|
|
reload_doc('utilities', 'page', 'todo')
|
|
|
|
reload_doc('utilities', 'page', 'calendar')
|
2012-02-27 13:12:00 +00:00
|
|
|
reload_doc('utilities', 'page', 'messages')
|
2012-02-29 09:49:20 +00:00
|
|
|
reload_doc('setup', 'page', 'modules_setup')
|
2012-02-29 09:41:06 +00:00
|
|
|
reload_doc('utilities', 'page', 'users')
|
2012-02-29 09:49:20 +00:00
|
|
|
reload_doc('home', 'page', 'activity')
|
2012-02-23 06:16:28 +00:00
|
|
|
|
2012-02-24 13:51:47 +00:00
|
|
|
webnotes.conn.set_value('Control Panel', 'Control Panel', 'home_page',
|
|
|
|
'desktop')
|
|
|
|
|
2012-02-23 06:16:28 +00:00
|
|
|
webnotes.conn.commit()
|
2012-02-24 12:26:00 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
webnotes.conn.sql("""create table __SchedulerLog (
|
|
|
|
`timestamp` timestamp,
|
|
|
|
method varchar(200),
|
|
|
|
error text
|
|
|
|
) engine=MyISAM""")
|
|
|
|
except _mysql_exceptions.OperationalError, e:
|
|
|
|
pass
|