mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-20 13:39:18 +00:00
refactor: make it configurable
This commit is contained in:
@@ -33,7 +33,9 @@
|
|||||||
"dont_reserve_sales_order_qty_on_sales_return",
|
"dont_reserve_sales_order_qty_on_sales_return",
|
||||||
"hide_tax_id",
|
"hide_tax_id",
|
||||||
"enable_discount_accounting",
|
"enable_discount_accounting",
|
||||||
"enable_cutoff_date_on_bulk_delivery_note_creation"
|
"enable_cutoff_date_on_bulk_delivery_note_creation",
|
||||||
|
"experimental_section",
|
||||||
|
"use_server_side_reactivity"
|
||||||
],
|
],
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
@@ -207,6 +209,17 @@
|
|||||||
"fieldname": "enable_cutoff_date_on_bulk_delivery_note_creation",
|
"fieldname": "enable_cutoff_date_on_bulk_delivery_note_creation",
|
||||||
"fieldtype": "Check",
|
"fieldtype": "Check",
|
||||||
"label": "Enable Cut-Off Date on Bulk Delivery Note Creation"
|
"label": "Enable Cut-Off Date on Bulk Delivery Note Creation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "experimental_section",
|
||||||
|
"fieldtype": "Section Break",
|
||||||
|
"label": "Experimental"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "1",
|
||||||
|
"fieldname": "use_server_side_reactivity",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"label": "Use Server Side Reactivity"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"icon": "fa fa-cog",
|
"icon": "fa fa-cog",
|
||||||
@@ -214,7 +227,7 @@
|
|||||||
"index_web_pages_for_search": 1,
|
"index_web_pages_for_search": 1,
|
||||||
"issingle": 1,
|
"issingle": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2024-03-27 13:10:38.633352",
|
"modified": "2024-12-06 11:41:54.722337",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Selling",
|
"module": "Selling",
|
||||||
"name": "Selling Settings",
|
"name": "Selling Settings",
|
||||||
|
|||||||
@@ -40,6 +40,7 @@ class SellingSettings(Document):
|
|||||||
selling_price_list: DF.Link | None
|
selling_price_list: DF.Link | None
|
||||||
so_required: DF.Literal["No", "Yes"]
|
so_required: DF.Literal["No", "Yes"]
|
||||||
territory: DF.Link | None
|
territory: DF.Link | None
|
||||||
|
use_server_side_reactivity: DF.Check
|
||||||
validate_selling_price: DF.Check
|
validate_selling_price: DF.Check
|
||||||
# end: auto-generated types
|
# end: auto-generated types
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user