add Employee custom fields: father_name, identification_number, ssn

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Ali 2026-03-25 18:45:45 +04:00
parent 2c7eadc1cd
commit 1c292a130f
1 changed files with 20 additions and 0 deletions

View File

@ -941,6 +941,26 @@ def create_custom_fields():
insert_after='payment_account'
)
],
"Employee": [
dict(
fieldname='father_name',
label='Ata adı',
fieldtype='Data',
insert_after='last_name'
),
dict(
fieldname='identification_number',
label='FİN',
fieldtype='Data',
insert_after='passport_number'
),
dict(
fieldname='ssn',
label='SSN',
fieldtype='Data',
insert_after='identification_number'
)
],
"Employee Transfer": [
dict(
fieldname='reason',