added area field instead of hectare

This commit is contained in:
Ali 2025-10-23 14:13:31 +04:00
parent 852b1ffe46
commit 76dd3e96e1
1 changed files with 3 additions and 3 deletions

View File

@ -255,11 +255,11 @@ def create_custom_fields():
description='Enter the tax-exempt area value' description='Enter the tax-exempt area value'
), ),
dict( dict(
fieldname='hectare', fieldname='area',
label='Hectare', label='Area',
fieldtype='Float', fieldtype='Float',
insert_after='tax_exempt_area', insert_after='tax_exempt_area',
description='Enter the area in hectares', description='For agricultural: hectares (used) or square meters (unused). For industrial: always square meters.',
precision=4 precision=4
) )
], ],