diff --git a/erpnext/hr/doctype/vehicle/vehicle.py b/erpnext/hr/doctype/vehicle/vehicle.py index ef5bfe53cd1..a75cfa61257 100644 --- a/erpnext/hr/doctype/vehicle/vehicle.py +++ b/erpnext/hr/doctype/vehicle/vehicle.py @@ -11,4 +11,6 @@ from frappe.model.document import Document class Vehicle(Document): def validate(self): if getdate(self.start_date) > getdate(self.end_date): - frappe.throw(_("Insurance Start date should be less than Insurance End date")) \ No newline at end of file + frappe.throw(_("Insurance Start date should be less than Insurance End date")) + if getdate(self.carbon_check_date) > getdate(): + frappe.throw(_("Last carbon check date cannot be a future date")) \ No newline at end of file