工作组复制,文件分发优化

This commit is contained in:
zhaoxiao
2021-09-17 13:46:01 +08:00
parent d391eeb9ee
commit 44903b69b6
4 changed files with 40 additions and 10 deletions
+9 -6
View File
@@ -5,7 +5,7 @@ const getWorkingGroupById = (params) => getAction('/project/payWorkingGroup/quer
// 判断工作组成员是否设置来款通知
const getChargeNotice = (param) => getAction('/project/payWorkingGroupSubitem/getCharge', param)
// 工作组会议的发布提醒
const publishRemind = (param) => postAction('/meeting/payMeeting/publishReminder',param)
const publishRemind = (param) => postAction('/meeting/payMeeting/publishReminder', param)
// 通过id获取收入合同信息
const getRevenueContractById = (param) => getAction('/contract/payIncomeContract/queryById', param)
// 收入合同审核
@@ -33,9 +33,9 @@ const addPaymentPhase = (param) => postAction('/paymentRecord/payPaymentRecord/a
// 编辑来款阶段
const editAmountPhase = (param) => postAction('/paymentRecord/payPaymentRecord/editAmountReceived', param)
// 来款列表
const amountReceivedList = (param) => postAction(`/paymentRecord/payPaymentRecord/amountReceivedList?id=${param}`)
const amountReceivedList = (param) => postAction(`/paymentRecord/payPaymentRecord/amountReceivedList?id=${ param }`)
// 开票列表
const payBillList = (param) => postAction(`/paymentRecord/payPaymentRecord/payBillList?id=${param}`)
const payBillList = (param) => postAction(`/paymentRecord/payPaymentRecord/payBillList?id=${ param }`)
// 新增开票阶段
// const addPayBill = (projectId, projectType, invoiceAmounts, param) => postAction(`/paymentRecord/payPaymentRecord/addPayBill?projectIds=${projectId}&projectTypes=${projectType}&invoiceAmounts=${invoiceAmounts}`, param)
const addPayBill = (param) => postAction(`/paymentRecord/payPaymentRecord/addPayBill`, param)
@@ -61,10 +61,12 @@ const batchDistribute = (param) => postAction('/project/payWorkingGroupDistribut
const distributeMemberList = (param) => getAction('/project/payWorkingGroupDistributionRecord/list', param)
// 催款提醒
const dunningReminder = (param) => postAction('/project/payWorkingGroupSubitem/reminders', param)
// 复制工作组
const copyWorkingGroup = (param) => postAction('/project/payWorkingGroup/copy', param)
export {
getWorkingGroupById,
getChargeNotice,
getWorkingGroupById,
getChargeNotice,
publishRemind,
getRevenueContractById,
aduitRevenueContract,
@@ -92,5 +94,6 @@ export {
distribute,
batchDistribute,
distributeMemberList,
dunningReminder
dunningReminder,
copyWorkingGroup
}