Authored by chenchao

fix common seller can not see orders of waiting pay

@@ -76,7 +76,7 @@ @@ -76,7 +76,7 @@
76 <select id="selectNotEntryCntByUidStatusGBSkc" resultType="java.lang.Integer"> 76 <select id="selectNotEntryCntByUidStatusGBSkc" resultType="java.lang.Integer">
77 SELECT COUNT(*) from (select sog.id FROM seller_order_goods sog,seller_order so 77 SELECT COUNT(*) from (select sog.id FROM seller_order_goods sog,seller_order so
78 WHERE sog.id = so.skup and sog.uid = #{uid,jdbcType=INTEGER} and sog.is_del = 1 78 WHERE sog.id = so.skup and sog.uid = #{uid,jdbcType=INTEGER} and sog.is_del = 1
79 - AND so.payment != 11 79 + AND (so.payment != 11 or so.payment is null)
80 <if test="statusList != null"> 80 <if test="statusList != null">
81 and sog.status in 81 and sog.status in
82 <foreach item="status" index="index" collection="statusList" open="(" separator="," close=")"> 82 <foreach item="status" index="index" collection="statusList" open="(" separator="," close=")">
@@ -88,7 +88,8 @@ @@ -88,7 +88,8 @@
88 88
89 <select id="selectNotEntryListByUidStatusGBSkc" resultMap="BaseResultMap"> 89 <select id="selectNotEntryListByUidStatusGBSkc" resultMap="BaseResultMap">
90 SELECT <include refid="Base_Column_List_with_table_name" /> FROM seller_order_goods sog,seller_order so 90 SELECT <include refid="Base_Column_List_with_table_name" /> FROM seller_order_goods sog,seller_order so
91 - WHERE sog.id = so.skup and sog.uid = #{uid,jdbcType=INTEGER} and sog.is_del = 1 AND so.payment != 11 91 + WHERE sog.id = so.skup and sog.uid = #{uid,jdbcType=INTEGER} and sog.is_del = 1
  92 + AND (so.payment != 11 or so.payment is null)
92 <if test="statusList != null"> 93 <if test="statusList != null">
93 and sog.status in 94 and sog.status in
94 <foreach item="status" index="index" collection="statusList" open="(" separator="," close=")"> 95 <foreach item="status" index="index" collection="statusList" open="(" separator="," close=")">