fix: address_display, text -> text editor (#40621)

* fix: address_display, text -> text editor

* fix: text -> text editor for shipping and dispatch_address
This commit is contained in:
Ankush Menat
2024-03-25 11:16:16 +05:30
committed by GitHub
parent c89b0e37ab
commit e055147849
39 changed files with 124 additions and 115 deletions

View File

@@ -187,7 +187,7 @@
},
{
"fieldname": "address_display",
"fieldtype": "Small Text",
"fieldtype": "Text Editor",
"hidden": 1,
"label": "Address",
"read_only": 1
@@ -238,7 +238,7 @@
"link_fieldname": "maintenance_schedule"
}
],
"modified": "2023-06-03 16:15:43.958072",
"modified": "2024-03-22 16:01:11.868813",
"modified_by": "Administrator",
"module": "Maintenance",
"name": "Maintenance Schedule",

View File

@@ -26,7 +26,7 @@ class MaintenanceSchedule(TransactionBase):
MaintenanceScheduleItem,
)
address_display: DF.SmallText | None
address_display: DF.TextEditor | None
amended_from: DF.Link | None
company: DF.Link
contact_display: DF.SmallText | None

View File

@@ -83,7 +83,7 @@
},
{
"fieldname": "address_display",
"fieldtype": "Small Text",
"fieldtype": "Text Editor",
"hidden": 1,
"label": "Address",
"read_only": 1
@@ -295,7 +295,7 @@
"idx": 1,
"is_submittable": 1,
"links": [],
"modified": "2023-06-03 16:19:07.902723",
"modified": "2024-03-22 16:01:12.354826",
"modified_by": "Administrator",
"module": "Maintenance",
"name": "Maintenance Visit",

View File

@@ -22,7 +22,7 @@ class MaintenanceVisit(TransactionBase):
MaintenanceVisitPurpose,
)
address_display: DF.SmallText | None
address_display: DF.TextEditor | None
amended_from: DF.Link | None
company: DF.Link
completion_status: DF.Literal["", "Partially Completed", "Fully Completed"]