Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
SongZhang 2024-08-01 11:22:21 +08:00
commit 6c528e3ac6
2 changed files with 4 additions and 0 deletions

View File

@ -459,6 +459,7 @@ public class OrderService {
orderInfo.setStatus("unpaid");
orderInfo.setOrderAmount(totalAmount);
// orderInfo.setOrderAmount(totalAmount.add(packAMount));
orderInfo.setRemark(orderVo.getRemark());
orderInfo.setFreightAmount(feeAmount);
orderInfo.setProductAmount(saleAmount);
orderInfo.setTradeDay(DateUtils.getDay());

View File

@ -512,6 +512,9 @@
<if test="masterId != null">
master_id = #{masterId,jdbcType=VARCHAR},
</if>
<if test="remark != null and remark!=''">
remark = #{remark,jdbcType=VARCHAR},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>