瀏覽代碼

[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,


Loading…
取消
儲存