Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
JingnengService
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王亚宁
JingnengService
Commits
b1b29f9d
Commit
b1b29f9d
authored
Jun 19, 2024
by
liangyb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#328 报表以及评标工具界面含税不含税数据错乱修改
parent
e892d332
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
com.gx.obe.service/src/main/java/com/gx/obe/server/management/supplier/dao/SupplierOpeningResultMapper.java
.../management/supplier/dao/SupplierOpeningResultMapper.java
+1
-1
com.gx.obe.service/src/main/resources/mapper/SupplierOpeningResultMapper.xml
...src/main/resources/mapper/SupplierOpeningResultMapper.xml
+2
-1
No files found.
com.gx.obe.service/src/main/java/com/gx/obe/server/management/supplier/dao/SupplierOpeningResultMapper.java
View file @
b1b29f9d
...
...
@@ -36,7 +36,7 @@ public interface SupplierOpeningResultMapper extends BaseMapper<SupplierOpeningR
*/
SupplierOpeningResult
getSupplierOpeningResult
(
@Param
(
"tenderId"
)
String
tenderId
,
@Param
(
"supplierId"
)
String
supplierId
);
@Update
(
"UPDATE obe_supplier_opening_result SET BID_PRICE = #{bidPrice.bidPrice},FINAL_BID_PRICE = #{bidPrice.finalBidPrice},EVALUATION_PRICE = #{bidPrice.evaluationPrice} WHERE supplier_id = #{id}"
)
@Update
(
"UPDATE obe_supplier_opening_result SET BID_PRICE = #{bidPrice.bidPrice},FINAL_BID_PRICE = #{bidPrice.finalBidPrice},EVALUATION_PRICE = #{bidPrice.evaluationPrice}
, MODIFY_REASON = #{bidPrice.evaluationPrice}
WHERE supplier_id = #{id}"
)
void
updateBidPriceAndFinalPrice
(
@Param
(
"id"
)
String
id
,
@Param
(
"bidPrice"
)
BidPriceResult
bidPrice
);
/**
* @Description: 修改供应商的总价
...
...
com.gx.obe.service/src/main/resources/mapper/SupplierOpeningResultMapper.xml
View file @
b1b29f9d
...
...
@@ -338,7 +338,8 @@
UPDATE obe_supplier_opening_result
SET BID_PRICE = #{bidPrice.bidPrice},
FINAL_BID_PRICE = #{bidPrice.finalBidPrice},
EVALUATION_PRICE = #{bidPrice.evaluationPrice}
EVALUATION_PRICE = #{bidPrice.evaluationPrice},
MODIFY_REASON = #{bidPrice.modifyReason}
WHERE supplier_id = #{id}
</update>
...
...
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