2011-06-14 12:22:03 +00:00
|
|
|
import webnotes
|
2011-07-04 10:53:19 +00:00
|
|
|
from webnotes import msgprint
|
2011-06-14 12:22:03 +00:00
|
|
|
|
|
|
|
feed_dict = {
|
|
|
|
# Project
|
2011-07-06 09:20:30 +00:00
|
|
|
'Project': ['[%(status)s]', '#000080'],
|
2011-06-14 12:22:03 +00:00
|
|
|
|
|
|
|
# Sales
|
|
|
|
'Lead': ['%(lead_name)s', '#000080'],
|
|
|
|
'Quotation': ['[%(status)s] To %(customer_name)s worth %(currency)s %(grand_total_export)s', '#4169E1'],
|
|
|
|
'Sales Order': ['[%(status)s] To %(customer_name)s worth %(currency)s %(grand_total_export)s', '#4169E1'],
|
|
|
|
|
|
|
|
# Purchase
|
|
|
|
'Supplier': ['%(supplier_name)s, %(supplier_type)s', '#6495ED'],
|
|
|
|
'Purchase Order': ['[%(status)s] %(name)s To %(supplier_name)s for %(currency)s %(grand_total_import)s', '#4169E1'],
|
|
|
|
|
|
|
|
# Stock
|
|
|
|
'Delivery Note': ['[%(status)s] To %(customer_name)s', '#4169E1'],
|
2012-01-19 11:42:17 +00:00
|
|
|
'Purchase Receipt': ['[%(status)s] From %(supplier)s', '#4169E1'],
|
2011-06-14 12:22:03 +00:00
|
|
|
|
|
|
|
# Accounts
|
|
|
|
'Journal Voucher': ['[%(voucher_type)s] %(name)s', '#4169E1'],
|
|
|
|
'Payable Voucher': ['To %(supplier_name)s for %(currency)s %(grand_total_import)s', '#4169E1'],
|
|
|
|
'Receivable Voucher':['To %(customer_name)s for %(currency)s %(grand_total_export)s', '#4169E1'],
|
|
|
|
|
|
|
|
# HR
|
|
|
|
'Expense Voucher': ['[%(approval_status)s] %(name)s by %(employee_name)s', '#4169E1'],
|
|
|
|
'Salary Slip': ['%(employee_name)s for %(month)s %(fiscal_year)s', '#4169E1'],
|
|
|
|
'Leave Transaction':['%(leave_type)s for %(employee)s', '#4169E1'],
|
|
|
|
|
|
|
|
# Support
|
|
|
|
'Customer Issue': ['[%(status)s] %(description)s by %(customer_name)s', '#000080'],
|
|
|
|
'Maintenance Visit':['To %(customer_name)s', '#4169E1'],
|
2012-02-07 06:13:41 +00:00
|
|
|
'Support Ticket': ['[%(status)s] %(subject)s', '#000080'],
|
|
|
|
|
|
|
|
# Website
|
|
|
|
'Web Page': ['%(title)s', '#00080'],
|
|
|
|
'Blog': ['%(title)s', '#00080']
|
2011-06-14 12:22:03 +00:00
|
|
|
}
|
|
|
|
|
2012-02-03 07:26:12 +00:00
|
|
|
def make_feed(feedtype, doctype, name, owner, subject, color):
|
2011-06-14 12:22:03 +00:00
|
|
|
"makes a new Feed record"
|
2011-07-04 10:53:19 +00:00
|
|
|
#msgprint(subject)
|
2011-06-14 12:22:03 +00:00
|
|
|
from webnotes.model.doc import Document
|
2012-02-03 07:26:12 +00:00
|
|
|
|
|
|
|
if feedtype in ('Login', 'Comment'):
|
|
|
|
# delete old login, comment feed
|
|
|
|
webnotes.conn.sql("""delete from tabFeed where
|
|
|
|
datediff(curdate(), creation) > 7 and doc_type in ('Comment', 'Login')""")
|
|
|
|
else:
|
|
|
|
# one feed per item
|
|
|
|
webnotes.conn.sql("""delete from tabFeed
|
|
|
|
where doc_type=%s and doc_name=%s
|
|
|
|
and ifnull(feed_type,'') != 'Comment'""", (doctype, name))
|
|
|
|
|
2011-06-14 12:22:03 +00:00
|
|
|
f = Document('Feed')
|
2012-02-03 07:26:12 +00:00
|
|
|
f.owner = owner
|
|
|
|
f.feed_type = feedtype
|
|
|
|
f.doc_type = doctype
|
|
|
|
f.doc_name = name
|
2011-06-14 12:22:03 +00:00
|
|
|
f.subject = subject
|
|
|
|
f.color = color
|
2012-02-03 07:26:12 +00:00
|
|
|
f.save()
|
2011-07-04 11:48:01 +00:00
|
|
|
|
2011-07-07 08:21:46 +00:00
|
|
|
def update_feed(doc, method=None):
|
2011-06-14 12:22:03 +00:00
|
|
|
"adds a new feed"
|
2012-01-20 10:02:18 +00:00
|
|
|
if method=='on_update':
|
|
|
|
subject, color = feed_dict.get(doc.doctype, [None, None])
|
2012-02-03 07:26:12 +00:00
|
|
|
if subject:
|
|
|
|
make_feed('', doc.doctype, doc.name, doc.owner, subject % doc.fields, color)
|