|
@@ -179,6 +179,25 @@
|
|
|
<update id="delete">
|
|
|
update sc_site set status = 0,update_date=NOW(),update_by=#{updateBy} where id = #{id}
|
|
|
</update>
|
|
|
+ <update id="deleteCustomerRelations">
|
|
|
+ update sc_customer set site_id=null where id=#{id}
|
|
|
+ </update>
|
|
|
+ <update id="updateCustomerSiteId">
|
|
|
+ update sc_customer set site_id=#{id}
|
|
|
+ where id in ( SELECT DATA.id FROM(
|
|
|
+ SELECT
|
|
|
+ @ids as _ids,
|
|
|
+ ( SELECT @ids := GROUP_CONCAT(id)
|
|
|
+ FROM sc_customer
|
|
|
+ WHERE FIND_IN_SET(parent_id, @ids)
|
|
|
+ ) as cids,
|
|
|
+ @l := @l+1 as level
|
|
|
+ FROM sc_customer,
|
|
|
+ (SELECT @ids :=#{customerId}, @l := 0 ) b
|
|
|
+ WHERE @ids IS NOT NULL
|
|
|
+ ) id, sc_customer DATA
|
|
|
+ WHERE FIND_IN_SET(DATA.id, ID._ids))
|
|
|
+ </update>
|
|
|
|
|
|
|
|
|
<select id="findByNameUnique" resultType="int">
|
|
@@ -199,5 +218,8 @@
|
|
|
<select id="getSiteCustomerIds" resultType="java.lang.Integer">
|
|
|
select customer_id from sc_site where status = 1
|
|
|
</select>
|
|
|
+ <select id="getCustomerList" resultType="com.zoniot.ccrc.entity.Customer">
|
|
|
+ select * from sc_customer where parent_id=0 and status=1
|
|
|
+ </select>
|
|
|
</mapper>
|
|
|
|