mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-06 05:39:12 +00:00
fix: expiry allocaton after creating all the transactions
This commit is contained in:
@@ -16,6 +16,7 @@ def execute():
|
||||
generate_allocation_ledger_entries()
|
||||
generate_application_leave_ledger_entries()
|
||||
generate_encashment_leave_ledger_entries()
|
||||
generate_expiry_allocation_ledger_entries()
|
||||
|
||||
def generate_allocation_ledger_entries():
|
||||
''' fix ledger entries for missing leave allocation transaction '''
|
||||
@@ -26,9 +27,6 @@ def generate_allocation_ledger_entries():
|
||||
allocation.update(dict(doctype="Leave Allocation"))
|
||||
allocation_obj = frappe.get_doc(allocation)
|
||||
allocation_obj.create_leave_ledger_entry()
|
||||
if allocation.to_date <= getdate():
|
||||
allocation_obj.expire_allocation()
|
||||
|
||||
|
||||
def generate_application_leave_ledger_entries():
|
||||
''' fix ledger entries for missing leave application transaction '''
|
||||
@@ -48,10 +46,20 @@ def generate_encashment_leave_ledger_entries():
|
||||
encashment.update(dict(doctype="Leave Encashment"))
|
||||
frappe.get_doc(encashment).create_leave_ledger_entry()
|
||||
|
||||
def generate_expiry_allocation_ledger_entries():
|
||||
''' fix ledger entries for missing leave allocation transaction '''
|
||||
allocation_list = get_allocation_records()
|
||||
|
||||
for allocation in allocation_list:
|
||||
if not frappe.db.exists("Leave Ledger Entry", {'transaction_type': 'Leave Allocation', 'transaction_name': allocation.name, 'is_expired': 1}):
|
||||
allocation.update(dict(doctype="Leave Allocation"))
|
||||
allocation_obj = frappe.get_doc(allocation)
|
||||
allocation_obj.expire_allocation()
|
||||
|
||||
def get_allocation_records():
|
||||
return frappe.db.sql("""
|
||||
SELECT
|
||||
DISTINCT name,
|
||||
name,
|
||||
employee,
|
||||
leave_type,
|
||||
new_leaves_allocated,
|
||||
@@ -68,7 +76,7 @@ def get_allocation_records():
|
||||
def get_leaves_application_records():
|
||||
return frappe.db.sql("""
|
||||
SELECT
|
||||
DISTINCT name,
|
||||
name,
|
||||
employee,
|
||||
leave_type,
|
||||
total_leave_days,
|
||||
@@ -82,7 +90,7 @@ def get_leaves_application_records():
|
||||
def get_leave_encashment_records():
|
||||
return frappe.db.sql("""
|
||||
SELECT
|
||||
DISTINCT name,
|
||||
name,
|
||||
employee,
|
||||
leave_type,
|
||||
encashable_days,
|
||||
|
||||
Reference in New Issue
Block a user