Merge pull request #7146 from RobertSchouten/digest_cache_dev

[fix] email digest cache by frequency
This commit is contained in:
Nabin Hait 2016-12-06 15:41:33 +05:30 committed by GitHub
commit e644ca8992

View File

@ -233,7 +233,7 @@ class EmailDigest(Document):
"new_quotations","pending_quotations","sales_order","purchase_order","pending_sales_orders","pending_purchase_orders",
"invoiced_amount", "payables", "bank_balance", "credit_balance"):
if self.get(key):
cache_key = "email_digest:card:{0}:{1}".format(self.company, key)
cache_key = "email_digest:card:{0}:{1}:{2}".format(self.company, self.frequency, key)
card = cache.get(cache_key)
if card: