瀏覽代碼

Do not validate links, selects, mandatory, etc. on cancel

version-14
Anand Doshi 11 年之前
父節點
當前提交
5b15e85ada
共有 1 個檔案被更改,包括 4 行新增1 行删除
  1. +4
    -1
      frappe/model/document.py

+ 4
- 1
frappe/model/document.py 查看文件

@@ -159,7 +159,10 @@ class Document(BaseDocument):
self.check_if_latest()
self.set_parent_in_children()
self.run_before_save_methods()
self._validate()

if self._action != "cancel":
self._validate()

if self._action == "update_after_submit":
self.validate_update_after_submit()



Loading…
取消
儲存