|
@@ -21,10 +21,12 @@
|
|
|
<select id="get" resultType="CmRefundShop">
|
|
|
SELECT
|
|
|
<include refid="cmRefundShopColumns"/>,
|
|
|
- s.name AS shopName
|
|
|
+ s.name AS shopName,
|
|
|
+ up.name AS crmOperatorName
|
|
|
FROM cm_refund_shop a
|
|
|
<include refid="cmRefundShopJoins"/>
|
|
|
left join shop s on s.shopID = a.shopID
|
|
|
+ left join receipt_user_permission up on up.id = a.operator
|
|
|
WHERE a.id = #{id}
|
|
|
AND a.delFlag='0'
|
|
|
</select>
|