6.8 供应商不可以在确认报价前查看到其他人的分项报价

This commit is contained in:
jl-zhoujl2
2022-06-08 17:11:27 +08:00
parent 7dc348be97
commit bc470938ba
2 changed files with 4 additions and 2 deletions

View File

@ -350,7 +350,7 @@ const Room: React.FC<{}> = () => {
return (
<>
{
rangeT && record.quoteId != null ? <>
rangeT && record.quoteId != null && record.isSignTime ? <>
<Button key='ckfxbj' onClick={() => { queryFxbj(record, tdocId1); }}></Button>
</> : null
}
@ -389,6 +389,7 @@ const Room: React.FC<{}> = () => {
oneGys["newPriceRemark"] = item1.newPriceRemark;//数据表id补录报价用
oneGys["quoteDecryptStatus"] = item1.quoteDecryptStatus;
oneGys["quoteId"] = item1.quoteId;
oneGys["isSignTime"] = juese === 'ebtp-supplier' ? item1.bidUserId == userId ? true : res.data.suppliers.findIndex((item: any) => item.bidUserId == userId ? item.signTime != null : false) != -1 : true;
if (item1.companyId == tenderId) {
category.map((item2: any, index: any) => {
oneGys[item2] = item1.dataMap[item2];

View File

@ -320,7 +320,7 @@ const Room: React.FC<{}> = () => {
return (
<>
{
rangeT && record.quoteId != null ? <>
rangeT && record.quoteId != null && record.isSignTime ? <>
<Button key='ckfxbj' onClick={() => { queryFxbj(record, tdocId1); }}></Button>
</> : null
}
@ -359,6 +359,7 @@ const Room: React.FC<{}> = () => {
oneGys["newPriceRemark"] = item1.newPriceRemark;//数据表id补录报价用
oneGys["quoteDecryptStatus"] = item1.quoteDecryptStatus;
oneGys["quoteId"] = item1.quoteId;
oneGys["isSignTime"] = juese === 'ebtp-supplier' ? item1.bidUserId == userId ? true : res.data.suppliers.findIndex((item: any) => item.bidUserId == userId ? item.signTime != null : false) != -1 : true;
if (item1.companyId == tendererId) {
category.map((item2: any, index: any) => {
oneGys[item2] = item1.dataMap[item2];