fix: error message matches field name

This commit is contained in:
0Pranav 2019-10-30 13:47:49 +05:30
parent da5bf5a7c4
commit 07b74533fe

View File

@ -150,7 +150,7 @@ class MaintenanceSchedule(TransactionBase):
elif not d.no_of_visits:
throw(_("Please mention no of visits required"))
elif not d.sales_person:
throw(_("Please select Incharge Person's name for item: {0}".format(d.item_name)))
throw(_("Please select a Sales Person for item: {0}".format(d.item_name)))
if getdate(d.start_date) >= getdate(d.end_date):
throw(_("Start date should be less than end date for Item {0}").format(d.item_code))