浏览代码

Merge branch 'master' into develop

version-14
Saurabh 8 年前
父节点
当前提交
d662f92851
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. +1
    -1
      frappe/__init__.py
  2. +1
    -1
      frappe/public/js/frappe/form/formatters.js

+ 1
- 1
frappe/__init__.py 查看文件

@@ -14,7 +14,7 @@ import os, sys, importlib, inspect, json
from .exceptions import *
from .utils.jinja import get_jenv, get_template, render_template, get_email_from_template

__version__ = '8.5.4'
__version__ = '8.5.5'
__title__ = "Frappe Framework"

local = Local()


+ 1
- 1
frappe/public/js/frappe/form/formatters.js 查看文件

@@ -66,7 +66,7 @@ frappe.form.formatters = {
}
value = (value==null || value==="") ?
"" : format_currency(value, currency, precision);
if (options.for_print) {
if (options && options.for_print) {
return value;
} else {
return frappe.form.formatters._right(value, options);


正在加载...
取消
保存