mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-13 01:34:10 +00:00
feat(credit-note): add checkbox to set valuation rate as zero for expired batch
(cherry picked from commit 04cdf88715)
This commit is contained in:
@@ -39,6 +39,7 @@
|
|||||||
"enable_cutoff_date_on_bulk_delivery_note_creation",
|
"enable_cutoff_date_on_bulk_delivery_note_creation",
|
||||||
"allow_zero_qty_in_quotation",
|
"allow_zero_qty_in_quotation",
|
||||||
"allow_zero_qty_in_sales_order",
|
"allow_zero_qty_in_sales_order",
|
||||||
|
"set_zero_rate_for_expired_batch",
|
||||||
"experimental_section",
|
"experimental_section",
|
||||||
"use_legacy_js_reactivity",
|
"use_legacy_js_reactivity",
|
||||||
"subcontracting_inward_tab",
|
"subcontracting_inward_tab",
|
||||||
@@ -289,6 +290,13 @@
|
|||||||
"fieldname": "use_legacy_js_reactivity",
|
"fieldname": "use_legacy_js_reactivity",
|
||||||
"fieldtype": "Check",
|
"fieldtype": "Check",
|
||||||
"label": "Use Legacy (Client side) Reactivity"
|
"label": "Use Legacy (Client side) Reactivity"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"description": "If enabled, system will set incoming rate as zero for stand-alone credit notes with expired batch item.",
|
||||||
|
"fieldname": "set_zero_rate_for_expired_batch",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"label": "Set Incoming Rate as Zero for Expired Batch"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"grid_page_length": 50,
|
"grid_page_length": 50,
|
||||||
@@ -298,7 +306,7 @@
|
|||||||
"index_web_pages_for_search": 1,
|
"index_web_pages_for_search": 1,
|
||||||
"issingle": 1,
|
"issingle": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2026-01-21 17:28:37.027837",
|
"modified": "2026-01-23 00:04:33.105916",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Selling",
|
"module": "Selling",
|
||||||
"name": "Selling Settings",
|
"name": "Selling Settings",
|
||||||
|
|||||||
@@ -44,6 +44,7 @@ class SellingSettings(Document):
|
|||||||
role_to_override_stop_action: DF.Link | None
|
role_to_override_stop_action: DF.Link | None
|
||||||
sales_update_frequency: DF.Literal["Monthly", "Each Transaction", "Daily"]
|
sales_update_frequency: DF.Literal["Monthly", "Each Transaction", "Daily"]
|
||||||
selling_price_list: DF.Link | None
|
selling_price_list: DF.Link | None
|
||||||
|
set_zero_rate_for_expired: DF.Check
|
||||||
so_required: DF.Literal["No", "Yes"]
|
so_required: DF.Literal["No", "Yes"]
|
||||||
territory: DF.Link | None
|
territory: DF.Link | None
|
||||||
use_legacy_js_reactivity: DF.Check
|
use_legacy_js_reactivity: DF.Check
|
||||||
|
|||||||
Reference in New Issue
Block a user