소스 검색

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()



불러오는 중...
취소
저장