11
WXL
2024-03-20 40e702344f3d35e251bb098d1227fdea74ee8e4e
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
import request from '@/utils/request'
 
 
// 获取单据最大顺序
export function getMaxFundTaxId() {
    return request({
      url: '/project/fundtax/getMaxFundTaxId',
      method: 'get',
    })
  }
  // 批量算税
export function listbxiaostatistics(query) {
    return request({
      url: '/project/fundtax/batchFundTax',
      method: 'post',
      data: query
    })
  }
  // 根据权限查询审核列表
export function getExpertfeeList(query) {
    return request({
      url: '/project/fundtax/list',
    method: 'get',
    params: query
    })
  }
   // 根据权限查询审核列表
export function ExpertfeeListnb(query) {
  return request({
    url: '/project/fund/getExpertfeeList',
  method: 'post',
  data: query
  })
}
  // 查询专家费用算税申请主详细
export function getFundtax(id) {
  return request({
    url: '/project/fundtax/getInfo/' + id,
    method: 'get'
  })
}
 
// 新增专家费用算税申请主
export function addFundtax(data) {
  return request({
    url: '/project/fundtax/addFundTax',
    method: 'post',
    data: data
  })
}
 
// 修改专家费用算税申请主
export function updateFundtax(data) {
  return request({
    url: '/project/fundtax/edit',
    method: 'post',
    data: data
  })
}
// 修改专家费用算税申请明细关联
export function CalculationDetail(data) {
  return request({
    url: '/project/fund/editFundTaxId',
    method: 'post',
    data: data
  })
}
 
// 删除专家费用算税申请主
export function delFundtax(id) {
  return request({
    url: '/project/fundtax/remove/' + id,
    method: 'get'
  })
}
 
// 导出专家费用算税申请主
export function exportFundtax(query) {
  return request({
    url: '/project/fundtax/export',
    method: 'get',
    params: query
  })
}