qinxianzhangyao
2023-09-12 bb6bfe4bbe0ec84c15cd1eaebf7a55cbd11b4094
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import request from '@/utils/request'
 
// 查询体检流水列表
export function listWater(query) {
  return request({
    url: '/hosp/water/list',
    method: 'get',
    params: query
  })
}
 
// 查询体检流水列表
export function getDaily() {
  return request({
    url: '/hosp/water/getDailySettlementByUserId',
    method: 'get',
  })
}
 
// 获取最后一次结账时间
export function getLastTime() {
  return request({
    url: '/hosp/collector/getLastTime',
    method: 'get',
  })
}
 
// 查询体检流水详细
export function getWater(id) {
  return request({
    url: '/hosp/water/' + id,
    method: 'get'
  })
}
 
// 新增体检流水
export function addWater(data) {
  return request({
    url: '/hosp/water',
    method: 'post',
    data: data
  })
}
 
// 修改体检流水
export function updateWater(data) {
  return request({
    url: '/hosp/water',
    method: 'put',
    data: data
  })
}
 
// 删除体检流水
export function delWater(id) {
  return request({
    url: '/hosp/water/' + id,
    method: 'delete'
  })
}
 
 
// 统计收费员日结
export function getList(data) {
  return request({
    url: '/hosp/collector/getList',
    method: 'get',
    params: data
  })
}
 
// 点击结算 新增收费员日结
 
export function collector(data) {
  return request({
    url: '/hosp/collector',
    method: 'post',
    data:data
  })
}
 
// 查询收费员日结列表
export function getcolllist(data) {
  return request({
    url: '/hosp/collector/list',
    method: 'get',
    params: data
  })
}
 
// 获取用户列表(下拉框专用)
export function getdatalist() {
  return request({
    url: '/system/user/getList',
    method: 'get',
  })
}
 
// 收费员撤销账单操作接口
export function delById(data) {
  return request({
    url: '/hosp/collector/removeTjTollCollectorById',
    method: 'delete',
    params: data
  })
}