update
This commit is contained in:
parent
c145b6c9a5
commit
cb0823bbcb
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ant-design-pro",
|
||||
"version": "4.5.24",
|
||||
"version": "4.5.26",
|
||||
"private": true,
|
||||
"description": "An out-of-box UI solution for enterprise applications",
|
||||
"scripts": {
|
||||
|
||||
@ -976,7 +976,9 @@ const monthSettlement: React.FC<{ currentUser?: CurrentUser }> = (props) => {
|
||||
const list: any = []
|
||||
if (data.UserList && data.UserList.length > 0) {
|
||||
data.UserList.forEach((item: any) => {
|
||||
if (item.USER_STATUS === 1) {
|
||||
list.push({ label: item.USER_NAME, value: item.USER_ID })
|
||||
}
|
||||
})
|
||||
}
|
||||
if (list && list.length > 0 && list.length === 1) {
|
||||
|
||||
@ -375,7 +375,9 @@ const myApproval: React.FC<{ currentUser?: CurrentUser }> = (props) => {
|
||||
const list: any = []
|
||||
if (data.UserList && data.UserList.length > 0) {
|
||||
data.UserList.forEach((item: any) => {
|
||||
if (item.USER_STATUS === 1) {
|
||||
list.push({ label: item.USER_NAME, value: item.USER_ID })
|
||||
}
|
||||
})
|
||||
}
|
||||
if (list && list.length > 0 && list.length === 1) {
|
||||
|
||||
@ -325,7 +325,9 @@ const marketResearch: React.FC<{ currentUser: CurrentUser }> = (props) => {
|
||||
const list: any = []
|
||||
if (data.UserList && data.UserList.length > 0) {
|
||||
data.UserList.forEach((item: any) => {
|
||||
if (item.USER_STATUS === 1) {
|
||||
list.push({ label: item.USER_NAME, value: `${item.USER_NAME}-${item.USER_ID}` })
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
@ -653,7 +655,9 @@ const marketResearch: React.FC<{ currentUser: CurrentUser }> = (props) => {
|
||||
const list: any = []
|
||||
if (data.UserList && data.UserList.length > 0) {
|
||||
data.UserList.forEach((item: any) => {
|
||||
if (item.USER_STATUS === 1) {
|
||||
list.push({ label: item.USER_NAME, value: item.USER_ID })
|
||||
}
|
||||
})
|
||||
}
|
||||
return list
|
||||
|
||||
@ -206,7 +206,9 @@ const marketSearch: React.FC<{ currentUser: CurrentUser}> = (props) => {
|
||||
const list: any = []
|
||||
if (data.UserList && data.UserList.length > 0) {
|
||||
data.UserList.forEach((item: any) => {
|
||||
if (item.USER_STATUS === 1) {
|
||||
list.push({ label: item.USER_NAME, value: `${item.USER_NAME}-${item.USER_ID}` })
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
@ -305,7 +305,9 @@ const shopDetail = ({ type, currentUser, setAddShopDrawer, currentDetail, showCo
|
||||
const list: any = []
|
||||
if (data.UserList && data.UserList.length > 0) {
|
||||
data.UserList.forEach((item: any) => {
|
||||
if (item.USER_STATUS === 1) {
|
||||
list.push({ label: item.USER_NAME, value: `${item.USER_NAME}-${item.USER_ID}` })
|
||||
}
|
||||
})
|
||||
}
|
||||
setNextPersonList(list)
|
||||
|
||||
@ -3884,9 +3884,11 @@ const compareList: React.FC<{
|
||||
setNextState(undefined)
|
||||
if (data.UserList && data.UserList.length > 0) {
|
||||
data.UserList.forEach((item: any) => {
|
||||
if (item.USER_STATUS === 1) {
|
||||
if (item.USER_STATUS === 1) {
|
||||
list.push({ label: item.USER_NAME, value: `${item.USER_NAME}-${item.USER_ID}` })
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
if (list && list.length > 0 && list.length === 1) {
|
||||
|
||||
@ -640,6 +640,9 @@ const AfterSettlement = ({ parentRow, dataRef, onShow, setIsFinishCalibration, o
|
||||
if (parentRow?.BUSINESSAPPROVAL_ID) {
|
||||
detailData = await handleGetBUSINESSAPPROVALDetail(detailReq)
|
||||
}
|
||||
|
||||
console.log('detailData', detailData);
|
||||
|
||||
const list: any = []
|
||||
if (detailData.REJECT_TYPE === 2) {
|
||||
const nowPersonList: any = detailData.approveList[detailData.approveList.length - 1]
|
||||
@ -653,7 +656,9 @@ const AfterSettlement = ({ parentRow, dataRef, onShow, setIsFinishCalibration, o
|
||||
setNextState(undefined)
|
||||
if (data.UserList && data.UserList.length > 0) {
|
||||
data.UserList.forEach((item: any) => {
|
||||
if (item.USER_STATUS === 1) {
|
||||
list.push({ label: item.USER_NAME, value: `${item.USER_NAME}-${item.USER_ID}` })
|
||||
}
|
||||
})
|
||||
}
|
||||
if (list && list.length > 0 && list.length === 1) {
|
||||
|
||||
@ -3479,7 +3479,9 @@ const settlementAccount: React.FC<{ currentUser: CurrentUser }> = (props) => {
|
||||
const list: any = []
|
||||
if (data.UserList && data.UserList.length > 0) {
|
||||
data.UserList.forEach((item: any) => {
|
||||
if (item.USER_STATUS === 1) {
|
||||
list.push({ label: item.USER_NAME, value: `${item.USER_NAME}-${item.USER_ID}` })
|
||||
}
|
||||
})
|
||||
}
|
||||
if (list && list.length > 0 && list.length === 1) {
|
||||
@ -3882,7 +3884,9 @@ const settlementAccount: React.FC<{ currentUser: CurrentUser }> = (props) => {
|
||||
const list: any = []
|
||||
if (data.UserList && data.UserList.length > 0) {
|
||||
data.UserList.forEach((item: any) => {
|
||||
if (item.USER_STATUS === 1) {
|
||||
list.push({ label: item.USER_NAME, value: item.USER_ID })
|
||||
}
|
||||
})
|
||||
}
|
||||
if (list && list.length > 0 && list.length === 1) {
|
||||
|
||||
@ -4277,7 +4277,9 @@ const settlementAccount: React.FC<{ currentUser: CurrentUser }> = (props) => {
|
||||
const list: any = []
|
||||
if (data.UserList && data.UserList.length > 0) {
|
||||
data.UserList.forEach((item: any) => {
|
||||
if (item.USER_STATUS === 1) {
|
||||
list.push({ label: item.USER_NAME, value: `${item.USER_NAME}-${item.USER_ID}` })
|
||||
}
|
||||
})
|
||||
}
|
||||
if (list && list.length > 0 && list.length === 1) {
|
||||
@ -4774,7 +4776,9 @@ const settlementAccount: React.FC<{ currentUser: CurrentUser }> = (props) => {
|
||||
const list: any = []
|
||||
if (data.UserList && data.UserList.length > 0) {
|
||||
data.UserList.forEach((item: any) => {
|
||||
if (item.USER_STATUS === 1) {
|
||||
list.push({ label: item.USER_NAME, value: item.USER_ID })
|
||||
}
|
||||
})
|
||||
}
|
||||
if (list && list.length > 0 && list.length === 1) {
|
||||
@ -4938,7 +4942,9 @@ const settlementAccount: React.FC<{ currentUser: CurrentUser }> = (props) => {
|
||||
const list: any = []
|
||||
if (data.UserList && data.UserList.length > 0) {
|
||||
data.UserList.forEach((item: any) => {
|
||||
if (item.USER_STATUS === 1) {
|
||||
list.push({ label: item.USER_NAME, value: item.USER_ID })
|
||||
}
|
||||
})
|
||||
}
|
||||
if (list && list.length > 0 && list.length === 1) {
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
// 由 scripts/writeVersion.js 自动生成
|
||||
export const VERSION = "4.5.24";
|
||||
export const GIT_HASH = "415f6a5";
|
||||
export const BUILD_TIME = "2025-08-14T01:28:36.852Z";
|
||||
export const VERSION = "4.5.26";
|
||||
export const GIT_HASH = "c145b6c";
|
||||
export const BUILD_TIME = "2025-08-15T08:20:30.752Z";
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user