import request from '@/utils/request' import { getCommunityId } from '@/api/community/communityApi' // 获取业主发票信息列表 export function listOwnerInvoice(params) { return new Promise((resolve, reject) => { const communityId = getCommunityId() request({ url: '/invoice.listOwnerInvoice', method: 'get', params: { ...params, communityId } }).then(response => { const res = response.data resolve(res) }).catch(error => { reject(error) }) }) } // 查询费用明细 export function queryFeeDetail(params) { return new Promise((resolve, reject) => { const communityId = getCommunityId() request({ url: '/fee.queryFeeDetail', method: 'get', params: { ...params, communityId } }).then(response => { const res = response.data resolve(res) }).catch(error => { reject(error) }) }) } // 查询账户预存明细 export function listAccountReceipt(params) { return new Promise((resolve, reject) => { const communityId = getCommunityId() request({ url: '/receipt.listAccountReceipt', method: 'get', params: { ...params, communityId } }).then(response => { const res = response.data resolve(res) }).catch(error => { reject(error) }) }) } // 保存发票申请 export function saveInvoiceApply(data) { return new Promise((resolve, reject) => { const communityId = getCommunityId() request({ url: '/invoice.saveInvoiceApply', method: 'post', data: { ...data, communityId } }).then(response => { const res = response.data if (res.code === 0) { resolve(res) } else { reject(new Error(res.msg || '保存发票申请失败')) } }).catch(error => { reject(error) }) }) }