2025-01-22 16:13:23 +08:00
|
|
|
import request from '@/utils/request'
|
|
|
|
|
|
|
|
|
|
// 查询推送协议匹配列表
|
2025-01-24 16:39:38 +08:00
|
|
|
export function getProtocolList(query) {
|
2025-01-22 16:13:23 +08:00
|
|
|
return request({
|
2025-01-23 16:20:02 +08:00
|
|
|
url: '/material/iws_cost_push/findAgreementPushMatchList',
|
2025-01-24 16:39:38 +08:00
|
|
|
method: 'get',
|
|
|
|
|
params: query
|
2025-01-22 16:13:23 +08:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 查询费用推送审核详情
|
2025-01-24 16:39:38 +08:00
|
|
|
export function getPushReviewList(query){
|
2025-01-22 16:13:23 +08:00
|
|
|
return request({
|
2025-01-24 16:39:38 +08:00
|
|
|
url: '/material/iws_cost_push/getCostPushCheckList',
|
2025-01-22 16:13:23 +08:00
|
|
|
method: 'get',
|
|
|
|
|
params: query
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-23 13:54:30 +08:00
|
|
|
// 费用推送审核提交
|
2025-01-22 16:13:23 +08:00
|
|
|
export function submitFee(params){
|
|
|
|
|
return request({
|
|
|
|
|
url: '/material/slt_agreement_info/submitFee',
|
|
|
|
|
method: 'post',
|
|
|
|
|
data: params
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-24 17:50:01 +08:00
|
|
|
// 查询费用推送审核租赁列表
|
|
|
|
|
export function getLeaseList(query) {
|
2025-01-22 16:13:23 +08:00
|
|
|
return request({
|
2025-01-24 17:50:01 +08:00
|
|
|
url: '/material/iws_cost_push/getLeaseCostsByAgreementIdAndMonth',
|
2025-01-22 16:13:23 +08:00
|
|
|
method: 'get',
|
|
|
|
|
params: query
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2025-02-10 09:19:20 +08:00
|
|
|
// 查询费用推送审核维修列表
|
|
|
|
|
export function getRepairList(query) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/material/iws_cost_push/getRepairCostsByAgreementId',
|
|
|
|
|
method: 'get',
|
|
|
|
|
params: query
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 查询费用推送审核丢失列表
|
|
|
|
|
export function getLoseList(query) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/material/iws_cost_push/getLoseCostsByAgreementId',
|
|
|
|
|
method: 'get',
|
|
|
|
|
params: query
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 查询费用推送审核报废列表
|
|
|
|
|
export function getScrapList(query) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/material/iws_cost_push/getScrapCostsByAgreementId',
|
|
|
|
|
method: 'get',
|
|
|
|
|
params: query
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-22 16:13:23 +08:00
|
|
|
|
|
|
|
|
// 查询费用结算审核列表
|
|
|
|
|
export function getSltExamInfo(query) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/material/slt_agreement_info/getSltExamInfo',
|
|
|
|
|
method: 'get',
|
|
|
|
|
params: query
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 费用结算审核-同意拒绝
|
|
|
|
|
export function settlementReview(query) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/material/slt_agreement_info/settlementReview',
|
|
|
|
|
method: 'get',
|
|
|
|
|
params: query
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 费用结算提交
|
|
|
|
|
export function submitCosts(params){
|
|
|
|
|
return request({
|
|
|
|
|
url: '/material/slt_agreement_info/submitCosts',
|
|
|
|
|
method: 'post',
|
|
|
|
|
data: params
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 查询结算审批列表
|
|
|
|
|
export function getSltList(query) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/material/slt_agreement_info/getSltList',
|
|
|
|
|
method: 'get',
|
|
|
|
|
params: query
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 结算审批提交
|
|
|
|
|
export function costExamine(params){
|
|
|
|
|
return request({
|
|
|
|
|
url: '/material/slt_agreement_info/costExamine',
|
|
|
|
|
method: 'post',
|
|
|
|
|
data: params
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|