mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-15 19:19:17 +00:00
refactor: merge reposting settings to accounts settings
(cherry picked from commit 89ebf48544)
This commit is contained in:
@@ -62,6 +62,8 @@
|
|||||||
"reconciliation_queue_size",
|
"reconciliation_queue_size",
|
||||||
"column_break_resa",
|
"column_break_resa",
|
||||||
"exchange_gain_loss_posting_date",
|
"exchange_gain_loss_posting_date",
|
||||||
|
"repost_section",
|
||||||
|
"repost_allowed_types",
|
||||||
"payment_options_section",
|
"payment_options_section",
|
||||||
"enable_loyalty_point_program",
|
"enable_loyalty_point_program",
|
||||||
"column_break_ctam",
|
"column_break_ctam",
|
||||||
@@ -702,6 +704,17 @@
|
|||||||
"fieldname": "fetch_payment_schedule_in_payment_request",
|
"fieldname": "fetch_payment_schedule_in_payment_request",
|
||||||
"fieldtype": "Check",
|
"fieldtype": "Check",
|
||||||
"label": "Fetch Payment Schedule In Payment Request"
|
"label": "Fetch Payment Schedule In Payment Request"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "repost_section",
|
||||||
|
"fieldtype": "Section Break",
|
||||||
|
"label": "Repost"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "repost_allowed_types",
|
||||||
|
"fieldtype": "Table",
|
||||||
|
"label": "Allowed Doctypes",
|
||||||
|
"options": "Repost Allowed Types"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"grid_page_length": 50,
|
"grid_page_length": 50,
|
||||||
@@ -711,7 +724,7 @@
|
|||||||
"index_web_pages_for_search": 1,
|
"index_web_pages_for_search": 1,
|
||||||
"issingle": 1,
|
"issingle": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2026-03-30 07:32:58.182018",
|
"modified": "2026-04-13 15:30:28.729627",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Accounts",
|
"module": "Accounts",
|
||||||
"name": "Accounts Settings",
|
"name": "Accounts Settings",
|
||||||
|
|||||||
@@ -44,6 +44,8 @@ class AccountsSettings(Document):
|
|||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from frappe.types import DF
|
from frappe.types import DF
|
||||||
|
|
||||||
|
from erpnext.accounts.doctype.repost_allowed_types.repost_allowed_types import RepostAllowedTypes
|
||||||
|
|
||||||
add_taxes_from_item_tax_template: DF.Check
|
add_taxes_from_item_tax_template: DF.Check
|
||||||
add_taxes_from_taxes_and_charges_template: DF.Check
|
add_taxes_from_taxes_and_charges_template: DF.Check
|
||||||
allow_multi_currency_invoices_against_single_party_account: DF.Check
|
allow_multi_currency_invoices_against_single_party_account: DF.Check
|
||||||
@@ -86,6 +88,7 @@ class AccountsSettings(Document):
|
|||||||
receivable_payable_fetch_method: DF.Literal["Buffered Cursor", "UnBuffered Cursor", "Raw SQL"]
|
receivable_payable_fetch_method: DF.Literal["Buffered Cursor", "UnBuffered Cursor", "Raw SQL"]
|
||||||
receivable_payable_remarks_length: DF.Int
|
receivable_payable_remarks_length: DF.Int
|
||||||
reconciliation_queue_size: DF.Int
|
reconciliation_queue_size: DF.Int
|
||||||
|
repost_allowed_types: DF.Table[RepostAllowedTypes]
|
||||||
role_allowed_to_over_bill: DF.Link | None
|
role_allowed_to_over_bill: DF.Link | None
|
||||||
role_to_notify_on_depreciation_failure: DF.Link | None
|
role_to_notify_on_depreciation_failure: DF.Link | None
|
||||||
role_to_override_stop_action: DF.Link | None
|
role_to_override_stop_action: DF.Link | None
|
||||||
|
|||||||
Reference in New Issue
Block a user