소스 검색

Row with label like Opening not displaying in the General Ledger report if user has set user permissions (#3414)

version-14
rohitwaghchaure 8 년 전
committed by Nabin Hait
부모
커밋
dc455a3c24
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      frappe/desk/query_report.py

+ 1
- 1
frappe/desk/query_report.py 파일 보기

@@ -287,7 +287,7 @@ def has_match(row, linked_doctypes, doctype_match_filters, ref_doctype, if_owner
if dt=="User" and columns_dict[idx]==columns_dict.get("owner"):
continue

if dt in match_filters and row[idx] not in match_filters[dt]:
if dt in match_filters and row[idx] not in match_filters[dt] and frappe.db.exists(dt, row[idx]):
match = False
break



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