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
shenshaokai
jinfa-platform
Commits
83a64d75
Commit
83a64d75
authored
Apr 22, 2022
by
rainbowmorel@163.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改文案
parent
f35972d4
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
18 additions
and
11 deletions
+18
-11
anchors.ts
src/pages/order/constants/anchors.ts
+1
-1
index.tsx
...eliveryNoticeAwaitB2B/components/AddEditContent/index.tsx
+1
-0
index.tsx
...eliveryNoticeAwaitSRM/components/AddEditContent/index.tsx
+1
-0
index.tsx
...liveryNoticeManagement/deliveryNoticeFromCreate/index.tsx
+1
-1
details.tsx
src/pages/order/receivingNote/deliveryNoteManage/details.tsx
+12
-7
index.tsx
src/pages/order/receivingNote/deliveryNoteManage/index.tsx
+1
-1
index.tsx
src/pages/order/receivingNote/deliveryNoteQuery/index.tsx
+1
-1
No files found.
src/pages/order/constants/anchors.ts
View file @
83a64d75
...
...
@@ -97,7 +97,7 @@ const Remarks: AnchorsItem = {
const
DeliveryNoteQuery
:
AnchorsItem
[]
=
[
BillsInfo
,
Distribution
,
Harvest
,
DeliveryInfo
,
LogisticsInfo
,
]
...
...
src/pages/order/deliveryNoticeManagement/deliveryNoticeAwaitB2B/components/AddEditContent/index.tsx
View file @
83a64d75
...
...
@@ -87,6 +87,7 @@ const DeliveryNoticeManagementAwaitB2BDetails: React.FC<PropsType> = ({ type, id
if
(
code
===
1000
)
{
// history.goBack()
// 兼容从送货计划协同跳转生成送货通知单
handleLeave
(
false
)
history
.
push
(
'/memberCenter/order/deliveryNoticeManagement/query'
)
}
}).
finally
(()
=>
{
...
...
src/pages/order/deliveryNoticeManagement/deliveryNoticeAwaitSRM/components/AddEditContent/index.tsx
View file @
83a64d75
...
...
@@ -86,6 +86,7 @@ const DeliveryNoticeManagementAwaitSRMDetails: React.FC<PropsType> = ({ type, id
setLoading
(
true
)
requestApi
(
params
).
then
(({
code
,
data
})
=>
{
if
(
code
===
1000
)
{
handleLeave
(
false
)
history
.
goBack
()
}
}).
finally
(()
=>
{
...
...
src/pages/order/deliveryNoticeManagement/deliveryNoticeFromCreate/index.tsx
View file @
83a64d75
...
...
@@ -279,7 +279,7 @@ function DeliveryNoticeFromCreate() {
render
:
(
t
,
rcode
,
index
)
=>
{
return
(
<
HarvestMaterialInput
value=
{
rcode
[
OrderNumColumn
.
key
]
}
value=
{
rcode
?.
deliveryCount
}
index=
{
index
}
keyup=
"deliveryCount"
disabled=
{
true
}
...
...
src/pages/order/receivingNote/deliveryNoteManage/details.tsx
View file @
83a64d75
...
...
@@ -6,7 +6,7 @@
import
React
,
{
useEffect
,
useState
}
from
'react'
import
AnchorPage
from
'@/components/AnchorPage'
import
{
BaseInfo
as
ListInfo
}
from
'@/components/BaseInfo'
import
{
BillsInfo
,
DeliveryInfo
,
DeliveryNoteQuery
,
Distribution
,
ExternalRoamRecord
,
Harvest
,
LogisticsInfo
,
Material
}
from
'../../constants'
import
{
BillsInfo
,
DeliveryInfo
,
DeliveryNoteQuery
,
Distribution
,
ExternalRoamRecord
,
Harvest
,
HarvestMaterial
,
LogisticsInfo
,
Material
}
from
'../../constants'
import
{
Space
,
Spin
,
Table
,
Tag
}
from
'antd'
;
import
ReceiveNoteFacotry
from
'../../assets/handles/ReceiveNotePage'
;
import
{
useLocation
}
from
'umi'
;
...
...
@@ -45,9 +45,9 @@ const DeliveryNoteManageDetails: React.FC = () => {
setAnchors
([
...
anchors
,
{
...
Material
,
...
Harvest
Material
,
...{
name
:
`
${
Material
.
name
}
(
${
values
[
1
].
totalCount
}
)`
name
:
`
${
Harvest
Material
.
name
}
(
${
values
[
1
].
totalCount
}
)`
}
},
{
...
...
@@ -69,11 +69,11 @@ const DeliveryNoteManageDetails: React.FC = () => {
>
<
ListInfo
className=
'mt-15'
title=
{
BillsInfo
.
name
}
id=
{
BillsInfo
.
key
}
>
<
ListInfoItem
className=
"mt-16"
label=
'收货单号'
>
<
ListInfoItem
className=
"mt-16"
label=
'收货单
编
号'
>
{
info
?.
receiveNo
}
</
ListInfoItem
>
<
ListInfoItem
label=
'
采购
会员'
>
<
ListInfoItem
label=
'
供应
会员'
>
{
info
?.
buyerMemberName
}
</
ListInfoItem
>
...
...
@@ -95,7 +95,7 @@ const DeliveryNoteManageDetails: React.FC = () => {
<
ListInfo
className=
'mt-15'
title=
{
Harvest
.
name
}
id=
{
Harvest
.
key
}
>
<
div
>
<
ListInfoItem
className=
"mt-16"
label=
'收货
日期
'
>
<
ListInfoItem
className=
"mt-16"
label=
'收货
时间
'
>
{
info
?.
receiveTime
}
</
ListInfoItem
>
...
...
@@ -152,7 +152,7 @@ const DeliveryNoteManageDetails: React.FC = () => {
</
ListInfo
>
<
ListInfo
className=
'mt-15'
title=
{
Material
.
name
}
id=
{
Material
.
key
}
cols=
{
1
}
>
<
ListInfo
className=
'mt-15'
title=
{
HarvestMaterial
.
name
}
id=
{
Harvest
Material
.
key
}
cols=
{
1
}
>
<
Table
rowKey=
{
row
=>
row
.
orderNo
}
columns=
{
...
...
@@ -164,6 +164,11 @@ const DeliveryNoteManageDetails: React.FC = () => {
return
rcode
.
deliveryCount
}
}
,
{
title
:
'收货数量'
,
dataIndex
:
'receiveCount'
,
key
:
'receiveCount'
}
]
}
dataSource=
{
tableDataSource
}
/>
...
...
src/pages/order/receivingNote/deliveryNoteManage/index.tsx
View file @
83a64d75
...
...
@@ -71,7 +71,7 @@ const DeliveryNoteManage: React.FC = () => {
{
title
:
'收货日期'
,
dataIndex
:
'receiveTime'
,
key
:
'receiveTime'
},
{
title
:
'送货单号'
,
dataIndex
:
'deliveryNo'
,
key
:
'deliveryNo'
},
{
title
:
'送货日期'
,
dataIndex
:
'deliveryTime'
,
key
:
'deliveryTime'
},
{
title
:
'供应会员'
,
dataIndex
:
'
buyerMemberName'
,
key
:
'buye
rMemberName'
},
{
title
:
'供应会员'
,
dataIndex
:
'
vendorMemberName'
,
key
:
'vendo
rMemberName'
},
{
title
:
'单据时间'
,
dataIndex
:
'createTime'
,
key
:
'createTime'
},
{
title
:
'外部状态'
,
...
...
src/pages/order/receivingNote/deliveryNoteQuery/index.tsx
View file @
83a64d75
...
...
@@ -91,7 +91,7 @@ const DeliveryNoteQuery: React.FC = () => {
},
{
title
:
'送货单摘要'
,
dataIndex
:
'digest'
,
key
:
'digest'
},
{
title
:
'送货日期'
,
dataIndex
:
'deliveryTime'
,
key
:
'deliveryTime'
},
{
title
:
'供应会员'
,
dataIndex
:
'
buyerMemberName'
,
key
:
'buye
rMemberName'
},
{
title
:
'供应会员'
,
dataIndex
:
'
vendorMemberName'
,
key
:
'vendo
rMemberName'
},
{
title
:
'单据时间'
,
dataIndex
:
'createTime'
,
key
:
'createTime'
},
{
title
:
'外部状态'
,
...
...
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