refactor: provision for monthly re-evaluation

This commit is contained in:
ruthra kumar
2024-07-24 18:13:30 +05:30
parent 6a50b40976
commit ce2b9e0f1a
2 changed files with 3 additions and 3 deletions

View File

@@ -738,7 +738,7 @@
"fieldname": "auto_err_frequency", "fieldname": "auto_err_frequency",
"fieldtype": "Select", "fieldtype": "Select",
"label": "Frequency", "label": "Frequency",
"options": "Daily\nWeekly" "options": "Daily\nWeekly\nMonthly"
}, },
{ {
"default": "0", "default": "0",
@@ -792,7 +792,7 @@
"image_field": "company_logo", "image_field": "company_logo",
"is_tree": 1, "is_tree": 1,
"links": [], "links": [],
"modified": "2024-06-21 17:46:25.567565", "modified": "2024-07-24 18:17:56.413971",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "Setup", "module": "Setup",
"name": "Company", "name": "Company",

View File

@@ -31,7 +31,7 @@ class Company(NestedSet):
accumulated_depreciation_account: DF.Link | None accumulated_depreciation_account: DF.Link | None
allow_account_creation_against_child_company: DF.Check allow_account_creation_against_child_company: DF.Check
asset_received_but_not_billed: DF.Link | None asset_received_but_not_billed: DF.Link | None
auto_err_frequency: DF.Literal["Daily", "Weekly"] auto_err_frequency: DF.Literal["Daily", "Weekly", "Monthly"]
auto_exchange_rate_revaluation: DF.Check auto_exchange_rate_revaluation: DF.Check
book_advance_payments_in_separate_party_account: DF.Check book_advance_payments_in_separate_party_account: DF.Check
capital_work_in_progress_account: DF.Link | None capital_work_in_progress_account: DF.Link | None