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
c2731f7b
Commit
c2731f7b
authored
Jan 20, 2022
by
卢均锐
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: [19933] 选择售后完成生成的订单,本次对账金额需显示负数
parent
6b496dc9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
add.tsx
src/pages/balance/businessReconciliation/readyAdd/add.tsx
+1
-1
No files found.
src/pages/balance/businessReconciliation/readyAdd/add.tsx
View file @
c2731f7b
...
@@ -196,7 +196,7 @@ const Add = () => {
...
@@ -196,7 +196,7 @@ const Add = () => {
const
_i
=
_dataSource
.
findIndex
((
item
)
=>
item
.
productId
===
record
.
productId
);
const
_i
=
_dataSource
.
findIndex
((
item
)
=>
item
.
productId
===
record
.
productId
);
let
_item
=
{
...
_dataSource
[
_i
]
};
let
_item
=
{
...
_dataSource
[
_i
]
};
_item
.
currentReconciliationQuantity
=
Number
(
_val
);
_item
.
currentReconciliationQuantity
=
Number
(
_val
);
_item
.
currentMoney
=
_val
*
Number
(
record
.
price
);
_item
.
currentMoney
=
_val
*
Number
(
record
.
billType
===
3
?
(
-
record
.
price
)
:
record
.
price
);
_dataSource
[
_i
]
=
_item
;
_dataSource
[
_i
]
=
_item
;
setTabelSource
(
_dataSource
);
setTabelSource
(
_dataSource
);
}
}
...
...
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