mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-02 19:59:12 +00:00
chore: Remove the extra 's' in patient age string (#29180)
This commit is contained in:
committed by
GitHub
parent
7abe7c752b
commit
60ddf39e37
@@ -143,7 +143,7 @@ class Patient(Document):
|
|||||||
age = self.age
|
age = self.age
|
||||||
if not age:
|
if not age:
|
||||||
return
|
return
|
||||||
age_str = str(age.years) + ' ' + _("Years(s)") + ' ' + str(age.months) + ' ' + _("Month(s)") + ' ' + str(age.days) + ' ' + _("Day(s)")
|
age_str = str(age.years) + ' ' + _("Year(s)") + ' ' + str(age.months) + ' ' + _("Month(s)") + ' ' + str(age.days) + ' ' + _("Day(s)")
|
||||||
return age_str
|
return age_str
|
||||||
|
|
||||||
@frappe.whitelist()
|
@frappe.whitelist()
|
||||||
|
|||||||
Reference in New Issue
Block a user