提交 d93aa09f 编写于 作者: U unknown

修复打印表单可能的问题

上级 b00db0e4
......@@ -4368,9 +4368,9 @@ MWF.xApplication.process.Xform.Form = MWF.APPForm = new Class(
printWork: function (app, form) {
var application = app || (this.businessData.work) ? this.businessData.work.application : this.businessData.workCompleted.application;
var form = form;
if (!form) {
if (!form || form === "none") {
form = this.json.id;
if (this.json.printForm) form = this.json.printForm;
if (this.json.printForm && this.json.printForm!=="none" ) form = this.json.printForm;
}
if (this.businessData.workCompleted) {
var application = app || this.businessData.workCompleted.application;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册