|
@@ -833,14 +833,15 @@ export default {
|
|
|
if(this.$route.query.id&&code_arr.length) {
|
|
|
let res = await dataBaseInterface.getReportrefreshStatus({
|
|
|
Source: 'smart_report',
|
|
|
- ReportId: Number(this.$route.query.id),
|
|
|
- ReportChapterId: 0
|
|
|
+ PrimaryId: Number(this.$route.query.id),
|
|
|
});
|
|
|
|
|
|
if(!res.Data.RefreshResult) return this.$message.warning(this.$t('ReportManage.ReportList.chart_refreshed_msg'))
|
|
|
|
|
|
const { Ret,Msg } = await dataBaseInterface.reportRefresh({
|
|
|
- ChartInfoCode: code_arr
|
|
|
+ ChartInfoCode: code_arr,
|
|
|
+ Source: 'smart_report',
|
|
|
+ PrimaryId: Number(this.$route.query.id),
|
|
|
})
|
|
|
|
|
|
if(Ret === 200) {
|
|
@@ -857,12 +858,13 @@ export default {
|
|
|
//获取刷新结果
|
|
|
let res = await sheetInterface.getRefreshResult({
|
|
|
Source: 'smart_report',
|
|
|
- ReportId: Number(this.$route.query.id),
|
|
|
- ReportChapterId: 0
|
|
|
+ PrimaryId: Number(this.$route.query.id),
|
|
|
});
|
|
|
if(!res.Data.RefreshResult) return this.$message.warning('表格正在刷新中,请勿重复操作')
|
|
|
const { Ret,Msg } = await sheetInterface.refreshSheet({
|
|
|
- ExcelCodes: sheet_code_arr
|
|
|
+ ExcelCodes: sheet_code_arr,
|
|
|
+ PrimaryId:Number(this.$route.query.id),
|
|
|
+ Source: 'smart_report',
|
|
|
})
|
|
|
|
|
|
if(Ret === 200) {
|