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
06c73b9c
Commit
06c73b9c
authored
Jun 13, 2023
by
lizhichao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
驳回的单据,清空评分
parent
0f254363
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
TTradeProjectMapper.xml
...rc/main/resources/mapper/business/TTradeProjectMapper.xml
+2
-1
Evaluate.vue
precision-effect-web/src/views/trade/components/Evaluate.vue
+4
-2
No files found.
precision-effect-system/src/main/resources/mapper/business/TTradeProjectMapper.xml
View file @
06c73b9c
...
@@ -184,7 +184,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -184,7 +184,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"tradePrice != null"
>
trade_price = #{tradePrice},
</if>
<if
test=
"tradePrice != null"
>
trade_price = #{tradePrice},
</if>
<if
test=
"tradeCount != null"
>
trade_count = #{tradeCount},
</if>
<if
test=
"tradeCount != null"
>
trade_count = #{tradeCount},
</if>
<if
test=
"tradeTotal != null"
>
trade_total = #{tradeTotal},
</if>
<if
test=
"tradeTotal != null"
>
trade_total = #{tradeTotal},
</if>
<if
test=
"tradeScore != null"
>
trade_score = #{tradeScore},
</if>
<if
test=
"tradeScore != null and tradeScore!=-1"
>
trade_score = #{tradeScore},
</if>
<if
test=
"tradeScore == -1"
>
trade_score = null,
</if>
<if
test=
"tradeDeptManagerId != null"
>
trade_dept_manager_id = #{tradeDeptManagerId},
</if>
<if
test=
"tradeDeptManagerId != null"
>
trade_dept_manager_id = #{tradeDeptManagerId},
</if>
<if
test=
"settlementTime != null"
>
settlement_time = #{settlementTime},
</if>
<if
test=
"settlementTime != null"
>
settlement_time = #{settlementTime},
</if>
<if
test=
"dealPrice != null"
>
deal_price = #{dealPrice},
</if>
<if
test=
"dealPrice != null"
>
deal_price = #{dealPrice},
</if>
...
...
precision-effect-web/src/views/trade/components/Evaluate.vue
View file @
06c73b9c
...
@@ -94,9 +94,11 @@
...
@@ -94,9 +94,11 @@
},
},
submitSuggestion
(){
submitSuggestion
(){
let
param
=
{
tradeId
:
this
.
tradeData
.
tradeId
,
tradeStatus
:
"1"
,
dealPrice
:
this
.
dealPrice
,
dealRemark
:
this
.
dealRemark
};
let
param
=
{
tradeId
:
this
.
tradeData
.
tradeId
,
tradeStatus
:
"1"
,
dealPrice
:
this
.
dealPrice
,
dealRemark
:
this
.
dealRemark
};
//
if(this.socre){
if
(
this
.
socre
){
param
.
tradeScore
=
this
.
socre
;
param
.
tradeScore
=
this
.
socre
;
// }
}
else
{
param
.
tradeScore
=
-
1
;
}
return
param
;
return
param
;
}
}
}
}
...
...
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