deleted az_locale functions and returned payment entry hooks

This commit is contained in:
Ali 2025-03-05 13:59:54 +04:00
parent 75842d4a64
commit 6a15ba168e
2 changed files with 13 additions and 15 deletions

View File

@ -19,14 +19,14 @@ def create_custom_fields():
insert_after='swift_number' insert_after='swift_number'
) )
], ],
# "Employee Transfer": [ "Employee Transfer": [
# dict( dict(
# fieldname='reason', fieldname='reason',
# label='Reason', label='Reason',
# fieldtype='Data', fieldtype='Data',
# insert_after='amended_from' insert_after='amended_from'
# ) )
# ], ],
"Company": [ "Company": [
dict( dict(
fieldname='ceo', fieldname='ceo',

View File

@ -8,8 +8,6 @@ app_license = "unlicense"
boot_session = "jey_erp.extend_party_types.add_company_to_party_account_types" boot_session = "jey_erp.extend_party_types.add_company_to_party_account_types"
after_install = "jey_erp.install.after_install"
doctype_js = { doctype_js = {
"Payment Entry": "public/js/payment_entry_mod.js" "Payment Entry": "public/js/payment_entry_mod.js"
} }
@ -18,11 +16,11 @@ override_doctype_class = {
"Report": "jey_erp.custom_report.CustomReport" "Report": "jey_erp.custom_report.CustomReport"
} }
# doc_events = { doc_events = {
# "Employee Onboarding": { "Employee Onboarding": {
# "on_update": "jey_erp.custom_employee_onboarding.on_update" "on_update": "jey_erp.custom_employee_onboarding.on_update"
# } }
# } }
after_migrate = "jey_erp.hooks.after_migrate_combined" after_migrate = "jey_erp.hooks.after_migrate_combined"