|
@@ -715,7 +715,9 @@ let rptControlObj = {
|
|
|
rptControlObj.getTplIdsCommon(refRptTplIds, rpt_sheet_names, splitArchives);
|
|
|
let params = rptControlObj.creatCommonExportParam(refRptTplIds);
|
|
|
params.closeWatermark = getCloseWatermarkForExcel();
|
|
|
- await rptCustomObj.getCustomSelect(params);
|
|
|
+ if (![-100, -200, -300].includes(STAGE_ID)) {
|
|
|
+ await rptCustomObj.getCustomSelect(params);
|
|
|
+ }
|
|
|
params.rpt_names = rpt_sheet_names;
|
|
|
params.rptName = TENDER_NAME;
|
|
|
params.option = getExcelOutputOption();
|
|
@@ -757,7 +759,9 @@ let rptControlObj = {
|
|
|
rptControlObj.getTplIdsCommon(refRptTplIds, rpt_names, splitArchives);
|
|
|
let params = rptControlObj.creatCommonExportParam(refRptTplIds);
|
|
|
params.closeWatermark = getCloseWatermarkForExcel();
|
|
|
- await rptCustomObj.getCustomSelect(params);
|
|
|
+ if (![-100, -200, -300].includes(STAGE_ID)) {
|
|
|
+ await rptCustomObj.getCustomSelect(params);
|
|
|
+ }
|
|
|
params.isOneSheet = true;
|
|
|
params.rpt_names = rpt_names;
|
|
|
params.rptName = 'All';
|
|
@@ -891,7 +895,9 @@ let rptControlObj = {
|
|
|
params.splitArchives = splitArchives;
|
|
|
|
|
|
// params.getPicFlag = true; //专门针对草图项,只有此项为true,才需要把草图信息带过来,预览及打印动态加载草图 // 纠结:但这样还是解决不了效率问题,得另外想交互方式
|
|
|
- await rptCustomObj.getCustomSelect(params);
|
|
|
+ if (![-100, -200, -300].includes(STAGE_ID)) {
|
|
|
+ await rptCustomObj.getCustomSelect(params);
|
|
|
+ }
|
|
|
delete params.orientation; // 打印时有勾选的话,不需要提供方向
|
|
|
$.bootstrapLoading.start();
|
|
|
if (COMMON_WATER_MARK_PIC_DATA === null || COMMON_WATER_MARK_PIC_DATA === '') {
|
|
@@ -1055,7 +1061,9 @@ let rptControlObj = {
|
|
|
let params = rptControlObj.creatCommonExportParam(refRptTplIds);
|
|
|
params.splitArchives = splitArchives;
|
|
|
// params.getPicFlag = true; //专门针对草图项,只有此项为true,才需要把草图信息带过来,预览及打印动态加载草图 // 纠结:但这样还是解决不了效率问题,得另外想交互方式
|
|
|
- await rptCustomObj.getCustomSelect(params);
|
|
|
+ if (![-100, -200, -300].includes(STAGE_ID)) {
|
|
|
+ await rptCustomObj.getCustomSelect(params);
|
|
|
+ }
|
|
|
delete params.orientation; // 打印时有勾选的话,不需要提供方向
|
|
|
$.bootstrapLoading.start();
|
|
|
if (COMMON_WATER_MARK_PIC_DATA === null || COMMON_WATER_MARK_PIC_DATA === '') {
|