Commit 42b7a275 by lixinming

no message

parent 69af78d0
...@@ -411,7 +411,7 @@ export async function infomationChangePass({infoChangeId}) { ...@@ -411,7 +411,7 @@ export async function infomationChangePass({infoChangeId}) {
//添加日志 //添加日志
let applyInfo:any = { let applyInfo:any = {
infoChangeId, infoChangeId,
applyId:generateSystemId(TABLEENUM.理事变更审批历史表, onceData.userId), applyId:generateSystemId(TABLEENUM.资料变更审批历史表, onceData.userId),
userId:onceData.userId, userId:onceData.userId,
unitName:onceData.unitName, unitName:onceData.unitName,
infoChangeOptionType:INFOCHANGEAPPLYTYPE.通过, infoChangeOptionType:INFOCHANGEAPPLYTYPE.通过,
...@@ -423,7 +423,7 @@ export async function infomationChangePass({infoChangeId}) { ...@@ -423,7 +423,7 @@ export async function infomationChangePass({infoChangeId}) {
desc:onceData.desc, desc:onceData.desc,
createTimeMs:new Date().valueOf() createTimeMs:new Date().valueOf()
}; };
await addOneData(TABLEENUM.理事变更审批历史表, applyInfo); await addOneData(TABLEENUM.资料变更审批历史表, applyInfo);
let updateInfo = { let updateInfo = {
infoChangeOptionType:INFOCHANGEAPPLYTYPE.通过, infoChangeOptionType:INFOCHANGEAPPLYTYPE.通过,
......
...@@ -136,7 +136,7 @@ export async function paidList({name, memberType, documentId, phone, mail, joinS ...@@ -136,7 +136,7 @@ export async function paidList({name, memberType, documentId, phone, mail, joinS
itemData.memberType = changeEnumValue(MEMBERTYPEECCENUM, userInfo.unitMemberType); itemData.memberType = changeEnumValue(MEMBERTYPEECCENUM, userInfo.unitMemberType);
} }
itemData.state = info.confirmReceipt == RECEIPTCONFIRMATION.收款确认 ? "已审核" : "待审核"; itemData.state = info.confirmReceipt == RECEIPTCONFIRMATION.收款确认 ? "已审批" : "待审批";
itemData.invoiceStatus = info.invoiceStatus == INVOICESTATUS.已开发票 ? "已开" : "未开"; itemData.invoiceStatus = info.invoiceStatus == INVOICESTATUS.已开发票 ? "已开" : "未开";
dataList.push(itemData); dataList.push(itemData);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment