소스 검색

[fix] make map_current_doc a POST request

version-14
Anand Doshi 9 년 전
부모
커밋
d792ba7abf
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      frappe/public/js/frappe/model/create_new.js

+ 3
- 1
frappe/public/js/frappe/model/create_new.js 파일 보기

@@ -241,7 +241,9 @@ $.extend(frappe.model, {
}
var _map = function() {
return frappe.call({
type: "GET",
// Sometimes we hit the limit for URL length of a GET request
// as we send the full target_doc. Hence this is a POST request.
type: "POST",
method: opts.method,
args: {
"source_name": opts.source_name,


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