Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
P
precision-effect
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
耿迪迪
precision-effect
Commits
1785a1b6
Commit
1785a1b6
authored
Dec 21, 2024
by
王晓倩
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
买方经办人驳回时不记录“说明”的问题;
交易单导出增加“备注”字段;
parent
d5ccc29f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
2 deletions
+28
-2
TTradeProjectExportVo.java
...va/com/zehong/system/domain/vo/TTradeProjectExportVo.java
+22
-0
TTradeProjectServiceImpl.java
.../zehong/system/service/impl/TTradeProjectServiceImpl.java
+1
-1
Evaluate.vue
precision-effect-web/src/views/trade/components/Evaluate.vue
+4
-0
OperatorButton.vue
...-effect-web/src/views/trade/components/OperatorButton.vue
+1
-1
No files found.
precision-effect-system/src/main/java/com/zehong/system/domain/vo/TTradeProjectExportVo.java
View file @
1785a1b6
...
@@ -44,6 +44,28 @@ public class TTradeProjectExportVo {
...
@@ -44,6 +44,28 @@ public class TTradeProjectExportVo {
@Excel
(
name
=
"尾款"
)
@Excel
(
name
=
"尾款"
)
private
BigDecimal
pendingPayment
;
private
BigDecimal
pendingPayment
;
@Excel
(
name
=
"交易说明"
)
private
String
dealRemark
;
@Excel
(
name
=
"备注"
)
private
String
remark
;
public
String
getRemark
()
{
return
remark
;
}
public
void
setRemark
(
String
remark
)
{
this
.
remark
=
remark
;
}
public
String
getDealRemark
()
{
return
dealRemark
;
}
public
void
setDealRemark
(
String
dealRemark
)
{
this
.
dealRemark
=
dealRemark
;
}
public
String
getRelationTransactionProjectName
()
{
public
String
getRelationTransactionProjectName
()
{
return
relationTransactionProjectName
;
return
relationTransactionProjectName
;
}
}
...
...
precision-effect-system/src/main/java/com/zehong/system/service/impl/TTradeProjectServiceImpl.java
View file @
1785a1b6
...
@@ -193,7 +193,7 @@ public class TTradeProjectServiceImpl implements ITTradeProjectService
...
@@ -193,7 +193,7 @@ public class TTradeProjectServiceImpl implements ITTradeProjectService
changeCount
++;
changeCount
++;
tTradeProject
.
setChangeCount
(
changeCount
);
tTradeProject
.
setChangeCount
(
changeCount
);
tTradeProject
.
setTradeStatus
(
null
);
tTradeProject
.
setTradeStatus
(
null
);
tTradeProject
.
setDealRemark
(
null
);
//
tTradeProject.setDealRemark(null);
tTradeProject
.
setEvaluateTime
(
null
);
tTradeProject
.
setEvaluateTime
(
null
);
tTradeChangeInfoMapper
.
insertTTradeChangeInfo
(
tradeChangeInfo
);
tTradeChangeInfoMapper
.
insertTTradeChangeInfo
(
tradeChangeInfo
);
...
...
precision-effect-web/src/views/trade/components/Evaluate.vue
View file @
1785a1b6
...
@@ -221,6 +221,10 @@
...
@@ -221,6 +221,10 @@
param
.
tradeScore
=
-
1
;
param
.
tradeScore
=
-
1
;
}
}
return
param
;
return
param
;
},
reject
(){
let
param
=
{
dealRemark
:
this
.
dealRemark
};
return
param
;
}
}
}
}
}
}
...
...
precision-effect-web/src/views/trade/components/OperatorButton.vue
View file @
1785a1b6
...
@@ -187,7 +187,7 @@
...
@@ -187,7 +187,7 @@
},
},
//驳回
//驳回
reject
(){
reject
(){
updateProject
({
tradeId
:
this
.
tradeInfo
.
tradeId
,
tradeStatus
:
"4"
}).
then
(
res
=>
{
updateProject
({
tradeId
:
this
.
tradeInfo
.
tradeId
,
tradeStatus
:
"4"
,
dealRemark
:
this
.
$refs
.
currentCom
.
reject
().
dealRemark
}).
then
(
res
=>
{
if
(
res
.
code
==
200
){
if
(
res
.
code
==
200
){
this
.
open
=
false
;
this
.
open
=
false
;
this
.
$emit
(
"getList"
);
this
.
$emit
(
"getList"
);
...
...
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