added new fields
This commit is contained in:
parent
a9d18c05db
commit
09af27e22b
|
|
@ -1583,6 +1583,38 @@ def create_custom_fields():
|
|||
insert_after='icbaritibbisığortaüzrə',
|
||||
allow_on_submit=1,
|
||||
),
|
||||
|
||||
# === TAX POLICY & ACCOUNTING METHOD ===
|
||||
dict(
|
||||
fieldname='tax_policy',
|
||||
label='Tax Policy',
|
||||
fieldtype='Select',
|
||||
options='Standard\nSimplified\nMicro\nSelf-employed',
|
||||
insert_after='tax_system_type',
|
||||
description='Tax regime for Tax Inspector audit calculations'
|
||||
),
|
||||
dict(
|
||||
fieldname='accounting_method',
|
||||
label='Uçot metodu (Accounting Method)',
|
||||
fieldtype='Select',
|
||||
options='\nKassa metodu\nHesablama metodu',
|
||||
insert_after='tax_policy',
|
||||
description='Kassa metodu — gəlir və xərclər yalnız ödəniş zamanı tanınır. ƏDV öhdəliyi yalnız ödəniş alındıqda yaranır.\nHesablama metodu — gəlir və xərclər faktura zamanı tanınır.'
|
||||
),
|
||||
|
||||
# === TAX CLOSING WIZARDS ===
|
||||
dict(
|
||||
fieldname='tax_wizards_section',
|
||||
label='Tax Closing Wizards',
|
||||
fieldtype='Section Break',
|
||||
insert_after='accounting_method'
|
||||
),
|
||||
dict(
|
||||
fieldname='tax_wizards_html',
|
||||
label='Wizards',
|
||||
fieldtype='HTML',
|
||||
insert_after='tax_wizards_section'
|
||||
),
|
||||
],
|
||||
|
||||
# =====================================================
|
||||
|
|
|
|||
Loading…
Reference in New Issue