6.8 供应商不可以在确认报价前查看到其他人的分项报价
This commit is contained in:
@ -350,7 +350,7 @@ const Room: React.FC<{}> = () => {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{
|
{
|
||||||
rangeT && record.quoteId != null ? <>
|
rangeT && record.quoteId != null && record.isSignTime ? <>
|
||||||
<Button key='ckfxbj' onClick={() => { queryFxbj(record, tdocId1); }}>查看分项报价</Button>
|
<Button key='ckfxbj' onClick={() => { queryFxbj(record, tdocId1); }}>查看分项报价</Button>
|
||||||
</> : null
|
</> : null
|
||||||
}
|
}
|
||||||
@ -389,6 +389,7 @@ const Room: React.FC<{}> = () => {
|
|||||||
oneGys["newPriceRemark"] = item1.newPriceRemark;//数据表id,补录报价用
|
oneGys["newPriceRemark"] = item1.newPriceRemark;//数据表id,补录报价用
|
||||||
oneGys["quoteDecryptStatus"] = item1.quoteDecryptStatus;
|
oneGys["quoteDecryptStatus"] = item1.quoteDecryptStatus;
|
||||||
oneGys["quoteId"] = item1.quoteId;
|
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) {
|
if (item1.companyId == tenderId) {
|
||||||
category.map((item2: any, index: any) => {
|
category.map((item2: any, index: any) => {
|
||||||
oneGys[item2] = item1.dataMap[item2];
|
oneGys[item2] = item1.dataMap[item2];
|
||||||
|
@ -320,7 +320,7 @@ const Room: React.FC<{}> = () => {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{
|
{
|
||||||
rangeT && record.quoteId != null ? <>
|
rangeT && record.quoteId != null && record.isSignTime ? <>
|
||||||
<Button key='ckfxbj' onClick={() => { queryFxbj(record, tdocId1); }}>查看分项报价</Button>
|
<Button key='ckfxbj' onClick={() => { queryFxbj(record, tdocId1); }}>查看分项报价</Button>
|
||||||
</> : null
|
</> : null
|
||||||
}
|
}
|
||||||
@ -359,6 +359,7 @@ const Room: React.FC<{}> = () => {
|
|||||||
oneGys["newPriceRemark"] = item1.newPriceRemark;//数据表id,补录报价用
|
oneGys["newPriceRemark"] = item1.newPriceRemark;//数据表id,补录报价用
|
||||||
oneGys["quoteDecryptStatus"] = item1.quoteDecryptStatus;
|
oneGys["quoteDecryptStatus"] = item1.quoteDecryptStatus;
|
||||||
oneGys["quoteId"] = item1.quoteId;
|
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) {
|
if (item1.companyId == tendererId) {
|
||||||
category.map((item2: any, index: any) => {
|
category.map((item2: any, index: any) => {
|
||||||
oneGys[item2] = item1.dataMap[item2];
|
oneGys[item2] = item1.dataMap[item2];
|
||||||
|
Reference in New Issue
Block a user