From 5f161d29dfc00cced0c06c54798a2673d8974148 Mon Sep 17 00:00:00 2001 From: Charles-Henri Decultot Date: Mon, 15 Apr 2024 12:30:53 +0200 Subject: [PATCH] fix: enhance tooltip on calendar --- erpnext/venue/doctype/item_booking/item_booking.json | 3 ++- erpnext/venue/doctype/item_booking/item_booking_calendar.js | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/erpnext/venue/doctype/item_booking/item_booking.json b/erpnext/venue/doctype/item_booking/item_booking.json index 6c049a9526..979f511019 100644 --- a/erpnext/venue/doctype/item_booking/item_booking.json +++ b/erpnext/venue/doctype/item_booking/item_booking.json @@ -146,6 +146,7 @@ { "fieldname": "notes", "fieldtype": "Small Text", + "in_preview": 1, "label": "Notes" }, { @@ -293,7 +294,7 @@ "link_fieldname": "item_booking" } ], - "modified": "2024-02-13 18:35:54.430371", + "modified": "2024-04-15 12:29:10.702975", "modified_by": "Administrator", "module": "Venue", "name": "Item Booking", diff --git a/erpnext/venue/doctype/item_booking/item_booking_calendar.js b/erpnext/venue/doctype/item_booking/item_booking_calendar.js index f50f6c4b61..03ba92f932 100644 --- a/erpnext/venue/doctype/item_booking/item_booking_calendar.js +++ b/erpnext/venue/doctype/item_booking/item_booking_calendar.js @@ -11,7 +11,9 @@ frappe.views.calendar["Item Booking"] = { "rrule": "rrule", "color": "color", "status": "status", - "doctype": "doctype" + "doctype": "doctype", + "item": "item", + "notes": "notes" }, status_color: { "In cart": "orange", -- GitLab