Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jinfa-admin
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
shenshaokai
jinfa-admin
Commits
4c79a84f
Commit
4c79a84f
authored
Aug 05, 2022
by
前端-彭佳文
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'jinfa-0518' into 'jinfa-0518'
Jinfa 0518 See merge request
project/jinfa-admin!16
parents
c048a7fa
9e15ce09
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
1 deletion
+14
-1
index.tsx
src/pages/orderManage/orderSystem/index.tsx
+4
-0
index.tsx
src/pages/orderManage/orderSystem/orderDetail/index.tsx
+2
-1
columns.tsx
src/pages/productManage/material/common/columns.tsx
+4
-0
useGetDetailCommon.tsx
...ages/productManage/material/common/useGetDetailCommon.tsx
+4
-0
No files found.
src/pages/orderManage/orderSystem/index.tsx
View file @
4c79a84f
...
...
@@ -95,6 +95,10 @@ const tableListSchema: ISchema = {
export
const
baseOrderListColumns
:
any
[]
=
[
{
title
:
'SAP物料编码'
,
dataIndex
:
'sapGoodsGlobalMQID'
,
},
{
title
:
'订单号'
,
align
:
'center'
,
dataIndex
:
'orderNo'
,
...
...
src/pages/orderManage/orderSystem/orderDetail/index.tsx
View file @
4c79a84f
...
...
@@ -57,7 +57,8 @@ const CommonOrderDetail:React.FC<CommonOrderDetailProps> = (props) => {
{
label
:
'订单类型'
,
name
:
'orderTypeName'
,
span
:
8
},
{
label
:
'下单时间'
,
name
:
'createTime'
,
span
:
8
,
render
:
text
=>
formatTimeString
(
text
)
},
{
label
:
'外部状态'
,
name
:
'outerStatusName'
,
span
:
8
},
{
label
:
'SAP订单编号'
,
name
:
'purchaseOrderNumber'
,
span
:
8
},
{
label
:
'SAP订单编号'
,
name
:
'orderId'
,
span
:
8
,
render
:
(
_text
,
record
)
=>
record
.
sapOrderNo
},
{
label
:
'SAP物料编码'
,
name
:
'orderId'
,
span
:
8
,
render
:
(
_text
,
record
)
=>
record
.
sapGoodsGlobalMQID
},
{
label
:
'订单分类'
,
name
:
'documentTypeName'
,
span
:
8
},
{
label
:
'业务类型'
,
name
:
'businessTypeName'
,
span
:
8
},
]
...
...
src/pages/productManage/material/common/columns.tsx
View file @
4c79a84f
...
...
@@ -13,6 +13,10 @@ export function getColumn(params: Params) {
const
columns
=
[
{
title
:
intl
.
formatMessage
({
id
:
'material.sapGoodsGlobalMQID'
,
defaultMessage
:
'SAP物料编码'
}),
dataIndex
:
'sapGoodsGlobalMQID'
,
},
{
title
:
intl
.
formatMessage
({
id
:
'material.code'
,
defaultMessage
:
'物料编号'
}),
dataIndex
:
'code'
,
render
:
(
text
,
record
)
=>
{
...
...
src/pages/productManage/material/common/useGetDetailCommon.tsx
View file @
4c79a84f
...
...
@@ -51,6 +51,10 @@ function useGetDetailCommon<T extends GetProductGoodsGetGoodsProcessDetailRespon
const
basicInfoList
=
useMemo
(()
=>
{
return
[
{
title
:
intl
.
formatMessage
({
id
:
'material.sapGoodsGlobalMQID'
,
defaultMessage
:
'SAP物料编码'
}),
value
:
initialValue
?.
sapGoodsGlobalMQID
},
{
title
:
intl
.
formatMessage
({
id
:
'material.code'
,
defaultMessage
:
'物料编号'
}),
value
:
initialValue
?.
code
},
...
...
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