1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import axios from '@/utils/request';
 
// 获取核算报告分页
export const getCalculateReports = (params) => {
    return axios({
        url: "/calculate-report/page",
        method: "GET",
        params: params
    })
}
 
// 获取核算报告列表
export const getCalculateReportList = () => {
    return axios({
        url: "/calculate-report/list",
        method: "GET"
    })
}
 
// 通过id获取核算报告
export const getCalculateReportById = (contractId,whichYear,whichMoth) => {
    return axios({
        url: "/calculate-report/" + contractId+"/"+whichYear+"/"+whichMoth,
        method: "GET"
    })
}
 
// 通过id删除核算报告
export const deleteCalculateReportById = (params) => {
    return axios({
        url: "/calculate-report/" + params,
        method: "DELETE"
    })
}
 
// 批量删除核算报告
export const deleteCalculateReportByIds = (params) => {
    return axios({
        url: "/calculate-report/batch",
        method: "DELETE",
        data: params
    })
}
 
// 修改核算报告
export const editCalculateReport = (params) => {
    return axios({
        url: "/calculate-report/",
        method: "PUT",
        data: params
    })
}
 
// 添加核算报告
export const addCalculateReport = (data) => {
    return axios({
        url: "/calculate-report/",
        method: "POST",
        data: data
    })
}
 
// 回填金额
export const backfill = (data) => {
  return axios({
    url: "/calculate-report/backfill/money",
    method: "POST",
    data: data
  })
}
 
// 修改发布状态
export const updatePublishStatus =  (contractId,whichYear) => {
  return axios({
    url: "/calculate-report/status/" + contractId+"/"+whichYear,
    method: "PUT",
  })
}
// 修改发布状态
  export const updatePublishStatusById =  (id,status) => {
    return axios({
      url: "/calculate-report/status/detail/"+ id+"/"+status,
      method: "PUT",
    })
}