Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jinfa-platform
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linweijiong
jinfa-platform
Commits
668da7aa
Commit
668da7aa
authored
Aug 16, 2021
by
XieZhiXiong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: 修改srm订单字段相关
parent
69abb674
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
36 deletions
+16
-36
index.tsx
...Service/returnApplication/components/DetailInfo/index.tsx
+8
-18
index.tsx
...afterService/returnManage/components/DetailInfo/index.tsx
+8
-18
No files found.
src/pages/afterService/returnApplication/components/DetailInfo/index.tsx
View file @
668da7aa
...
...
@@ -147,7 +147,6 @@ const DetailInfo: React.FC<DetailInfoProps> = ({
{
title
:
'商品ID'
,
dataIndex
:
'productId'
,
align
:
'center'
,
},
{
title
:
'商品名称'
,
...
...
@@ -157,51 +156,42 @@ const DetailInfo: React.FC<DetailInfoProps> = ({
{
title
:
'品类'
,
dataIndex
:
'category'
,
align
:
'center'
,
},
{
title
:
'品牌'
,
dataIndex
:
'brand'
,
align
:
'center'
,
},
{
title
:
'单位'
,
dataIndex
:
'unit'
,
align
:
'center'
,
}
]
:
[
{
title
:
'物料编号'
,
dataIndex
:
'materielNo'
,
align
:
'center'
,
dataIndex
:
'productId'
,
},
{
title
:
'物料名称、规格'
,
dataIndex
:
'materielName'
,
align
:
'center'
,
render
:
(
text
,
record
)
=>
`
${
text
}
/
${
record
.
materielType
}
`
,
dataIndex
:
'productName'
,
render
:
(
text
,
record
)
=>
`
${
text
}${
record
.
type
?
'/'
+
record
.
type
:
''
}
`
,
},
{
title
:
'品类'
,
dataIndex
:
'materielCategory'
,
align
:
'center'
,
dataIndex
:
'category'
,
},
{
title
:
'品牌'
,
dataIndex
:
'materielBrand'
,
align
:
'center'
,
dataIndex
:
'brand'
,
},
{
title
:
'单位'
,
dataIndex
:
'materielUnit'
,
align
:
'center'
,
dataIndex
:
'unit'
,
},
{
title
:
detailInfo
?.
orderType
!==
ORDER_TYPE_TENDER_CONTRACT
?
'关联报价商品ID、名称、规格、品类、品牌'
:
'关联投标商品ID、名称、规格、品类、品牌'
,
dataIndex
:
'productId'
,
align
:
'center'
,
render
:
(
text
,
record
)
=>
`
${
text
}
/
${
record
.
productName
}
/
${
record
.
category
}
/
${
record
.
brand
}
`
,
dataIndex
:
'associatedProductId'
,
render
:
(
text
,
record
)
=>
`
${
text
}
/
${
record
.
associatedProductName
}
/
${
record
.
associatedType
||
'无'
}
/
${
record
.
associatedCategory
}
/
${
record
.
associatedBrand
}
`
,
},
]
),
...
...
src/pages/afterService/returnManage/components/DetailInfo/index.tsx
View file @
668da7aa
...
...
@@ -173,7 +173,6 @@ const DetailInfo: React.FC<DetailInfoProps> = ({
{
title
:
'商品ID'
,
dataIndex
:
'productId'
,
align
:
'center'
,
},
{
title
:
'商品名称'
,
...
...
@@ -183,51 +182,42 @@ const DetailInfo: React.FC<DetailInfoProps> = ({
{
title
:
'品类'
,
dataIndex
:
'category'
,
align
:
'center'
,
},
{
title
:
'品牌'
,
dataIndex
:
'brand'
,
align
:
'center'
,
},
{
title
:
'单位'
,
dataIndex
:
'unit'
,
align
:
'center'
,
}
]
:
[
{
title
:
'物料编号'
,
dataIndex
:
'materielNo'
,
align
:
'center'
,
dataIndex
:
'productId'
,
},
{
title
:
'物料名称、规格'
,
dataIndex
:
'materielName'
,
align
:
'center'
,
render
:
(
text
,
record
)
=>
`
${
text
}
/
${
record
.
materielType
}
`
,
dataIndex
:
'productName'
,
render
:
(
text
,
record
)
=>
`
${
text
}${
record
.
type
?
'/'
+
record
.
type
:
''
}
`
,
},
{
title
:
'品类'
,
dataIndex
:
'materielCategory'
,
align
:
'center'
,
dataIndex
:
'category'
,
},
{
title
:
'品牌'
,
dataIndex
:
'materielBrand'
,
align
:
'center'
,
dataIndex
:
'brand'
,
},
{
title
:
'单位'
,
dataIndex
:
'materielUnit'
,
align
:
'center'
,
dataIndex
:
'unit'
,
},
{
title
:
detailInfo
?.
orderType
!==
ORDER_TYPE_TENDER_CONTRACT
?
'关联报价商品ID、名称、规格、品类、品牌'
:
'关联投标商品ID、名称、规格、品类、品牌'
,
dataIndex
:
'productId'
,
align
:
'center'
,
render
:
(
text
,
record
)
=>
`
${
text
}
/
${
record
.
productName
}
/
${
record
.
category
}
/
${
record
.
brand
}
`
,
dataIndex
:
'associatedProductId'
,
render
:
(
text
,
record
)
=>
`
${
text
}
/
${
record
.
associatedProductName
}
/
${
record
.
associatedType
||
'无'
}
/
${
record
.
associatedCategory
}
/
${
record
.
associatedBrand
}
`
,
},
]
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment