浏览代码

报表相关

MaiXinRong 1 年之前
父节点
当前提交
a64cdba26e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/lib/stage_im.js

+ 1 - 1
app/lib/stage_im.js

@@ -1044,7 +1044,7 @@ class StageIm {
         // 生成数据
         this._recursiveBuildImData(this.billsTree.children);
         // 排序
-        if (this.stage.im_type !== imType.tz.value && stage.im_type !== imType.bb.value) {
+        if (this.stage.im_type !== imType.tz.value && this.stage.im_type !== imType.bb.value) {
             this.ImData.sort(function(x, y) {
                 const iCode = self.ctx.helper.compareCode(x.code, y.code);
                 return iCode === 0 ? x.lIndex - y.lIndex : iCode;