Commit 312e64b2 authored by 前端-许冠华's avatar 前端-许冠华

Merge branch 'fix-220418-ljr' into 'v2-220418'

fix: [23334] 新增竞价单选择物料后,竞价详情页没有返回物料的物料组字段 See merge request linkseeks-design/pro-platform!643
parents 8f4020bd 1bd0679c
......@@ -38,7 +38,7 @@ const MaterialLayout: React.FC<IPROPS> = (props: any) => {
},
{
label: intl.formatMessage({ id: 'detail.purchase.goodsGroup' }),
content: item.goodsGroup
content: item?.goodsGroup ?? item?.materialGroup
},
{
label: intl.formatMessage({ id: 'detail.purchase.nameCode' }),
......@@ -96,8 +96,8 @@ const MaterialLayout: React.FC<IPROPS> = (props: any) => {
},
{
title: intl.formatMessage({ id: 'detail.purchase.goodsGroup' }),
key: 'goodsGroup',
dataIndex: 'goodsGroup'
key: 'materialGroup',
dataIndex: 'materialGroup'
},
{
title: intl.formatMessage({ id: 'detail.purchase.nameCode' }),
......
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