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

Co-authored-by: Mohsin Akhtar <167299936+akhtarmohsin@users.noreply.github.com>
Co-authored-by: Mihir Kandoi <kandoimihir@gmail.com>
This commit is contained in:
mergify[bot]
2026-08-13 04:42:02 +00:00
committed by GitHub
parent 8c8a4b6f20
commit bfa3edbf95
2 changed files with 4 additions and 4 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
}, },
@@ -224,7 +224,7 @@
"idx": 1, "idx": 1,
"index_web_pages_for_search": 1, "index_web_pages_for_search": 1,
"links": [], "links": [],
"modified": "2024-04-02 22:18:00.450641", "modified": "2026-08-12 13:14:41.847412",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "Stock", "module": "Stock",
"name": "Item Price", "name": "Item Price",
@@ -264,4 +264,4 @@
"states": [], "states": [],
"title_field": "item_name", "title_field": "item_name",
"track_changes": 1 "track_changes": 1
} }

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