Browse Source

fix neupos bug

release_toaliyun_real
zhengfangyuan 3 years ago
parent
commit
06a030dfd3
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      mallinkService/src/main/resources/mapper/NeuPosOrderMasterExtMapper.xml

+ 4
- 1
mallinkService/src/main/resources/mapper/NeuPosOrderMasterExtMapper.xml View File

@@ -242,7 +242,10 @@ SELECT
</select> </select>
<select id="queryMasterById" parameterType="Long" resultType="java.util.Map"> <select id="queryMasterById" parameterType="Long" resultType="java.util.Map">
select * from order_master_v2 where id=#{id}
select id,order_number as orderNumber,org_id as orgId,shop_id as shopId,buyer_id as buyerId,serial_no as serialNo,device_name as deviceName,
customer_number as customerNumber,seq_no as seqNo,(ifnull( order_amount, 0 )/100) AS orderAmount,(ifnull( real_pay_amount, 0 )/100) AS realPayAmount,
order_amount_unit as orderAmountUnit,paid_time as paidTime,refund_time as refundTime,order_status as orderStatus
from order_master_v2 where id=#{id}
</select> </select>
<update id="updateOrderMasterPayStatus" parameterType="java.util.Map"> <update id="updateOrderMasterPayStatus" parameterType="java.util.Map">


Loading…
Cancel
Save