Browse Source

处理直接选择审核人(非正常签名流程)归档问题

TonyKang 3 years ago
parent
commit
483529c38f
1 changed files with 4 additions and 2 deletions
  1. 4 2
      app/public/report/js/rpt_archive.js

+ 4 - 2
app/public/report/js/rpt_archive.js

@@ -453,8 +453,10 @@ let rptArchiveObj = {
             // 每页
             for (let sCellIdx = 0; sCellIdx < currentRptPageRst.items[pageIdx].signature_cells.length; sCellIdx++) {
                 let sCell = currentRptPageRst.items[pageIdx].signature_cells[sCellIdx];
-                if (sCell.signature_name === 'dummy_pic' && sCell.path.indexOf('/sign') < 0) {
-                    //草图就不考虑重复问题,重复就重复吧
+                // if (sCell.signature_name === 'dummy_pic' && sCell.path.indexOf('/sign') < 0) {
+                if (sCell.signature_name === 'dummy_pic') {
+                    //1. 草图就不考虑重复问题,重复就重复吧;
+                    //2. 如果是dummy_pic,也不用判断是否为签名了,因为有其他的逻辑直接选择审核人,不经过签名过程,就当草图一样放过去了
                     picKeys.push(sCell.path);
                     picCells.push(sCell);
                 }