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
黄庭坚
jinfa-platform
Commits
69fc566b
Commit
69fc566b
authored
Jan 11, 2021
by
前端-钟卫鹏
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'zwpFix' into dev
parents
ff4b6d6c
032cb074
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
15 additions
and
8 deletions
+15
-8
index.tsx
src/pages/classAndProperty/class/index.tsx
+1
-1
index.tsx
src/pages/commodity/goods/index.tsx
+1
-1
logisticsForm.tsx
...ages/commodity/products/addProductsItem/logisticsForm.tsx
+6
-0
index.tsx
src/pages/commodity/products/index.tsx
+3
-3
index.tsx
...es/transaction/components/saleOrderProductTable/index.tsx
+2
-1
index.tsx
src/pages/transaction/purchaseOrder/orderCollect/index.tsx
+2
-2
index.tsx
src/pages/transaction/transactionRules/index.tsx
+0
-0
No files found.
src/pages/classAndProperty/class/index.tsx
View file @
69fc566b
...
...
@@ -161,7 +161,7 @@ const ClassProperty: React.FC<{}> = () => {
const
syncIds
=
syncTreeActions
.
getSelectKeys
()
if
(
syncIds
.
length
)
{
// @ts-ignore
PublicApi
.
postProductCustomerSyncCategory
({
idList
:
syncIds
}).
then
(
res
=>
{
PublicApi
.
postProductCustomerSyncCategory
({
idList
:
syncIds
.
concat
(
syncTreeActions
.
getExpandedKeys
()[
0
])
}).
then
(
res
=>
{
resetMenu
()
syncTreeActions
.
setSelectKeys
([])
setResetSearch
(
true
)
...
...
src/pages/commodity/goods/index.tsx
View file @
69fc566b
...
...
@@ -320,7 +320,7 @@ const Goods: React.FC<{}> = () => {
>
<
PlusOutlined
/>
新建
</
Button
>
<
Button
style=
{
{
margin
:
'0 16px'
}
}
onClick=
{
()
=>
setImportModal
(
true
)
}
>
导入数据
</
Button
>
{
/* <Button style={{ margin: '0 16px' }} onClick={() => setImportModal(true)}>导入数据</Button> */
}
<
Dropdown
overlay=
{
menuMore
}
trigger=
{
[
'click'
]
}
>
<
Button
>
更多
<
DownOutlined
/>
...
...
src/pages/commodity/products/addProductsItem/logisticsForm.tsx
View file @
69fc566b
...
...
@@ -219,6 +219,12 @@ const LogisticsForm: React.FC<Iprops> = (props) => {
deliveryType
!==
3
&&
<
Form
.
Item
name=
"sendAddress"
label=
"发货地址"
rules=
{
[
{
required
:
true
,
message
:
'请选择发货地址'
},
]
}
>
<
Select
placeholder=
"请选择发货地址"
...
...
src/pages/commodity/products/index.tsx
View file @
69fc566b
...
...
@@ -544,9 +544,9 @@ const Products: React.FC<{}> = () => {
<
Menu
.
Item
key=
"1"
icon=
{
<
DeleteOutlined
/>
}
>
批量删除
</
Menu
.
Item
>
<
Menu
.
Item
key=
"2"
icon=
{
<
DeleteOutlined
/>
}
>
{
/*
<Menu.Item key="2" icon={<DeleteOutlined />}>
删除导入批次
</
Menu
.
Item
>
</Menu.Item>
*/
}
</
Menu
>
)
...
...
@@ -558,7 +558,7 @@ const Products: React.FC<{}> = () => {
>
<
PlusOutlined
/>
新建
</
Button
>
<
Button
style=
{
{
margin
:
'0 16px'
}
}
onClick=
{
()
=>
setImportModal
(
true
)
}
>
导入数据
</
Button
>
{
/* <Button style={{margin:'0 16px'}} onClick={()=>setImportModal(true)}>导入数据</Button> */
}
<
Dropdown
overlay=
{
menuMore
}
trigger=
{
[
'click'
]
}
>
<
Button
>
更多
<
DownOutlined
/>
...
...
src/pages/transaction/components/saleOrderProductTable/index.tsx
View file @
69fc566b
...
...
@@ -72,7 +72,8 @@ const warehouseColumns: any[] = [
dataIndex
:
'reductionInventory'
,
key
:
'reductionInventory'
,
title
:
'扣减仓位库存'
,
align
:
'center'
align
:
'center'
,
render
:
(
t
,
r
)
=>
r
.
type
===
4
?
`-
${
t
}
`
:
`+
${
t
}
`
},
{
dataIndex
:
'createTime'
,
...
...
src/pages/transaction/purchaseOrder/orderCollect/index.tsx
View file @
69fc566b
...
...
@@ -77,7 +77,7 @@ export const MoneyTotalBox = registerVirtualBox('moneyTotalBox', props => {
},
[
sum
,
freePrice
])
useEffect
(()
=>
{
// 存在商品 并且有选择收货地址,则开始计算运费
// 存在商品 并且有选择收货地址,则开始计算运费
,此外 收货方式变动也要重新计算
if
(
data
&&
data
.
length
>
0
&&
receiverAddressId
)
{
// 筛选配送方式为物流的商品并且使用了运费模板
const
logsiticsDataMaps
=
data
.
filter
(
v
=>
v
.
logistics
&&
v
.
logistics
.
useTemplate
&&
v
.
logistics
.
deliveryType
===
1
)
...
...
@@ -98,7 +98,7 @@ export const MoneyTotalBox = registerVirtualBox('moneyTotalBox', props => {
setFreePrice
(
0
)
}
}
},
[
data
])
},
[
data
,
receiverAddressId
])
return
<
RowStyle
>
...
...
src/pages/transaction/transactionRules/index.tsx
View file @
69fc566b
This diff is collapsed.
Click to expand it.
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