mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-31 07:28:04 +00:00
fix(item): correct description on deferred revenue/expense
This commit is contained in:
@@ -721,7 +721,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"default": "0",
|
"default": "0",
|
||||||
"description": "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license",
|
"description": "Income from this item will be recognized over a period of months instead of all at once. Eg: annual subscription paid upfront.",
|
||||||
"fieldname": "enable_deferred_revenue",
|
"fieldname": "enable_deferred_revenue",
|
||||||
"fieldtype": "Check",
|
"fieldtype": "Check",
|
||||||
"label": "Enable Deferred Revenue"
|
"label": "Enable Deferred Revenue"
|
||||||
@@ -734,7 +734,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"default": "0",
|
"default": "0",
|
||||||
"description": "Income from this item will be recognized over a period of months instead of all at once. Eg: annual subscription paid upfront.",
|
"description": "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license",
|
||||||
"fieldname": "enable_deferred_expense",
|
"fieldname": "enable_deferred_expense",
|
||||||
"fieldtype": "Check",
|
"fieldtype": "Check",
|
||||||
"label": "Enable Deferred Expense"
|
"label": "Enable Deferred Expense"
|
||||||
@@ -1095,19 +1095,19 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"default": "0",
|
"default": "0",
|
||||||
|
"description": "If checked, this Item is only available for transactions in the companies listed below.",
|
||||||
"fieldname": "restrict_to_companies",
|
"fieldname": "restrict_to_companies",
|
||||||
"fieldtype": "Check",
|
"fieldtype": "Check",
|
||||||
"label": "Restrict to Companies",
|
"label": "Restrict to Companies",
|
||||||
"description": "If checked, this Item is only available for transactions in the companies listed below.",
|
|
||||||
"permlevel": 1
|
"permlevel": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"depends_on": "eval:doc.restrict_to_companies",
|
||||||
"fieldname": "allowed_companies",
|
"fieldname": "allowed_companies",
|
||||||
"fieldtype": "Table MultiSelect",
|
"fieldtype": "Table MultiSelect",
|
||||||
"label": "Allowed Companies",
|
"label": "Allowed Companies",
|
||||||
"options": "Company Restriction",
|
|
||||||
"depends_on": "eval:doc.restrict_to_companies",
|
|
||||||
"mandatory_depends_on": "eval:doc.restrict_to_companies",
|
"mandatory_depends_on": "eval:doc.restrict_to_companies",
|
||||||
|
"options": "Company Restriction",
|
||||||
"permlevel": 1
|
"permlevel": 1
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -1116,7 +1116,7 @@
|
|||||||
"image_field": "image",
|
"image_field": "image",
|
||||||
"links": [],
|
"links": [],
|
||||||
"make_attachments_public": 1,
|
"make_attachments_public": 1,
|
||||||
"modified": "2026-07-23 10:00:00.000000",
|
"modified": "2026-07-28 18:58:43.328497",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Stock",
|
"module": "Stock",
|
||||||
"name": "Item",
|
"name": "Item",
|
||||||
|
|||||||
@@ -132,8 +132,8 @@ class Item(Document):
|
|||||||
purchase_uom: DF.Link | None
|
purchase_uom: DF.Link | None
|
||||||
quality_inspection_template: DF.Link | None
|
quality_inspection_template: DF.Link | None
|
||||||
reorder_levels: DF.Table[ItemReorder]
|
reorder_levels: DF.Table[ItemReorder]
|
||||||
retain_sample: DF.Check
|
|
||||||
restrict_to_companies: DF.Check
|
restrict_to_companies: DF.Check
|
||||||
|
retain_sample: DF.Check
|
||||||
safety_stock: DF.Float
|
safety_stock: DF.Float
|
||||||
sales_tax_withholding_category: DF.Link | None
|
sales_tax_withholding_category: DF.Link | None
|
||||||
sales_uom: DF.Link | None
|
sales_uom: DF.Link | None
|
||||||
|
|||||||
Reference in New Issue
Block a user