from __future__ import unicode_literals import frappe from frappe import _ from frappe.utils import date_diff, add_months, today, getdate, add_days, flt from erpnext.accounts.utils import get_account_currency from erpnext.accounts.general_ledger import make_gl_entries def validate_service_stop_date(doc): ''' Validates service_stop_date for Purchase Invoice and Sales Invoice ''' enable_check = "enable_deferred_revenue" \ if doc.doctype=="Sales Invoice" else "enable_deferred_expense" old_stop_dates = {} old_doc = frappe.db.get_all("{0} Item".format(doc.doctype), {"parent": doc.name}, ["name", "service_stop_date"]) for d in old_doc: old_stop_dates[d.name] = d.service_stop_date or "" for item in doc.items: if not item.get(enable_check): continue if item.service_stop_date: if date_diff(item.service_stop_date, item.service_start_date) < 0: frappe.throw(_("Service Stop Date cannot be before Service Start Date")) if date_diff(item.service_stop_date, item.service_end_date) > 0: frappe.throw(_("Service Stop Date cannot be after Service End Date")) if old_stop_dates and old_stop_dates.get(item.name) and item.service_stop_date!=old_stop_dates[item.name]: frappe.throw(_("Cannot change Service Stop Date for item in row {0}".format(item.idx))) def convert_deferred_expense_to_expense(start_date=None, end_date=None): # check for the purchase invoice for which GL entries has to be done invoices = frappe.db.sql_list(''' select distinct parent from `tabPurchase Invoice Item` where service_start_date<=%s and service_end_date>=%s and enable_deferred_expense = 1 and docstatus = 1 and ifnull(amount, 0) > 0 ''', (end_date or today(), start_date or add_months(today(), -1))) # For each invoice, book deferred expense for invoice in invoices: doc = frappe.get_doc("Purchase Invoice", invoice) book_deferred_income_or_expense(doc, start_date, end_date) def convert_deferred_revenue_to_income(start_date=None, end_date=None): # check for the sales invoice for which GL entries has to be done invoices = frappe.db.sql_list(''' select distinct parent from `tabSales Invoice Item` where service_start_date<=%s and service_end_date>=%s and enable_deferred_revenue = 1 and docstatus = 1 and ifnull(amount, 0) > 0 ''', (end_date or today(), start_date or add_months(today(), -1))) # For each invoice, book deferred revenue for invoice in invoices: doc = frappe.get_doc("Sales Invoice", invoice) book_deferred_income_or_expense(doc, start_date, end_date) def get_booking_dates(doc, item, start_date=None, end_date=None): deferred_account = "deferred_revenue_account" if doc.doctype=="Sales Invoice" else "deferred_expense_account" last_gl_entry, skip = False, False booking_end_date = getdate(add_days(today(), -1)) if not end_date else end_date if booking_end_date < item.service_start_date or \ (item.service_stop_date and booking_end_date.month > item.service_stop_date.month): return None, None, None, True elif booking_end_date >= item.service_end_date: last_gl_entry = True booking_end_date = item.service_end_date elif item.service_stop_date and item.service_stop_date <= booking_end_date: last_gl_entry = True booking_end_date = item.service_stop_date booking_start_date = getdate(add_months(today(), -1)) if not start_date else start_date booking_start_date = booking_start_date \ if booking_start_date > item.service_start_date else item.service_start_date prev_gl_entry = frappe.db.sql(''' select name, posting_date from `tabGL Entry` where company=%s and account=%s and voucher_type=%s and voucher_no=%s and voucher_detail_no=%s order by posting_date desc limit 1 ''', (doc.company, item.get(deferred_account), doc.doctype, doc.name, item.name), as_dict=True) if not prev_gl_entry and item.service_start_date < booking_start_date: booking_start_date = item.service_start_date elif prev_gl_entry: booking_start_date = getdate(add_days(prev_gl_entry[0].posting_date, 1)) skip = True if booking_start_date > booking_end_date else False return last_gl_entry, booking_start_date, booking_end_date, skip def calculate_amount_and_base_amount(doc, item, last_gl_entry, total_days, total_booking_days): account_currency = get_account_currency(item.expense_account) if doc.doctype == "Sales Invoice": total_credit_debit, total_credit_debit_currency = "debit", "debit_in_account_currency" deferred_account = "deferred_revenue_account" else: total_credit_debit, total_credit_debit_currency = "credit", "credit_in_account_currency" deferred_account = "deferred_expense_account" amount, base_amount = 0, 0 if not last_gl_entry: base_amount = flt(item.base_net_amount*total_booking_days/flt(total_days), item.precision("base_net_amount")) if account_currency==doc.company_currency: amount = base_amount else: amount = flt(item.net_amount*total_booking_days/flt(total_days), item.precision("net_amount")) else: gl_entries_details = frappe.db.sql(''' select sum({0}) as total_credit, sum({1}) as total_credit_in_account_currency, voucher_detail_no from `tabGL Entry` where company=%s and account=%s and voucher_type=%s and voucher_no=%s and voucher_detail_no=%s group by voucher_detail_no '''.format(total_credit_debit, total_credit_debit_currency), (doc.company, item.get(deferred_account), doc.doctype, doc.name, item.name), as_dict=True) already_booked_amount = gl_entries_details[0].total_credit if gl_entries_details else 0 base_amount = flt(item.base_net_amount - already_booked_amount, item.precision("base_net_amount")) if account_currency==doc.company_currency: amount = base_amount else: already_booked_amount_in_account_currency = gl_entries_details[0].total_credit_in_account_currency if gl_entries_details else 0 amount = flt(item.net_amount - already_booked_amount_in_account_currency, item.precision("net_amount")) return amount, base_amount def book_deferred_income_or_expense(doc, start_date=None, end_date=None): # book the expense/income on the last day, but it will be trigger on the 1st of month at 12:00 AM # start_date: 1st of the last month or the start date # end_date: end_date or today-1 enable_check = "enable_deferred_revenue" \ if doc.doctype=="Sales Invoice" else "enable_deferred_expense" gl_entries = [] for item in doc.get('items'): if not item.get(enable_check): continue skip = False last_gl_entry, booking_start_date, booking_end_date, skip = \ get_booking_dates(doc, item, start_date, end_date) if skip: continue total_days = date_diff(item.service_end_date, item.service_start_date) total_booking_days = date_diff(booking_end_date, booking_start_date) + 1 account_currency = get_account_currency(item.expense_account) amount, base_amount = calculate_amount_and_base_amount(doc, item, last_gl_entry, total_days, total_booking_days) if doc.doctype == "Sales Invoice": against, project = doc.customer, doc.project credit_account, debit_account = item.income_account, item.deferred_revenue_account else: against, project = doc.supplier, item.project credit_account, debit_account = item.deferred_expense_account, item.expense_account # GL Entry for crediting the amount in the deferred expense gl_entries.append( doc.get_gl_dict({ "account": credit_account, "against": against, "credit": base_amount, "credit_in_account_currency": amount, "cost_center": item.cost_center, "voucher_detail_no": item.name, 'posting_date': booking_end_date, 'project': project }, account_currency) ) # GL Entry to debit the amount from the expense gl_entries.append( doc.get_gl_dict({ "account": debit_account, "against": against, "debit": base_amount, "debit_in_account_currency": amount, "cost_center": item.cost_center, "voucher_detail_no": item.name, 'posting_date': booking_end_date, 'project': project }, account_currency) ) if gl_entries: make_gl_entries(gl_entries, cancel=(doc.docstatus == 2), merge_entries=True)