mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-27 00:44:45 +00:00
[minor] [fix]
This commit is contained in:
@@ -114,7 +114,8 @@ class DocType(SellingController):
|
|||||||
|
|
||||||
def validate_with_previous_doc(self):
|
def validate_with_previous_doc(self):
|
||||||
prev_doctype = [d.prevdoc_doctype for d in self.doclist.get({
|
prev_doctype = [d.prevdoc_doctype for d in self.doclist.get({
|
||||||
"parentfield": "delivery_note_details", "prevdoc_doctype": ["!=", ""]})]
|
"parentfield": "delivery_note_details"}) if cstr(d.prevdoc_doctype) != ""]
|
||||||
|
|
||||||
if prev_doctype:
|
if prev_doctype:
|
||||||
super(DocType, self).validate_with_previous_doc(self.tname, {
|
super(DocType, self).validate_with_previous_doc(self.tname, {
|
||||||
prev_doctype[0]: {
|
prev_doctype[0]: {
|
||||||
|
|||||||
Reference in New Issue
Block a user