# 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 . import webnotes from webnotes.utils import cint @webnotes.whitelist() def get_online_users(arg=None): # get users return webnotes.conn.sql("""SELECT DISTINCT t1.user, t2.first_name, t2.last_name from tabSessions t1, tabProfile t2 where t1.user = t2.name and t1.user not in ('Guest','Administrator') and TIMESTAMPDIFF(HOUR,t1.lastupdate,NOW()) <= 1""", as_list=1) or [] def get_unread_messages(): "returns unread (docstatus-0 messages for a user)" return webnotes.conn.sql("""\ SELECT name, comment FROM `tabComment Widget Record` WHERE comment_doctype IN ('My Company', 'Message') AND comment_docname = %s AND ifnull(docstatus,0)=0 """, webnotes.user.name, as_list=1) def get_open_support_tickets(): """ Returns a count of open support tickets """ from webnotes.utils import cint open_support_tickets = webnotes.conn.sql("""\ SELECT COUNT(*) FROM `tabSupport Ticket` WHERE status = 'Open'""") return open_support_tickets and cint(open_support_tickets[0][0]) or 0 def get_things_todo(): """ Returns a count of incomplete todos """ from webnotes.utils import cint incomplete_todos = webnotes.conn.sql("""\ SELECT COUNT(*) FROM `tabToDo Item` WHERE IFNULL(checked, 0) = 0 AND owner = %s""", webnotes.session.get('user')) return incomplete_todos and cint(incomplete_todos[0][0]) or 0 def get_todays_events(): """ Returns a count of todays events in calendar """ from webnotes.utils import nowdate, cint todays_events = webnotes.conn.sql("""\ SELECT COUNT(*) FROM `tabEvent` WHERE owner = %s AND event_type != 'Cancel' AND event_date = %s""", ( webnotes.session.get('user'), nowdate())) return todays_events and cint(todays_events[0][0]) or 0 @webnotes.whitelist() def get_global_status_messages(arg=None): return { 'unread_messages': get_unread_messages(), 'open_support_tickets': get_open_support_tickets(), 'things_todo': get_things_todo(), 'todays_events': get_todays_events(), } @webnotes.whitelist() def get_status_details(arg=None): """get toolbar items""" from webnotes.utils import cint, date_diff, nowdate, get_defaults online = get_online_users() # system messages ret = { 'user_count': len(online) or 0, #'unread_messages': get_unread_messages(), #'open_support_tickets': get_open_support_tickets(), 'online_users': online or [], 'setup_status': get_setup_status(), 'registration_complete': cint(get_defaults('registration_complete')) and 'Yes' or 'No', 'profile': webnotes.conn.sql("""\ SELECT first_name, last_name FROM `tabProfile` WHERE name=%s AND docstatus<2""", webnotes.user.name, as_dict=1) } return ret def get_setup_status(arg=None): """ Returns the setup status of the current account """ if cint(webnotes.conn.get_global('setup_done')): return '' percent = 20 ret = [] def is_header_set(): header = webnotes.conn.get_value('Control Panel', None, 'client_name') or '' if header.startswith('
'\ +(webnotes.conn.get_value('Control Panel', None, 'company_name') or '')): return False elif 'Banner Comes Here' in header: return False else: return True if not is_header_set(): ret.append('Upload your company banner') else: percent += 20 def check_type(doctype, ret, percent): if not webnotes.conn.sql("select count(*) from tab%s" % doctype)[0][0]: ret.append(''' Create a new %(dt)s or Import from a spreadsheet''' % {'dt':doctype}) else: percent += 20 return ret, percent ret, percent = check_type('Item', ret, percent) ret, percent = check_type('Customer', ret, percent) ret, percent = check_type('Supplier', ret, percent) if percent==100: webnotes.conn.set_global('setup_done', '1') return '' return {'ret': ret, 'percent': percent}