|
|
@@ -423,12 +423,11 @@ class BaseDocument(object): |
|
|
|
return "{}: {}: {}".format(_("Error"), _("Data missing in table"), _(df.label)) |
|
|
|
|
|
|
|
elif self.parentfield: |
|
|
|
|
|
|
|
return "{}: {} {} #{}: {}: {}".format(_("Error"), frappe.bold(_(self.doctype)), |
|
|
|
_("Row"), self.idx, _("Value missing for"), _(df.label)) |
|
|
|
|
|
|
|
else: |
|
|
|
return "{}: {}: {}".format(_("Error"), _("Value missing for"), _(df.label)) |
|
|
|
return _("Error: Value missing for {0}: {1}").format(_(df.parent), _(df.label)) |
|
|
|
|
|
|
|
missing = [] |
|
|
|
|
|
|
|