Commit b1b29f9d authored by liangyb's avatar liangyb

#328 报表以及评标工具界面含税不含税数据错乱修改

parent e892d332
......@@ -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: 修改供应商的总价
......
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment