Transaction Deletion Record

When entering to delete all transactions from within a selection in the company… Unfortunately, after completing this procedure, all basic data entered in salaries, including departments, taxes, and defining salary details… How do you control the options that appear to delete files?

[image]

In hooks.py you have too add more doctypes you don’t want to delete, i…e,

company_data_to_be_ignored = [
    "Department",
    "Leave Period",
    "Payroll Period",
    "Salary Structure",
]
2 Likes

thank you