financialReport.js 943 Bytes
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
  })
}