|
@@ -147,7 +147,7 @@ let rptSignatureHelper = {
|
|
|
if (dftDate !== '' && dftDate.length >= 10) {
|
|
|
dftDate = new Date(dftDate); // 不Format,保留时分秒
|
|
|
} else if (dftDate === '') {
|
|
|
- if (STAGE_ID <= -300 && STAGE_ID > -400 && BGL_OBJ && BGL_OBJ.currentBz && BGL_OBJ.currentBz.status === 3) {
|
|
|
+ if (current_stage_id <= -300 && current_stage_id > -400 && BGL_OBJ && BGL_OBJ.currentBz && BGL_OBJ.currentBz.status === 3) {
|
|
|
if (STAGE_AUDIT && STAGE_AUDIT.length > 0) {
|
|
|
dftDate = new Date(STAGE_AUDIT[STAGE_AUDIT.length - 1].end_time);
|
|
|
} else {
|
|
@@ -512,7 +512,13 @@ let rptSignatureHelper = {
|
|
|
params.business_id = BUSINESS_ID;
|
|
|
params.source_type = SOURCE_TYPE;
|
|
|
params.rpt_id = zTreeOprObj.currentNode.refId;
|
|
|
- params.rel_content = ROLE_REL_LIST;
|
|
|
+ // params.rel_content = ROLE_REL_LIST;
|
|
|
+ params.rel_content = [];
|
|
|
+ ROLE_REL_LIST.forEach(role_rel => {
|
|
|
+ if (role_rel.signature_name.indexOf('dummy_pic') < 0) {
|
|
|
+ params.rel_content.push(role_rel);
|
|
|
+ }
|
|
|
+ });
|
|
|
return params;
|
|
|
},
|
|
|
|
|
@@ -851,7 +857,7 @@ let rptSignatureHelper = {
|
|
|
if (dftDate !== '' && dftDate.length >= 10) {
|
|
|
dftDate = new Date(dftDate); // 不Format,保留时分秒
|
|
|
} else if (dftDate === '') {
|
|
|
- if (STAGE_ID <= -300 && STAGE_ID > -400 && BGL_OBJ && BGL_OBJ.currentBz && BGL_OBJ.currentBz.status === 3) {
|
|
|
+ if (current_stage_id <= -300 && current_stage_id > -400 && BGL_OBJ && BGL_OBJ.currentBz && BGL_OBJ.currentBz.status === 3) {
|
|
|
if (STAGE_AUDIT && STAGE_AUDIT.length > 0) {
|
|
|
dftDate = new Date(STAGE_AUDIT[STAGE_AUDIT.length - 1].end_time);
|
|
|
} else {
|