Fix/item description in the item price list (#58084)

This commit is contained in:
Mohsin Akhtar
2026-08-13 09:41:30 +05:30
committed by GitHub
parent c6d08979d3
commit e72aabcdb8
2 changed files with 3 additions and 3 deletions

View File

@@ -89,7 +89,7 @@
}, },
{ {
"fieldname": "item_description", "fieldname": "item_description",
"fieldtype": "Text", "fieldtype": "Text Editor",
"label": "Item Description", "label": "Item Description",
"read_only": 1 "read_only": 1
}, },
@@ -226,7 +226,7 @@
"idx": 1, "idx": 1,
"index_web_pages_for_search": 1, "index_web_pages_for_search": 1,
"links": [], "links": [],
"modified": "2025-03-19 20:27:21.382369", "modified": "2026-08-12 13:14:41.847412",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "Stock", "module": "Stock",
"name": "Item Price", "name": "Item Price",

View File

@@ -28,7 +28,7 @@ class ItemPrice(Document):
currency: DF.Link | None currency: DF.Link | None
customer: DF.Link | None customer: DF.Link | None
item_code: DF.Link item_code: DF.Link
item_description: DF.Text | None item_description: DF.TextEditor | None
item_name: DF.Data | None item_name: DF.Data | None
lead_time_days: DF.Int lead_time_days: DF.Int
note: DF.Text | None note: DF.Text | None