financialReport.js
943 Bytes
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
import request from '@/utils/request'
/**
* 获取门店收款渠道收入统计
*/
export function getStorePaymentChannelIncome(data) {
return request({
url: '/api/Extend/LqFinancialReport/get-store-payment-channel-income',
method: 'post',
data
})
}
/**
* 获取门店合作机构应付统计
*/
export function getStoreCooperationPayable(data) {
return request({
url: '/api/Extend/LqFinancialReport/get-store-cooperation-payable',
method: 'post',
data
})
}
/**
* 获取门店付款医院应收统计
*/
export function getStorePaymentHospitalReceivable(data) {
return request({
url: '/api/Extend/LqFinancialReport/get-store-payment-hospital-receivable',
method: 'post',
data
})
}
/**
* 获取门店总收入统计
*/
export function getStoreTotalIncome(data) {
return request({
url: '/api/Extend/LqFinancialReport/get-store-total-income',
method: 'post',
data
})
}