mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-28 01:14:46 +00:00
Merge pull request #17823 from abhijitkumbharInd/develop
fix: Vehicle Master - Last carbon check accepting future date.(#17821)
This commit is contained in:
@@ -12,3 +12,5 @@ class Vehicle(Document):
|
|||||||
def validate(self):
|
def validate(self):
|
||||||
if getdate(self.start_date) > getdate(self.end_date):
|
if getdate(self.start_date) > getdate(self.end_date):
|
||||||
frappe.throw(_("Insurance Start date should be less than Insurance End date"))
|
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"))
|
||||||
Reference in New Issue
Block a user