bugfix 修复电池充电报告发送信息缺少参数

This commit is contained in:
Lemon
2026-01-09 14:35:11 +08:00
parent c2e6722429
commit 20f881f394
8 changed files with 19 additions and 6 deletions

View File

@@ -3245,9 +3245,10 @@
</select>
<select id="getChargeOrderInfoByOrderCode" resultType="com.jsowell.pile.vo.uniapp.customer.OrderVO">
SELECT t1.merchant_id as mercahntId,
SELECT t1.merchant_id as merchantId,
t3.organization_code as organizationCode,
t1.order_code AS orderCode,
t4.mobile_number as phoneNumber,
t1.transaction_code AS transactionCode,
t1.order_status AS orderStatus,
t1.station_id AS stationId,
@@ -3259,9 +3260,9 @@
t1.pay_amount AS payAmount,
t1.pay_time AS payTime,
t1.order_amount AS orderAmount,
t1.plate_number AS plateNumber,
t1.plate_number AS licensePlateNumber,
t1.discount_amount AS discountAmount,
t1.settlement_time as settlemetTime,
t1.settlement_time as settlementTime,
t1.settle_amount AS settleAmount,
t1.create_time as createTime,
t1.charge_start_time AS startTime,
@@ -3277,6 +3278,8 @@
order_detail t2 ON t1.order_code = t2.order_code
join
pile_merchant_info t3 on t1.merchant_id = t3.id
join
member_basic_info t4 on t1.member_id = t4.id
WHERE t1.del_flag = '0'
AND t1.order_code = #{orderCode,jdbcType=VARCHAR}
</select>